## Please edit system and help pages ONLY in the moinmaster wiki! For more ## information, please see MoinMaster:MoinPagesEditorGroup. ##master-page:WikiSandBox ##master-date:Unknown-Date #format wiki #language ja #acl All:read,write 下の4つの'-'以下で、自由に編集を試してください。ただし、単に実験のために'''新しいページを作成しないでください'''。 '''ヒント:''' "HelpOnEditing"をシフト+クリックすることで、新しいウィンドウにヘルプページを開くことができます。 ---- = 20070928経営ミーティング = * 出席:潮村、増田、熊倉、中居、吉田、納村 * 議長:吉田 * 議事録係:納村 == 社内への情報公開について == * 経営ミーティングで決議した内容を、社内に公開します。 * 経営ミーティングの議事録から公開情報をまとめ、参加者でチェックの後公開します。 * 決議した内容は基本的に全て公開しますが、人事的な内容やセンシティブな内容は、非公開とすることがあります。 * ミーティング参加者で合意が得られれば、総務さんにお願いしてwiki.accense.comで公開してもらいます。 * 公開に際し、不明な点は議事録作成者に質問をして、内容を理解した上で公開してください。 * 総務の担当者は石田さんでお願いします。 * 公開の期限は、経営ミーティングが行われた翌営業日とします。 * 今回(9/28)の経営ミーティングから開始します == 冬休みの日程について == * 仕事納めは12月28日、仕事始めを1月4日とします。 * 12月29日~1月3日を年末年始休暇とします。 * 緊急サポートは担当者が社用携帯を持つことで対応してください。 == 売り上げの報告 == * 第1四半期で現在確定している売り上げは、4694万円です。 * このうちCGの売り上げは0円です。 * 不具合発生やサポートの不行き届きで、CGの売上げを上げられていない状況にあります。 * EGの売上げが上がりつつあります。現在3本で240万円、4本目も決っていて売上げ300万です。 * EGの売り上げに関しては、SEOの効果がでてきたようです。 == 当社の親会社の設立について == * 親会社を作ります。 * 株主さんには既にお話をしていますが、親会社を作ります。 * 何をするのか * アクセンスの上に、親会社を作ります。 * 時期は、今年中の設立を目指しています。 * 手順や手続きなど細かいことは、これから取締役会や株主総会で決めてゆきます。 * 親会社を作る意図 * みなさんにもっとこの会社の運営に関心を持ち、より具体的に関与してもらえることを期待して、社員にも株主になってほしい。 * 社員に株主になってもらう観点での当社の問題: * 過去の利益の蓄積である現金が過大なせいで、株価が高い。 * 新たな株主は、現金で現金を買わされるのと同等であって、不毛。 * かといって、余剰現金を配当として外部流出させると、 * 今後の業績によって現金が必要となったときに困る。 * 対策: * 親会社を設立し、当社が新しい親会社の100%子会社となる。 * 余剰現金を親会社に配当として移転する。 * この後、当社が社員株主を募集する(100%子会社ではなくなる)。 * 当社の万が一の場合には、親会社が現金を提供できる。 * 将来: * もしかしたら、親会社の子会社(当社の兄弟会社)を設立して、 * 当社ではできない新規事業を行うかもしれない。 * 影響 * 親会社は、当社の株式を保有することだけが活動内容なので、 * 具体的な業務や事務処理はありません。 * そのため、役員または社員が親会社に移籍することはありません。 * つまり、設立に際して、役員を含め社内のスタッフが親会社に人事異動、ということはありません。 * また、アクセンスで今進めている色々な製品や案件やプロジェクトなどにも当然、影響はありません。 == ウェブサイト再構築 == * Webフレームワーク"Django"に付属のアプリケーション、"flatpages"を使いましょう。 * flatpagesのお試しサイトを立ち上げ、徳川さん達に使ってもらって評価をしてもらいます。 * お試しサイト立ち上げは10月19日までに増田さんが作業します。 以上。 ---- {{{#!rst A ReStructuredText Primer ========================= :Author: Richard Jones :Version: $Revision: 1.17 $ :Copyright: This document has been placed in the public domain. .. contents:: The text below contains links that look like "(quickref__)". These are relative links that point to the `Quick reStructuredText`_ user reference. If these links don't work, please refer to the `master quick reference`_ document. __ .. _Quick reStructuredText: quickref.html .. _master quick reference: http://docutils.sourceforge.net/docs/user/rst/quickref.html Structure --------- From the outset, let me say that "Structured Text" is probably a bit of a misnomer. It's more like "Relaxed Text" that uses certain consistent patterns. These patterns are interpreted by a HTML converter to produce "Very Structured Text" that can be used by a web browser. The most basic pattern recognised is a **paragraph** (quickref__). That's a chunk of text that is separated by blank lines (one is enough). Paragraphs must have the same indentation -- that is, line up at their left edge. Paragraphs that start indented will result in indented quote paragraphs. For example:: This is a paragraph. It's quite short. This paragraph will result in an indented block of text, typically used for quoting other text. This is another one. Results in: This is a paragraph. It's quite short. This paragraph will result in an indented block of text, typically used for quoting other text. This is another one. __ quickref.html#paragraphs Text styles ----------- (quickref__) __ quickref.html#inline-markup Inside paragraphs and other bodies of text, you may additionally mark text for *italics* with "``*italics*``" or **bold** with "``**bold**``". If you want something to appear as a fixed-space literal, use "````double back-quotes````". Note that no further fiddling is done inside the double back-quotes -- so asterisks "``*``" etc. are left alone. If you find that you want to use one of the "special" characters in text, it will generally be OK -- reStructuredText is pretty smart. For example, this * asterisk is handled just fine. If you actually want text \*surrounded by asterisks* to **not** be italicised, then you need to indicate that the asterisk is not special. You do this by placing a backslash just before it, like so "``\*``" (quickref__), or by enclosing it in double back-quotes (inline literals), like this:: ``\*`` __ quickref.html#escaping Lists ----- Lists of items come in three main flavours: **enumerated**, **bulleted** and **definitions**. In all list cases, you may have as many paragraphs, sublists, etc. as you want, as long as the left-hand side of the paragraph or whatever aligns with the first line of text in the list item. Lists must always start a new paragraph -- that is, they must appear after a blank line. **enumerated** lists (numbers, letters or roman numerals; quickref__) __ quickref.html#enumerated-lists Start a line off with a number or letter followed by a period ".", right bracket ")" or surrounded by brackets "( )" -- whatever you're comfortable with. All of the following forms are recognised:: 1. numbers A. upper-case letters and it goes over many lines with two paragraphs and all! a. lower-case letters 3. with a sub-list starting at a different number 4. make sure the numbers are in the correct sequence though! I. upper-case roman numerals i. lower-case roman numerals (1) numbers again 1) and again Results in (note: the different enumerated list styles are not always supported by every web browser, so you may not get the full effect here): 1. numbers A. upper-case letters and it goes over many lines with two paragraphs and all! a. lower-case letters 3. with a sub-list starting at a different number 4. make sure the numbers are in the correct sequence though! I. upper-case roman numerals i. lower-case roman numerals (1) numbers again 1) and again **bulleted** lists (quickref__) __ quickref.html#bullet-lists Just like enumerated lists, start the line off with a bullet point character - either "-", "+" or "*":: * a bullet point using "*" - a sub-list using "-" + yet another sub-list - another item Results in: * a bullet point using "*" - a sub-list using "-" + yet another sub-list - another item **definition** lists (quickref__) __ quickref.html#definition-lists Unlike the other two, the definition lists consist of a term, and the definition of that term. The format of a definition list is:: what Definition lists associate a term with a definition. *how* The term is a one-line phrase, and the definition is one or more paragraphs or body elements, indented relative to the term. Blank lines are not allowed between term and definition. Results in: what Definition lists associate a term with a definition. *how* The term is a one-line phrase, and the definition is one or more paragraphs or body elements, indented relative to the term. Blank lines are not allowed between term and definition. Preformatting (code samples) ---------------------------- (quickref__) __ quickref.html#literal-blocks To just include a chunk of preformatted, never-to-be-fiddled-with text, finish the prior paragraph with "``::``". The preformatted block is finished when the text falls back to the same indentation level as a paragraph prior to the preformatted block. For example:: An example:: Whitespace, newlines, blank lines, and all kinds of markup (like *this* or \this) is preserved by literal blocks. Lookie here, I've dropped an indentation level (but not far enough) no more example Results in: An example:: Whitespace, newlines, blank lines, and all kinds of markup (like *this* or \this) is preserved by literal blocks. Lookie here, I've dropped an indentation level (but not far enough) no more example Note that if a paragraph consists only of "``::``", then it's removed from the output:: :: This is preformatted text, and the last "::" paragraph is removed Results in: :: This is preformatted text, and the last "::" paragraph is removed Sections -------- (quickref__) __ quickref.html#section-structure To break longer text up into sections, you use **section headers**. These are a single line of text (one or more words) with adornment: an underline alone, or an underline and an overline together, in dashes "``-----``", equals "``======``", tildes "``~~~~~~``" or any of the non-alphanumeric characters ``= - ` : ' " ~ ^ _ * + # < >`` that you feel comfortable with. An underline-only adornment is distinct from an overline-and-underline adornment using the same character. The underline/overline must be at least as long as the title text. Be consistent, since all sections marked with the same adornment style are deemed to be at the same level:: Chapter 1 Title =============== Section 1.1 Title ----------------- Subsection 1.1.1 Title ~~~~~~~~~~~~~~~~~~~~~~ Section 1.2 Title ----------------- Chapter 2 Title =============== This results in the following structure, illustrated by simplified pseudo-XML::
Chapter 1 Title <section> <title> Section 1.1 Title <section> <title> Subsection 1.1.1 Title <section> <title> Section 1.2 Title <section> <title> Chapter 2 Title (Pseudo-XML uses indentation for nesting and has no end-tags. It's not possible to show actual processed output, as in the other examples, because sections cannot exist inside block quotes. For a concrete example, compare the section structure of this document's source text and processed output.) Note that section headers are available as link targets, just using their name. To link to the Lists_ heading, I write "``Lists_``". If the heading has a space in it like `text styles`_, we need to quote the heading "```text styles`_``". Document Title / Subtitle ````````````````````````` The title of the whole document is distinct from section titles and may be formatted somewhat differently (e.g. the HTML writer by default shows it as a centered heading). To indicate the document title in reStructuredText, use a unique adornment style at the beginning of the document. To indicate the document subtitle, use another unique adornment style immediately after the document title. For example:: ================ Document Title ================ ---------- Subtitle ---------- Section Title ============= ... Note that "Document Title" and "Section Title" above both use equals signs, but are distict and unrelated styles. The text of overline-and-underlined titles (but not underlined-only) may be inset for aesthetics. Images ------ (quickref__) __ quickref.html#directives To include an image in your document, you use the the ``image`` directive__. For example:: .. image:: images/biohazard.png results in: .. image:: images/biohazard.png The ``images/biohazard.png`` part indicates the filename of the image you wish to appear in the document. There's no restriction placed on the image (format, size etc). If the image is to appear in HTML and you wish to supply additional information, you may:: .. image:: images/biohazard.png :height: 100 :width: 200 :scale: 50 :alt: alternate text See the full `image directive documentation`__ for more info. __ ../../ref/rst/directives.html __ ../../ref/rst/directives.html#images What Next? ---------- This primer introduces the most common features of reStructuredText, but there are a lot more to explore. The `Quick reStructuredText`_ user reference is a good place to go next. For complete details, the `reStructuredText Markup Specification`_ is the place to go [#]_. Users who have questions or need assistance with Docutils or reStructuredText should `post a message`_ to the `Docutils-Users mailing list`_. The `Docutils project web site`_ has more information. .. [#] If that relative link doesn't work, try the master document: http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html. .. _reStructuredText Markup Specification: ../../ref/rst/restructuredtext.html .. _post a message: mailto:docutils-users@lists.sourceforge.net .. _Docutils-Users mailing list: http://lists.sourceforge.net/lists/listinfo/docutils-users .. _Docutils project web site: http://docutils.sourceforge.net/ }}} ---- * attachment:TaoistBooks.mm * attachment:rcanales.mm [[FreeMindBrowser(attachment:TaoistBooks.mm)]] == Formatting == ''italic'' '''bold''' {{{typewriter}}} `backtick typewriter` (configurable) ~+ bigger +~ ~- smaller -~ {{{ preformatted some more and some more lines too }}} {{{#!python def syntax(highlight): print "on" return None }}} == Linking == HelpOnEditing MoinMoin:InterWiki http://moinmoin.wikiwikiweb.de/ [http://www.python.org/ Python] someone@the.inter.net === Image Link === http://c2.com/sig/wiki.gif == Smileys == /!\ Alert == Lists == *:テスト *:がんもどき *:はんぺん === Bullet === * first 1. nested and numbered 1. numbered lists are renumbered * second * third mal sehen blockquote deeper === Glossary === Term:: Definition === Drawing === drawing:mytest = Heading 1 = == Heading 2 == === Heading 3 === ==== Heading 4 ==== ===== besonders gross ===== ПростоТест = IRC Log test = {{{#!irc (23:18) < jroes> ah (23:19) < jroes> hm, i like the way {{{ works, but i was hoping the lines would wrap (23:21) -!- gpciceri [~gpciceri@host181-130.pool8248.interbusiness.it] has quit [Read error: 110 (Connection timed out)] (23:36) < ThomasWal> you could also write a parser or processor (23:38) < jroes> i could? (23:38) < jroes> would that require modification on the moin end though? (23:38) < jroes> i cant change the wiki myself :x (23:39) < ThomasWal> parsers and processors are plugable (23:39) < ThomasWal> so you dont need to change the core code (23:40) < ThomasWal> you need to copy it to the wiki data directory though (23:40) < jroes> well, what i meant to say was that i dont have access to the box running the wiki (23:40) < ThomasWal> then this is no option awdsd asdasd sa asdasd sad asdadasds adasd asd asd asd asd asd a dadad ad adad ad asd asd adad asdasd asd adad as d (23:40) < jroes> yeah :/ }}} ["新ページ"]