diff -ruN ./ZWiki-0.12.0/Diff.py ./ZWiki/Diff.py --- ./ZWiki-0.12.0/Diff.py Sat Nov 2 20:31:23 2002 +++ ./ZWiki/Diff.py Thu Oct 3 06:43:28 2002 @@ -94,16 +94,16 @@ r = [] for tag, alo, ahi, blo, bhi in cruncher.get_opcodes(): if tag == 'replace': - if verbose: r.append('??changed:') + if verbose: r.append('??�ѹ�:') r = r + self._abbreviateDiffLines(a[alo:ahi],'-',10) r = r + self._abbreviateDiffLines(b[blo:bhi],'',50) r.append('') elif tag == 'delete': - if verbose: r.append('--removed:') + if verbose: r.append('--���:') r = r + self._abbreviateDiffLines(a[alo:ahi],'-',10) r.append('') elif tag == 'insert': - if verbose: r.append('++added:') + if verbose: r.append('++�ɲ�:') r = r + self._abbreviateDiffLines(b[blo:bhi],'',50) r.append('') elif tag == 'equal': @@ -160,8 +160,11 @@ return """\ + + + @@ -171,10 +174,10 @@ @@ -189,11 +192,11 @@ self.page_url(), (revA>=19 and '') # we only see 20 revs right now or ''' - + ''', (revA==1 and '') or ''' - + ''', revA, t) @@ -313,7 +316,7 @@ """Create a new object copy with the contents of an historic copy.""" request=getattr(self, 'REQUEST', None) if not self.isAllowed('edit', request): - raise 'Unauthorized', "You're not allowed to edit this page" + raise 'Unauthorized', "���ʤ��ˤϤ��Υڡ������Խ����Ĥ�����ޤ���
(You're not allowed to edit this page)" self.manage_historyCopy(keys=keys) if REQUEST is not None: REQUEST.RESPONSE.redirect(self.wiki_page_url()) diff -ruN ./ZWiki-0.12.0/Mail.py ./ZWiki/Mail.py --- ./ZWiki-0.12.0/Mail.py Sat Nov 2 20:31:23 2002 +++ ./ZWiki/Mail.py Sat Nov 2 20:59:27 2002 @@ -569,7 +569,7 @@ pageurl, self.wiki_url(), mailouttext, - getattr(self.folder(),'mail_signature','forwarded from %s') %pageurl + getattr(self.folder(),'mail_signature','�ۿ���������: %s %s \nforwarded from %s') %(self.folder().title,pageurl,pageurl) ) # mail_signature is very temporary.. I think mhost.send(msg) diff -ruN ./ZWiki-0.12.0/Parents.py ./ZWiki/Parents.py --- ./ZWiki-0.12.0/Parents.py Sat Nov 2 20:31:23 2002 +++ ./ZWiki/Parents.py Sat Oct 26 18:03:14 2002 @@ -1,7 +1,7 @@ ###################################################################### # zwiki page parenting functionality -from string import join +from string import join,upper from types import * from urllib import quote import Acquisition @@ -50,7 +50,7 @@ #if not (self._checkPermission(Permissions.Reparent, self) and # self.requestHasSomeId(REQUEST)): # raise 'Unauthorized', ( - # _('You are not authorized to reparent this ZWiki Page.')) + # _('���ʤ��ˤϡ����Υڡ����οƥڡ����ѹ��θ��¤�����ޤ���
(You are not authorized to reparent this ZWiki Page.)')) if pagename: parents = pagename @@ -154,8 +154,8 @@ suppress_hyperlink=suppress_hyperlink, realid=self.pageWithName(myid).id()) - return '") @@ -336,7 +336,7 @@ if suppress_hyperlink: _got.append('%s
  • %s' % (indent, inm)) else: - _got.append('%s
  • %s' % (indent, rel, realid or quote(n), inm)) + _got.append('%s
  • %s' % (indent, rel, realid or quote(n), inm)) else: inm = "" + n + "" try: @@ -344,8 +344,8 @@ except: linktitle = '' _got.append(\ - '%s
  • %s <-- you are here' - % (indent, rel, quote(n), quote(n), + '%s
  • %s <-- ������(you are here)' + % (indent, rel, quote_i(n), quote(n), linktitle, inm)) else: @@ -356,7 +356,7 @@ linktitle = '' _got.append(\ '%s
  • %s' - % (indent, rel, quote(n), quote(n), + % (indent, rel, quote_i(n), quote(n), linktitle, inm)) @@ -543,3 +543,45 @@ got.insert(0, page) return got +def quote_i(u=''): + """Enable to use for wiki name as Japanese language. + by Nobuyuki Koyoshi in Japan. 2002-10-10 + """ + ul=quote_x(u) + if u==ul: + return upper(ul[0])+ul[1:] + else: + if ul[0:1]=='_' and not u[0:1]=='_': + return 'X%s' % (ul) + else: + return upper(ul[0])+ul[1:] + +always_safe = ('ABCDEFGHIJKLMNOPQRSTUVWXYZ' + 'abcdefghijklmnopqrstuvwxyz' + '0123456789' '_.-') +_fast_safe_test = always_safe + '/' +_fast_safe = None + +def quote_x(s, safe = '/'): + safe = always_safe + safe + if _fast_safe_test == safe: + return _fast_quote_x(s) + res = list(s) + for i in range(len(res)): + c = res[i] + if c not in safe: + res[i] = '_%02x' % ord(c) + return ''.join(res) + +def _fast_quote_x(s): + global _fast_safe + if _fast_safe is None: + _fast_safe = {} + for c in _fast_safe_test: + _fast_safe[c] = c + res = list(s) + for i in range(len(res)): + c = res[i] + if not _fast_safe.has_key(c): + res[i] = '_%02x' % ord(c) + return ''.join(res) diff -ruN ./ZWiki-0.12.0/ZWikiPage.py ./ZWiki/ZWikiPage.py --- ./ZWiki-0.12.0/ZWikiPage.py Sat Nov 2 20:31:23 2002 +++ ./ZWiki/ZWikiPage.py Sat Nov 2 21:30:18 2002 @@ -15,7 +15,7 @@ import os, sys, re, string, time, math, traceback from DateTime import DateTime -from string import split,join,find,lower,rfind,atoi,strip +from string import split,join,find,lower,rfind,atoi,strip,replace from types import * from wwml import translate_WMML from AccessControl import getSecurityManager @@ -913,7 +913,9 @@ # page = self.folder()[unquote(pagename)] # I think they all need unquoting # also allow for differing wikiname & id now - page = self.pageWithName(unquote(pagename)) + page = self.pageWithName(unquote_i(pagename,0)) + if not page: + page = self.pageWithName(unquote_i(pagename,1)) # bah!!! if page: linktitle = page.linkTitle() @@ -1652,7 +1654,7 @@ 'APageWith_21' >>> p.canonicalIdFrom('a_page') 'A_5fpage' - >>> p.canonicalIdFrom('�Page') + >>> p.canonicalIdFrom('?Page') 'X_c3Page' >>> p.canonicalIdFrom('_c3Page') 'X_5fc3Page' @@ -2662,10 +2664,24 @@ titlestr=_('Edit conflict') return MessageDialog( title=titlestr, - message=""" - %s + message="""
  • +value="������"> %s %s - +
    +
    �Խ��Ǿ��ͤ�ȯ�����ޤ���
    + ���ʤ����Խ���ˡ��ɤʤ���¾���������Υڡ�������ؤ��ޤ�����
    + ���ξ��ͤ��褹��ˤϡ����Τ��Ȥ�¹Ԥ��Ʋ�������: +
      +
    1. �֥饦���ΥХå��ܥ���򥯥�å����ޤ��� +
    2. ���ʤ����Խ�������ʬ�򥯥�åץܡ��Ȥ˥��ԡ����ޤ��� +
    3. ��ե�å���ܥ���򥯥�å����ޤ��� +
    4. ¾����ʬ�ؤαƶ��˵����դ��ơ��Խ��ս��ĥ�դ����������ޤ��� +
    5. ���١��ѹ��ܥ���򥯥�å����ޤ��� +
    + �ޤ��� +

    + �����Խ���ΤƤơ�����ƿ������Խ����ޤ����ϣˤ򥯥�å����ޤ��� + +

    %s

    - %s. + %s.
    %s:

    1. %s @@ -2676,7 +2692,7 @@
    %s,

    - %s. + %s.

    """ % ( titlestr, _("Someone else has saved this page while you were editing"), @@ -3042,13 +3058,28 @@ # please clean me up def linkTitleFrom(self,last_edit_time=None,last_editor=None,prettyprint=0): """ + �ǽ��������ȹ����ԤΥ�󥯥����ȥ�ʸ��������� make a link title string from these last_edit_time and editor strings with prettyprint=1, format it for use in the standard header. """ interval = self.asAgeString(last_edit_time) + interval = replace(interval,'seconds','��') + interval = replace(interval,'second','��') + interval = replace(interval,'minutes','ʬ') + interval = replace(interval,'minute','ʬ') + interval = replace(interval,'hours','����') + interval = replace(interval,'hour','����') + interval = replace(interval,'days','��') + interval = replace(interval,'day','��') + interval = replace(interval,'weeks','����') + interval = replace(interval,'week','����') + interval = replace(interval,'months','��') + interval = replace(interval,'month','��') + interval = replace(interval,'years','ǯ') + interval = replace(interval,'year','ǯ') if not prettyprint: - s = "last edited %s ago" % (interval) + s = " %s ������" % (interval) else: try: assert self.REQUEST.AUTHENTICATED_USER.has_permission( @@ -3056,10 +3087,10 @@ #XXX do timezone conversion ? lastlog = self.lastlog() if lastlog: lastlog = ' ('+lastlog+')' - s = 'last edited %s ago' % \ + s = '%s������' % \ (self.page_url(), lastlog, interval) except: - s = 'last edited %s ago' % (interval) + s = ' %s ������ ' % (interval) if (last_editor and not re.match(r'^[0-9\.\s]*$',last_editor)): # escape some things that might cause trouble in an attribute @@ -3417,3 +3448,30 @@ #large programs, it is wise to use some kind of convention that #... #verbs for methods and nouns for data attributes." + + +def unquote_i(s,u=0): + """unquote('abc%20def') -> 'abc def'.""" + mychr = chr + myatoi = int + if s[0:2]=='X_': s=s[1:] + pat=re.compile(r'(X_+[0-9a-f]+[0-9a-f]+)') + pat2=re.compile(r'[A-Z]+') + if re.match(pat,s[0:2]): s=s[1:] + else: + if u==1: + if re.match(pat2,s[0:1]):s=lower(s[0])+s[1:] + list = s.split('_') + res = [list[0]] + myappend = res.append + del list[0] + for item in list: + if item[1:2]: + try: + myappend(mychr(myatoi(item[:2], 16)) + + item[2:]) + except: + myappend('%' + item) + else: + myappend('%' + item) + return "".join(res) diff -ruN ./ZWiki-0.12.0/dtml/zwikiPageAdd.dtml ./ZWiki/dtml/zwikiPageAdd.dtml --- ./ZWiki-0.12.0/dtml/zwikiPageAdd.dtml Sat Nov 2 20:31:24 2002 +++ ./ZWiki/dtml/zwikiPageAdd.dtml Sat Nov 2 21:34:50 2002 @@ -1,14 +1,20 @@ -<dtml-var "gettext('Add ZWiki Page')"> + + +ZWiki�ڡ��� �� �ɲ�(<dtml-var "gettext('Add ZWiki Page')">) + -

    +

    ZWiki�ڡ��� �� �ɲ�()

    + �����Υե������Ȥäƿ�����ZWiki�ڡ������֥������Ȥ���ޤ��� + Ʊ�ͤˡ��ֳ���(Browse)�ץܥ���򥯥�å����뤳�ȤǤ��긵�Υ���ԥ塼�� + ����¸��HTML�ե���������򤷡��Ǻܤ��Ƥ�빽�Ǥ���
    You may create a new ZWiki Page object using the form below. You may also choose to upload an existing html file from your diff -ruN ./ZWiki-0.12.0/dtml/zwikiWebAdd.dtml ./ZWiki/dtml/zwikiWebAdd.dtml --- ./ZWiki-0.12.0/dtml/zwikiWebAdd.dtml Sat Nov 2 20:31:24 2002 +++ ./ZWiki/dtml/zwikiWebAdd.dtml Sat Nov 2 23:49:45 2002 @@ -1,9 +1,12 @@ -<dtml-var "gettext('Add a ZWiki web')"> + + +ZWiki Web �� �ɲ�(<dtml-var "gettext('Add a ZWiki web')">) + -

    +

    ZWiki Web �� �ɲ�()

    @@ -13,13 +16,13 @@ - + - +
    �����ȥ�()
    ������() @@ -50,8 +53,8 @@

    -" style="font-weight:strong"> - +)" style="font-weight:strong"> + ��������ZWiki�����Ȥ򳫤�
    diff -ruN ./ZWiki-0.12.0/templates/defaults/backlinks.dtml ./ZWiki/templates/defaults/backlinks.dtml --- ./ZWiki-0.12.0/templates/defaults/backlinks.dtml Sat Nov 2 20:31:25 2002 +++ ./ZWiki/templates/defaults/backlinks.dtml Sat Nov 2 21:51:56 2002 @@ -1,8 +1,11 @@ + + <dtml-var "aq_parent.title"><dtml-var title_or_id> backlinks + @@ -42,13 +45,16 @@ or Catalog(canonicalLinks=thiscid) + Catalog(links=thisid) ">

    -Here are the pages which link to : +�إ�󥯤��Ƥ���ڡ���(Here are the pages which link to ):

    -You can also set this page's parent(s), to locate it within the +���Υڡ����οƤ����ꤷ������ƥ�ġ��ޥå׾�ΰ����դ�������ޤ��� +�ܥå����Υ����å��ޤ����̤Υڡ���̾�����ϸ塢�ֿƥڡ�������(Reparent)�ץܥ���򥯥�å����ޤ��� +�̾�ϡ���ĤοƤǽ�ʬ�Ǥ��礦�� +
    (You can also set this page's parent(s), to locate it within the contents hierarchy. Check the boxes or enter a new page name and click -Reparent. A single parent is usually sufficient. +Reparent. A single parent is usually sufficient.)

      @@ -76,9 +82,9 @@
      -Other parent: +¾�οƥڡ���(Other parent):

      - +
      @@ -93,13 +99,16 @@ thisid=id >

      -Here are the pages which link to : +�إ�󥯤��Ƥ���ڡ���(Here are the pages which link to ):

      -You can also set this page's parent(s), to locate it within the +���Υڡ����οƤ����ꤷ������ƥ�ġ��ޥå׾�ΰ����դ�������ޤ��� +�ܥå����Υ����å��ޤ����̤Υڡ���̾�����ϸ塢�ֿƥڡ�������(Reparent)�ץܥ���򥯥�å����ޤ��� +�̾�ϡ���ĤοƤǽ�ʬ�Ǥ��礦�� +
      (You can also set this page's parent(s), to locate it within the contents hierarchy. Check the boxes or enter a new page name and click -Reparent. A single parent is usually sufficient. +Reparent. A single parent is usually sufficient.)

        @@ -130,9 +139,9 @@
        -Other parent: +¾�οƥڡ���(Other parent):

        - +
        diff -ruN ./ZWiki-0.12.0/templates/defaults/editform.dtml ./ZWiki/templates/defaults/editform.dtml --- ./ZWiki-0.12.0/templates/defaults/editform.dtml Sat Nov 2 20:31:25 2002 +++ ./ZWiki/templates/defaults/editform.dtml Sat Nov 2 21:55:35 2002 @@ -1,12 +1,15 @@ + + <dtml-var "aq_parent.title"> <dtml-if "action == 'Create'"> -creating<dtml-else> -editing</dtml-if> &dtml-id; +����(creating)<dtml-else> +�Խ�(editing)</dtml-if> &dtml-id; +
    @@ -15,14 +18,15 @@ >
    -

    +

     +��&dtml-id;�פ� -Creating -Editing &dtml-id; -

    +����(Creating +�Խ�(Editing '&dtml-id;') +
    @@ -38,7 +42,12 @@ @@ -46,7 +55,13 @@   @@ -65,7 +80,7 @@ uploaddir)"> @@ -75,24 +90,24 @@ - + - +
    + + + + + +
    - + + + + + + +
    -Upload a file or image: +�ե�����/���᡼���ηǺ�(Upload a file or image): style="background-color:#f0f0f0">
    -Render this page as: +���Υڡ����Υ������ˡ(Render this page as):
    Name: ̾��(Name):
    Type: ������(Type): &dtml-page_type;
    @@ -166,18 +181,18 @@
    - Rename and Delete + ̾���ѹ��Ⱥ��(Rename and Delete)
    - No Delete or Rename forms for FrontPage - it - can not be removed. + FrontPage�ϼ��������Ȥ�����ޤ���Τǡ�̾���ѹ��ޤ��Ϻ���ե����ब����ޤ���( No Delete or Rename forms for FrontPage - it + can not be removed.) - You can not rename or delete this page. - do so. + ���Υڡ�����̾���ѹ��Ⱥ���Ͻ���ޤ���(You can not rename or delete this page.) + �⡢Ʊ�ͤǤ���( do so.) @@ -346,7 +361,8 @@
    -See HelpPage for help +�إ������������ +(See HelpPage for help) diff -ruN ./ZWiki-0.12.0/templates/defaults/subscribeform.dtml ./ZWiki/templates/defaults/subscribeform.dtml --- ./ZWiki-0.12.0/templates/defaults/subscribeform.dtml Sat Nov 2 20:31:25 2002 +++ ./ZWiki/templates/defaults/subscribeform.dtml Sat Oct 26 23:41:57 2002 @@ -1,6 +1,6 @@ -<dtml-var "aq_parent.title"><dtml-var id> subscription +<dtml-var "aq_parent.title">��<dtml-var title_or_id>�פؤ� �ۿ���Ͽ(subscription) @@ -13,9 +13,9 @@ @@ -30,17 +30,22 @@ +�����Υڡ����ޤ��Ϥ���Wiki���������Τ��Ф��᡼���ۿ�����Ͽ������ޤ��� + ��Ͽ�Ԥ��Żҥ᡼���ͳ�ǡ������ȤΥ��ԡ���������뤳�Ȥˤʤ�ޤ� +(���ε�ǽ�ϡ������ȴ����Ԥ������ͭ���ˤ��ʤ��¤����ޤ���)�� +��Ͽ���ʤ��ʤ�С���&dtml-title_or_id;�פ����ޤ��礦��
    + You can subscribe to this page or to the whole wiki. Subscribers receive a copy of comments via email (but not general edits, unless enabled by the site admin). -Or return to &dtml-id;. +Or return to '&dtml-title_or_id;'.

    -Your email address: +���ʤ���Email���ɥ쥹(Your email address): - +

    -home +home -Mail subscription +�ۿ���Ͽ(Mail subscription)

    @@ -53,6 +58,14 @@ bgcolor="#ff7777" > +���ʤ��ϡ����Υڡ����� + +��Ͽ�� + +̤��Ͽ + +�Ǥ���
    + You are currently subscribed
    @@ -62,9 +75,9 @@ to this page.
    - + - +
    @@ -75,6 +88,13 @@ bgcolor="#ff7777"
    > +���ʤ��ϡ�����Wiki���������Τ��Ф� + +��Ͽ���Ƥ��ޤ� + +��Ͽ���Ƥ��ޤ��� + +��
    You are currently subscribed
    @@ -84,9 +104,9 @@ to the whole wiki.
    - + - +
    @@ -96,13 +116,14 @@
    @@ -114,7 +135,7 @@ - @@ -24,7 +27,7 @@ @@ -41,7 +44,7 @@ +href="wiki_url" title="�ۡ���ڡ����Υȥåפ� (go to home page)" accesskey="1"> home @@ -68,7 +71,7 @@ title python:'show backlinks for this page ('+here.linkTitle()+')'" tal:content="here/title_or_id" href="page_url/backlinks" -title="show backlinks for this page (last edited n days ago by so-and-so)" +title="���Υڡ����ΥХå����(show backlinks for this page) (last edited n days ago by so-and-so)" accesskey="b" >page name @@ -107,11 +110,11 @@ tal:condition="python:request.get('zwiki_showsearch',1)" name="expr" type="text" size="20" maxlength="100" value="" style="width:100%; background-color:#ffffff" -title="search all pages.. spaces are significant" accesskey="s">

    -last edited n days ago by by so-and-so +�ǽ�����: last edited n days ago by by so-and-so @@ -135,7 +138,7 @@ +href="wiki_url" title="�ۡ���ڡ����Υȥåפ� (go to home page)" accesskey="1"> homepage name @@ -160,6 +163,7 @@ tal:condition="python:request.get('zwiki_showlogo',1)" tal:attributes="href here/wiki_url" href="wiki_url" title="go to home page" accesskey="1"> +href="wiki_url" title="�ۡ���ڡ����Υȥåפ� (go to home page)" accesskey="1"> +�桼������: full +title="������ɽ�����ޤ���(show all features)" accesskey="f">����(full) simple +title="����Ū�ʤ�Τ�ɽ�����ޤ�(�ĥ꡼�ʤ�)��(show basic features (no page hierarchy))" accesskey="i">ά��(simple) minimal +title="�ܼ�Ū���ǰʳ��򱣤��ޤ�(hide all non-essential features)" accesskey="m">�Ǿ�(minimal) @@ -252,14 +257,14 @@ help +href="HelpPage" title="�إ�ץڡ�����(go to HelpPage)" accesskey="h" +>�إ��(help) subscribe +title="���Υڡ����ޤ��ϥ��������Τؤ�Email�ۿ�������(configure email subscription to this page or site)" accesskey="u" +>�ۿ���Ͽ(subscribe) @@ -268,9 +273,9 @@ href python:here.page_url() + '/editform'; title python:'edit this page (' + here.linkTitle() + ')'" href="page_url/editform" -title="edit this page (last edited n days ago by so-and-so)" +title="�ڡ����Խ�( n �����Խ�) [edit this page (last edited n days ago by so-and-so)]" accesskey="e" ->edit +>�ڡ����Խ�(edit) (external edit) @@ -303,7 +308,7 @@ tal:attributes="cols python:request.get('zwiki_width','') or 60" wrap="virtual" name="text" rows=3 cols=60 style="width:100%; background-color:#f0f0f0" -title="enter comments here & click add; or, click edit" accesskey="c"> +title="�����Ȥ�����֥������ɵ��ץܥ���!! / �֥ڡ����Խ��ץ���å��Ȥ������!! (enter comments here & click add; or, click edit)" accesskey="c"> @@ -319,7 +324,7 @@ @@ -345,27 +350,27 @@ diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/AnnoyingQuote.stx ./ZWiki/templates/zwikidotorgjp/AnnoyingQuote.stx --- ./ZWiki-0.12.0/templates/zwikidotorgjp/AnnoyingQuote.stx Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/AnnoyingQuote.stx Sun Oct 6 15:28:14 2002 @@ -0,0 +1,19 @@ +#parents:ZWiki +���Υڡ����κǽ��Ԥ��Խ�����(���뤤�ϡ������˥����Ȥ�ä���)���Ȥǡ� +�ڡ�������ΰ���ʸ(��󥯥�˥塼)���ѹ����뤳�Ȥ�����ޤ����������Ԥ�ä��ʤ��Dz����������Ը�Ϥ��κǽ��Ԥ�ɽ���оݤˤʤ�ޤ��� + + +You can change the header quote by editing the last line of this page (or +adding a comment). Don't add a final newline. + +AnnoyingQuote: Hello, world. + +
    + +�ڡ�������ΰ���(��󥯥�˥塼)�Ϥ��Υڡ����κǽ��Ԥ��Խ����ޤ��ϡ������Ȥ��ɲä��뤳�Ȥǡ��Ѥ��뤳�Ȥ�����ޤ������������ǽ��ԤDz��Ԥ����������Ԥ�ä��ʤ��Dz����������Ը�Ϥ��κǽ��Ԥ�ɽ���оݤˤʤ�ޤ��� + +��������� + +
    -You are subscribed to these other pages:
    +���ʤ�����Ͽ���Ƥ��뤽��¾�Υڡ��� +(You are subscribed to these other pages):
    -You have no other page subscriptions. +¾�ˡ����ʤ�����Ͽ���Ƥ���ڡ����Ϥ���ޤ���
    (You have no other page subscriptions.)
    - subscribers: +���פؤ���Ͽ��(subscribers):
    @@ -131,7 +152,7 @@
    -wiki subscribers: +Wiki�ؤ���Ͽ��(wiki subscribers):
    @@ -152,7 +173,7 @@
    - + diff -ruN ./ZWiki-0.12.0/templates/defaults/wikipage.zpt ./ZWiki/templates/defaults/wikipage.zpt --- ./ZWiki-0.12.0/templates/defaults/wikipage.zpt Sat Nov 2 20:31:25 2002 +++ ./ZWiki/templates/defaults/wikipage.zpt Sat Nov 2 22:40:33 2002 @@ -1,9 +1,12 @@ + + <span tal:replace="container/title">wiki name </span><span tal:replace="here/title_or_id">page name</span> +
    @@ -12,7 +15,7 @@ tal:condition="python:request.get('zwiki_displaymode',0)=='full'" width="100%" cellpadding="2" cellspacing=0 border=0>
    + N subscribers -
    +
    -with heading +Ƭ���դ�(with heading) -
    -manage this page: +���ڡ����δ���(manage this page):
    - -
    @@ -373,15 +378,17 @@ tal:condition="python: user.has_permission('Zwiki: Rename pages',here)"> -change all links + +title="̾���ѹ���: Wiki�����Ȥ��̤��Ƶ�̾�Τ�̾�Τ��ִ����롣 ����! (when renaming: replace OldName with NewName throughout the wiki. Caution!)"> +������ѹ�(change all links)
    -leave placeholder + +title="̾���ѹ���: ������̾���ؤΥ�󥯥ڡ�����Ĥ����ޤޤˤ��롣(when renaming: leave behind a page which links to the new one)"> +���Τޤ޻Ĥ�(leave placeholder)
    ��������
    ��ʸ����
    �桼������
    �إ��
    + +�褦����Wiki�ء���󥯥�˥塼�� AnnoyingQuote ���Խ����ޤ��� \ No newline at end of file diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/FrontPage.stx ./ZWiki/templates/zwikidotorgjp/FrontPage.stx --- ./ZWiki-0.12.0/templates/zwikidotorgjp/FrontPage.stx Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/FrontPage.stx Thu Oct 31 09:59:16 2002 @@ -0,0 +1,141 @@ +**�褦����** + +������ϡ�ZWiki�Ρ�ZWiki���ꥸ�ʥ�(zwikidotorg)wiki �ƥ�ץ졼�ȡפΥե���ȥڡ����Ǥ��� +�����ˤϡ�"�إ�ץڡ���:HelpPage":HelpPage �� "��������:RecentChanges":RecentChanges �� "�桼������:UserOptions":UserOptions ��AnnoyingQuote ������ �����ȥޥå�:contents������ޤ��� + + + + +������¾��ZWiki�ˤĤ��Ƥ�ʸ��ϡ�ZWiki:ZwikiDocs��ZWiki:ReleaseNotes��ZWiki:KnownIssues��ZWiki:KnownIssues��������ZWiki:ZwikiTracker��ꤪõ���������� +��ZWiki:GeneralDiscussion��#zope IRC channel�ϡ����������褤���Ǥ��� + + + +�����Υڡ�����"�Խ�":FrontPage/editform �Ȳ���Ŭ�ڤʤ�Τؤ����ؤ� +���ʤ����ߤ���(�ޤ��Ϥ����ǤϤʤ�)����¾�δĶ����� + + + +- **�ѡ��ߥå����**
    +������wiki��ɽ���ˤϡ�����wiki�ե�����Ρ�View�פȡ�Access content information�פ� +��ĤΥѡ��ߥå�����ɬ�פȤ��ޤ����������ڡ�������ˤϡ���Add ZWiki Page�� +�ѡ��ߥå���󤬡��ե�����Υ��åץ����ɤˤϡ���Add Documents, Images, and +Files�פ�ɬ�פˤʤ�ޤ����������ɲá��ڡ����Խ�����ѥ������Υѡ��ߥå����� +���ơ�Zwiki: �פǻϤޤ�ޤ��������Ƥ���ϡ��ѡ��ߥå����ꥹ�Ȥν��������˸��դ��뤳�Ȥ�����ޤ��� + + + +- **�᡼�� ���� (�ۿ���Ͽ)**
    +��Zope��MailHost���֥������Ȥ�����ȡ�mail_from�ץե������ͭ�����������ɥ쥹�� +ʸ���ץ��ѥƥ����ɲä��ޤ������ۿ���Ͽ�פΥ�󥯤ϥڡ����եå���ɽ������ޤ��� +BCC����ˤϡ���ZWiki:MailHostFix�פ��ɲä��ޤ��� + + + +- **�᡼�����**
    +�����̤ʥ᡼����̾��Zope Helper Method���������ƥڡ����� +��������ס���������פΥե�����ץ��ѥƥ������꤬ɬ�פǤ��� +�桼���ϡ������Ȥؤ��ֿ���᡼���ȤäƹԤ����ͤˤʤ�ޤ��� +��ZWiki:WikiMail�򤴻��Ȳ������� + + + +- **���饤�����¦�Ǥγ������ǥ���������**
    +��Zope�ץ������ȡ� **E** xternal **E** ditor(ZWiki:ExternalEditor)�פΥ��󥹥ȡ���� +��Use external editor�ץѡ��ߥå�����桼������Ϳ�����EE�α�ɮ�� +�������󤬥ڡ����եå��˸���ޤ���EE�Υ��饤�����������ץ��Ƴ�����뤳�Ȥ� +�桼���ϡ�¿ʬ�����򤷤����ǥ����ǥڡ����Խ������Ǥ��礦�� + + + +- **�Х�����**
    +��Wiki�����礷���������פΥǡ����١��� +ZWiki:HowToInstallAZwikiTracker�򻲾Ȳ������� + + + +- **����ý��äݤ��ե���ȥڡ���**
    +¾�ڡ�������κǿ������Ȥ�ɽ���� +�����ǥ��ѥ����� �� ZWiki:FrontPage �򻲾Ȳ������� + + + +- **�������ƥ�**
    +���⤷������ط��Τʤ��桼���ˤ��ʤ���Wiki�����Ȥ��Խ�������Ĥ��ʤ顢���������Х����ɤΥȥ��������������ˤĤ���ǧ�����Ƥ����Ʋ����������դ˷礱�� +ZWiki������ϡ��㤨��DTML��JavaScript���ͤ�¾������������ݤ˼¹Ԥ���� +����ƥ�Ĥ��뤳�Ȥ�桼���˵������Ȥˤʤ�ޤ����㤨�С�DTML�Υ����ɤ� +�������������¾��Zope���֥������Ȥ������뤳�Ȥ�(�Dz��إڡ�����ͭ�Ԥ� +�ڡ��������Ԥ��ø��ؤ����¤ˤ�äƤ�)��ǽ�Ǥ���Tips:Wiki�ե�����Υ����ʤ� +�㤤���¥桼���Ȥ��롢ɸ��Υڡ��������פΥե�����ץ��ѥƥ�����DTML�ڡ��������פ� +���ꤹ�롢DTML���ƥڡ���������������Խ�����ʤ��ͤˤ��롢 +��Zwiki: Change page types�פΥѡ��ߥå�������䰷���ˤ��롣 +����������ɬ�פ˱����Ƽ�����ꤷ�Ʋ������������ޤǤ�ʤ����Ȥʤ��� +�����ȥХå����åפ�Ȥ롢���뤤��YAGNI�����Ѥ��ޤ��礦�� + +���ʤ���Wiki�����Ȥ�ڤ��߲�����! + + diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/HelpPage.stx ./ZWiki/templates/zwikidotorgjp/HelpPage.stx --- ./ZWiki-0.12.0/templates/zwikidotorgjp/HelpPage.stx Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/HelpPage.stx Sat Nov 2 22:49:02 2002 @@ -0,0 +1,303 @@ +#parents:ZWiki +�����ϡ�Zwiki�С������0.12.0�Υإ�ץڡ����Ǥ��� + +"!ZWiki:..."�ǻϤޤ��󥯤ϡ�"ZWiki�ܲ�:zwiki.org":http://www.zwiki.org/ �򼨤��ޤ��� + +"����äƲ� ?":#whatisthis_j
    +"�桼�����󥿡��ե�����":#ui_j
    +"�⤭��":#navigation_j
    +"�᡼�륵���ӥ���Ͽ":#email_j
    +"�Խ�����ˤ�":#editing_j
    +  "����ñ¼°¤Î¥ë¡¼ï¿½ï¿½":#rules_j
    +"��äȾ����õ������":#more_j
    + + ����äƲ� ? + + ������ϡ������(��Ʊ���)����Web�����Ȥΰ��Ǥ���WikiWikiWeb(�ޤ��� wiki)�� + ZWiki�С������Ǥ��� Wiki�ϰ����פ�ͭ�Ѥʥ���ƥ�Ĥζ�ͭ��ˡ�Ȥ��� + �Ϥ��ʤ����ߤ��Ƥ��ޤ��� + �ɤΥڡ����Ǥ��Խ��䥳�����ɵ�����ǽ�Ǥ��ꡢ��������󥯥ڡ������� + ���Ȥ�����ޤ��� + + ��ľ��Ū��ʸ�Ͻ񼰥롼��ϡ��ڡ����Խ����󥯤������������Dz������� + ���Ȥ���Ω�äƤ��ޤ������ιͤ��ϴ�ñ���Խ��ǺѤޤ����Ȥǡ�����ʤ�� + �ɤ߰פ��������ơ���äȤ���ɮ���٤����Ȥˤϡ�ï�⤬��̥��Ū��ɽ���� + �����ˤ��ʤ��ǡ��Խ�����뤳�ȤǤ��� + + ��ZWiki�����Ȥϡ������ͤˡ����ˤ���ñ�ʥ᡼��Υꥹ�Ȥ��ͤ˵�ǽ���ޤ��� + + �桼�����󥿡��ե����� + + ���������ˡ�full�ס�simple�ס�simple�פ��ǧ�Ǥ����顢���ֵ������ä�UI�� + �������ޤ���(�ס����å���)���⤷�������ǽҤ٤���ǽ���������ʤ��ʤ� + ��full�פ򥯥�å����ƻ�ޤ��礦�� + + ��¿���Υ�󥯤ȥե���������Ǥϡ�������������( ZWiki:AccessKeys (keyboard shortcuts)) + ����äƤ��ޤ��������֥饦�������ݡ��Ȥ���ʤ������Ǥ��� + + �����ʤ��Τ�̾���˥����ॾ����¾���"�桼������:UserOptions":UserOptions�פ� + �������ޤ��� + + �⤭��(Navigation) + + ���ƥڡ����ϡ������ȥ롢URL�����ƥڡ����֤Υϥ��ѡ���󥯤Ȥ��ƤΥ�ˡ���̾�� + ���äƤ��ޤ��� �ڡ���̾���̾WikiName(����ԥ��饤��(Ƭ��ʸ����������ʸ���� + ����)��ñ��򤯤äĤ������, ZWiki:WikiName�򻲾Ȳ�������)�Ǥ�������Ĥ�ñ��� + ���Ǥ��ǽ�Ǥ�����󥯤ϺǸ�ΰ�Ĥ��ͤ�ɽ��(�ޤ�ǣ��Ĥ�WikiName�ǥ������ + ��������)��¾�Υ����Ȥ�Ƴ���ޤ�����full�ץ⡼�ɤǤϡ��ڡ����Υ����ȥĥ꡼�� + ɽ������ޤ��� + + - �ե���ȥڡ��������ˤϡ� �����ȥ����򥯥�å� + + - �������󥯤��Ƥ���ڡ����򸫤�ˤϡ� �ڡ��������ȥ�򥯥�å� + + - ���ڡ��������ˤϡ� ������˥ƥ����Ȥ�����Ʋ��ԥ����򲡤� + + - ������˥ڡ�����ꥹ�Ȥ���ˤϡ� �� "��������:RecentChanges":RecentChanges �פ˹Ԥ� + + - �Խ�����򸫤�ˤϡ� �ֺǽ�����(last edited)�פ򥯥�å� + + - �ڡ����Υ����ȥĥ꡼�򸫤�ˤϡ� �֥����ȥޥå�:contents�פ򥯥�å�(��full�ץ⡼�ɤΤ�) + + - �ΤäƤ���ڡ��������֤ˤϡ� ���Υڡ���̾�κǽ����ʬ�򡢥֥饦����URL��κǸ�Ρ�/�פ� + ���������ԡ� ����ԥ��饤�������ʸ����̵�����ޤ���(����!! ����?? ���δְ㤤��??) + + + �᡼���ۿ���Ͽ + +�������Ρ��ۿ���Ͽ(subscribe)�ץ�󥯤�������ʤ顢�᡼��ǥ����Ȥ������٤� +��Ͽ�򤽤Υڡ����ޤ���Wiki���������Τˤ��뤳�Ȥ�����ޤ��� �ޤ������꤬ +�ʤ���Ƥ���С���Ͽ�Ԥ�Ʊ�ͤ˥᡼��������⤢��Ǥ��� + + - �᡼��ˤ�륳����(�Խ��ʤ�)���������ۿ���Ͽ(subscribe)�פΥ���å�; + �⤷ɬ�פʤ顢����ʬ��Email���ɥ쥹�����졢���ѹ�(Change)�פ򥯥�å�; + ���ʤ�����Ͽ���֤����ؤ�ˤϤ��Υڡ����ޤ���Wiki���ΤΥܥ���򥯥�å� + (�п��Ϥ��ʤ�����Ͽ���Ƥ��뤳�Ȥ��̣���ޤ�)�� + + - ������������ ������Wiki�����ȤΥ᡼�륢�ɥ쥹���ֿ��ޤ����������褦�� + ���ʤ��Υ����Ȥϥ��ꥸ�ʥ�Υ����ȥڡ��������뤤�ϡ����ʤ��Υ᡼��ɽ��� + WikiName�Ȥ��Ƹ��줿�ڡ�����ˡ����줫����Υ᡼������ڡ�����ɽ�������Ǥ��礦�� + + + �Խ�����ˤ� + + �������ȴ����Ԥޤ��ϥڡ����ν�ͭ�Ԥ����¤��Ƥ��ʤ��ʤ顢������ڡ��������� + ���ؤ����Ϥ�ͭ��ޤ��� + �֤�����(SandBox)�פ�Wiki�ڡ����ν�����Խ������Ǥ��� �������ɤ�����Ȥ� + �ƥ��Ȥ����̤���ˤ���򳫤��ޤ��� + + - �ڡ����Υե�����Υܥ���֥������ɵ�(Add a comment)�� ��Ȥ������Ȥ��ɵ� + + - ���Խ�(edit)�ץ���å��ǡ��ڡ�����ʸ�Ϥ��ѹ�; ��ʸ��񼰥롼�� + (ZWiki:TextFormattingRules)�פ˴�Ť���󥯤�񼰲�����ޤ��� + �ե�����Υ��åץ����ɤ䤽��¾�Υ��ץ���������ޤ���ǽ�Ǥ��礦�� + + - ��¸�Υڡ�����WikiName��ä��뤳�Ȥǡ������ʥڡ���������� + + - �桼��̾�������ϡ���full�ץ⡼�ɤǤϡ���Reparent�ס�̾���ѹ��פ����� + �֥ڡ�������פ���ǽ�Ȥ�ʤ�ޤ����֥ڡ�������(manage this page)�ץܥ���ե������ + �Ȥ������ڡ��������ȥ�򥯥�å��� + + +
    + + �񼰥롼�복��: + + (�����ȴ����ޤ��ϥڡ����Խ��Ԥϡ��ۤʤ�롼������ꤹ�뤳�Ȥ���ǽ�Ǥ�; + �����Ϥ�äȤ�Zwiki�����Ȥǰ���Ū�˻Ȥ��Ƥ������Υ롼��Ǥ���) + + 0. WikiName��[�ѳ����μ�ͳ���ͼ���̾��]��http://URLs , + "��¤���ƥ����ȷ��Υ��":someurl �� ����Wiki���:ZWiki:RemoteWikiLinks �ϡ��ϥ��ѡ���󥯤���ޤ��� + + 0. ��*�ס�**�ס�_�פ��'�פǶ����ʸ���ϡ����줾�졢 + *����*, **����**, _����_ �� 'ñ���ΰ�' �Ȥʤ�ޤ��� + + 0. ���Ԥ�̵�뤵��ޤ������Ԥ������Υ����ͤ�ɽ���ޤ��� + + 0. ���դ��򤷤��Ԥ��֤��Ȥ�������ñ��Ԥϸ��Ф��ԤȤʤ�ޤ� + + 0. ��-�ס�*�ס�0.�פ�Ⱦ�ѥ��ڡ����ǻϤޤ�Ԥϡ��վ�񤭤Ȥʤ�ޤ��� + ��������դ�a more������Τϡ������۲��βվ�񤭤Ȥʤ�ޤ��� + + 0. ɬ�פʤ�HTM������Ȥ��ޤ��� + ���ε��ĤΤ��륵���Ⱦ�Ǥϡ�DTML����(�����Х����ɥ�����)��ޤ��Ȥ��ޤ��� + + 0. �嵭�Υ롼��������ޤ��ϰ����β���ˤϼ��Τ�Τ�����ޤ��� + - ��!LikeThis�פ��ͤˡ���!�פ��󥯤ޤ������֤�; + - ��'LikeThis'�פ��ͤˡ�ñ�������'�פǰϤ��ʸ��; + - ��ť������::�פǽ��������Ԥθ���ʲ������줿ʸ��:: + + LikeThis (�����ͤ˽񤤤��̤��ɽ�������) + �� &dtml-��������ޤ�; + +
    + + +
    ��äȾ����õ������ + + ZWiki.Org, ZWiki:FrontPage, ZWiki:ZwikiDocs, ZWiki:ZwikiFAQ, + ZWiki:KnownIssues, ZWiki:ZwikiTracker + + ���Υ����ȤΥ��եȥ����������ǿ����ϡ�ZWiki:ZwikiAnalyzer �ǥ����å������� + + ���Υڡ����κǽ��С������ϡ�ZWiki:HelpPage �ˤ���ޤ��� + + ����¾��Wiki�ط�: WikiWikiWeb:FrontPage, WikiWikiWeb:EvolutionOfaWikizen + + +
    + +This is the help page for Zwiki version 0.12.0. + +The links beginning with "!ZWiki:..." lead to additional documentation on +zwiki.org. + +"What is this ?":#whatisthis
    +"User interface":#ui
    +"Navigation":#navigation
    +"Email subscription":#email
    +"Editing":#editing
    +  "Formatting rules":#rules
    +"Finding out more":#more
    + + +
    What is this ? + + This is the ZWiki version of a WikiWikiWeb (or wiki), which is a kind of + collaborative website. Wikis try to put as little as possible in the + way of people sharing useful content in a manageable way. + You can edit any page, add comments, and create new pages on the spot. + + Intuitive text formatting rules are used to simplify the process of + writing and linking pages. + The idea is to keep the text that people edit simple, so it's readable + as is, and, most importantly, editable by anyone, without sacrificing + attractive presentation. + + A zwiki site like this one may also function as a simple mail list. + + User interface + + If you see "full", "simple", "minimal" links below, you can click them + to choose the UI that suits you best (cookies required). If you can't + see one of the features described here, try clicking "full". + + Many links and form elements have ZWiki:AccessKeys (keyboard shortcuts), + which are convenient if your browser supports them. + + You can set your user name, time zone and other things in UserOptions. + + + Navigation + + Each page has a unique name, which is used for the title, url and + hyperlinks between pages. Page names are usually a WikiName + (capitalized words joined together, see ZWiki:WikiName) but can also be + a single word or a phrase. Links like the last one (ie two wikinames + separated by a colon) lead to another site. In full mode, pages are + arranged in a hierarchy. + + - To return to the front page, click the site logo + + - To see which pages link to this one, click the page title + + - To search all pages, enter text in the search field and press enter + + - To list pages by last edit time, visit RecentChanges (or FastChanges). + + - To see previous edits, click the "last edited" link + + - To see the page hierarchy, click the "contents" link (full mode only) + + - To jump to a known page, enter the first part of it's name after the + last / in your browser's url field. You can ignore capitalization and + spacing. + + + Email subscription + + If you see a "subscribe" link below, you can subscribe to a page or + the whole wiki to receive comments by mail. If configured, subscribers + may also send comments by mail. + + - To receive comments (not edits) by mail, click "subscribe"; if + necessary, enter your email address and click "Change"; click the page + or wiki subscribe button to toggle your subscription status (green means + you are subscribed). + + - To send comments, just reply, or send mail to the wiki's mail address. + Your comment will appear on the original comment's page, or on the page + whose WikiName appears in your mail's subject, or on the site's + default mail-in page. + + + Editing + + You have full editing rights to any page, unless restricted by the site + admin or page owner. + SandBox is the place to play with wiki page editing. You could open it + in another window to test the things you read here. + + - Add a comment using the form at the bottom of the page + + - Click "edit" to change the page's text; it will be formatted and + linked according to the ZWiki:TextFormattingRules. + You may also be able to upload a file or choose other options here. + + - Create new pages by adding their WikiName to an existing page + and then clicking on the question mark beside it. + + - After you have configured a user name, in full mode you may also be + able to reparent, rename and delete pages. Use the "manage this page" + form at bottom or click the page title. + + +
    + + Formatting rules in a nutshell: + + (It's possible for the site admin or a page editor to set different + rules; these are the default currently used on most zwiki sites.) + + 0. WikiName's, [freeform page names in brackets], http://URLs , + "structured text-style links":someurl and ZWiki:RemoteWikiLinks are + made into hyperlinks + + 0. text beginning and ending with *, **, _ or ' is + *italic*, **bold**, _underlined_ or 'monospaced' respectively + + 0. one or more non-blank lines are run together form a paragraph; blank + lines separate paragraphs + + 0. a one-line "paragraph" followed by a more-indented paragraph makes a + heading + + 0. a paragraph beginning with - or * or 0. and a space makes a bullet + or numbered list item; a more-indented list item starts a sub-list + + 0. HTML tags may be used if necessary; + on sites which permit it, + DTML tags (server-side code) may also be used + + 0. Some or all of the above rules may be escaped, + by putting ! at the beginning of a link or a line !LikeThis; + by enclosing text in single quotes 'LikeThis' ; + or by indenting text after a paragraph ending with a double colon :: + + LikeThis + escapes and &dtml-too; + +
    + + +
    Finding out more + + ZWiki, ZWiki:FrontPage, ZWiki:ZwikiDocs, ZWiki:ZwikiFAQ, + ZWiki:KnownIssues, ZWiki:ZwikiTracker + + Check this site's software is up-to-date with ZWiki:ZwikiAnalyzer + + The latest version of this page is at ZWiki:HelpPage + + More about wiki: WikiWikiWeb:FrontPage, WikiWikiWeb:EvolutionOfaWikizen + diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/RecentChanges.stxdtml ./ZWiki/templates/zwikidotorgjp/RecentChanges.stxdtml --- ./ZWiki-0.12.0/templates/zwikidotorgjp/RecentChanges.stxdtml Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/RecentChanges.stxdtml Sat Oct 5 22:20:11 2002 @@ -0,0 +1,87 @@ +#parents:ZWiki +����Wiki�����֤����ڡ���(�ǿ��ѹ���) + + + + + +dontusecatalog + + +�ڡ���̾�ǽ��ѹ����ѹ����� + + + +
    +" +>&dtml-title_or_id; + + + + +anonymous + + + + + + + + + + + + + + + + + +
    + +

    + pages + +

    + + + + + + + + + +
    +" +>&dtml-title_or_id; + + + + +anonymous + + + + + + + + + + + + + + + + + +
    +
    +

    + pages +

    +
    diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/SearchPage.stxdtml ./ZWiki/templates/zwikidotorgjp/SearchPage.stxdtml --- ./ZWiki-0.12.0/templates/zwikidotorgjp/SearchPage.stxdtml Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/SearchPage.stxdtml Sat Oct 5 21:39:42 2002 @@ -0,0 +1,122 @@ +#parents:ZWiki + + + + + we are doing a jump + + + blank expr - jump to front page + + blank expr - let the search list all + + skip jumping, just do a search + + + search for an id beginning with expr + + + found one - jump there + can't find url_quote + + + + + no ids matched - fall through and do a search + + + + +!����(Search for): + +
    +���(Results): +
    +
    + + + + +
    &dtml-title_or_id;
    + +

    + hits + + + + []
    + +

    +( hits) + + + + + + + + +

    +Wikiweb���ΤǸ�������ˤϡ��������������դ����졢���Ԥ��ޤ���ɽ���ϡ����ڡ���ʸ���ⲿ�⤫�⤽�Τޤ�ñ��˲�ᤵ��ޤ����������줺�˶��Τޤ޲��Ԥ�������ڡ������ꥹ�Ȥ���ޤ���
    (Type a search expression and hit enter to search the entirwikiweb. The +expression is case-insensitive and spaces are preserved. Leave it blank to +list all pages. See also JumpSearch.) +

    +����(Search for): + +

    + +
    + +
    +����¾�������ʸ����ġ���(Some other likely search tools): +

    +

    + +
    +��Wiki�����֤Υ���ǥå���(all wikis indexed by) Metawiki +(regexps allowed): + + +
    + +
    +Google (ja) +(advanced, +�إ��): + + +
    + +
    +Google +(advanced, +�إ��): + + +
    + +
    +USENET via groups.google.com +(advanced, +�إ��): + + +
    + +
    +directory.google.com (ODP plus page ranking) +(�إ��): + + +
    + +
    +images.google.com +(�إ��): + + + + +
    + +
    diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/UserOptions.stxdtml ./ZWiki/templates/zwikidotorgjp/UserOptions.stxdtml --- ./ZWiki-0.12.0/templates/zwikidotorgjp/UserOptions.stxdtml Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/UserOptions.stxdtml Sun Oct 27 02:51:01 2002 @@ -0,0 +1,191 @@ +#parents:ZWiki +this form calls itself. + + + + + + + +use path=wiki_url() if you want per-wiki cookies + + + + + + +*Cookies configured.* + + + + + + +*Cookies removed.* + +reload UserOptions since old cookie values are still in this REQUEST + + + + + +���ʤ��Υ����Ȳ��ˤ��볰�Ѥ����ꤷ�ޤ��礦��Ʊ�ͤ˺����Υ�󥯤򥯥�å��������ɽ���⡼�ɤ��Ѥ��뤳�Ȥ�����ޤ���
    +(Set your site preferences below. You can also change your display +mode by clicking the links at bottom-left.) + +
    +��̾��(User name): +(identifies your edits in RecentChanges etc.) + +Email���ɥ쥹(Email address): +(saves time when subscribing) + + +�ƥ������Խ����ꥢ����(Editform +width): +height: +(textarea dimensions; width will be 100% if supported) + +�����ॾ����(Time zone): + +�������륿�����(Your local time is) + +(localizes page modification times) + + +�֥å��ޡ���(Bookmarks): +"> +
    +(�եå��ˤ���ޤ�(appear in footer); konqueror users, separate your bookmarks with , not space) + +�ڡ������ؤ�ɽ��(Show page hierarchy) ? + +(This wiki maintains a page hierarchy. You can use this or ignore it.) + +�������ɽ��(Show search field ? (�Ǿ��⡼�ɤ����except in minimal mode)) + + +����ʸ��ɽ��(Show AnnoyingQuote) ? (����⡼��(in full mode)) + + +������ɽ��(Show logo) ? + + + +Show advanced edit options ? + +(Turn this on to see extra editing options like file upload.) + + +
    + + +
    + +
    diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/WikiWikiWeb.stx ./ZWiki/templates/zwikidotorgjp/WikiWikiWeb.stx --- ./ZWiki-0.12.0/templates/zwikidotorgjp/WikiWikiWeb.stx Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/WikiWikiWeb.stx Sun Oct 6 14:51:01 2002 @@ -0,0 +1,12 @@ +#parents:ZWiki + +WikiWikiWeb�ϡ����Υ��ꥸ�ʥ�Ǥ��ꡢ��ȯ��Wiki����Ǻ���Τ�Τΰ�ĤǤ���
    +Wiki�ˤĤ��ƤȤ���¾�����Τ�Τξ���˭�٤ˤ���ޤ��� + +The WikiWikiWeb is the original and still one of the largest and most +active wikis. It contains a wealth of information about wiki and many +other things. + +WikiWikiWeb:FrontPage + +RemoteWikiURL: http://c2.com/cgi/wiki? diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/ZWiki.stx ./ZWiki/templates/zwikidotorgjp/ZWiki.stx --- ./ZWiki-0.12.0/templates/zwikidotorgjp/ZWiki.stx Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/ZWiki.stx Wed Sep 25 09:22:12 2002 @@ -0,0 +1,21 @@ +ZWiki�Ϥ��Υ����Ȥ�ư�����Ƥ��륽�եȥ������Ǥ��� +"Joyful Systems":http://joyful.com �� ������� +"�׸���":http://zwiki.org/ZWikiContributors �ˤ�곫ȯ����ޤ����� +GPL�˴�Ť����ѽ���ޤ�������ʳ��Τ��Τ餻�ϡ�http://zwiki.org ������������ + +ZWiki�ϡ����ꥸ�ʥ��WikiWikiWeb�αƶ��ξ������Ƥ��ꡢ +"Zope":http://zope.org Web Application Server�Υѥ��ư���Ƥ��ޤ��� + +������Wiki��URL: http://zwiki.org/ + + \ No newline at end of file diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/index_html.dtml ./ZWiki/templates/zwikidotorgjp/index_html.dtml --- ./ZWiki-0.12.0/templates/zwikidotorgjp/index_html.dtml Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/index_html.dtml Sun Mar 17 06:07:50 2002 @@ -0,0 +1 @@ + \ No newline at end of file diff -ruN ./ZWiki-0.12.0/templates/zwikidotorgjp/standard_error_message.dtml ./ZWiki/templates/zwikidotorgjp/standard_error_message.dtml --- ./ZWiki-0.12.0/templates/zwikidotorgjp/standard_error_message.dtml Thu Jan 1 09:00:00 1970 +++ ./ZWiki/templates/zwikidotorgjp/standard_error_message.dtml Tue Aug 20 10:34:04 2002 @@ -0,0 +1,54 @@ + + +A custom error handler - redirect to the most likely existing page. +Assumes SearchPage exists. +See http://www.zope.org/Members/JohnC/StandardErrorMessage + + + +< dtml-else> +< dtml-call "RESPONSE.redirect(SearchPage.page_url()+'/editform?page='+search, + lock=1)"> + + + + + + + +

    +I could not find any likely page matching +"" +"" +

    +Click here to +

    /editform" +method="POST" enctype="multipart/form-data"> + + +
    +
    " +method="POST" enctype="multipart/form-data"> + + +
    +or +return to &dtml-SERVER_URL;. + + + + + +