diff -ruN ./ZWiki-0.11.0JP003/Parents.py ./ZWiki/Parents.py --- ./ZWiki-0.11.0JP003/Parents.py Sun Oct 27 02:02:28 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 @@ -549,12 +549,12 @@ """ ul=quote_x(u) if u==ul: - return u + return upper(ul[0])+ul[1:] else: if ul[0:1]=='_' and not u[0:1]=='_': return 'X%s' % (ul) else: - return ul + return upper(ul[0])+ul[1:] always_safe = ('ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' diff -ruN ./ZWiki-0.11.0JP003/ZWikiPage.py ./ZWiki/ZWikiPage.py --- ./ZWiki-0.11.0JP003/ZWikiPage.py Sun Oct 27 02:02:28 2002 +++ ./ZWiki/ZWikiPage.py Sun Oct 27 13:45:40 2002 @@ -912,7 +912,9 @@ # page = self.folder()[unquote(pagename)] # I think they all need unquoting # also allow for differing wikiname & id now - page = self.pageWithName(unquote_i(pagename)) + page = self.pageWithName(unquote_i(pagename,0)) + if not page: + page = self.pageWithName(unquote_i(pagename,1)) # bah!!! if page: linktitle = page.linkTitle() @@ -1651,7 +1653,7 @@ 'APageWith_21' >>> p.canonicalIdFrom('a_page') 'A_5fpage' - >>> p.canonicalIdFrom('弛age') + >>> p.canonicalIdFrom('?Page') 'X_c3Page' >>> p.canonicalIdFrom('_c3Page') 'X_5fc3Page' @@ -3447,13 +3449,17 @@ #verbs for methods and nouns for data attributes." -def unquote_i(s): +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 diff -ruN ./ZWiki-0.11.0JP003/templates/defaults/backlinks.dtml ./ZWiki/templates/defaults/backlinks.dtml --- ./ZWiki-0.11.0JP003/templates/defaults/backlinks.dtml Sun Oct 27 02:02:30 2002 +++ ./ZWiki/templates/defaults/backlinks.dtml Sun Oct 27 00:02:39 2002 @@ -49,7 +49,7 @@

-このページの親を設定し、コンテンツ・ツリー上の位置付けが出来ます。 +このページの親を設定し、コンテンツ・マップ上の位置付けが出来ます。 ボックスのチェックまたは別のページ名を入力後、「親ページ設定(Reparent)」ボタンをクリックします。 通常は、一つの親で充分でしょう。
(You can also set this page's parent(s), to locate it within the @@ -103,7 +103,7 @@

-このページの親を設定し、コンテンツ・ツリー上の位置付けが出来ます。 +このページの親を設定し、コンテンツ・マップ上の位置付けが出来ます。 ボックスのチェックまたは別のページ名を入力後、「親ページ設定(Reparent)」ボタンをクリックします。 通常は、一つの親で充分でしょう。
(You can also set this page's parent(s), to locate it within the diff -ruN ./ZWiki-0.11.0JP003/templates/defaults/editform.dtml ./ZWiki/templates/defaults/editform.dtml --- ./ZWiki-0.11.0JP003/templates/defaults/editform.dtml Sun Oct 27 02:02:30 2002 +++ ./ZWiki/templates/defaults/editform.dtml Sun Oct 27 15:34:15 2002 @@ -3,7 +3,7 @@ <dtml-var "aq_parent.title"> -<dtml-if "action == 'Create'"> +<dtml-if "action == '作成'"> 作成(creating)<dtml-else> 編集(editing)</dtml-if> &dtml-id; @@ -23,7 +23,7 @@  &dtml-id;の - + 作成(Creating 編集(Editing &dtml-id;) @@ -50,7 +50,13 @@   - + + + + + + + @@ -128,7 +134,7 @@ - の 購読登録(subscription) +<dtml-var "aq_parent.title">「<dtml-var title_or_id>」への 配信登録(subscription) @@ -15,7 +15,7 @@ home -メール登録(Mail subscription) +配信登録(Mail subscription) @@ -30,22 +30,22 @@ - このページまたはこのWikiサイト全体に対し購読の登録が出来ます。 + このページまたはこのWikiサイト全体に対しメール配信の登録が出来ます。 登録者は電子メール経由で、コメントのコピーを受信することになります (この機能は、サイト管理者がそれを有効にしない限り出来ません)。 -登録しないならば、&dtml-id;に戻りましょう。
+登録しないならば、「&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;'.

あなたのEmailアドレス(Your email address): - +

@@ -75,9 +75,9 @@ to this page.
- + - +
@@ -135,7 +135,7 @@
-への登録者(subscribers): +「」への登録者(subscribers):
@@ -173,7 +173,7 @@
- + diff -ruN ./ZWiki-0.11.0JP003/templates/defaults/wikipage.zpt ./ZWiki/templates/defaults/wikipage.zpt --- ./ZWiki-0.11.0JP003/templates/defaults/wikipage.zpt Sun Oct 27 02:02:30 2002 +++ ./ZWiki/templates/defaults/wikipage.zpt Sun Oct 27 13:51:30 2002 @@ -207,6 +207,7 @@
+ユーザ設定: 完全(full) +title="全部を表示します。(show all features)" accesskey="f">完全(full) 購読登録(subscribe) +title="このページまたはサイト全体へのEmail配信の設定(configure email subscription to this page or site)" accesskey="u" +>配信登録(subscribe) diff -ruN ./ZWiki-0.11.0JP003/templates/zwikidotorgjp/FrontPage.stx ./ZWiki/templates/zwikidotorgjp/FrontPage.stx --- ./ZWiki-0.11.0JP003/templates/zwikidotorgjp/FrontPage.stx Sun Oct 27 02:02:29 2002 +++ ./ZWiki/templates/zwikidotorgjp/FrontPage.stx Sun Oct 27 02:35:29 2002 @@ -45,9 +45,9 @@ 'Zwiki: ' and appear at the end of the permissions list. --> -- **メール 送出 (購読登録)**
+- **メール 送出 (配信登録)**
 ZopeのHailHostオブジェクトの設定と「mail_from」フォルダに有効な送信アドレスの -文字プロパティを追加します。「購読登録」のリンクはページフッターに表示されます。 +文字プロパティを追加します。「配信登録」のリンクはページフッタに表示されます。 BCCを作るには、「ZWiki:MailHostFix」を追加します。