From codesite-noreply @ google.com Tue Mar 3 23:05:29 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 03 Mar 2009 14:05:29 +0000 Subject: [geeklog-jp commit] r1223 - trunk/geeklog-1-jp/system/custom Message-ID: <000e0cd1519a793f6b0464376dd2@google.com> Author: mystralkk Date: Tue Mar 3 05:54:26 2009 New Revision: 1223 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php Log: Issue #57に対応しました。 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp/system/custom/custom_cellular.php Tue Mar 3 05:54:26 2009 @@ -284,52 +284,52 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - array('@<[ ]*table[^>]*?>@si', ''), - array('@<[ ]*/table[^>]*?>@si', ''), - array('@<[ ]*thead[^>]*?>@si', ''), - array('@<[ ]*/thead[^>]*?>@si', ''), - array('@<[ ]*tbody[^>]*?>@si', ''), - array('@<[ ]*/tbody[^>]*?>@si',''), - array('@<[ ]*tfoot[^>]*?>@si', ''), - array('@<[ ]*/tfoot[^>]*?>@si', ''), - array('@<[ ]*tr[^>]*?>@si', ''), - array('@<[ ]*/tr[^>]*?>@si', '
'), - array('@<[ ]*th[^>]*?>@si', ''), - array('@<[ ]*/th[^>]*?>@si', ' '), - array('@<[ ]*td[^>]*?>@si', ''), - array('@<[ ]*/td[^>]*?>@si', ' ') - ); + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', +); // コメント削除用のパターン配列 $_mobile_comment = array( - array('@@sm', ''), - array('@@', '') - ); + '@@sm' => '', + '@@' => '', +); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - array('@<[ ]*div[^>]*?>@si', ''), - array('@<[ ]*/div[^>]*?>@si', "
\n"), - // cut style - array('@style="[^"].*?"@i', ''), - // cut class - array('@class="[^"].*?"@i', ''), - // cut embed - array('@]*?>@si', ''), - ); + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
\n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', +); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - array('@@', ''), - array('@.*?@ms', ''), - ); + '@@' => '', + '@.*?@ms' => '', +); @@ -345,56 +345,46 @@ // モバイル用のコンテンツを表示、PC用のコンテンツを非表示 // これは単独で一番先に実行する必要がある - if($CUSTOM_MOBILE_CONF['use_mobile_content']) { - for($i = 0; $i < count($_mobile_content); $i++) { - $search[$i] = $_mobile_content[$i][0]; - $replace[$i] = $_mobile_content[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { + $content = preg_replace( + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある - if($CUSTOM_MOBILE_CONF['cut_comment']) { - for($i = 0; $i < count($_mobile_comment); $i++) { - $search[$i] = $_mobile_comment[$i][0]; - $replace[$i] = $_mobile_comment[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['cut_comment']) { + $content = preg_replace( + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { - for($i = 0; $i < count($_mobile_table); $i++) { - $search[$i] = $_mobile_table[$i][0]; - $replace[$i] = $_mobile_table[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { - for($i = 0; $i < count($_mobile_3g); $i++) { - $search[$i] = $_mobile_3g[$i][0]; - $replace[$i] = $_mobile_3g[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 - if($CUSTOM_MOBILE_CONF['resize_image']) { + if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); - for($i = 0; $i < count($_mobile_images); $i++) { - $search[$i] = $_mobile_images[$i][0]; - $replace[$i] = $_mobile_images[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 - if($CUSTOM_MOBILE_CONF['convert_to_sjis']) { + if ($CUSTOM_MOBILE_CONF['convert_to_sjis']) { $charset ='Shift_JIS'; } else { $charset = $CUSTOM_MOBILE_CONF['host_charset']; @@ -415,7 +405,7 @@ '@
  • @i', '@^\s*
    ([\s\n]*)
    @mi', '@^\s*
  • ([\s\n]*)
  • @mi', - '@[ ]*? @', + '@\s*? @', '@\s*\n+ @ m', '@((\s)*
    )+ @ sm', ); @@ -531,6 +521,15 @@ return $ret; } +// urldecode(配列対応版) +function _mobile_urldecode_deep($data) { + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } +} + // 入力をURLデコードする function _mobile_prepare_input(&$array) { reset($array); @@ -544,8 +543,7 @@ if( $key != $keyconv ) { unset($array[$key]); } - $array[$keyconv] = - urldecode($val); + $array[$keyconv] = _mobile_urldecode_deep($val); } reset($array); } @@ -795,13 +793,10 @@ // 画像タグのパターン配列 $_mobile_images = array( - array('@<([ ]*img.*?)width="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)height="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)src="([^"]*?)"(.*?)>@si', - '<$1src="' . $_CONF['site_url'] . RESIZER . '?image=$2&size='. - $CUSTOM_MOBILE_CONF['image_size'] . '&quality=' . - $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . - $_CONF['site_url'] . '"$3 ' . XHTML . '>'), - ); - -?> + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', +); From codesite-noreply @ google.com Wed Mar 4 19:40:34 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 04 Mar 2009 10:40:34 +0000 Subject: [geeklog-jp commit] r1224 - in trunk: geeklog-1-jp-extended/language geeklog-1-jp/language Message-ID: <000e0cd1744e7b00ce046448ae55@google.com> Author: mystralkk Date: Wed Mar 4 02:39:46 2009 New Revision: 1224 Modified: trunk/geeklog-1-jp-extended/language/japanese_utf-8.php trunk/geeklog-1-jp/language/japanese_utf-8.php Log: 言語ファイルを修正しました。 Modified: trunk/geeklog-1-jp-extended/language/japanese_utf-8.php ============================================================================== --- trunk/geeklog-1-jp-extended/language/japanese_utf-8.php (original) +++ trunk/geeklog-1-jp-extended/language/japanese_utf-8.php Wed Mar 4 02:39:46 2009 @@ -675,7 +675,7 @@ 32 => 'エラー。未入力の項目があります', 33 => 'ポータルブロックのフィードURLを入力してください', 34 => 'PHPブロックにはタイトルと関数名を入力してください', - 35 => '普通のブロックにはタイトルと内容を入力してください', + 35 => 'ノーマルブロックにはタイトルと内容を入力してください', 36 => 'レイアウト用ブロックには内容を入力してください', 37 => 'PHPブロックの関数名が不適切です', 38 => 'PHPブロックの関数名は、接頭子\'phpblock_\' (例 phpblock_themetester)が必要です。セキュリティ対策のため必要となっていま す。', @@ -708,7 +708,7 @@ 65 => '順番', 66 => '自動タグ', 67 => '自動タグ使用許可', - 68 => 'このポータルブロックのフィードは表示するには長すぎます。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' + 68 => 'このポータルブロックのフィードは長すぎて表示できません。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' ); ############################################################################### @@ -792,7 +792,7 @@ 75 => '全機能', 76 => '公開オプション', 77 => 'アドバンストエディタの利用は、ブラウザでJavaScriptが使える環境に する必要があります。このオプションはコンフィギュレーションの管理パネルで無効 にできます。', - 78 => 'ノーマル エディタを使う場合', + 78 => 'ノーマルエディ タを使う場合', 79 => 'プレビュー', 80 => 'エディタ', 81 => '公開オプション', @@ -802,7 +802,7 @@ 85 => 'すべて表示', 86 => 'アドバンストエディタ', 87 => '記事の情報', - 88 => 'ウィキスタイル' + 88 => 'Wikiスタイル' ); @@ -835,7 +835,7 @@ 23 => 'この話題を新規記事投稿の際のデフォルトにします。', 24 => '(*)', 25 => 'アーカイブ', - 26 => '話題をアーカイブにします。デフォルトに設定できるのはひとつだけで す。', + 26 => 'この話題をアーカイブ記事用の話題にします。アーカイブ記事用の話題 は1つしか指定できません。', 27 => '話題アイコンアップロード', 28 => '最大', 29 => 'ファイルアップロード時にエラー' @@ -869,7 +869,7 @@ 22 => 'エラー', 23 => '一括登録', 24 => 'ユーザの一括登録', - 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは一行あたり一人ずつで、各ユーザのデータはタブ区切りで「 氏名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作 為に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で 保存してください。', + 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは1行あたり1人ずつで、各ユーザのデータはタブ区切りで「氏 名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作為 に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で保 存してください。', 26 => '', 27 => '', 28 => '画像を削除する場合チェックする', @@ -1060,7 +1060,7 @@ 25 => 'フィードのタイトル', 26 => '配信最大件数', 27 => 'エントリの長さ', - 28 => '(0 = 本文なし, 1 = 本文すべて, other = 指定した文字数に制限。)', + 28 => '(0 = 本文なし、1 = 本文すべて、その他 = 指定した文字数に制限)', 29 => '詳細', 30 => '更新', 31 => '文字コード', @@ -1187,10 +1187,10 @@ 91 => '無効なURLが指定されました。', 92 => "使用する前にセキュリティチェックを行って ください!", 93 => 'データベースのバックアップに成功しました。', - 94 => 'バックアップ失敗: ファイルサイズが1KByte未満です。', + 94 => 'バックアップ失敗: ファイルサイズが1Kバイト未満です。', 95 => 'エラーが発生しました。', 96 => '申し訳ありません。あなたにはコンフィギュレーション管理ページへの アクセスが許可されていません。許可されていない機能へアクセスしようとする行為 のすべてが記録される点に注意してください。', - 97 => 'すべての必須フィールドの検証を満たしていません - デフォルトカス タムメンバーメッセージ' + 97 => '一部の必須フィールドの検証に失敗しました - デフォルトカスタムメ ンバーメッセージ' ); ############################################################################### @@ -1199,7 +1199,7 @@ 'access' => 'アクセス', 'ownerroot' => '所有者/Root', 'group' => 'グループ', - 'readonly' => '読みとり専用', + 'readonly' => '読み取り専用', 'accessrights' => 'アクセス権限', 'owner' => '所有者', 'grantgrouplabel' => '上記のグループに編集権限を与える', @@ -1219,10 +1219,10 @@ 'coregroup' => 'コアグループ', 'yes' => 'はい', 'no' => 'いいえ', - 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読みとり専用となっています。", + 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読み取り専用となっています。", 'groupmsg' => '本サイトのセキュリティグループは階層的になっています。本 グループを下記のグループに追加する場合、そのグループの持つ権限と同じ権限を本 グループにも与えることになります。可能であれば、本グループに権限を与える場 合、下記のグループの権限を継承させることが望ましい方法です。本グループに個別 に権限を与える場合は、下記の「権限」部分から様々な機能に関する権限を選択する ことができます。本グループを追加する場合は、下記のグループの横にあるボックス をチェックするだけです。', - 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読みとり専用となっています。", - 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループ自体が直接与えられている権限です。', + 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読み取り専用となっています。", + 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループが直接与えられている権限です。', 'lock' => 'ロック', 'members' => 'メンバー ', 'anonymous' => 'ゲストユーザ', @@ -1231,7 +1231,7 @@ 'edit' => '編集', 'none' => 'なし', 'accessdenied' => 'アクセスが拒否されました', - 'storydenialmsg' => "この記事を閲覧する権限がありません。これは、あなた が{$_CONF['site_name']}のメンバーがないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", + 'storydenialmsg' => "この記事を閲覧する権限がありません。あなたが {$_CONF['site_name']}のメンバーでないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", 'nogroupsforcoregroup' => 'このグループは他のどのグループにも所属してい ません', 'grouphasnorights' => 'このグループは管理権限を一切所有していません。', 'newgroup' => '新規', @@ -1269,8 +1269,8 @@ 'do_backup' => 'バックアップの実行', 'backup_successful' => 'データベースのバックアップが完了しました。', 'db_explanation' => 'Geeklogをバックアップするには、下のボタンをクリッ クしてください。', - 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっています。mysqldump_pathの設定をコンフィギュレーションでチ ェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", - 'zero_size' => 'バックアップが失敗しました。ファイルの大きさが0バイトで す。', + 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっているかのどれかが原因で失敗し ました。mysqldump_pathの設定をコンフィギュ レーションでチェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", + 'zero_size' => 'バックアップに失敗しました。ファイルの大きさが0バイトで す。', 'path_not_found' => "{$_CONF['backup_path']} は存在しないか、ディレクト リではありません。", 'no_access' => "エラー: {$_CONF['backup_path']} ディレクトリにアクセス できません。", 'backup_file' => 'バックアップファイル', @@ -1316,7 +1316,7 @@ $LANG_PDF = array( 1 => 'PDF生成ができません。', - 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントを処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果は0バイトのサイズの 場合は削除されています。ドキュメントが変換可能だと確信できる場合はもう一度実 行してみてください。', + 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントは処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果が0バイトの場合は削 除されています。ドキュメントが変換可能だと確信できる場合はもう一度実行してみ てください。', 3 => 'PDFの生成で不明なエラーが発生しました。', 4 => 'ページのデータが与えられていないか、以下のアドホックなPDF生成ツー ルを使用してください。このページがエラーだと思われる場合はシステムの管理者に 連絡してください。もしくは以下のフォームからアドホックな方式によるPDFの生成 を行ってください。', 5 => 'ドキュメントを読み込み中です。', @@ -1677,7 +1677,7 @@ 'speedlimit' => "投稿間隔制限", 'skip_preview' => "プレビューしないで投稿する", 'advanced_editor' => "アドバンストエディタを使う", - 'wikitext_editor' => "ウィキテキストエディタを使う", + 'wikitext_editor' => "Wikiテキストエディタを使う", 'cron_schedule_interval' => "Cronスケジュール間隔", 'sortmethod' => "ソート方法", 'showstorycount' => "記事数を表示する", Modified: trunk/geeklog-1-jp/language/japanese_utf-8.php ============================================================================== --- trunk/geeklog-1-jp/language/japanese_utf-8.php (original) +++ trunk/geeklog-1-jp/language/japanese_utf-8.php Wed Mar 4 02:39:46 2009 @@ -675,7 +675,7 @@ 32 => 'エラー。未入力の項目があります', 33 => 'ポータルブロックのフィードURLを入力してください', 34 => 'PHPブロックにはタイトルと関数名を入力してください', - 35 => '普通のブロックにはタイトルと内容を入力してください', + 35 => 'ノーマルブロックにはタイトルと内容を入力してください', 36 => 'レイアウト用ブロックには内容を入力してください', 37 => 'PHPブロックの関数名が不適切です', 38 => 'PHPブロックの関数名は、接頭子\'phpblock_\' (例 phpblock_themetester)が必要です。セキュリティ対策のため必要となっていま す。', @@ -708,7 +708,7 @@ 65 => '順番', 66 => '自動タグ', 67 => '自動タグ使用許可', - 68 => 'このポータルブロックのフィードは表示するには長すぎます。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' + 68 => 'このポータルブロックのフィードは長すぎて表示できません。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' ); ############################################################################### @@ -792,7 +792,7 @@ 75 => '全機能', 76 => '公開オプション', 77 => 'アドバンストエディタの利用は、ブラウザでJavaScriptが使える環境に する必要があります。このオプションはコンフィギュレーションの管理パネルで無効 にできます。', - 78 => 'ノーマル エディタを使う場合', + 78 => 'ノーマルエディ タを使う場合', 79 => 'プレビュー', 80 => 'エディタ', 81 => '公開オプション', @@ -802,7 +802,7 @@ 85 => 'すべて表示', 86 => 'アドバンストエディタ', 87 => '記事の情報', - 88 => 'ウィキスタイル' + 88 => 'Wikiスタイル' ); @@ -835,7 +835,7 @@ 23 => 'この話題を新規記事投稿の際のデフォルトにします。', 24 => '(*)', 25 => 'アーカイブ', - 26 => '話題をアーカイブにします。デフォルトに設定できるのはひとつだけで す。', + 26 => 'この話題をアーカイブ記事用の話題にします。アーカイブ記事用の話題 は1つしか指定できません。', 27 => '話題アイコンアップロード', 28 => '最大', 29 => 'ファイルアップロード時にエラー' @@ -869,7 +869,7 @@ 22 => 'エラー', 23 => '一括登録', 24 => 'ユーザの一括登録', - 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは一行あたり一人ずつで、各ユーザのデータはタブ区切りで「 氏名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作 為に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で 保存してください。', + 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは1行あたり1人ずつで、各ユーザのデータはタブ区切りで「氏 名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作為 に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で保 存してください。', 26 => '', 27 => '', 28 => '画像を削除する場合チェックする', @@ -1060,7 +1060,7 @@ 25 => 'フィードのタイトル', 26 => '配信最大件数', 27 => 'エントリの長さ', - 28 => '(0 = 本文なし, 1 = 本文すべて, other = 指定した文字数に制限。)', + 28 => '(0 = 本文なし、1 = 本文すべて、その他 = 指定した文字数に制限)', 29 => '詳細', 30 => '更新', 31 => '文字コード', @@ -1187,10 +1187,10 @@ 91 => '無効なURLが指定されました。', 92 => "使用する前にセキュリティチェックを行って ください!", 93 => 'データベースのバックアップに成功しました。', - 94 => 'バックアップ失敗: ファイルサイズが1KByte未満です。', + 94 => 'バックアップ失敗: ファイルサイズが1Kバイト未満です。', 95 => 'エラーが発生しました。', 96 => '申し訳ありません。あなたにはコンフィギュレーション管理ページへの アクセスが許可されていません。許可されていない機能へアクセスしようとする行為 のすべてが記録される点に注意してください。', - 97 => 'すべての必須フィールドの検証を満たしていません - デフォルトカス タムメンバーメッセージ' + 97 => '一部の必須フィールドの検証に失敗しました - デフォルトカスタムメ ンバーメッセージ' ); ############################################################################### @@ -1199,7 +1199,7 @@ 'access' => 'アクセス', 'ownerroot' => '所有者/Root', 'group' => 'グループ', - 'readonly' => '読みとり専用', + 'readonly' => '読み取り専用', 'accessrights' => 'アクセス権限', 'owner' => '所有者', 'grantgrouplabel' => '上記のグループに編集権限を与える', @@ -1219,10 +1219,10 @@ 'coregroup' => 'コアグループ', 'yes' => 'はい', 'no' => 'いいえ', - 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読みとり専用となっています。", + 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読み取り専用となっています。", 'groupmsg' => '本サイトのセキュリティグループは階層的になっています。本 グループを下記のグループに追加する場合、そのグループの持つ権限と同じ権限を本 グループにも与えることになります。可能であれば、本グループに権限を与える場 合、下記のグループの権限を継承させることが望ましい方法です。本グループに個別 に権限を与える場合は、下記の「権限」部分から様々な機能に関する権限を選択する ことができます。本グループを追加する場合は、下記のグループの横にあるボックス をチェックするだけです。', - 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読みとり専用となっています。", - 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループ自体が直接与えられている権限です。', + 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読み取り専用となっています。", + 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループが直接与えられている権限です。', 'lock' => 'ロック', 'members' => 'メンバー ', 'anonymous' => 'ゲストユーザ', @@ -1231,7 +1231,7 @@ 'edit' => '編集', 'none' => 'なし', 'accessdenied' => 'アクセスが拒否されました', - 'storydenialmsg' => "この記事を閲覧する権限がありません。これは、あなた が{$_CONF['site_name']}のメンバーがないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", + 'storydenialmsg' => "この記事を閲覧する権限がありません。あなたが {$_CONF['site_name']}のメンバーでないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", 'nogroupsforcoregroup' => 'このグループは他のどのグループにも所属してい ません', 'grouphasnorights' => 'このグループは管理権限を一切所有していません。', 'newgroup' => '新規', @@ -1269,8 +1269,8 @@ 'do_backup' => 'バックアップの実行', 'backup_successful' => 'データベースのバックアップが完了しました。', 'db_explanation' => 'Geeklogをバックアップするには、下のボタンをクリッ クしてください。', - 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっています。mysqldump_pathの設定をコンフィギュレーションでチ ェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", - 'zero_size' => 'バックアップが失敗しました。ファイルの大きさが0バイトで す。', + 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっているかのどれかが原因で失敗し ました。mysqldump_pathの設定をコンフィギュ レーションでチェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", + 'zero_size' => 'バックアップに失敗しました。ファイルの大きさが0バイトで す。', 'path_not_found' => "{$_CONF['backup_path']} は存在しないか、ディレクト リではありません。", 'no_access' => "エラー: {$_CONF['backup_path']} ディレクトリにアクセス できません。", 'backup_file' => 'バックアップファイル', @@ -1316,7 +1316,7 @@ $LANG_PDF = array( 1 => 'PDF生成ができません。', - 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントを処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果は0バイトのサイズの 場合は削除されています。ドキュメントが変換可能だと確信できる場合はもう一度実 行してみてください。', + 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントは処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果が0バイトの場合は削 除されています。ドキュメントが変換可能だと確信できる場合はもう一度実行してみ てください。', 3 => 'PDFの生成で不明なエラーが発生しました。', 4 => 'ページのデータが与えられていないか、以下のアドホックなPDF生成ツー ルを使用してください。このページがエラーだと思われる場合はシステムの管理者に 連絡してください。もしくは以下のフォームからアドホックな方式によるPDFの生成 を行ってください。', 5 => 'ドキュメントを読み込み中です。', @@ -1677,7 +1677,7 @@ 'speedlimit' => "投稿間隔制限", 'skip_preview' => "プレビューしないで投稿する", 'advanced_editor' => "アドバンストエディタを使う", - 'wikitext_editor' => "ウィキテキストエディタを使う", + 'wikitext_editor' => "Wikiテキストエディタを使う", 'cron_schedule_interval' => "Cronスケジュール間隔", 'sortmethod' => "ソート方法", 'showstorycount' => "記事数を表示する", From codesite-noreply @ google.com Wed Mar 4 19:44:35 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 04 Mar 2009 10:44:35 +0000 Subject: [geeklog-jp commit] r1225 - trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS Message-ID: <000e0cd22a14d7ac7f046448bcc7@google.com> Author: mystralkk Date: Wed Mar 4 02:43:00 2009 New Revision: 1225 Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/footer.thtml Log: 画像のサイズ指定方法を修正しました。 Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/footer.thtml ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/footer.thtml (original) +++ trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/footer.thtml Wed Mar 4 02:43:00 2009 @@ -30,7 +30,7 @@ alt="Valid HTML 4.01 Transitional" height="31" width="88"{xhtml}> Valid CSS! + alt="Valid CSS!" width="88" height="31"{xhtml}>

      From codesite-noreply @ google.com Wed Mar 4 21:47:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 04 Mar 2009 12:47:25 +0000 Subject: [geeklog-jp commit] r1226 - trunk/geeklog-1-jp/public_html Message-ID: <000e0cd3298223434904644a7495@google.com> Author: mystralkk Date: Wed Mar 4 04:47:06 2009 New Revision: 1226 Modified: trunk/geeklog-1-jp/public_html/lib-common.php Log: Issue #49に対応しました。 Modified: trunk/geeklog-1-jp/public_html/lib-common.php ============================================================================== --- trunk/geeklog-1-jp/public_html/lib-common.php (original) +++ trunk/geeklog-1-jp/public_html/lib-common.php Wed Mar 4 04:47:06 2009 @@ -6751,6 +6751,7 @@ require_once 'Text/Wiki.php'; $wiki = new Text_Wiki(); + $wiki->setFormatConf('Xhtml', 'translate', FALSE); $wiki->disableRule('wikilink'); $wiki->disableRule('freelink'); $wiki->disableRule('interwiki'); From codesite-noreply @ google.com Wed Mar 4 21:51:26 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 04 Mar 2009 12:51:26 +0000 Subject: [geeklog-jp commit] r1227 - trunk/geeklog-1-jp Message-ID: <000e0cd2950a81b93504644a82c2@google.com> Author: mystralkk Date: Wed Mar 4 04:49:39 2009 New Revision: 1227 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: r1226の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Wed Mar 4 04:49:39 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-04 mystral-kk + + * Wikiスタイルで文字化けする問題(Issue #49)に対応しました。 + 2009-02-27 mystral-kk * custom_mail_jp.phpを1.5.2に対応させました。 From codesite-noreply @ google.com Wed Mar 4 21:55:27 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 04 Mar 2009 12:55:27 +0000 Subject: [geeklog-jp commit] r1228 - trunk/geeklog-1-jp-extended/public_html Message-ID: <001636457a9ae2ecb904644a906f@google.com> Author: mystralkk Date: Wed Mar 4 04:50:36 2009 New Revision: 1228 Modified: trunk/geeklog-1-jp-extended/public_html/lib-common.php Log: Issue #49に対応しました。 Modified: trunk/geeklog-1-jp-extended/public_html/lib-common.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/lib-common.php (original) +++ trunk/geeklog-1-jp-extended/public_html/lib-common.php Wed Mar 4 04:50:36 2009 @@ -6751,6 +6751,7 @@ require_once 'Text/Wiki.php'; $wiki = new Text_Wiki(); + $wiki->setFormatConf('Xhtml', 'translate', FALSE); $wiki->disableRule('wikilink'); $wiki->disableRule('freelink'); $wiki->disableRule('interwiki'); From codesite-noreply @ google.com Wed Mar 4 21:59:29 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 04 Mar 2009 12:59:29 +0000 Subject: [geeklog-jp commit] r1229 - trunk/geeklog-1-jp-extended Message-ID: <001636458a86477e1f04644a9feb@google.com> Author: mystralkk Date: Wed Mar 4 04:52:16 2009 New Revision: 1229 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1228の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Wed Mar 4 04:52:16 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-04 mystral-kk + + * Wikiスタイルで文字化けする問題(Issue #49)に対応しました。 + 2009-02-26 mystral-kk * public_html/docs内の翻訳を1.5.2に更新しました。 @@ -31,7 +35,7 @@ したのを元に戻しました。(黒文字に戻しました) 背景画像/navbar/images/tabrightI.gifと/navbar/images/tabrightJ.gif を幅の大きい物に差し替えました。 -     WAIproCSSのREADMEにこれまでの変更点を追記しました。 + WAIproCSSのREADMEにこれまでの変更点を追記しました。 2009-02-15 Yoshinori Tahara From codesite-noreply @ google.com Fri Mar 6 21:25:48 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 06 Mar 2009 12:25:48 +0000 Subject: [geeklog-jp commit] r1230 - trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS Message-ID: <001636e9100f86e7d00464726202@google.com> Author: milk851 Date: Fri Mar 6 04:25:11 2009 New Revision: 1230 Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css Log: 2月8日リリース後に追加修正をしているので、バージョンを2.31に上げました。 2月8日リリース後の追加修正分は、Ver2.31としてREADMEの更新履歴に記載しまし た。 ProfessionalCSSに修正等をしたファイルリストは、不必要と判断し READMEからを削除しました。 Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README (original) +++ trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README Fri Mar 6 04:25:11 2009 @@ -1,6 +1,6 @@ /*============================================================================== タイトル : Geeklog用WAIproCSSテーマ - バージョン: 2.3 for Geeklog1.5.1 + バージョン: 2.31 for Geeklog1.5.1 著者 : Hisakatsu Katoh as ネット素浪人 (contact is katoq.AT.b-lines.DOT.jp) Masuko koeda as みるく(http://white-stage.com/) 説明 : Geeklog用のテーマ「ProfessionalCSS」を基本に, アクセシィビリ ティに配慮した「WAIproCSS」です。 @@ -23,7 +23,6 @@ *テンプレートファイル: コメント *CSS: CSSファイル構成・カスケード順序 *CSS: プロパティ記述順序 - *ProfessionalCSSに修正等をしたファイルリスト *カスタマイズ方法 *バージョン履歴 ==============================================================================*/ @@ -312,40 +311,6 @@ /*============================================================================== - ProfessionalCSSに修正等をしたファイルリスト -==============================================================================*/ -thtmlファイルリスト - -・header.thtml -・footer.thtml -・featuredstorytext.thtml -・storytext.thtml - -CSSファイルリスト - -・custom.sample.css -・css/block.css -・css/common.css -・css/default.css -・css/form.css -・css/layout.css -・css/story.css -・css/admin/configuration.css -・css/admin/lists.css -・css/navbar/navbar.css -・css/search/search.css -・css/trackback/trackback.css - -その他のファイルリスト -・functions.php -・images/css/icon_pagetop.gif -・images/edit.png -・images/mail.png -・images/print.png - - - -/*============================================================================== カスタマイズ方法 ==============================================================================*/ @@ -364,7 +329,7 @@ 特に理由がない場合には、WAIproCSSテーマのバージョンアップにも対応できるよう に、専用のCSSファイル(custom.css)を利用する方法をおすすめいたします。 ・専用のCSSファイル(custom.css)を利用したカスタマイズ - この方法は、カスタマイズ部分を専用のCSSファイル(custom.css)に分離するた め、ProfessionalCSSテーマに変更があった場合でも柔軟に対応できるとともに、カ スタマイズしたテーマの保守・管理性も高まります。 + この方法は、カスタマイズ部分を専用のCSSファイル(custom.css)に分離するた め、WAIproCSSテーマに変更があった場合でも柔軟に対応できるとともに、カスタマ イズしたテーマの保守・管理性も高まります。 CSSの特徴であるカスケードを活かしたカスタマイズ方法です。 1. 各CSSファイルからカスタマイズする箇所をcustom.css内にコピー&ペース トします。 @@ -399,12 +364,14 @@ + 追加 - 削除 -■Ver.2.3(2009-2-21) - ・ページの先頭へ戻るのアイコンを新しいものに差し替え、アイコンもリンク範 囲に含めました。 (*footer.thtml,*/css/layout.css,*/images/css/icon_pagetop.gif) +■Ver.2.31(2009-3-6) + ・ページの先頭へ戻るのアイコンもリンク範囲に含めました。 (*footer.thtml,*/css/layout.css,*/images/css/icon_pagetop.gif) ・背景画像/navbar/images/tabrightI.gifと/navbar/images/tabrightJ.gifを幅 の大きい物に差し替えました。(画像ジローさん提供 )(*/navbar/images/tabrightI.gif,*/navbar/images/tabrightJ.gif) ・ユニバーサルセレクタでの初期化をやめ、必要なセレクタのみを初期化しまし た。(*/css/default.css) ・div#centerblocksとtdに余白を追加しました。div#centerblocks余白追加に伴 い、中央ブロックの幅を修正しました。(*/css/layout.css,*/css/compatible.css) ・掲示板プラグイン(forum)で背景色と文字色のコントラストが不十分な部分を修 正しました。(*/css/compatible.css,*/css/plugin/forum.css) + +■Ver.2.3(2009-1-30) ・アイコンをPNGからGIFに変更した事に伴い、管理画面のアイコンにgifアイコン を追加しました。   +/images/admin/block-left.gif +/images/admin/block-right.gif @@ -486,6 +453,7 @@  ・デザインを変更しました。  ・functions.phpに掲示板プラグイン対応させました。(*/functions.php)  ・サイトロゴを新しいものに差し替えました。 (-/images/css/bg_logo.gif,+/images/logo.gif) + ・ページの先頭へ戻るのアイコンを新しいものに差し替えました。 (-/images/css/icon_pagetop.gif,+/images/icon_pagetop.gif)  ・ベーステーマProfessionalCSSに合わせて、ファイルを修正しました。  ・preとblockquote要素のスタイルを設定しました。(*/css/default.css) ・READMEにライセンスについて記載しました。(このファイル) Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css (original) +++ trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css Fri Mar 6 04:25:11 2009 @@ -10,8 +10,8 @@ /*============================================================================== [INFO] カスタムテーマスタイルシート(雛型) - WAIproCSSver.2.3テーマをベースとしたカスタムテーマの作成を補助する CSSファイル(雛型)です。 - WAIproCSSver.2.3テーマの背景を指定します。 + WAIproCSSver.2.31テーマをベースとしたカスタムテーマの作成を補助す るCSSファイル(雛型)です。 + WAIproCSSver.2.31テーマの背景を指定します。 以下では、サンプルに例としてすべて背景色と枠線の色を白で設定してお りますが、 (ナビゲーションの文字色は黒で設定しています)   変更される時は、出来る限りコントラストに配慮した配色及び From codesite-noreply @ google.com Fri Mar 6 21:31:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 06 Mar 2009 12:31:50 +0000 Subject: [geeklog-jp commit] r1231 - trunk/geeklog-1-jp-extended Message-ID: <00163646ccde185fd20464727850@google.com> Author: milk851 Date: Fri Mar 6 04:31:24 2009 New Revision: 1231 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1230の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Fri Mar 6 04:31:24 2009 @@ -1,5 +1,14 @@ $Id$ +2009-03-06 Masuko Koeda + + * 2月8日リリース後に追加修正をしているので、 + バージョンを2.31に上げました。 + 2月8日リリース後の追加修正分は、Ver2.31としてREADMEの更新履歴に + 記載しました。 + ProfessionalCSSに修正等をしたファイルリストは、不必要と判断し + READMEからを削除しました。 + 2009-03-04 mystral-kk * Wikiスタイルで文字化けする問題(Issue #49)に対応しました。 From codesite-noreply @ google.com Fri Mar 6 22:33:03 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 06 Mar 2009 13:33:03 +0000 Subject: [geeklog-jp commit] r1232 - trunk/geeklog-1-jp/system/custom Message-ID: <001636458c8606a88804647353b0@google.com> Author: mystralkk Date: Fri Mar 6 05:32:35 2009 New Revision: 1232 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php Log: magic_quotes_gpcがオンの時に起こりうるバグに対処しました。 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp/system/custom/custom_cellular.php Fri Mar 6 05:32:35 2009 @@ -521,6 +521,15 @@ return $ret; } +// stripslashes(配列対応版) +function _mobile_stripslashes_deep($data) { + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } +} + // urldecode(配列対応版) function _mobile_urldecode_deep($data) { if (is_array($data)) { @@ -536,8 +545,8 @@ $copy = $array; while (list($key, $val) = each($copy)) { if (get_magic_quotes_gpc()) { - $key = stripslashes($key); - $val = stripslashes($val); + $key = _mobile_stripslashes_deep($key); + $val = _mobile_stripslashes_deep($val); } $keyconv = urldecode($key); if( $key != $keyconv ) { From codesite-noreply @ google.com Fri Mar 6 22:38:04 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 06 Mar 2009 13:38:04 +0000 Subject: [geeklog-jp commit] r1233 - trunk/geeklog-1-jp Message-ID: <001636458a86f56cda0464736463@google.com> Author: mystralkk Date: Fri Mar 6 05:37:02 2009 New Revision: 1233 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: r1232の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Fri Mar 6 05:37:02 2009 @@ -1,5 +1,10 @@ $Id$ +2009-03-06 mystral-kk + + * 携帯ハックでmagic_quotes_gpcがオンの時に発生しうる問題に + 対応しました。 + 2009-03-04 mystral-kk * Wikiスタイルで文字化けする問題(Issue #49)に対応しました。 From codesite-noreply @ google.com Fri Mar 6 23:08:09 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 06 Mar 2009 14:08:09 +0000 Subject: [geeklog-jp commit] r1234 - in trunk/geeklog-1-jp/public_html/layout: mobile mobile_3g Message-ID: <000e0cd32982850d9b046473d034@google.com> Author: mystralkk Date: Fri Mar 6 06:07:27 2009 New Revision: 1234 Modified: trunk/geeklog-1-jp/public_html/layout/mobile/functions.php trunk/geeklog-1-jp/public_html/layout/mobile_3g/functions.php Log: 掲示板プラグインをインストールしていない時でもブロックメニューに表示されてし まうバグを修正しました。 Modified: trunk/geeklog-1-jp/public_html/layout/mobile/functions.php ============================================================================== --- trunk/geeklog-1-jp/public_html/layout/mobile/functions.php (original) +++ trunk/geeklog-1-jp/public_html/layout/mobile/functions.php Fri Mar 6 06:07:27 2009 @@ -204,35 +204,53 @@ /* * メニュー */ + $akey = 1; + // ホーム $footer->set_var( 'mn_tohome', '' . $LANG01['68'] . '' ); + '/" accesskey="' . $akey . '">' . $LANG01['68'] . '' ); + $akey ++; + // ログイン/ログアウト if (!empty ($_USER['uid']) && ($_USER['uid'] > 1)) { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['19'] . '' ); + '/users.php?mode=logout" accesskey="' . $akey . '">' . $LANG01['19'] . '' ); } else { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['47'] . '' ); - } + '/users.php?mode=login" accesskey="' . $akey . '">' . $LANG01['47'] . '' ); + } + $akey ++; + // 記事投稿 $footer->set_var( 'mn_submit', '' . $LANG01['71'] . '' ); + '/submit.php?type=story" accesskey="' . $akey . '">' . $LANG01['71'] . '' ); + $akey ++; + // 掲示板 - $footer->set_var( 'mn_forum', '' . "掲示板" ); + $temp = DB_query("SELECT 1 AS cnt FROM {$_TABLES['plugins']} WHERE (pi_name = 'forum') AND (pi_enabled = '1')"); + if (DB_numRows($temp) == 1) { + $footer->set_var( 'mn_forum', '' . "掲 示板" ); + $akey ++; + } + // 記事一覧 $footer->set_var( 'mn_directory', '' . $LANG01['117'] . '' ); + '/directory.php" accesskey="' . $akey . '">' . $LANG01['117'] . '' ); + $akey ++; + // 検索 $footer->set_var( 'mn_search', '' . $LANG01['75'] . '' ); + '/search.php" accesskey="' . $akey . '">' . $LANG01['75'] . '' ); + $akey ++; + // ブロック $footer->set_var( 'mn_block', '' . $LANG01['12'] . '' ); - + '/mobileblocks.php" accesskey="' . $akey . '">' . $LANG01['12'] . '' ); + $akey ++; + // Call to plugins to set template variables in the footer PLG_templateSetVars( 'footer', $footer ); Modified: trunk/geeklog-1-jp/public_html/layout/mobile_3g/functions.php ============================================================================== --- trunk/geeklog-1-jp/public_html/layout/mobile_3g/functions.php (original) +++ trunk/geeklog-1-jp/public_html/layout/mobile_3g/functions.php Fri Mar 6 06:07:27 2009 @@ -204,35 +204,53 @@ /* * メニュー */ + $akey = 1; + // ホーム $footer->set_var( 'mn_tohome', '' . $LANG01['68'] . '' ); + '/" accesskey="' . $akey . '">' . $LANG01['68'] . '' ); + $akey ++; + // ログイン/ログアウト if (!empty ($_USER['uid']) && ($_USER['uid'] > 1)) { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['19'] . '' ); + '/users.php?mode=logout" accesskey="' . $akey . '">' . $LANG01['19'] . '' ); } else { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['47'] . '' ); - } + '/users.php?mode=login" accesskey="' . $akey . '">' . $LANG01['47'] . '' ); + } + $akey ++; + // 記事投稿 $footer->set_var( 'mn_submit', '' . $LANG01['71'] . '' ); + '/submit.php?type=story" accesskey="' . $akey . '">' . $LANG01['71'] . '' ); + $akey ++; + // 掲示板 - $footer->set_var( 'mn_forum', '' . "掲示板" ); + $temp = DB_query("SELECT 1 AS cnt FROM {$_TABLES['plugins']} WHERE (pi_name = 'forum') AND (pi_enabled = '1')"); + if (DB_numRows($temp) == 1) { + $footer->set_var( 'mn_forum', '' . "掲 示板" ); + $akey ++; + } + // 記事一覧 $footer->set_var( 'mn_directory', '' . $LANG01['117'] . '' ); + '/directory.php" accesskey="' . $akey . '">' . $LANG01['117'] . '' ); + $akey ++; + // 検索 $footer->set_var( 'mn_search', '' . $LANG01['75'] . '' ); + '/search.php" accesskey="' . $akey . '">' . $LANG01['75'] . '' ); + $akey ++; + // ブロック $footer->set_var( 'mn_block', '' . $LANG01['12'] . '' ); - + '/mobileblocks.php" accesskey="' . $akey . '">' . $LANG01['12'] . '' ); + $akey ++; + // Call to plugins to set template variables in the footer PLG_templateSetVars( 'footer', $footer ); From codesite-noreply @ google.com Fri Mar 6 23:12:09 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 06 Mar 2009 14:12:09 +0000 Subject: [geeklog-jp commit] r1235 - trunk/geeklog-1-jp Message-ID: <000e0cd10626dc368d046473defd@google.com> Author: mystralkk Date: Fri Mar 6 06:09:44 2009 New Revision: 1235 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: r1234の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Fri Mar 6 06:09:44 2009 @@ -2,6 +2,12 @@ 2009-03-06 mystral-kk + * 携帯ハックで掲示板プラグインをインストールしていな + いときでもブロックメニューに表示される問題に対応し + ました。 + +2009-03-06 mystral-kk + * 携帯ハックでmagic_quotes_gpcがオンの時に発生しうる問題に 対応しました。 From codesite-noreply @ google.com Sat Mar 7 11:01:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 07 Mar 2009 02:01:50 +0000 Subject: [geeklog-jp commit] r1236 - in trunk/geeklog-1-jp-extended: . public_html/layout/WAIproCSS Message-ID: <001636457858e4b50604647dc86c@google.com> Author: milk851 Date: Fri Mar 6 18:00:42 2009 New Revision: 1236 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css Log: バージョン表記を間違っていたので訂正しました。 修正点をCHANGES.jpへ記載しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Fri Mar 6 18:00:42 2009 @@ -1,10 +1,14 @@ $Id$ +2009-03-07 Masuko Koeda + + * バージョン表記を間違っていたので訂正しました。 + 2009-03-06 Masuko Koeda * 2月8日リリース後に追加修正をしているので、 - バージョンを2.31に上げました。 - 2月8日リリース後の追加修正分は、Ver2.31としてREADMEの更新履歴に + バージョンを2.3.1に上げました。 + 2月8日リリース後の追加修正分は、Ver2.3.1としてREADMEの更新履歴に 記載しました。 ProfessionalCSSに修正等をしたファイルリストは、不必要と判断し READMEからを削除しました。 Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README (original) +++ trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/README Fri Mar 6 18:00:42 2009 @@ -1,6 +1,6 @@ /*============================================================================== タイトル : Geeklog用WAIproCSSテーマ - バージョン: 2.31 for Geeklog1.5.1 + バージョン: 2.3.1 for Geeklog1.5.1 著者 : Hisakatsu Katoh as ネット素浪人 (contact is katoq.AT.b-lines.DOT.jp) Masuko koeda as みるく(http://white-stage.com/) 説明 : Geeklog用のテーマ「ProfessionalCSS」を基本に, アクセシィビリ ティに配慮した「WAIproCSS」です。 @@ -364,7 +364,7 @@ + 追加 - 削除 -■Ver.2.31(2009-3-6) +■Ver.2.3.1(2009-3-6) ・ページの先頭へ戻るのアイコンもリンク範囲に含めました。 (*footer.thtml,*/css/layout.css,*/images/css/icon_pagetop.gif) ・背景画像/navbar/images/tabrightI.gifと/navbar/images/tabrightJ.gifを幅 の大きい物に差し替えました。(画像ジローさん提供 )(*/navbar/images/tabrightI.gif,*/navbar/images/tabrightJ.gif) ・ユニバーサルセレクタでの初期化をやめ、必要なセレクタのみを初期化しまし た。(*/css/default.css) Modified: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css (original) +++ trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css Fri Mar 6 18:00:42 2009 @@ -10,8 +10,8 @@ /*============================================================================== [INFO] カスタムテーマスタイルシート(雛型) - WAIproCSSver.2.31テーマをベースとしたカスタムテーマの作成を補助す るCSSファイル(雛型)です。 - WAIproCSSver.2.31テーマの背景を指定します。 + WAIproCSSver.2.3.1テーマをベースとしたカスタムテーマの作成を補助す るCSSファイル(雛型)です。 + WAIproCSSver.2.3.1テーマの背景を指定します。 以下では、サンプルに例としてすべて背景色と枠線の色を白で設定してお りますが、 (ナビゲーションの文字色は黒で設定しています)   変更される時は、出来る限りコントラストに配慮した配色及び From codesite-noreply @ google.com Mon Mar 9 03:38:34 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 08 Mar 2009 18:38:34 +0000 Subject: [geeklog-jp commit] r1237 - trunk/geeklog-1-jp/system/custom Message-ID: <001485f3be6248638004649fd305@google.com> Author: tatsumi.imai Date: Sun Mar 8 11:20:32 2009 New Revision: 1237 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php Log: ケータイハックで以下の2点を修正。 ページ内リンクを参照するとセッションが切れる ・CUSTOM_refresh()でページ内リンクの処理をしていなかったため。処理を追加しま した。 ブロックメニューで表示されるリンクにセッションIDがない ・_mobile_add_sessid()でリンクの抽出に使っているパターンがURLの引用符として 二重引用符(")しか考慮していないのに、CUSTOM_MOBILE_blockMenu()ではURLを引用 符(')でくくってしまっているため。 ・CUSTOM_MOBILE_blockMenu()は他に合わせて二重引用符を使うように修正。 ・_mobile_add_sessid()の正規表現を変更し、_mobile_session_callback()で終端に 二重引用符を付加していた部分の処理を修正して、正規表現に一致したものを付加す るように修正。 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp/system/custom/custom_cellular.php Sun Mar 8 11:20:32 2009 @@ -8,7 +8,7 @@ * Geeklog hack for cellular phones. * Copyright (c) 2006 - 2008 Tatsumi Imai(http://im-ltd.ath.cx) * License: GPL v2 or later - * Time-stamp: <2008-07-14 23:42:55 imai> + * Time-stamp: <2009-03-09 03:13:44 imai> */ // 設定 @@ -256,9 +256,17 @@ function CUSTOM_refresh($url) { global $LANG05,$CUSTOM_MOBILE_CONF; - $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', - mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); if(CUSTOM_MOBILE_is_cellular()) { + // ページ内リンクを探す + $pos = strpos($url, '#'); + if($pos === false) { + //CUSTOM_MOBILE_debug("not matched: " . $url); + $link = ""; + } else { + //CUSTOM_MOBILE_debug("matched: " . $url); + $link = substr($url, $pos); + $url = substr($url, 0, $pos); + } if($CUSTOM_MOBILE_CONF['refresh_use_location']) { $sepa = '?'; if (strpos($url, '?') > 0) @@ -267,14 +275,21 @@ $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID; + $location_url = 'Location: ' . $url . $sepa . SID . link; header( $location_url ); exit; } else { + $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', + mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); + $sepa = '?'; + if (strpos($url, '?') > 0) { + $sepa = '&'; + } + $location_url = $url . $sepa . SID . link; return "\n" . "$msg" . - "$msg\n"; + "$msg\n"; } } else { return "\n"; @@ -458,8 +473,8 @@ global $_CONF; // ページ内のタグ、
      タグのurlを抽出 - $pat1 = '!( 0 ) { - $blockmenu .= "
    • " . - $A['title'] . "
    • \n"; + $blockmenu .= "
    • " . + $A['title'] . "
    • \n"; } } $blockmenu .= "
    \n"; From codesite-noreply @ google.com Mon Mar 9 04:18:39 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 08 Mar 2009 19:18:39 +0000 Subject: [geeklog-jp commit] r1238 - trunk/geeklog-1-jp-extended/system/custom Message-ID: <000e0cd28d52a244260464a06231@google.com> Author: tatsumi.imai Date: Sun Mar 8 11:29:56 2009 New Revision: 1238 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Log: ケータイハックで以下の2点を修正。 ページ内リンクを参照するとセッションが切れる ・CUSTOM_refresh()でページ内リンクの処理をしていなかったため。処理を追加しま した。 ブロックメニューで表示されるリンクにセッションIDがない ・_mobile_add_sessid()でリンクの抽出に使っているパターンがURLの引用符として 二重引用符(")しか考慮していないのに、CUSTOM_MOBILE_blockMenu()ではURLを引用 符(')でくくってしまっているため。 ・CUSTOM_MOBILE_blockMenu()は他に合わせて二重引用符を使うように修正。 ・_mobile_add_sessid()の正規表現を変更し、_mobile_session_callback()で終端に 二重引用符を付加していた部分の処理を修正して、正規表現に一致したものを付加す るように修正。 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Sun Mar 8 11:29:56 2009 @@ -8,8 +8,8 @@ * Geeklog hack for cellular phones. * Copyright (c) 2006 - 2008 Tatsumi Imai(http://im-ltd.ath.cx) * License: GPL v2 or later - * Time-stamp: <2008-07-14 23:42:55 imai> - */ + * Time-stamp: <2009-03-09 03:13:44 imai> + * */ // 設定 $CUSTOM_MOBILE_CONF['debug'] = false; @@ -256,25 +256,40 @@ function CUSTOM_refresh($url) { global $LANG05,$CUSTOM_MOBILE_CONF; - $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', - mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); if(CUSTOM_MOBILE_is_cellular()) { + // ページ内リンクを探す + $pos = strpos($url, '#'); + if($pos === false) { + //CUSTOM_MOBILE_debug("not matched: " . $url); + $link = ""; + } else { + //CUSTOM_MOBILE_debug("matched: " . $url); + $link = substr($url, $pos); + $url = substr($url, 0, $pos); + } if($CUSTOM_MOBILE_CONF['refresh_use_location']) { $sepa = '?'; if (strpos($url, '?') > 0) { - //2009-02-19 Kunitsuji update + // 2009-02-19 Kunitsuji update $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID; + $location_url = 'Location: ' . $url . $sepa . SID . link; header( $location_url ); exit; } else { + $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', + mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); + $sepa = '?'; + if (strpos($url, '?') > 0) { + $sepa = '&'; + } + $location_url = $url . $sepa . SID . link; return "\n" . "$msg" . - "$msg\n"; + "$msg\n"; } } else { return "\n"; @@ -468,8 +483,8 @@ global $_CONF; // ページ内のタグ、タグのurlを抽出 - $pat1 = '!( Author: tatsumi.imai Date: Mon Mar 9 10:06:18 2009 New Revision: 1239 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php Log: PHPの終了タグの欠如を修正 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp/system/custom/custom_cellular.php Mon Mar 9 10:06:18 2009 @@ -825,3 +825,5 @@ . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); + +?> From codesite-noreply @ google.com Tue Mar 10 02:31:52 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 09 Mar 2009 17:31:52 +0000 Subject: [geeklog-jp commit] r1240 - trunk/geeklog-1-jp-extended/system/custom Message-ID: <000e0cd2de3099315b0464b30243@google.com> Author: tatsumi.imai Date: Mon Mar 9 10:14:44 2009 New Revision: 1240 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Log: geeklog-1-jpのr1223とr1232の修正を取り込みました。 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Mon Mar 9 10:14:44 2009 @@ -8,8 +8,8 @@ * Geeklog hack for cellular phones. * Copyright (c) 2006 - 2008 Tatsumi Imai(http://im-ltd.ath.cx) * License: GPL v2 or later - * Time-stamp: <2009-03-09 03:13:44 imai> - * */ + * Time-stamp: <2009-03-09 03:13:44 imai> + */ // 設定 $CUSTOM_MOBILE_CONF['debug'] = false; @@ -299,52 +299,52 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - array('@<[ ]*table[^>]*?>@si', ''), - array('@<[ ]*/table[^>]*?>@si', ''), - array('@<[ ]*thead[^>]*?>@si', ''), - array('@<[ ]*/thead[^>]*?>@si', ''), - array('@<[ ]*tbody[^>]*?>@si', ''), - array('@<[ ]*/tbody[^>]*?>@si',''), - array('@<[ ]*tfoot[^>]*?>@si', ''), - array('@<[ ]*/tfoot[^>]*?>@si', ''), - array('@<[ ]*tr[^>]*?>@si', ''), - array('@<[ ]*/tr[^>]*?>@si', '
    '), - array('@<[ ]*th[^>]*?>@si', ''), - array('@<[ ]*/th[^>]*?>@si', ' '), - array('@<[ ]*td[^>]*?>@si', ''), - array('@<[ ]*/td[^>]*?>@si', ' ') - ); + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', +); // コメント削除用のパターン配列 $_mobile_comment = array( - array('@@sm', ''), - array('@@', '') - ); + '@@sm' => '', + '@@' => '', +); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - array('@<[ ]*div[^>]*?>@si', ''), - array('@<[ ]*/div[^>]*?>@si', "
    \n"), - // cut style - array('@style="[^"].*?"@i', ''), - // cut class - array('@class="[^"].*?"@i', ''), - // cut embed - array('@]*?>@si', ''), - ); + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', +); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - array('@@', ''), - array('@.*?@ms', ''), - ); + '@@' => '', + '@.*?@ms' => '', +); @@ -360,56 +360,46 @@ // モバイル用のコンテンツを表示、PC用のコンテンツを非表示 // これは単独で一番先に実行する必要がある - if($CUSTOM_MOBILE_CONF['use_mobile_content']) { - for($i = 0; $i < count($_mobile_content); $i++) { - $search[$i] = $_mobile_content[$i][0]; - $replace[$i] = $_mobile_content[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { + $content = preg_replace( + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある - if($CUSTOM_MOBILE_CONF['cut_comment']) { - for($i = 0; $i < count($_mobile_comment); $i++) { - $search[$i] = $_mobile_comment[$i][0]; - $replace[$i] = $_mobile_comment[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['cut_comment']) { + $content = preg_replace( + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { - for($i = 0; $i < count($_mobile_table); $i++) { - $search[$i] = $_mobile_table[$i][0]; - $replace[$i] = $_mobile_table[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { - for($i = 0; $i < count($_mobile_3g); $i++) { - $search[$i] = $_mobile_3g[$i][0]; - $replace[$i] = $_mobile_3g[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 - if($CUSTOM_MOBILE_CONF['resize_image']) { + if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); - for($i = 0; $i < count($_mobile_images); $i++) { - $search[$i] = $_mobile_images[$i][0]; - $replace[$i] = $_mobile_images[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 - if($CUSTOM_MOBILE_CONF['convert_to_sjis']) { + if ($CUSTOM_MOBILE_CONF['convert_to_sjis']) { $charset ='Shift_JIS'; } else { $charset = $CUSTOM_MOBILE_CONF['host_charset']; @@ -430,7 +420,7 @@ '@
  • @i', '@^\s*
    ([\s\n]*)
    @mi', '@^\s*
  • ([\s\n]*)
  • @mi', - '@[ ]*? @', + '@\s*? @', '@\s*\n+ @ m', '@((\s)*
    )+ @ sm', ); @@ -547,21 +537,38 @@ return $ret; } +// stripslashes(配列対応版) +function _mobile_stripslashes_deep($data) { + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } +} + +// urldecode(配列対応版) +function _mobile_urldecode_deep($data) { + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } +} + // 入力をURLデコードする function _mobile_prepare_input(&$array) { reset($array); $copy = $array; while (list($key, $val) = each($copy)) { if (get_magic_quotes_gpc()) { - $key = stripslashes($key); - $val = stripslashes($val); + $key = _mobile_stripslashes_deep($key); + $val = _mobile_stripslashes_deep($val); } $keyconv = urldecode($key); if( $key != $keyconv ) { unset($array[$key]); } - $array[$keyconv] = - urldecode($val); + $array[$keyconv] = _mobile_urldecode_deep($val); } reset($array); } @@ -653,8 +660,8 @@ SEC_hasAccess( $A['owner_id'], $A['group_id'], $A['perm_owner'], $A['perm_group'], $A['perm_members'], $A['perm_anon'] ) > 0 ) { - $blockmenu .= "
  • " . - $A['title'] . "
  • \n"; + $blockmenu .= "
  • " . + $A['title'] . "
  • \n"; } } $blockmenu .= "\n"; @@ -811,13 +818,12 @@ // 画像タグのパターン配列 $_mobile_images = array( - array('@<([ ]*img.*?)width="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)height="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)src="([^"]*?)"(.*?)>@si', - '<$1src="' . $_CONF['site_url'] . RESIZER . '?image=$2&size='. - $CUSTOM_MOBILE_CONF['image_size'] . '&quality=' . - $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . - $_CONF['site_url'] . '"$3 ' . XHTML . '>'), - ); + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', +); ?> From codesite-noreply @ google.com Tue Mar 10 02:35:54 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 09 Mar 2009 17:35:54 +0000 Subject: [geeklog-jp commit] r1241 - trunk/geeklog-1-jp-extended Message-ID: <00163641792b055c000464b31138@google.com> Author: tatsumi.imai Date: Mon Mar 9 10:28:24 2009 New Revision: 1241 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: 2009-03-10 im-ltd * custom_cellular.phpにgeeklog-1-jpのr1223とr1232の修正(いずれも mistral-kkさん)を取り込みました。 現時点でgeeklog-1-jpと同期しています。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Mon Mar 9 10:28:24 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-10 im-ltd + * custom_cellular.phpにgeeklog-1-jpのr1223とr1232の修正(いずれも mistral-kkさん)を取り込みました。 + 現時点でgeeklog-1-jpと同期しています。 + 2009-03-07 Masuko Koeda * バージョン表記を間違っていたので訂正しました。 From codesite-noreply @ google.com Tue Mar 10 18:15:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 09:15:36 +0000 Subject: [geeklog-jp commit] r1243 - trunk/geeklog-1-jp-extended Message-ID: <0016e64f6820a650f30464c0319b@google.com> Author: mystralkk Date: Tue Mar 10 02:01:26 2009 New Revision: 1243 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1242の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Mar 10 02:01:26 2009 @@ -1,8 +1,14 @@ $Id$ +2009-03-10 mystral-kk + + * custom_mail_jp.phpをGeeklog-1.5.2に対応させました。 + 2009-03-10 im-ltd - * custom_cellular.phpにgeeklog-1-jpのr1223とr1232の修正(いずれも mistral-kkさん)を取り込みました。 - 現時点でgeeklog-1-jpと同期しています。 + + * custom_cellular.phpにgeeklog-1-jpのr1223とr1232の修正(いずれも + mystral-kkさん)を取り込みました。 + 現時点でgeeklog-1-jpと同期しています。 2009-03-07 Masuko Koeda From codesite-noreply @ google.com Tue Mar 10 18:19:38 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 09:19:38 +0000 Subject: [geeklog-jp commit] r1242 - trunk/geeklog-1-jp-extended/system/custom Message-ID: <000e0cd1d7681b505c0464c0407d@google.com> Author: mystralkk Date: Tue Mar 10 01:55:32 2009 New Revision: 1242 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_mail_jp.php Log: r1216の更新をgeeklog-1-jp-extendedにも適用します。 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_mail_jp.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/custom/custom_mail_jp.php (original) +++ trunk/geeklog-1-jp-extended/system/custom/custom_mail_jp.php Tue Mar 10 01:55:32 2009 @@ -11,7 +11,7 @@ // メールに戻します。 // @author mystral-kk - geeklog AT mystral-kk DOT net // @license LGPL -// @version 2008-09-26 +// @version 2009-02-27 // @note このハックが不要な場合は,system/lib-custom.phpの中の // require_once('custom/custom_mail_jp.php'); // を削除してください。 @@ -261,14 +261,16 @@ $from = COM_formatEmailAddress($_CONF['site_name'], $_CONF['site_mail']); } - // ヘッダをエスケープ - list($temp_to_comment, $temp_to_address) = CUSTOM_splitAddress($to); - $to = CUSTOM_formatEmailAddress($temp_to_comment, $temp_to_address); - list($temp_cc_comment, $temp_cc_address) = CUSTOM_splitAddress($cc); - $cc = CUSTOM_formatEmailAddress($temp_cc_comment, $temp_cc_address); - list($temp_from_comment, $temp_from_address) = CUSTOM_splitAddress($from); - $from = CUSTOM_formatEmailAddress($temp_from_comment, $temp_from_address); - $subject = CUSTOM_emailEscape($subject); + // ヘッダをエスケープ(1.5.2では、この時点でエスケープ済み) + if (version_compare(VERSION, '1.5.2') < 0) { + list($temp_to_comment, $temp_to_address) = CUSTOM_splitAddress($to); + $to = CUSTOM_formatEmailAddress($temp_to_comment, $temp_to_address); + list($temp_cc_comment, $temp_cc_address) = CUSTOM_splitAddress($cc); + $cc = CUSTOM_formatEmailAddress($temp_cc_comment, $temp_cc_address); + list($temp_from_comment, $temp_from_address) = CUSTOM_splitAddress($from); + $from = CUSTOM_formatEmailAddress($temp_from_comment, $temp_from_address); + $subject = CUSTOM_emailEscape($subject); + } // 本文をエスケープ $message = CUSTOM_convertEncoding($message, CUSTOM_MAIL_ENCODING); From codesite-noreply @ google.com Tue Mar 10 23:26:03 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 14:26:03 +0000 Subject: [geeklog-jp commit] r1244 - in trunk/geeklog-1-jp/public_html/layout/professional: admin/config article Message-ID: <000e0cd31144f07aa80464c48746@google.com> Author: tacahi Date: Tue Mar 10 07:24:49 2009 New Revision: 1244 Modified: trunk/geeklog-1-jp/public_html/layout/professional/admin/config/configuration.thtml trunk/geeklog-1-jp/public_html/layout/professional/article/printable.thtml Log: Geeklog 1.5.2のマージのもれを改めてコミットします。 Modified: trunk/geeklog-1-jp/public_html/layout/professional/admin/config/configuration.thtml ============================================================================== --- trunk/geeklog-1-jp/public_html/layout/professional/admin/config/configuration.thtml (original) +++ trunk/geeklog-1-jp/public_html/layout/professional/admin/config/configuration.thtml Tue Mar 10 07:24:49 2009 @@ -1,6 +1,6 @@ - + @@ -16,7 +16,7 @@ {change_block} - + Modified: trunk/geeklog-1-jp/public_html/layout/professional/article/printable.thtml ============================================================================== --- trunk/geeklog-1-jp/public_html/layout/professional/article/printable.thtml (original) +++ trunk/geeklog-1-jp/public_html/layout/professional/article/printable.thtml Tue Mar 10 07:24:49 2009 @@ -3,7 +3,7 @@ {page_title} - +

    {story_title}

    {story_date}

    {lang_contributedby} {story_author} From codesite-noreply @ google.com Tue Mar 10 23:30:05 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 14:30:05 +0000 Subject: [geeklog-jp commit] r1245 - trunk/geeklog-1-jp Message-ID: <001636458d885bd3fa0464c4965f@google.com> Author: tacahi Date: Tue Mar 10 07:27:49 2009 New Revision: 1245 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: 以下の修正を記録しました。 Geeklog 1.5.2のマージの洩れを修正しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Tue Mar 10 07:27:49 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-10 Takahiro Kambe + + * Geeklog 1.5.2のマージの洩れを修正しました。 + 2009-03-06 mystral-kk * 携帯ハックで掲示板プラグインをインストールしていな @@ -165,7 +169,7 @@ * インストール時にエラーが発生した場合、COM_errorLogが未定義のため インストールが中断するエラーに対応しました。 - + 2008-10-29 hirorongl * 携帯対応でrefreshにLocationヘッダの使用の有無を制御できるように From codesite-noreply @ google.com Tue Mar 10 23:45:09 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 14:45:09 +0000 Subject: [geeklog-jp commit] r1246 - in trunk/geeklog-1-jp-extended/public_html/admin: . install install/language plugins/cale... Message-ID: <0016364c637535b4c50464c4cce9@google.com> Author: tacahi Date: Tue Mar 10 07:43:53 2009 New Revision: 1246 Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/config-install.php trunk/geeklog-1-jp-extended/public_html/admin/install/index.php trunk/geeklog-1-jp-extended/public_html/admin/install/language/german.php trunk/geeklog-1-jp-extended/public_html/admin/install/language/hebrew_utf-8.php trunk/geeklog-1-jp-extended/public_html/admin/install/language/polish.php trunk/geeklog-1-jp-extended/public_html/admin/moderation.php trunk/geeklog-1-jp-extended/public_html/admin/plugins.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/calendar/install.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/index.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/install.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/index.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/install.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/spamx/install.php trunk/geeklog-1-jp-extended/public_html/admin/plugins/staticpages/install.php trunk/geeklog-1-jp-extended/public_html/admin/story.php trunk/geeklog-1-jp-extended/public_html/admin/syndication.php trunk/geeklog-1-jp-extended/public_html/admin/topic.php trunk/geeklog-1-jp-extended/public_html/admin/user.php Log: Geeklog 1.5.2のマージの洩れを修正します。 Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/config-install.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/install/config-install.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/config-install.php Tue Mar 10 07:43:53 2009 @@ -8,7 +8,7 @@ // | | // | Initial configuration setup. | // +---------------------------------------------------------------------------+ -// | Copyright (C) 2007-2008 by the following authors: | +// | Copyright (C) 2007-2009 by the following authors: | // | | // | Authors: Aaron Blankstein - kantai AT gmail DOT com | // +---------------------------------------------------------------------------+ @@ -51,7 +51,7 @@ $c->add('site_slogan','','text',0,0,NULL,70,TRUE); $c->add('microsummary_short','GL: ','text',0,0,NULL,80,TRUE); $c->add('site_disabled_msg','Geeklog Site is down. Please come back soon.','text',0,0,NULL,510,TRUE); - $c->add('copyrightyear','2008','text',0,0,NULL,1440,FALSE); + $c->add('copyrightyear',date('Y'),'text',0,0,NULL,1440,FALSE); $c->add('url_rewrite',FALSE,'select',0,0,1,1800,TRUE); $c->add('fs_mail', NULL, 'fieldset', 0, 1, NULL, 0, TRUE); Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/index.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/install/index.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/index.php Tue Mar 10 07:43:53 2009 @@ -8,7 +8,7 @@ // | | // | Geeklog installation script. | // +---------------------------------------------------------------------------+ -// | Copyright (C) 2000-2008 by the following authors: | +// | Copyright (C) 2000-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Mark Limburg - mlimburg AT users DOT sourceforge DOT net | @@ -36,8 +36,6 @@ // | You don't need to change anything in this file. | // | Please read docs/install.html which describes how to install Geeklog. | // +---------------------------------------------------------------------------+ -// -// $Id: index.php,v 1.55 2008/09/06 14:46:24 dhaun Exp $ // this should help expose parse errors even when // display_errors is set to Off in php.ini @@ -50,7 +48,7 @@ define("LB", "\n"); } if (!defined('VERSION')) { - define('VERSION', '1.5.1'); + define('VERSION', '1.5.2'); } if (!defined('XHTML')) { define('XHTML', ' /'); @@ -412,8 +410,14 @@ $site_admin_url = isset($_POST['site_admin_url']) ? $_POST['site_admin_url'] : 'http://' . $_SERVER['HTTP_HOST'] . preg_replace('/\/install.*/', '', $_SERVER['PHP_SELF']) ; $host_name = explode(':', $_SERVER['HTTP_HOST']); $host_name = $host_name[0]; - $site_mail = isset($_POST['site_mail']) ? $_POST['site_mail'] : ($_CONF['site_mail'] == 'admin @ example.com' ? $_CONF['site_mail'] : 'admin@' . $host_name); - $noreply_mail = isset($_POST['noreply_mail']) ? $_POST['noreply_mail'] : ($_CONF['noreply_mail'] == 'noreply @ example.com' ? $_CONF['noreply_mail'] : 'noreply@' . $host_name); + if (empty($_CONF['site_mail'])) { + $_CONF['site_mail'] = 'admin @ example.com'; + } + $site_mail = isset($_POST['site_mail']) ? $_POST['site_mail'] : ($_CONF['site_mail'] != 'admin @ example.com' ? $_CONF['site_mail'] : 'admin@' . $host_name); + if (empty($_CONF['noreply_mail'])) { + $_CONF['noreply_mail'] = 'noreply @ example.com'; + } + $noreply_mail = isset($_POST['noreply_mail']) ? $_POST['noreply_mail'] : ($_CONF['noreply_mail'] != 'noreply @ example.com' ? $_CONF['noreply_mail'] : 'noreply@' . $host_name); if (isset($_POST['utf8']) && ($_POST['utf8'] == 'on')) { $utf8 = true; } else { @@ -665,7 +669,7 @@ . '

    ' . $LANG_INSTALL[91] . '

    '; } else { - $old_versions = array('1.2.5-1','1.3','1.3.1','1.3.2','1.3.2-1','1.3.3','1.3.4','1.3.5','1.3.6','1.3.7','1.3.8','1.3.9','1.3.10','1.3.11','1.4.0','1.4.1','1.5.0'); + $old_versions = array('1.2.5-1','1.3','1.3.1','1.3.2','1.3.2-1','1.3.3','1.3.4','1.3.5','1.3.6','1.3.7','1.3.8','1.3.9','1.3.10','1.3.11','1.4.0','1.4.1','1.5.0','1.5.1'); if (empty($curv)) { // If we were unable to determine the current GL // version is then ask the user what it is @@ -1027,6 +1031,7 @@ case 'mysql': $test = array( + '1.5.2' => array("SELECT value FROM {$_TABLES['vars']} WHERE name = 'database_version'", '1.5.2'), '1.5.1' => array("SELECT name FROM {$_TABLES['vars']} WHERE name = 'database_version'", 'database_version'), '1.5.0' => array("DESCRIBE {$_TABLES['storysubmission']} bodytext",''), '1.4.1' => array("SELECT ft_name FROM {$_TABLES['features']} WHERE ft_name = 'syndication.edit'", 'syndication.edit'), @@ -1049,6 +1054,7 @@ case 'mssql': $test = array( + '1.5.2' => array("SELECT value FROM {$_TABLES['vars']} WHERE name = 'database_version'", '1.5.2'), '1.5.1' => array("SELECT name FROM {$_TABLES['vars']} WHERE name = 'database_version'", 'database_version'), '1.5.0' => array("SELECT c.name FROM syscolumns c JOIN sysobjects o ON o.id = c.id WHERE c.name='bodytext' AND o.name='{$_TABLES['storysubmission']}'",'bodytext'), '1.4.1' => array("SELECT ft_name FROM {$_TABLES['features']} WHERE ft_name = 'syndication.edit'", 'syndication.edit') @@ -1730,6 +1736,14 @@ $_SQL = ''; break; + case '1.5.1': + require_once $_CONF['path'] . 'sql/updates/' . $_DB_dbms . '_1.5.1_to_1.5.2.php'; + INST_updateDB($_SQL); + + $current_gl_version = '1.5.2'; + $_SQL = ''; + break; + default: $done = true; } @@ -1922,7 +1936,7 @@
    ' . $LANG_INSTALL[2] . ' ' . LB; // Show the language drop down selection on the first page -if ($mode == 'check_permissions') { +if (empty($mode) || ($mode == 'check_permissions')) { $display .='' . LB; $_PATH = array('dbconfig', 'public_html'); Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/language/german.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/install/language/german.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/language/german.php Tue Mar 10 07:43:53 2009 @@ -8,7 +8,7 @@ // | | // | German language file for the Geeklog installation script | // +---------------------------------------------------------------------------+ -// | Copyright (C) 2000-2008 by the following authors: | +// | Copyright (C) 2000-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Mark Limburg - mlimburg AT users DOT sourceforge DOT net | @@ -33,8 +33,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: german.php,v 1.9 2008/05/28 18:46:52 dhaun Exp $ // +---------------------------------------------------------------------------+ @@ -97,7 +95,7 @@ 44 => 'Optionale Einstellungen', 45 => 'URL der Website', 46 => '(ohne Slash am Ende)', - 47 => 'Pfad f?r das "admin"-Verzeichnis', + 47 => 'URL f. "admin"-Verzeichnis', 48 => 'Website-Email-Adresse', 49 => '"No Reply"-Email-Adresse', 50 => 'Installieren', Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/language/hebrew_utf-8.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/install/language/hebrew_utf-8.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/language/hebrew_utf-8.php Tue Mar 10 07:43:53 2009 @@ -148,25 +148,25 @@ 0 => '?????? ??????', 1 => '?????? ?? Geeklog ', 2 => ' ??????!', - 3 => '?? ?????, ?????? ?????? ?? ', - 4 => ' Geeklog. ??? ??? ??? ????? ?? ????? ?????? ????.', + 3 => '?? ?????, ?????? ', + 4 => ' Geeklog. ??? ??? ??? ??? ????? ?? ????? ?????? ????.', 5 => '??? ??????? ???? ?-Geeklog ???? ????, ??? ?????? ?????? ??:', 6 => '?? ?????:', 7 => 'Admin', 8 => '?????:', 9 => 'password', 10 => '????? ?????', - 11 => '?? ?????', + 11 => '?? ????? ????', 12 => '?????', - 13 => '???? ?? ????? ?? ?????? ?????,', - 14 => '????? ??', - 15 => '????? ??????.', - 16 => '????? ?????? ??', - 17 => '???', - 18 => '????? ??', + 13 => '????? ?? ????? ?? ?? ?????? ??????,', + 14 => '????? ?-', + 15 => '?? ????? ??????.', + 16 => '????? ?? ??????? ??', + 17 => '??? ??', + 18 => '????? ?:', 19 => '???? ??: ??? ?? ????? ???? ??????, ????? ????? ??? ?? ??????? ????? ?????? ??? ??? ???? ?? ????? ????. ?? ?????? ?? ????? ??? ?? ??? NewAdmin ??????? ??? password', - 20 => '?????', - 21 => '??????' + 20 => '?????? ??', + 21 => '????? ??' ); // +---------------------------------------------------------------------------+ Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/language/polish.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/install/language/polish.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/language/polish.php Tue Mar 10 07:43:53 2009 @@ -95,12 +95,12 @@ 42 => 'Has?o do Bazy Danych', 43 => 'Prefix Tabeli w Bazie Danych', 44 => 'Ustawienia Opcjonalne', - 45 => 'Site URL', - 46 => '(No trailing slash)', - 47 => 'Admin Directory Path', - 48 => 'Site Email', - 49 => 'Site No-Reply Email', - 50 => 'Install', + 45 => 'Adres URL strony', + 46 => '(Bez ko?cowego slasha)', + 47 => '?cie?ka do katalogu administratora', + 48 => 'Adres email strony', + 49 => 'Bezzwrotny adres email strony', + 50 => 'Instaluj', 51 => 'Wymagana baza MySQL 3.23.2', 52 => 'Sorry, but Geeklog requires at least MySQL 3.23.2 to run (you have version ', 53 => '). Please upgrade your MySQL install or ask your hosting service to do it for you.', @@ -153,21 +153,21 @@ 1 => 'Instalacja Geeklog-a ', 2 => ' zako?czona!', 3 => 'Gratulacje, pomy?lnie ', - 4 => ' Geeklog-a. Please take a minute to read the information displayed below.', + 4 => ' Geeklog-a. Prosz? po?wi?ci? chwil? na przeczytanie informacji poni?ej.', 5 => 'Aby zalogowa? si? prosz? u?y? nast?puj?cego konta:', 6 => 'U?ytkownik:', 7 => 'Admin', 8 => 'Has?o:', 9 => 'password', - 10 => 'Security Warning', - 11 => 'Don\'t forget to do', - 12 => 'things', + 10 => 'UWAGA!', + 11 => 'Nie zapomnij o ', + 12 => 'rzeczach', 13 => 'Usu? lub zmie? nazw? katalogu z plikami instalacyjnymi,', 14 => 'Zmie? has?o dla konta', 15 => '.', - 16 => 'Set permissions on', - 17 => 'and', - 18 => 'back to', + 16 => 'Zmie? atrybuty dost?pu do plik?w ', + 17 => 'i', + 18 => 'z powrotem na', 19 => 'Note: Because the security model has been changed, we have created a new account with the rights you need to administer your new site. The username for this new account is NewAdmin and the password is password', 20 => 'zainstalowano', 21 => 'aktualizowano' Modified: trunk/geeklog-1-jp-extended/public_html/admin/moderation.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/moderation.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/moderation.php Tue Mar 10 07:43:53 2009 @@ -667,17 +667,7 @@ $display = ''; $display .= COM_siteHeader ('menu', $LANG29[34]); -$msg = 0; -if (isset($_GET['msg'])) { - $msg = COM_applyFilter($_GET['msg'], true); -} -if ($msg > 0) { - $plugin = ''; - if (isset($_GET['plugin'])) { - $plugin = COM_applyFilter($_GET['plugin']); - } - $display .= COM_showMessage($msg, $plugin); -} +$display .= COM_showMessageFromParameter(); if (isset ($_POST['mode']) && ($_POST['mode'] == 'moderation') && SEC_checkToken()) { $action = array(); Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins.php Tue Mar 10 07:43:53 2009 @@ -144,7 +144,12 @@ if ($A['pi_enabled'] == 1) { $plg_templates->set_var('enabled_checked', 'checked="checked"'); } else { - $plg_templates->set_var('enabled_checked', ''); + if (file_exists($_CONF['path'] . 'plugins/' . $pi_name + . '/functions.inc')) { + $plg_templates->set_var('enabled_checked', ''); + } else { + $plg_templates->set_var('enabled_checked', 'disabled="disabled"'); + } } $plg_templates->set_var('gltoken', SEC_createToken()); $plg_templates->set_var('gltoken_name', CSRF_TOKEN); Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/calendar/install.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/calendar/install.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/calendar/install.php Tue Mar 10 07:43:53 2009 @@ -11,7 +11,7 @@ // +---------------------------------------------------------------------------+ // | Based on the Universal Plugin and prior work by the following authors: | // | | -// | Copyright (C) 2002-2008 by the following authors: | +// | Copyright (C) 2002-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Tom Willett - tom AT pigstye DOT net | @@ -35,8 +35,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: install.php,v 1.15 2008/05/23 13:36:12 dhaun Exp $ require_once '../../../lib-common.php'; @@ -46,7 +44,7 @@ // $pi_display_name = 'Calendar'; $pi_name = 'calendar'; -$pi_version = '1.0.2'; +$pi_version = '1.0.3'; $gl_version = '1.5.0'; $pi_url = 'http://www.geeklog.net/'; Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/index.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/index.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/index.php Tue Mar 10 07:43:53 2009 @@ -53,7 +53,6 @@ require_once '../../../lib-common.php'; require_once '../../auth.inc.php'; -require_once $_CONF['path_system'] . 'lib-security.php'; // Uncomment the lines below if you need to debug the HTTP variables being passed // to the script. This will sometimes cause errors but it will allow you to see @@ -63,14 +62,11 @@ $display = ''; -if (!SEC_hasRights ('links.edit')) { - $display .= COM_siteHeader ('menu', $MESSAGE[30]); - $display .= COM_startBlock ($MESSAGE[30], '', - COM_getBlockTemplate ('_msg_block', 'header')); - $display .= $MESSAGE[34]; - $display .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); - $display .= COM_siteFooter (); - COM_accessLog ("User {$_USER['username']} tried to illegally access the links administration screen."); +if (!SEC_hasRights('links.edit')) { + $display .= COM_siteHeader('menu', $MESSAGE[30]) + . COM_showMessageText($MESSAGE[34], $MESSAGE[30]) + . COM_siteFooter(); + COM_accessLog("User {$_USER['username']} tried to illegally access the links administration screen."); echo $display; exit; } @@ -273,15 +269,25 @@ $perm_anon = 2; } - $lid = COM_sanitizeID ($lid); - if (empty ($lid)) { - if (empty ($old_lid)) { - $lid = COM_makeSid (); + $lid = COM_sanitizeID($lid); + $old_lid = COM_sanitizeID($old_lid); + if (empty($lid)) { + if (empty($old_lid)) { + $lid = COM_makeSid(); } else { $lid = $old_lid; } } + // check for link id change + if (!empty($old_lid) && ($lid != $old_lid)) { + // check if new lid is already in use + if (DB_count($_TABLES['links'], 'lid', $lid) > 0) { + // TBD: abort, display editor with all content intact again + $lid = $old_lid; // for now ... + } + } + $access = 0; $old_lid = addslashes ($old_lid); if (DB_count ($_TABLES['links'], 'lid', $old_lid) > 0) { @@ -294,13 +300,10 @@ $access = SEC_hasAccess ($owner_id, $group_id, $perm_owner, $perm_group, $perm_members, $perm_anon); } - if (($access < 3) || !SEC_inGroup ($group_id)) { - $display .= COM_siteHeader ('menu', $MESSAGE[30]); - $display .= COM_startBlock ($MESSAGE[30], '', - COM_getBlockTemplate ('_msg_block', 'header')); - $display .= $MESSAGE[31]; - $display .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); - $display .= COM_siteFooter (); + if (($access < 3) || !SEC_inGroup($group_id)) { + $display .= COM_siteHeader('menu', $MESSAGE[30]) + . COM_showMessageText($MESSAGE[31], $MESSAGE[30]) + . COM_siteFooter(); COM_accessLog("User {$_USER['username']} tried to illegally submit or edit link $lid."); echo $display; exit; @@ -524,15 +527,15 @@ } $display .= COM_siteFooter (); } else { // 'cancel' or no mode at all - $display .= COM_siteHeader ('menu', $LANG_LINKS_ADMIN[11]); - if (isset ($_REQUEST['msg'])) { - $msg = COM_applyFilter ($_REQUEST['msg'], true); + $display .= COM_siteHeader('menu', $LANG_LINKS_ADMIN[11]); + if (isset($_GET['msg'])) { + $msg = COM_applyFilter($_GET['msg'], true); if ($msg > 0) { - $display .= COM_showMessage ($msg, 'links'); + $display .= COM_showMessage($msg, 'links'); } } $display .= listlinks(); - $display .= COM_siteFooter (); + $display .= COM_siteFooter(); } echo $display; Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/install.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/install.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/links/install.php Tue Mar 10 07:43:53 2009 @@ -11,7 +11,7 @@ // +---------------------------------------------------------------------------+ // | Based on the Universal Plugin and prior work by the following authors: | // | | -// | Copyright (C) 2002-2008 by the following authors: | +// | Copyright (C) 2002-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Tom Willett - tom AT pigstye DOT net | @@ -37,8 +37,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: install.php,v 1.26 2008/05/23 13:36:12 dhaun Exp $ require_once '../../../lib-common.php'; @@ -48,7 +46,7 @@ // $pi_display_name = 'Links'; $pi_name = 'links'; -$pi_version = '2.0.0'; +$pi_version = '2.0.1'; $gl_version = '1.5.0'; $pi_url = 'http://www.geeklog.net/'; @@ -91,6 +89,10 @@ } if (!function_exists('SEC_createToken')) { + return false; + } + + if (!function_exists('COM_showMessageText')) { return false; } Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/index.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/index.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/index.php Tue Mar 10 07:43:53 2009 @@ -8,7 +8,7 @@ // | | // | Geeklog poll administration page | // +---------------------------------------------------------------------------+ -// | Copyright (C) 2000-2008 by the following authors: | +// | Copyright (C) 2000-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Mark Limburg - mlimburg AT users DOT sourceforge DOT net | @@ -31,8 +31,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: index.php,v 1.59 2008/06/10 17:26:50 dhaun Exp $ // Set this to true if you want to log debug messages to error.log $_POLL_VERBOSE = false; @@ -40,17 +38,13 @@ require_once '../../../lib-common.php'; require_once '../../auth.inc.php'; - $display = ''; -if (!SEC_hasRights ('polls.edit')) { - $display .= COM_siteHeader ('menu', $MESSAGE[30]); - $display .= COM_startBlock ($MESSAGE[30], '', - COM_getBlockTemplate ('_msg_block', 'header')); - $display .= $MESSAGE[36]; - $display .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); - $display .= COM_siteFooter (); - COM_accessLog ("User {$_USER['username']} tried to illegally access the poll administration screen."); +if (!SEC_hasRights('polls.edit')) { + $display .= COM_siteHeader('menu', $MESSAGE[30]) + . COM_showMessageText($MESSAGE[36], $MESSAGE[30]) + . COM_siteFooter(); + COM_accessLog("User {$_USER['username']} tried to illegally access the poll administration screen."); echo $display; exit; } @@ -124,6 +118,7 @@ * Saves a poll topic and potential answers to the database * * @param string $pid Poll topic ID +* @param string $old_pid Previous poll topic ID * @param array $Q Array of poll questions * @param string $mainpage Checkbox: poll appears on homepage * @param string $topic The text for the topic @@ -143,9 +138,9 @@ * @return string HTML redirect or error message * */ -function savepoll($pid, $Q, $mainpage, $topic, $statuscode, $open, $hideresults, - $commentcode, $A, $V, $R, $owner_id, $group_id, $perm_owner, - $perm_group, $perm_members, $perm_anon) +function savepoll($pid, $old_pid, $Q, $mainpage, $topic, $statuscode, $open, + $hideresults, $commentcode, $A, $V, $R, $owner_id, $group_id, + $perm_owner, $perm_group, $perm_members, $perm_anon) { global $_CONF, $_TABLES, $_USER, $LANG21, $LANG25, $MESSAGE, $_POLL_VERBOSE, @@ -156,8 +151,16 @@ // Convert array values to numeric permission values list($perm_owner,$perm_group,$perm_members,$perm_anon) = SEC_getPermissionValues($perm_owner,$perm_group,$perm_members,$perm_anon); - $pid = COM_sanitizeID($pid); $topic = COM_stripslashes($topic); + $pid = COM_sanitizeID($pid); + $old_pid = COM_sanitizeID($old_pid); + if (empty($pid)) { + if (empty($old_pid)) { + $pid = COM_makeSid(); + } else { + $pid = $old_pid; + } + } // check if any question was entered if (empty($topic) or (sizeof($Q) == 0) or (strlen($Q[0]) == 0) or @@ -177,12 +180,21 @@ . '/plugins/polls/index.php'); } + // check for poll id change + if (!empty($old_pid) && ($pid != $old_pid)) { + // check if new pid is already in use + if (DB_count($_TABLES['polltopics'], 'pid', $pid) > 0) { + // TBD: abort, display editor with all content intact again + $pid = $old_pid; // for now ... + } + } + // start processing the poll topic if ($_POLL_VERBOSE) { COM_errorLog ('**** Inside savepoll() in ' . $_CONF['site_admin_url'] . '/plugins/polls/index.php ***'); } - $pid = str_replace (' ', '', $pid); // strip spaces from poll id + $access = 0; if (DB_count ($_TABLES['polltopics'], 'pid', $pid) > 0) { $result = DB_query ("SELECT owner_id,group_id,perm_owner,perm_group,perm_members,perm_anon FROM {$_TABLES['polltopics']} WHERE pid = '{$pid}'"); @@ -194,14 +206,10 @@ $access = SEC_hasAccess ($owner_id, $group_id, $perm_owner, $perm_group, $perm_members, $perm_anon); } - if (($access < 3) || !SEC_inGroup ($group_id)) { - $display .= COM_siteHeader ('menu', $MESSAGE[30]); - $display .= COM_startBlock ($MESSAGE[30], '', - COM_getBlockTemplate ('_msg_block', 'header')); - $display .= $MESSAGE[31]; - $display .= COM_endBlock (); - $display .= COM_siteFooter (COM_getBlockTemplate ('_msg_block', - 'footer')); + if (($access < 3) || !SEC_inGroup($group_id)) { + $display .= COM_siteHeader('menu', $MESSAGE[30]) + . COM_showMessageText($MESSAGE[31], $MESSAGE[30]) + . COM_siteFooter(); COM_accessLog("User {$_USER['username']} tried to illegally submit or edit poll $pid."); echo $display; exit; @@ -217,24 +225,34 @@ COM_errorLog('member permissions: ' . $perm_members, 1); COM_errorLog('anonymous permissions: ' . $perm_anon, 1); } + // we delete everything and re-create it with the input from the form - DB_delete ($_TABLES['polltopics'], 'pid', $pid); - DB_delete ($_TABLES['pollanswers'], 'pid', $pid); - DB_delete ($_TABLES['pollquestions'], 'pid', $pid); + $del_pid = $pid; + if (!empty($old_pid) && ($pid != $old_pid)) { + $del_pid = $old_pid; // delete by old pid, create using new pid below + } + DB_delete($_TABLES['polltopics'], 'pid', $del_pid); + DB_delete($_TABLES['pollanswers'], 'pid', $del_pid); + DB_delete($_TABLES['pollquestions'], 'pid', $del_pid); $topic = addslashes ($topic); $k = 0; // set up a counter to make sure we do assign a straight line of question id's $v = 0; // re-count votes sine they might have been changed // first dimension of array are the questions - for ($i=0; $i 0) { // only insert questions that exist - DB_save ($_TABLES['pollquestions'], 'qid, pid, question', "'$k', '$pid', '$Q[$i]'"); - // within the questions, we have another dimensions with answers, votes and remarks - for ($j=0; $j 0) { // only insert answers etc that exist + $num_questions = sizeof($Q); + for ($i = 0; $i < $num_questions; $i++) { + $Q[$i] = COM_stripslashes($Q[$i]); + if (strlen($Q[$i]) > 0) { // only insert questions that exist + $Q[$i] = addslashes($Q[$i]); + DB_save($_TABLES['pollquestions'], 'qid, pid, question', + "'$k', '$pid', '$Q[$i]'"); + // within the questions, we have another dimensions with answers, + // votes and remarks + $num_answers = sizeof($A[$i]); + for ($j = 0; $j < $num_answers; $j++) { + $A[$i][$j] = COM_stripslashes($A[$i][$j]); + if (strlen($A[$i][$j]) > 0) { // only insert answers etc that exist if (!is_numeric($V[$i][$j])) { $V[$i][$j] = "0"; } @@ -531,8 +549,18 @@ $display .= editpoll ($pid); $display .= COM_siteFooter (); } elseif (($mode == $LANG_ADMIN['save']) && !empty($LANG_ADMIN['save'])) { - $pid = COM_applyFilter ($_POST['pid']); - if (!empty ($pid)) { + $pid = COM_applyFilter($_POST['pid']); + $old_pid = ''; + if (isset($_POST['old_pid'])) { + $old_pid = COM_applyFilter($_POST['old_pid']); + } + if (empty($pid) && !empty($old_pid)) { + $pid = $old_pid; + } + if (empty($old_pid) && (! empty($pid))) { + $old_pid = $pid; + } + if (!empty($pid)) { $statuscode = 0; if (isset ($_POST['statuscode'])) { $statuscode = COM_applyFilter ($_POST['statuscode'], true); @@ -549,8 +577,8 @@ if (isset ($_POST['hideresults'])) { $hideresults = COM_applyFilter ($_POST['hideresults']); } - $display .= savepoll ($pid, $_POST['question'], $mainpage, $_POST['topic'], - $statuscode, $open, $hideresults, + $display .= savepoll ($pid, $old_pid, $_POST['question'], $mainpage, + $_POST['topic'], $statuscode, $open, $hideresults, COM_applyFilter ($_POST['commentcode'], true), $_POST['answer'], $_POST['votes'], $_POST['remark'], COM_applyFilter ($_POST['owner_id'], true), Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/install.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/install.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/polls/install.php Tue Mar 10 07:43:53 2009 @@ -11,7 +11,7 @@ // +---------------------------------------------------------------------------+ // | Based on the Universal Plugin and prior work by the following authors: | // | | -// | Copyright (C) 2002-2008 by the following authors: | +// | Copyright (C) 2002-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Tom Willett - tom AT pigstye DOT net | @@ -35,8 +35,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: install.php,v 1.24 2008/05/23 13:36:12 dhaun Exp $ require_once '../../../lib-common.php'; @@ -46,7 +44,7 @@ // $pi_display_name = 'Polls'; $pi_name = 'polls'; -$pi_version = '2.0.1'; +$pi_version = '2.0.2'; $gl_version = '1.5.0'; $pi_url = 'http://www.geeklog.net/'; @@ -93,6 +91,10 @@ } if (!function_exists('SEC_createToken')) { + return false; + } + + if (!function_exists('COM_showMessageText')) { return false; } Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/spamx/install.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/spamx/install.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/spamx/install.php Tue Mar 10 07:43:53 2009 @@ -11,7 +11,7 @@ // +---------------------------------------------------------------------------+ // | Based on the Universal Plugin and prior work by the following authors: | // | | -// | Copyright (C) 2002-2008 by the following authors: | +// | Copyright (C) 2002-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Tom Willett - tom AT pigstye DOT net | @@ -35,8 +35,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: install.php,v 1.26 2008/05/23 13:36:12 dhaun Exp $ require_once '../../../lib-common.php'; @@ -46,7 +44,7 @@ // $pi_display_name = 'Spam-X'; $pi_name = 'spamx'; -$pi_version = '1.1.1'; +$pi_version = '1.1.2'; $gl_version = '1.5.0'; $pi_url = 'http://www.pigstye.net/gplugs/staticpages/index.php/spamx'; @@ -80,15 +78,15 @@ */ function plugin_compatible_with_this_geeklog_version() { - if (function_exists('PLG_spamAction')) { - return true; + if (! function_exists('PLG_spamAction')) { + return false; } - if (function_exists('SEC_createToken')) { - return true; + if (! function_exists('SEC_createToken')) { + return false; } - return false; + return true; } /** Modified: trunk/geeklog-1-jp-extended/public_html/admin/plugins/staticpages/install.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/plugins/staticpages/install.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/plugins/staticpages/install.php Tue Mar 10 07:43:53 2009 @@ -12,7 +12,7 @@ // | Based on the Universal Plugin and prior work by the following authors: | // | Upgraded for GL version 1.5 online config manager | // | | -// | Copyright (C) 2002-2008 by the following authors: | +// | Copyright (C) 2002-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Tom Willett - tom AT pigstye DOT net | @@ -36,8 +36,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: install.php,v 1.33 2008/05/23 13:36:12 dhaun Exp $ require_once '../../../lib-common.php'; @@ -47,7 +45,7 @@ // $pi_display_name = 'Static Page'; $pi_name = 'staticpages'; -$pi_version = '1.5.0'; +$pi_version = '1.5.1'; $gl_version = '1.5.0'; $pi_url = 'http://www.geeklog.net/'; @@ -63,7 +61,7 @@ $FEATURES = array(); $FEATURES['staticpages.edit'] = 'Access to Static Pages editor'; $FEATURES['staticpages.delete'] = 'Ability to delete static pages'; -$FEATURES['staticpages.PHP'] = 'Ability use PHP in static pages'; +$FEATURES['staticpages.PHP'] = 'Ability to use PHP in static pages'; $MAPPINGS = array(); $MAPPINGS['staticpages.edit'] = array ($pi_admin); Modified: trunk/geeklog-1-jp-extended/public_html/admin/story.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/story.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/story.php Tue Mar 10 07:43:53 2009 @@ -8,7 +8,7 @@ // | | // | Geeklog story administration page. | // +---------------------------------------------------------------------------+ -// | Copyright (C) 2000-2008 by the following authors: | +// | Copyright (C) 2000-2009 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Mark Limburg - mlimburg AT users DOT sourceforge DOT net | @@ -31,8 +31,6 @@ // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ -// -// $Id: story.php,v 1.270 2008/09/13 07:26:43 mjervis Exp $ /** * This is the Geeklog story administration page. @@ -302,7 +300,7 @@ return COM_refresh( $_CONF['site_admin_url'] . '/story.php' ); } } elseif( $result == STORY_DUPLICATE_SID) { - $display .= COM_errorLog ($LANG24[24], 2); + $display .= COM_showMessageText($LANG24[24]); } // Load HTML templates @@ -349,7 +347,7 @@ if ($advanced_editormode AND $previewContent != '' ) { $story_templates->set_var('preview_content', $previewContent); } elseif ($previewContent != '') { - $display = COM_startBlock ($LANG24[26], '', + $display .= COM_startBlock ($LANG24[26], '', COM_getBlockTemplate ('_admin_block', 'header')); $display .= $previewContent; $display .= COM_endBlock (COM_getBlockTemplate ('_admin_block', 'footer')); Modified: trunk/geeklog-1-jp-extended/public_html/admin/syndication.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/syndication.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/syndication.php Tue Mar 10 07:43:53 2009 @@ -529,18 +529,23 @@ * @return string HTML redirect * */ -function deletefeed ($fid) +function deletefeed($fid) { global $_CONF, $_TABLES; if ($fid > 0) { - DB_delete ($_TABLES['syndication'], 'fid', $fid); + $feedfile = DB_getItem($_TABLES['syndication'], 'filename', + "fid = $fid"); + if (!empty($feedfile)) { + @unlink(SYND_getFeedPath($feedfile)); + } + DB_delete($_TABLES['syndication'], 'fid', $fid); - return COM_refresh ($_CONF['site_admin_url'] - . '/syndication.php?msg=59'); + return COM_refresh($_CONF['site_admin_url'] + . '/syndication.php?msg=59'); } - return COM_refresh ($_CONF['site_admin_url'] . '/syndication.php'); + return COM_refresh($_CONF['site_admin_url'] . '/syndication.php'); } @@ -579,7 +584,11 @@ } elseif (($mode == $LANG_ADMIN['delete']) && !empty($LANG_ADMIN['delete']) && SEC_checkToken()) { - $display .= deletefeed(COM_applyFilter($_REQUEST['fid'])); + $fid = 0; + if (isset($_POST['fid'])) { + $fid = COM_applyFilter($_POST['fid'], true); + } + $display .= deletefeed($fid); } else { Modified: trunk/geeklog-1-jp-extended/public_html/admin/topic.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/topic.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/topic.php Tue Mar 10 07:43:53 2009 @@ -286,8 +286,8 @@ DB_save($_TABLES['topics'],'tid, topic, imageurl, sortnum, limitnews, is_default, archive_flag, owner_id, group_id, perm_owner, perm_group, perm_members, perm_anon',"'$tid', '$topic', '$imageurl','$sortnum','$limitnews',$is_default,'$is_archive',$owner_id,$group_id,$perm_owner,$perm_group,$perm_members,$perm_anon"); // update feed(s) and Older Stories block - COM_rdfUpToDateCheck ('geeklog', $tid); - COM_olderStuff (); + COM_rdfUpToDateCheck('article', $tid); + COM_olderStuff(); $retval = COM_refresh ($_CONF['site_admin_url'] . '/topic.php?msg=13'); } else { @@ -439,8 +439,8 @@ DB_delete ($_TABLES['topics'], 'tid', $tid); // update feed(s) and Older Stories block - COM_rdfUpToDateCheck ('geeklog'); - COM_olderStuff (); + COM_rdfUpToDateCheck('article'); + COM_olderStuff(); return COM_refresh ($_CONF['site_admin_url'] . '/topic.php?msg=14'); } Modified: trunk/geeklog-1-jp-extended/public_html/admin/user.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/user.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/user.php Tue Mar 10 07:43:53 2009 @@ -45,14 +45,11 @@ // Make sure user has access to this page if (!SEC_hasRights('user.edit')) { - $retval .= COM_siteHeader ('menu', $MESSAGE[30]); - $retval .= COM_startBlock ($MESSAGE[30], '', - COM_getBlockTemplate ('_msg_block', 'header')); - $retval .= $MESSAGE[37]; - $retval .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); - $retval .= COM_siteFooter (); + $display .= COM_siteHeader('menu', $MESSAGE[30]) + . COM_showMessageText($MESSAGE[37], $MESSAGE[30]) + . COM_siteFooter(); COM_accessLog("User {$_USER['username']} tried to illegally access the user administration screen."); - echo $retval; + echo $display; exit; } @@ -361,7 +358,7 @@ function listusers() { - global $_CONF, $_TABLES, $LANG_ADMIN, $LANG28, $_IMAGE_TYPE; + global $_CONF, $_TABLES, $LANG_ADMIN, $LANG04, $LANG28, $_IMAGE_TYPE; require_once $_CONF['path_system'] . 'lib-admin.php'; @@ -380,10 +377,14 @@ array('text' => $LANG28[37], 'field' => $_TABLES['users'] . '.uid', 'sort' => true), array('text' => $LANG28[3], 'field' => 'username', 'sort' => true), array('text' => $LANG28[4], 'field' => 'fullname', 'sort' => true), - array('text' => $login_text, 'field' => $login_field, 'sort' => true) + array('text' => $login_text, 'field' => $login_field, 'sort' => true), + array('text' => $LANG28[7], 'field' => 'email', 'sort' => true) ); - $header_arr[] = array('text' => $LANG28[7], 'field' => 'email', 'sort' => true); + if ($_CONF['user_login_method']['openid'] || + $_CONF['user_login_method']['3rdparty']) { + $header_arr[] = array('text' => $LANG04[121], 'field' => 'remoteservice', 'sort' => true); + } $defsort_arr = array('field' => $_TABLES['users'] . '.uid', 'direction' => 'ASC'); @@ -414,9 +415,15 @@ 'help_url' => '' ); + $join_userinfo = ''; + $select_userinfo = ''; if ($_CONF['lastlogin']) { - $join_userinfo="LEFT JOIN {$_TABLES['userinfo']} ON {$_TABLES['users']}.uid={$_TABLES['userinfo']}.uid "; - $select_userinfo=",lastlogin"; + $join_userinfo .= "LEFT JOIN {$_TABLES['userinfo']} ON {$_TABLES['users']}.uid={$_TABLES['userinfo']}.uid "; + $select_userinfo .= ",lastlogin"; + } + if ($_CONF['user_login_method']['openid'] || + $_CONF['user_login_method']['3rdparty']) { + $select_userinfo .= ',remoteservice'; } $sql = "SELECT {$_TABLES['users']}.uid,username,fullname,email,photo,status,regdate$select_userinfo " . "FROM {$_TABLES['users']} $join_userinfo WHERE 1=1"; @@ -1250,10 +1257,8 @@ . batchdelete() . COM_siteFooter(); } else { // 'cancel' or no mode at all - $display .= COM_siteHeader ('menu', $LANG28[11]); - if (isset ($_REQUEST['msg'])) { - $display .= COM_showMessage (COM_applyFilter ($_REQUEST['msg'], true)); - } + $display .= COM_siteHeader('menu', $LANG28[11]); + $display .= COM_showMessageFromParameter(); $display .= listusers(); $display .= COM_siteFooter(); } From codesite-noreply @ google.com Tue Mar 10 23:49:10 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 14:49:10 +0000 Subject: [geeklog-jp commit] r1247 - trunk/geeklog-1-jp-extended Message-ID: <0016364176019832f10464c4dad3@google.com> Author: tacahi Date: Tue Mar 10 07:45:11 2009 New Revision: 1247 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: 以下の変更を記録します。 Geeklog 1.5.2のマージの洩れを修正しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Mar 10 07:45:11 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-10 Takahiro Kambe + + * Geeklog 1.5.2のマージの洩れを修正しました。 + 2009-03-10 mystral-kk * custom_mail_jp.phpをGeeklog-1.5.2に対応させました。 From codesite-noreply @ google.com Wed Mar 11 00:17:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 15:17:17 +0000 Subject: [geeklog-jp commit] r1248 - trunk/geeklog-1-jp-extended Message-ID: <00163645923c2747ad0464c53f0d@google.com> Author: tacahi Date: Tue Mar 10 08:16:12 2009 New Revision: 1248 Modified: trunk/geeklog-1-jp-extended/release_jp.php Log: Geeklog 1.5.2ベースとなったため、日本語リリースを0.0にリセットします。 (これも、Geeklog 1.5.2のマージの洩れの修正と言えます。) Modified: trunk/geeklog-1-jp-extended/release_jp.php ============================================================================== --- trunk/geeklog-1-jp-extended/release_jp.php (original) +++ trunk/geeklog-1-jp-extended/release_jp.php Tue Mar 10 08:16:12 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Wed Mar 11 00:21:19 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 10 Mar 2009 15:21:19 +0000 Subject: [geeklog-jp commit] r1249 - trunk/geeklog-1-jp-extended Message-ID: <0016e64b9d089155ce0464c54d6b@google.com> Author: tacahi Date: Tue Mar 10 08:18:58 2009 New Revision: 1249 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: 日本語リリースのバージョンのリセットを記述しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Mar 10 08:18:58 2009 @@ -2,6 +2,9 @@ 2009-03-10 Takahiro Kambe + * Geeklog 1.5.2のマージの結果として、日本語リリースのバージョン番号を + 0.0にリセットしました。 + * Geeklog 1.5.2のマージの洩れを修正しました。 2009-03-10 mystral-kk From codesite-noreply @ google.com Sat Mar 14 14:01:01 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 05:01:01 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1MiAtIHRydW5rL2dlZWtsb2ctMS1qcBskQiRLOWcbKEI=?= =?ISO-2022-JP?B?GyRCJG8kOyRrN0EkRyEiTj48VCRyRjEwbCRLJDckXiQ5ISMbKEI=?= Message-ID: <000e0cd29bf08ec32904650d1a08@google.com> Author: tacahi Date: Fri Mar 13 22:00:42 2009 New Revision: 1252 Modified: trunk/geeklog-1-jp-extended/plugins/japanize/sql/sql_japanize_107.php Log: trunk/geeklog-1-jpに合わせる形で、両者を同一にします。 コメント中の「更新日」を「最終更新日」としただけの変更となります。 Modified: trunk/geeklog-1-jp-extended/plugins/japanize/sql/sql_japanize_107.php ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/japanize/sql/sql_japanize_107.php (original) +++ trunk/geeklog-1-jp-extended/plugins/japanize/sql/sql_japanize_107.php Fri Mar 13 22:00:42 2009 @@ -4,7 +4,7 @@ // +---------------------------------------------------------------------------+ // $Id: sql_japanize6.php // もし万一エンコードの種類が utf-8でない場合は、utf-8に変換してください。 -// 更新日 2008/09/02 tsuchi AT geeklog DOT jp +// 最終更新日 2008/09/02 tsuchi AT geeklog DOT jp // 更新日 2008/11/27 ivy AT geeklog DOT jp // (18) 初期ブロックタイトル等日本語化 From codesite-noreply @ google.com Sat Mar 14 14:05:01 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 05:05:01 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1MyAtIHRydW5rL2dlZWtsb2ctMS1qcBskQiRLOWcbKEI=?= =?ISO-2022-JP?B?GyRCJG8kOyRrN0EkRyEiTj48VCRyRjEwbCRLJDckXiQ5ISMbKEI=?= Message-ID: <00163646d11ae49b1504650d2800@google.com> Author: tacahi Date: Fri Mar 13 22:01:42 2009 New Revision: 1253 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Log: trunk/geeklog-1-jpに合わせる形で、両者を同一にします。 元々の違いは空白、つまりはインデントの違いだけでした。 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Fri Mar 13 22:01:42 2009 @@ -299,51 +299,51 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - '@<\s*table[^>]*?>@si' => '', - '@<\s*/table[^>]*?>@si' => '', - '@<\s*thead[^>]*?>@si' => '', - '@<\s*/thead[^>]*?>@si' => '', - '@<\s*tbody[^>]*?>@si' => '', - '@<\s*/tbody[^>]*?>@si' => '', - '@<\s*tfoot[^>]*?>@si' => '', - '@<\s*/tfoot[^>]*?>@si' => '', - '@<\s*tr[^>]*?>@si' => '', - '@<\s*/tr[^>]*?>@si' => '
    ', - '@<\s*th[^>]*?>@si' => '', - '@<\s*/th[^>]*?>@si' => ' ', - '@<\s*td[^>]*?>@si' => '', - '@<\s*/td[^>]*?>@si' => ' ', + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', ); // コメント削除用のパターン配列 $_mobile_comment = array( - '@@sm' => '', - '@@' => '', + '@@sm' => '', + '@@' => '', ); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - '@<\s*div[^>]*?>@si' => '', - '@<\s*/div[^>]*?>@si' => "
    \n", - // cut style - '@style="[^"].*?"@i' => '', - // cut class - '@class="[^"].*?"@i' => '', - // cut embed - '@]*?>@si' => '', + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', ); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - '@@' => '', - '@.*?@ms' => '', + '@@' => '', + '@.*?@ms' => '', ); @@ -362,15 +362,15 @@ // これは単独で一番先に実行する必要がある if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { $content = preg_replace( - array_keys($_mobile_content), array_values($_mobile_content), $content - ); + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある if ($CUSTOM_MOBILE_CONF['cut_comment']) { $content = preg_replace( - array_keys($_mobile_comment), array_values($_mobile_comment), $content - ); + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 @@ -378,24 +378,24 @@ $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { $content = preg_replace( - array_keys($_mobile_table), array_values($_mobile_table), $content - ); + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { $content = preg_replace( - array_keys($_mobile_3g), array_values($_mobile_3g), $content - ); + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); $content = preg_replace( - array_keys($_mobile_images), array_values($_mobile_images), $content - ); + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 @@ -539,20 +539,20 @@ // stripslashes(配列対応版) function _mobile_stripslashes_deep($data) { - if (is_array($data)) { - return array_map('_mobile_stripslashes_deep', $data); - } else { - return stripslashes($data); - } + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } } // urldecode(配列対応版) function _mobile_urldecode_deep($data) { - if (is_array($data)) { - return array_map('_mobile_urldecode_deep', $data); - } else { - return urldecode($data); - } + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } } // 入力をURLデコードする @@ -818,12 +818,12 @@ // 画像タグのパターン配列 $_mobile_images = array( - '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] - . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] - . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] - . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); ?> From codesite-noreply @ google.com Sat Mar 14 14:09:02 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 05:09:02 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1NCAtIHRydW5rL2dlZWtsb2ctMS1qcBskQiRLOWcbKEI=?= =?ISO-2022-JP?B?GyRCJG8kOyQ/PSRANSRyOVQkQyQ/JDMkSCRyNS09UiQ3JF4kNyQ/ISMbKEI=?= Message-ID: <0016e64aeb44361bff04650d3771@google.com> Author: tacahi Date: Fri Mar 13 22:03:07 2009 New Revision: 1254 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: trunk/geeklog-1-jpに合わせた修正を行ったことを記述しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Fri Mar 13 22:03:07 2009 @@ -1,5 +1,10 @@ $Id$ +2009-03-14 Takahiro Kambe + + * 些細な(動作上の違いのない) trunk/geeklog-1-jp と異るファイルを + 同一にしました。 + 2009-03-12 Masuko Koeda * フッタ部分、ページの先頭へ戻るのa要素の幅を From codesite-noreply @ google.com Sat Mar 14 17:47:30 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 08:47:30 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1NSAtIBskQiVqJVMlOCVnJXMbKEIxMjI0GyRCJE4bKEI=?= =?ISO-2022-JP?B?GyRCSlE5OSRyRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <000e0cd2dc408a0f3b04651044cf@google.com> Author: tacahi Date: Sat Mar 14 01:46:56 2009 New Revision: 1255 Modified: branches/geeklog-1.5.1-jp/language/japanese_utf-8.php (contents, props changed) Log: リビジョン1224の変更を適用します。 Log: 言語ファイルを修正しました。 Modified: branches/geeklog-1.5.1-jp/language/japanese_utf-8.php ============================================================================== --- branches/geeklog-1.5.1-jp/language/japanese_utf-8.php (original) +++ branches/geeklog-1.5.1-jp/language/japanese_utf-8.php Sat Mar 14 01:46:56 2009 @@ -675,7 +675,7 @@ 32 => 'エラー。未入力の項目があります', 33 => 'ポータルブロックのフィードURLを入力してください', 34 => 'PHPブロックにはタイトルと関数名を入力してください', - 35 => '普通のブロックにはタイトルと内容を入力してください', + 35 => 'ノーマルブロックにはタイトルと内容を入力してください', 36 => 'レイアウト用ブロックには内容を入力してください', 37 => 'PHPブロックの関数名が不適切です', 38 => 'PHPブロックの関数名は、接頭子\'phpblock_\' (例 phpblock_themetester)が必要です。セキュリティ対策のため必要となっていま す。', @@ -708,7 +708,7 @@ 65 => '順番', 66 => '自動タグ', 67 => '自動タグ使用許可', - 68 => 'このポータルブロックのフィードは表示するには長すぎます。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' + 68 => 'このポータルブロックのフィードは長すぎて表示できません。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' ); ############################################################################### @@ -792,7 +792,7 @@ 75 => '全機能', 76 => '公開オプション', 77 => 'アドバンストエディタの利用は、ブラウザでJavaScriptが使える環境に する必要があります。このオプションはコンフィギュレーションの管理パネルで無効 にできます。', - 78 => 'ノーマル エディタを使う場合', + 78 => 'ノーマルエディ タを使う場合', 79 => 'プレビュー', 80 => 'エディタ', 81 => '公開オプション', @@ -802,7 +802,7 @@ 85 => 'すべて表示', 86 => 'アドバンストエディタ', 87 => '記事の情報', - 88 => 'ウィキスタイル' + 88 => 'Wikiスタイル' ); @@ -835,7 +835,7 @@ 23 => 'この話題を新規記事投稿の際のデフォルトにします。', 24 => '(*)', 25 => 'アーカイブ', - 26 => '話題をアーカイブにします。デフォルトに設定できるのはひとつだけで す。', + 26 => 'この話題をアーカイブ記事用の話題にします。アーカイブ記事用の話題 は1つしか指定できません。', 27 => '話題アイコンアップロード', 28 => '最大', 29 => 'ファイルアップロード時にエラー' @@ -869,7 +869,7 @@ 22 => 'エラー', 23 => '一括登録', 24 => 'ユーザの一括登録', - 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは一行あたり一人ずつで、各ユーザのデータはタブ区切りで「 氏名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作 為に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で 保存してください。', + 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは1行あたり1人ずつで、各ユーザのデータはタブ区切りで「氏 名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作為 に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で保 存してください。', 26 => '', 27 => '', 28 => '画像を削除する場合チェックする', @@ -1060,7 +1060,7 @@ 25 => 'フィードのタイトル', 26 => '配信最大件数', 27 => 'エントリの長さ', - 28 => '(0 = 本文なし, 1 = 本文すべて, other = 指定した文字数に制限。)', + 28 => '(0 = 本文なし、1 = 本文すべて、その他 = 指定した文字数に制限)', 29 => '詳細', 30 => '更新', 31 => '文字コード', @@ -1187,10 +1187,10 @@ 91 => '無効なURLが指定されました。', 92 => "使用する前にセキュリティチェックを行って ください!", 93 => 'データベースのバックアップに成功しました。', - 94 => 'バックアップ失敗: ファイルサイズが1KByte未満です。', + 94 => 'バックアップ失敗: ファイルサイズが1Kバイト未満です。', 95 => 'エラーが発生しました。', 96 => '申し訳ありません。あなたにはコンフィギュレーション管理ページへの アクセスが許可されていません。許可されていない機能へアクセスしようとする行為 のすべてが記録される点に注意してください。', - 97 => 'すべての必須フィールドの検証を満たしていません - デフォルトカス タムメンバーメッセージ' + 97 => '一部の必須フィールドの検証に失敗しました - デフォルトカスタムメ ンバーメッセージ' ); ############################################################################### @@ -1199,7 +1199,7 @@ 'access' => 'アクセス', 'ownerroot' => '所有者/Root', 'group' => 'グループ', - 'readonly' => '読みとり専用', + 'readonly' => '読み取り専用', 'accessrights' => 'アクセス権限', 'owner' => '所有者', 'grantgrouplabel' => '上記のグループに編集権限を与える', @@ -1219,10 +1219,10 @@ 'coregroup' => 'コアグループ', 'yes' => 'はい', 'no' => 'いいえ', - 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読みとり専用となっています。", + 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読み取り専用となっています。", 'groupmsg' => '本サイトのセキュリティグループは階層的になっています。本 グループを下記のグループに追加する場合、そのグループの持つ権限と同じ権限を本 グループにも与えることになります。可能であれば、本グループに権限を与える場 合、下記のグループの権限を継承させることが望ましい方法です。本グループに個別 に権限を与える場合は、下記の「権限」部分から様々な機能に関する権限を選択する ことができます。本グループを追加する場合は、下記のグループの横にあるボックス をチェックするだけです。', - 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読みとり専用となっています。", - 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループ自体が直接与えられている権限です。', + 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読み取り専用となっています。", + 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループが直接与えられている権限です。', 'lock' => 'ロック', 'members' => 'メンバー ', 'anonymous' => 'ゲストユーザ', @@ -1231,7 +1231,7 @@ 'edit' => '編集', 'none' => 'なし', 'accessdenied' => 'アクセスが拒否されました', - 'storydenialmsg' => "この記事を閲覧する権限がありません。これは、あなた が{$_CONF['site_name']}のメンバーがないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", + 'storydenialmsg' => "この記事を閲覧する権限がありません。あなたが {$_CONF['site_name']}のメンバーでないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", 'nogroupsforcoregroup' => 'このグループは他のどのグループにも所属してい ません', 'grouphasnorights' => 'このグループは管理権限を一切所有していません。', 'newgroup' => '新規', @@ -1269,8 +1269,8 @@ 'do_backup' => 'バックアップの実行', 'backup_successful' => 'データベースのバックアップが完了しました。', 'db_explanation' => 'Geeklogをバックアップするには、下のボタンをクリッ クしてください。', - 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっています。mysqldump_pathの設定をコンフィギュレーションでチ ェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", - 'zero_size' => 'バックアップが失敗しました。ファイルの大きさが0バイトで す。', + 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっているかのどれかが原因で失敗し ました。mysqldump_pathの設定をコンフィギュ レーションでチェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", + 'zero_size' => 'バックアップに失敗しました。ファイルの大きさが0バイトで す。', 'path_not_found' => "{$_CONF['backup_path']} は存在しないか、ディレクト リではありません。", 'no_access' => "エラー: {$_CONF['backup_path']} ディレクトリにアクセス できません。", 'backup_file' => 'バックアップファイル', @@ -1316,7 +1316,7 @@ $LANG_PDF = array( 1 => 'PDF生成ができません。', - 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントを処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果は0バイトのサイズの 場合は削除されています。ドキュメントが変換可能だと確信できる場合はもう一度実 行してみてください。', + 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントは処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果が0バイトの場合は削 除されています。ドキュメントが変換可能だと確信できる場合はもう一度実行してみ てください。', 3 => 'PDFの生成で不明なエラーが発生しました。', 4 => 'ページのデータが与えられていないか、以下のアドホックなPDF生成ツー ルを使用してください。このページがエラーだと思われる場合はシステムの管理者に 連絡してください。もしくは以下のフォームからアドホックな方式によるPDFの生成 を行ってください。', 5 => 'ドキュメントを読み込み中です。', @@ -1677,7 +1677,7 @@ 'speedlimit' => "投稿間隔制限", 'skip_preview' => "プレビューしないで投稿する", 'advanced_editor' => "アドバンストエディタを使う", - 'wikitext_editor' => "ウィキテキストエディタを使う", + 'wikitext_editor' => "Wikiテキストエディタを使う", 'cron_schedule_interval' => "Cronスケジュール間隔", 'sortmethod' => "ソート方法", 'showstorycount' => "記事数を表示する", From codesite-noreply @ google.com Sat Mar 14 17:51:31 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 08:51:31 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1NiAtIBskQiVqJVMlOCVnJXMbKEIxMjM0GyRCJE4bKEI=?= =?ISO-2022-JP?B?GyRCSlE5OSRyRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <000e0cd2dda4df89610465105220@google.com> Author: tacahi Date: Sat Mar 14 01:50:02 2009 New Revision: 1256 Modified: branches/geeklog-1.5.1-jp/public_html/layout/mobile/functions.php (contents, props changed) branches/geeklog-1.5.1-jp/public_html/layout/mobile_3g/functions.php (contents, props changed) Log: リビジョン1234の変更を適用します。 Log: 掲示板プラグインをインストールしていない時でもブロックメニューに 表示されてしまうバグを修正しました。 Modified: branches/geeklog-1.5.1-jp/public_html/layout/mobile/functions.php ============================================================================== --- branches/geeklog-1.5.1-jp/public_html/layout/mobile/functions.php (original) +++ branches/geeklog-1.5.1-jp/public_html/layout/mobile/functions.php Sat Mar 14 01:50:02 2009 @@ -204,35 +204,53 @@ /* * メニュー */ + $akey = 1; + // ホーム $footer->set_var( 'mn_tohome', '' . $LANG01['68'] . '' ); + '/" accesskey="' . $akey . '">' . $LANG01['68'] . '' ); + $akey ++; + // ログイン/ログアウト if (!empty ($_USER['uid']) && ($_USER['uid'] > 1)) { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['19'] . '' ); + '/users.php?mode=logout" accesskey="' . $akey . '">' . $LANG01['19'] . '' ); } else { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['47'] . '' ); - } + '/users.php?mode=login" accesskey="' . $akey . '">' . $LANG01['47'] . '' ); + } + $akey ++; + // 記事投稿 $footer->set_var( 'mn_submit', '' . $LANG01['71'] . '' ); + '/submit.php?type=story" accesskey="' . $akey . '">' . $LANG01['71'] . '' ); + $akey ++; + // 掲示板 - $footer->set_var( 'mn_forum', '' . "掲示板" ); + $temp = DB_query("SELECT 1 AS cnt FROM {$_TABLES['plugins']} WHERE (pi_name = 'forum') AND (pi_enabled = '1')"); + if (DB_numRows($temp) == 1) { + $footer->set_var( 'mn_forum', '' . "掲 示板" ); + $akey ++; + } + // 記事一覧 $footer->set_var( 'mn_directory', '' . $LANG01['117'] . '' ); + '/directory.php" accesskey="' . $akey . '">' . $LANG01['117'] . '' ); + $akey ++; + // 検索 $footer->set_var( 'mn_search', '' . $LANG01['75'] . '' ); + '/search.php" accesskey="' . $akey . '">' . $LANG01['75'] . '' ); + $akey ++; + // ブロック $footer->set_var( 'mn_block', '' . $LANG01['12'] . '' ); - + '/mobileblocks.php" accesskey="' . $akey . '">' . $LANG01['12'] . '' ); + $akey ++; + // Call to plugins to set template variables in the footer PLG_templateSetVars( 'footer', $footer ); Modified: branches/geeklog-1.5.1-jp/public_html/layout/mobile_3g/functions.php ============================================================================== --- branches/geeklog-1.5.1-jp/public_html/layout/mobile_3g/functions.php (original) +++ branches/geeklog-1.5.1-jp/public_html/layout/mobile_3g/functions.php Sat Mar 14 01:50:02 2009 @@ -204,35 +204,53 @@ /* * メニュー */ + $akey = 1; + // ホーム $footer->set_var( 'mn_tohome', '' . $LANG01['68'] . '' ); + '/" accesskey="' . $akey . '">' . $LANG01['68'] . '' ); + $akey ++; + // ログイン/ログアウト if (!empty ($_USER['uid']) && ($_USER['uid'] > 1)) { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['19'] . '' ); + '/users.php?mode=logout" accesskey="' . $akey . '">' . $LANG01['19'] . '' ); } else { $footer->set_var( 'mn_login_or_logout', '' . $LANG01['47'] . '' ); - } + '/users.php?mode=login" accesskey="' . $akey . '">' . $LANG01['47'] . '' ); + } + $akey ++; + // 記事投稿 $footer->set_var( 'mn_submit', '' . $LANG01['71'] . '' ); + '/submit.php?type=story" accesskey="' . $akey . '">' . $LANG01['71'] . '' ); + $akey ++; + // 掲示板 - $footer->set_var( 'mn_forum', '' . "掲示板" ); + $temp = DB_query("SELECT 1 AS cnt FROM {$_TABLES['plugins']} WHERE (pi_name = 'forum') AND (pi_enabled = '1')"); + if (DB_numRows($temp) == 1) { + $footer->set_var( 'mn_forum', '' . "掲 示板" ); + $akey ++; + } + // 記事一覧 $footer->set_var( 'mn_directory', '' . $LANG01['117'] . '' ); + '/directory.php" accesskey="' . $akey . '">' . $LANG01['117'] . '' ); + $akey ++; + // 検索 $footer->set_var( 'mn_search', '' . $LANG01['75'] . '' ); + '/search.php" accesskey="' . $akey . '">' . $LANG01['75'] . '' ); + $akey ++; + // ブロック $footer->set_var( 'mn_block', '' . $LANG01['12'] . '' ); - + '/mobileblocks.php" accesskey="' . $akey . '">' . $LANG01['12'] . '' ); + $akey ++; + // Call to plugins to set template variables in the footer PLG_templateSetVars( 'footer', $footer ); From codesite-noreply @ google.com Sat Mar 14 17:55:31 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 08:55:31 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1NyAtIBskQiVqJVMlOCVnJXMbKEIxMjIzLCAxMjM=?= =?ISO-2022-JP?B?MiwgMTIzNywgMTIzORskQiROSlE5OSRyRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <000e0cd1519a30d5ef0465106191@google.com> Author: tacahi Date: Sat Mar 14 01:52:34 2009 New Revision: 1257 Modified: branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php (contents, props changed) Log: リビジョン1223, 1232, 1237, 1239の変更を適用します。 1223: Issue #57に対応しました。 1232: magic_quotes_gpcがオンの時に起こりうるバグに対処しました。 1237: ケータイハックで以下の2点を修正。 ページ内リンクを参照するとセッションが切れる ・CUSTOM_refresh()でページ内リンクの処理をしていなかったため。 処理を追加しました。 ブロックメニューで表示されるリンクにセッションIDがない ・_mobile_add_sessid()でリンクの抽出に使っているパターンがURLの引用符と して二重引用符(")しか考慮していないのに、CUSTOM_MOBILE_blockMenu()で はURLを引用符(')でくくってしまっているため。 ・CUSTOM_MOBILE_blockMenu()は他に合わせて二重引用符を使うように修正。 ・_mobile_add_sessid()の正規表現を変更し、_mobile_session_callback()で 終端に二重引用符を付加していた部分の処理を修正して、正規表現に一致 したものを付加するように修正。 1239: PHPの終了タグの欠如を修正 Modified: branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php Sat Mar 14 01:52:34 2009 @@ -8,7 +8,7 @@ * Geeklog hack for cellular phones. * Copyright (c) 2006 - 2008 Tatsumi Imai(http://im-ltd.ath.cx) * License: GPL v2 or later - * Time-stamp: <2008-07-14 23:42:55 imai> + * Time-stamp: <2009-03-09 03:13:44 imai> */ // 設定 @@ -256,9 +256,17 @@ function CUSTOM_refresh($url) { global $LANG05,$CUSTOM_MOBILE_CONF; - $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', - mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); if(CUSTOM_MOBILE_is_cellular()) { + // ページ内リンクを探す + $pos = strpos($url, '#'); + if($pos === false) { + //CUSTOM_MOBILE_debug("not matched: " . $url); + $link = ""; + } else { + //CUSTOM_MOBILE_debug("matched: " . $url); + $link = substr($url, $pos); + $url = substr($url, 0, $pos); + } if($CUSTOM_MOBILE_CONF['refresh_use_location']) { $sepa = '?'; if (strpos($url, '?') > 0) @@ -267,14 +275,21 @@ $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID; + $location_url = 'Location: ' . $url . $sepa . SID . link; header( $location_url ); exit; } else { + $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', + mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); + $sepa = '?'; + if (strpos($url, '?') > 0) { + $sepa = '&'; + } + $location_url = $url . $sepa . SID . link; return "\n" . "$msg" . - "$msg\n"; + "$msg\n"; } } else { return "\n"; @@ -284,52 +299,52 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - array('@<[ ]*table[^>]*?>@si', ''), - array('@<[ ]*/table[^>]*?>@si', ''), - array('@<[ ]*thead[^>]*?>@si', ''), - array('@<[ ]*/thead[^>]*?>@si', ''), - array('@<[ ]*tbody[^>]*?>@si', ''), - array('@<[ ]*/tbody[^>]*?>@si',''), - array('@<[ ]*tfoot[^>]*?>@si', ''), - array('@<[ ]*/tfoot[^>]*?>@si', ''), - array('@<[ ]*tr[^>]*?>@si', ''), - array('@<[ ]*/tr[^>]*?>@si', '
    '), - array('@<[ ]*th[^>]*?>@si', ''), - array('@<[ ]*/th[^>]*?>@si', ' '), - array('@<[ ]*td[^>]*?>@si', ''), - array('@<[ ]*/td[^>]*?>@si', ' ') - ); + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', +); // コメント削除用のパターン配列 $_mobile_comment = array( - array('@@sm', ''), - array('@@', '') - ); + '@@sm' => '', + '@@' => '', +); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - array('@<[ ]*div[^>]*?>@si', ''), - array('@<[ ]*/div[^>]*?>@si', "
    \n"), - // cut style - array('@style="[^"].*?"@i', ''), - // cut class - array('@class="[^"].*?"@i', ''), - // cut embed - array('@]*?>@si', ''), - ); + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', +); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - array('@@', ''), - array('@.*?@ms', ''), - ); + '@@' => '', + '@.*?@ms' => '', +); @@ -345,56 +360,46 @@ // モバイル用のコンテンツを表示、PC用のコンテンツを非表示 // これは単独で一番先に実行する必要がある - if($CUSTOM_MOBILE_CONF['use_mobile_content']) { - for($i = 0; $i < count($_mobile_content); $i++) { - $search[$i] = $_mobile_content[$i][0]; - $replace[$i] = $_mobile_content[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { + $content = preg_replace( + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある - if($CUSTOM_MOBILE_CONF['cut_comment']) { - for($i = 0; $i < count($_mobile_comment); $i++) { - $search[$i] = $_mobile_comment[$i][0]; - $replace[$i] = $_mobile_comment[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['cut_comment']) { + $content = preg_replace( + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { - for($i = 0; $i < count($_mobile_table); $i++) { - $search[$i] = $_mobile_table[$i][0]; - $replace[$i] = $_mobile_table[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { - for($i = 0; $i < count($_mobile_3g); $i++) { - $search[$i] = $_mobile_3g[$i][0]; - $replace[$i] = $_mobile_3g[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 - if($CUSTOM_MOBILE_CONF['resize_image']) { + if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); - for($i = 0; $i < count($_mobile_images); $i++) { - $search[$i] = $_mobile_images[$i][0]; - $replace[$i] = $_mobile_images[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 - if($CUSTOM_MOBILE_CONF['convert_to_sjis']) { + if ($CUSTOM_MOBILE_CONF['convert_to_sjis']) { $charset ='Shift_JIS'; } else { $charset = $CUSTOM_MOBILE_CONF['host_charset']; @@ -415,7 +420,7 @@ '@
  • @i', '@^\s*
    ([\s\n]*)
    @mi', '@^\s*
  • ([\s\n]*)
  • @mi', - '@[ ]*? @', + '@\s*? @', '@\s*\n+ @ m', '@((\s)*
    )+ @ sm', ); @@ -468,8 +473,8 @@ global $_CONF; // ページ内のタグ、タグのurlを抽出 - $pat1 = '!( 0 ) { - $blockmenu .= "
  • " . - $A['title'] . "
  • \n"; + $blockmenu .= "
  • " . + $A['title'] . "
  • \n"; } } $blockmenu .= "\n"; @@ -795,13 +818,12 @@ // 画像タグのパターン配列 $_mobile_images = array( - array('@<([ ]*img.*?)width="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)height="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)src="([^"]*?)"(.*?)>@si', - '<$1src="' . $_CONF['site_url'] . RESIZER . '?image=$2&size='. - $CUSTOM_MOBILE_CONF['image_size'] . '&quality=' . - $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . - $_CONF['site_url'] . '"$3 ' . XHTML . '>'), - ); + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', +); ?> From codesite-noreply @ google.com Sat Mar 14 18:01:31 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:01:31 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1OCAtIHRydW5rL2dlZWtsb2ctMS1qcBskQiQrJGkbKEI=?= =?ISO-2022-JP?B?GyRCPGgkajl+JHMkQEpROTkkcjUtTz8kNyReJDckPyEjGyhC?= Message-ID: <000e0cd13892a7bfbf04651076e6@google.com> Author: tacahi Date: Sat Mar 14 02:00:21 2009 New Revision: 1258 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: trunk/geeklog-1-jpから取り込んだ変更を記録しました。 (r1223, r1224, r1232, r1234, r1237, r1239) Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Sat Mar 14 02:00:21 2009 @@ -1,5 +1,19 @@ $Id$ +2009-03-14 Takahiro Kambe + + * 以下のリビジョンの修正を取り込みました。 + + * 1224 + language/japanese_utf-8.php + + * 1234 + public_html/layout/mobile/functions.php + public_html/layout/mobile_3g/functions.php + + * 1223, 1232, 1237, 1239 + system/custom/custom_cellular.php + 2009-02-27 Takahiro Kambe * trunk/geeklog-1-jpのr1200の修正を取り込みました。 From codesite-noreply @ google.com Sat Mar 14 18:05:31 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:05:31 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI1OSAtIHIxMjI0GyRCJE5KUTk5JHJIPzFHGyhC?= =?ISO-2022-JP?B?GyRCJDckXiQ5ISMbKEI=?= Message-ID: <000e0cd172a4fad45a046510847b@google.com> Author: tacahi Date: Sat Mar 14 02:02:50 2009 New Revision: 1259 Modified: branches/geeklog-1.5.1-jp-extended/language/japanese_utf-8.php (contents, props changed) Log: r1224の変更を反映します。 言語ファイルを修正しました。 Modified: branches/geeklog-1.5.1-jp-extended/language/japanese_utf-8.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/language/japanese_utf-8.php (original) +++ branches/geeklog-1.5.1-jp-extended/language/japanese_utf-8.php Sat Mar 14 02:02:50 2009 @@ -675,7 +675,7 @@ 32 => 'エラー。未入力の項目があります', 33 => 'ポータルブロックのフィードURLを入力してください', 34 => 'PHPブロックにはタイトルと関数名を入力してください', - 35 => '普通のブロックにはタイトルと内容を入力してください', + 35 => 'ノーマルブロックにはタイトルと内容を入力してください', 36 => 'レイアウト用ブロックには内容を入力してください', 37 => 'PHPブロックの関数名が不適切です', 38 => 'PHPブロックの関数名は、接頭子\'phpblock_\' (例 phpblock_themetester)が必要です。セキュリティ対策のため必要となっていま す。', @@ -708,7 +708,7 @@ 65 => '順番', 66 => '自動タグ', 67 => '自動タグ使用許可', - 68 => 'このポータルブロックのフィードは表示するには長すぎます。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' + 68 => 'このポータルブロックのフィードは長すぎて表示できません。ブロック 設定画面でブロックに表示する記事の最大数を設定するか、コンフィギュレーション で標準の最大数を設定してください。' ); ############################################################################### @@ -792,7 +792,7 @@ 75 => '全機能', 76 => '公開オプション', 77 => 'アドバンストエディタの利用は、ブラウザでJavaScriptが使える環境に する必要があります。このオプションはコンフィギュレーションの管理パネルで無効 にできます。', - 78 => 'ノーマル エディタを使う場合', + 78 => 'ノーマルエディ タを使う場合', 79 => 'プレビュー', 80 => 'エディタ', 81 => '公開オプション', @@ -802,7 +802,7 @@ 85 => 'すべて表示', 86 => 'アドバンストエディタ', 87 => '記事の情報', - 88 => 'ウィキスタイル' + 88 => 'Wikiスタイル' ); @@ -835,7 +835,7 @@ 23 => 'この話題を新規記事投稿の際のデフォルトにします。', 24 => '(*)', 25 => 'アーカイブ', - 26 => '話題をアーカイブにします。デフォルトに設定できるのはひとつだけで す。', + 26 => 'この話題をアーカイブ記事用の話題にします。アーカイブ記事用の話題 は1つしか指定できません。', 27 => '話題アイコンアップロード', 28 => '最大', 29 => 'ファイルアップロード時にエラー' @@ -869,7 +869,7 @@ 22 => 'エラー', 23 => '一括登録', 24 => 'ユーザの一括登録', - 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは一行あたり一人ずつで、各ユーザのデータはタブ区切りで「 氏名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作 為に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で 保存してください。', + 25 => 'ユーザをGeeklogに一括登録できます(重複チェック付き)。一括登録 するファイルはユーザは1行あたり1人ずつで、各ユーザのデータはタブ区切りで「氏 名、ユーザ名、メールアドレス」のフィールド順です。ユーザのパスワードは無作為 に決定されます。ファイルはかならず本サイトと同じ文字コードのテキスト形式で保 存してください。', 26 => '', 27 => '', 28 => '画像を削除する場合チェックする', @@ -1060,7 +1060,7 @@ 25 => 'フィードのタイトル', 26 => '配信最大件数', 27 => 'エントリの長さ', - 28 => '(0 = 本文なし, 1 = 本文すべて, other = 指定した文字数に制限。)', + 28 => '(0 = 本文なし、1 = 本文すべて、その他 = 指定した文字数に制限)', 29 => '詳細', 30 => '更新', 31 => '文字コード', @@ -1187,10 +1187,10 @@ 91 => '無効なURLが指定されました。', 92 => "使用する前にセキュリティチェックを行って ください!", 93 => 'データベースのバックアップに成功しました。', - 94 => 'バックアップ失敗: ファイルサイズが1KByte未満です。', + 94 => 'バックアップ失敗: ファイルサイズが1Kバイト未満です。', 95 => 'エラーが発生しました。', 96 => '申し訳ありません。あなたにはコンフィギュレーション管理ページへの アクセスが許可されていません。許可されていない機能へアクセスしようとする行為 のすべてが記録される点に注意してください。', - 97 => 'すべての必須フィールドの検証を満たしていません - デフォルトカス タムメンバーメッセージ' + 97 => '一部の必須フィールドの検証に失敗しました - デフォルトカスタムメ ンバーメッセージ' ); ############################################################################### @@ -1199,7 +1199,7 @@ 'access' => 'アクセス', 'ownerroot' => '所有者/Root', 'group' => 'グループ', - 'readonly' => '読みとり専用', + 'readonly' => '読み取り専用', 'accessrights' => 'アクセス権限', 'owner' => '所有者', 'grantgrouplabel' => '上記のグループに編集権限を与える', @@ -1219,10 +1219,10 @@ 'coregroup' => 'コアグループ', 'yes' => 'はい', 'no' => 'いいえ', - 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読みとり専用となっています。", + 'corerightsdescr' => "このグループは、{$_CONF['site_name']}の「コア(中 核)グループ」です。そのため、本グループの権限を編集することはできないため、 下記の権限リストは読み取り専用となっています。", 'groupmsg' => '本サイトのセキュリティグループは階層的になっています。本 グループを下記のグループに追加する場合、そのグループの持つ権限と同じ権限を本 グループにも与えることになります。可能であれば、本グループに権限を与える場 合、下記のグループの権限を継承させることが望ましい方法です。本グループに個別 に権限を与える場合は、下記の「権限」部分から様々な機能に関する権限を選択する ことができます。本グループを追加する場合は、下記のグループの横にあるボックス をチェックするだけです。', - 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読みとり専用となっています。", - 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループ自体が直接与えられている権限です。', + 'coregroupmsg' => "本グループは{$_CONF['site_name']}の「コア(中核)グ ループ」です。そのため、本グループの所属するグループは編集できません。下記の リストは読み取り専用となっています。", + 'rightsdescr' => 'グループのアクセス権は下記の権限で与えられているか、 グループが所属するグループ全体の権限を継承しています。下記のうち、チェックの ない権限は、本グループの所属するグループから継承した権限です。チェックのある 権限は本グループが直接与えられている権限です。', 'lock' => 'ロック', 'members' => 'メンバー ', 'anonymous' => 'ゲストユーザ', @@ -1231,7 +1231,7 @@ 'edit' => '編集', 'none' => 'なし', 'accessdenied' => 'アクセスが拒否されました', - 'storydenialmsg' => "この記事を閲覧する権限がありません。これは、あなた が{$_CONF['site_name']}のメンバーがないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", + 'storydenialmsg' => "この記事を閲覧する権限がありません。あなたが {$_CONF['site_name']}のメンバーでないためだと思われます。 {$_CONF['site_name']} のメンバーになることで閲覧が可能になります。", 'nogroupsforcoregroup' => 'このグループは他のどのグループにも所属してい ません', 'grouphasnorights' => 'このグループは管理権限を一切所有していません。', 'newgroup' => '新規', @@ -1269,8 +1269,8 @@ 'do_backup' => 'バックアップの実行', 'backup_successful' => 'データベースのバックアップが完了しました。', 'db_explanation' => 'Geeklogをバックアップするには、下のボタンをクリッ クしてください。', - 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっています。mysqldump_pathの設定をコンフィギュレーションでチ ェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", - 'zero_size' => 'バックアップが失敗しました。ファイルの大きさが0バイトで す。', + 'not_found' => "パスの指定が間違っているか、mysqldumpが実行可能になって いないか、PHPのopen_basedirの制限に引っかかっているかのどれかが原因で失敗し ました。mysqldump_pathの設定をコンフィギュ レーションでチェックしてください。現在の設定は、 \n{$_DB_mysqldump_path}です。", + 'zero_size' => 'バックアップに失敗しました。ファイルの大きさが0バイトで す。', 'path_not_found' => "{$_CONF['backup_path']} は存在しないか、ディレクト リではありません。", 'no_access' => "エラー: {$_CONF['backup_path']} ディレクトリにアクセス できません。", 'backup_file' => 'バックアップファイル', @@ -1316,7 +1316,7 @@ $LANG_PDF = array( 1 => 'PDF生成ができません。', - 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントを処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果は0バイトのサイズの 場合は削除されています。ドキュメントが変換可能だと確信できる場合はもう一度実 行してみてください。', + 2 => 'ドキュメントは変換されませんでした。受け取ったドキュメントは処理 されていません。XHTML標準によって書かれたHTML形式のドキュメントであることを 確認してください。複雑すぎるHTMLのドキュメントは正しく変換されなかったり、ま ったく変換されない場合があります。ドキュメントの変換結果が0バイトの場合は削 除されています。ドキュメントが変換可能だと確信できる場合はもう一度実行してみ てください。', 3 => 'PDFの生成で不明なエラーが発生しました。', 4 => 'ページのデータが与えられていないか、以下のアドホックなPDF生成ツー ルを使用してください。このページがエラーだと思われる場合はシステムの管理者に 連絡してください。もしくは以下のフォームからアドホックな方式によるPDFの生成 を行ってください。', 5 => 'ドキュメントを読み込み中です。', @@ -1677,7 +1677,7 @@ 'speedlimit' => "投稿間隔制限", 'skip_preview' => "プレビューしないで投稿する", 'advanced_editor' => "アドバンストエディタを使う", - 'wikitext_editor' => "ウィキテキストエディタを使う", + 'wikitext_editor' => "Wikiテキストエディタを使う", 'cron_schedule_interval' => "Cronスケジュール間隔", 'sortmethod' => "ソート方法", 'showstorycount' => "記事数を表示する", From codesite-noreply @ google.com Sat Mar 14 18:09:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:09:32 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2MCAtIHIxMjI1GyRCJE5KUTk5JHJIPzFHGyhC?= =?ISO-2022-JP?B?GyRCJDckXiQ5ISMbKEI=?= Message-ID: <00163646b5bc5341c70465109345@google.com> Author: tacahi Date: Sat Mar 14 02:03:51 2009 New Revision: 1260 Modified: branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/footer.thtml (contents, props changed) Log: r1225の変更を反映します。 画像のサイズ指定方法を修正しました。 Modified: branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/footer.thtml ============================================================================== --- branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/footer.thtml (original) +++ branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/footer.thtml Sat Mar 14 02:03:51 2009 @@ -30,7 +30,7 @@ alt="Valid HTML 4.01 Transitional" height="31" width="88"{xhtml}> Valid CSS! + alt="Valid CSS!" width="88" height="31"{xhtml}>

      From codesite-noreply @ google.com Sat Mar 14 18:13:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:13:32 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2MSAtIHIxMjMwLCByMTIzNhskQiROSlE5OSRyGyhC?= =?ISO-2022-JP?B?GyRCSD8xRyQ3JF4kOSEjGyhC?= Message-ID: <001485f3be62a486cb046510a1dd@google.com> Author: tacahi Date: Sat Mar 14 02:06:11 2009 New Revision: 1261 Modified: branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/README (contents, props changed) branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css (contents, props changed) Log: r1230, r1236の変更を反映します。 r1230: 2月8日リリース後に追加修正をしているので、バージョンを2.31に上げました。 2月8日リリース後の追加修正分は、Ver2.31としてREADMEの更新履歴に記載し ました。 ProfessionalCSSに修正等をしたファイルリストは、不必要と判断し READMEからを削除しました。 r1236: バージョン表記を間違っていたので訂正しました。 修正点をCHANGES.jpへ記載しました。 Modified: branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/README ============================================================================== --- branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/README (original) +++ branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/README Sat Mar 14 02:06:11 2009 @@ -1,6 +1,6 @@ /*============================================================================== タイトル : Geeklog用WAIproCSSテーマ - バージョン: 2.3 for Geeklog1.5.1 + バージョン: 2.3.1 for Geeklog1.5.1 著者 : Hisakatsu Katoh as ネット素浪人 (contact is katoq.AT.b-lines.DOT.jp) Masuko koeda as みるく(http://white-stage.com/) 説明 : Geeklog用のテーマ「ProfessionalCSS」を基本に, アクセシィビリ ティに配慮した「WAIproCSS」です。 @@ -23,7 +23,6 @@ *テンプレートファイル: コメント *CSS: CSSファイル構成・カスケード順序 *CSS: プロパティ記述順序 - *ProfessionalCSSに修正等をしたファイルリスト *カスタマイズ方法 *バージョン履歴 ==============================================================================*/ @@ -312,40 +311,6 @@ /*============================================================================== - ProfessionalCSSに修正等をしたファイルリスト -==============================================================================*/ -thtmlファイルリスト - -・header.thtml -・footer.thtml -・featuredstorytext.thtml -・storytext.thtml - -CSSファイルリスト - -・custom.sample.css -・css/block.css -・css/common.css -・css/default.css -・css/form.css -・css/layout.css -・css/story.css -・css/admin/configuration.css -・css/admin/lists.css -・css/navbar/navbar.css -・css/search/search.css -・css/trackback/trackback.css - -その他のファイルリスト -・functions.php -・images/css/icon_pagetop.gif -・images/edit.png -・images/mail.png -・images/print.png - - - -/*============================================================================== カスタマイズ方法 ==============================================================================*/ @@ -364,7 +329,7 @@ 特に理由がない場合には、WAIproCSSテーマのバージョンアップにも対応できるよう に、専用のCSSファイル(custom.css)を利用する方法をおすすめいたします。 ・専用のCSSファイル(custom.css)を利用したカスタマイズ - この方法は、カスタマイズ部分を専用のCSSファイル(custom.css)に分離するた め、ProfessionalCSSテーマに変更があった場合でも柔軟に対応できるとともに、カ スタマイズしたテーマの保守・管理性も高まります。 + この方法は、カスタマイズ部分を専用のCSSファイル(custom.css)に分離するた め、WAIproCSSテーマに変更があった場合でも柔軟に対応できるとともに、カスタマ イズしたテーマの保守・管理性も高まります。 CSSの特徴であるカスケードを活かしたカスタマイズ方法です。 1. 各CSSファイルからカスタマイズする箇所をcustom.css内にコピー&ペース トします。 @@ -399,12 +364,14 @@ + 追加 - 削除 -■Ver.2.3(2009-2-21) - ・ページの先頭へ戻るのアイコンを新しいものに差し替え、アイコンもリンク範 囲に含めました。 (*footer.thtml,*/css/layout.css,*/images/css/icon_pagetop.gif) +■Ver.2.3.1(2009-3-6) + ・ページの先頭へ戻るのアイコンもリンク範囲に含めました。 (*footer.thtml,*/css/layout.css,*/images/css/icon_pagetop.gif) ・背景画像/navbar/images/tabrightI.gifと/navbar/images/tabrightJ.gifを幅 の大きい物に差し替えました。(画像ジローさん提供 )(*/navbar/images/tabrightI.gif,*/navbar/images/tabrightJ.gif) ・ユニバーサルセレクタでの初期化をやめ、必要なセレクタのみを初期化しまし た。(*/css/default.css) ・div#centerblocksとtdに余白を追加しました。div#centerblocks余白追加に伴 い、中央ブロックの幅を修正しました。(*/css/layout.css,*/css/compatible.css) ・掲示板プラグイン(forum)で背景色と文字色のコントラストが不十分な部分を修 正しました。(*/css/compatible.css,*/css/plugin/forum.css) + +■Ver.2.3(2009-1-30) ・アイコンをPNGからGIFに変更した事に伴い、管理画面のアイコンにgifアイコン を追加しました。   +/images/admin/block-left.gif +/images/admin/block-right.gif @@ -486,6 +453,7 @@  ・デザインを変更しました。  ・functions.phpに掲示板プラグイン対応させました。(*/functions.php)  ・サイトロゴを新しいものに差し替えました。 (-/images/css/bg_logo.gif,+/images/logo.gif) + ・ページの先頭へ戻るのアイコンを新しいものに差し替えました。 (-/images/css/icon_pagetop.gif,+/images/icon_pagetop.gif)  ・ベーステーマProfessionalCSSに合わせて、ファイルを修正しました。  ・preとblockquote要素のスタイルを設定しました。(*/css/default.css) ・READMEにライセンスについて記載しました。(このファイル) Modified: branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css ============================================================================== --- branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css (original) +++ branches/geeklog-1.5.1-jp-extended/public_html/layout/WAIproCSS/custom.sample.css Sat Mar 14 02:06:11 2009 @@ -10,8 +10,8 @@ /*============================================================================== [INFO] カスタムテーマスタイルシート(雛型) - WAIproCSSver.2.3テーマをベースとしたカスタムテーマの作成を補助する CSSファイル(雛型)です。 - WAIproCSSver.2.3テーマの背景を指定します。 + WAIproCSSver.2.3.1テーマをベースとしたカスタムテーマの作成を補助す るCSSファイル(雛型)です。 + WAIproCSSver.2.3.1テーマの背景を指定します。 以下では、サンプルに例としてすべて背景色と枠線の色を白で設定してお りますが、 (ナビゲーションの文字色は黒で設定しています)   変更される時は、出来る限りコントラストに配慮した配色及び From codesite-noreply @ google.com Sat Mar 14 18:17:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:17:32 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2MiAtIHIxMjM4LCByMTI0MBskQiROSlE5OSRyGyhC?= =?ISO-2022-JP?B?GyRCSD8xRyQ3JF4kOSEjGyhC?= Message-ID: <00163646c1e6f66031046510af49@google.com> Author: tacahi Date: Sat Mar 14 02:08:16 2009 New Revision: 1262 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php (contents, props changed) Log: r1238, r1240の変更を反映します。 r1238: ケータイハックで以下の2点を修正。 ページ内リンクを参照するとセッションが切れる ・CUSTOM_refresh()でページ内リンクの処理をしていなかったため。処理を 追加しました。 ブロックメニューで表示されるリンクにセッションIDがない ・_mobile_add_sessid()でリンクの抽出に使っているパターンがURLの引用符 として二重引用符(")しか考慮していないのに、CUSTOM_MOBILE_blockMenu() ではURLを引用符(')でくくってしまっているため。 ・CUSTOM_MOBILE_blockMenu()は他に合わせて二重引用符を使うように修正。 ・_mobile_add_sessid()の正規表現を変更し、_mobile_session_callback()で 終端に二重引用符を付加していた部分の処理を修正して、正規表現に一致 したものを付加するように修正。 r1240: geeklog-1-jpのr1223とr1232の修正を取り込みました。 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php Sat Mar 14 02:08:16 2009 @@ -8,7 +8,7 @@ * Geeklog hack for cellular phones. * Copyright (c) 2006 - 2008 Tatsumi Imai(http://im-ltd.ath.cx) * License: GPL v2 or later - * Time-stamp: <2008-07-14 23:42:55 imai> + * Time-stamp: <2009-03-09 03:13:44 imai> */ // 設定 @@ -256,25 +256,40 @@ function CUSTOM_refresh($url) { global $LANG05,$CUSTOM_MOBILE_CONF; - $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', - mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); if(CUSTOM_MOBILE_is_cellular()) { + // ページ内リンクを探す + $pos = strpos($url, '#'); + if($pos === false) { + //CUSTOM_MOBILE_debug("not matched: " . $url); + $link = ""; + } else { + //CUSTOM_MOBILE_debug("matched: " . $url); + $link = substr($url, $pos); + $url = substr($url, 0, $pos); + } if($CUSTOM_MOBILE_CONF['refresh_use_location']) { $sepa = '?'; if (strpos($url, '?') > 0) { - //2009-02-19 Kunitsuji update + // 2009-02-19 Kunitsuji update $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID; + $location_url = 'Location: ' . $url . $sepa . SID . link; header( $location_url ); exit; } else { + $msg = mb_convert_encoding($LANG05['5'], 'sjis-win', + mb_detect_encoding($LANG05['5'], "UTF-8,EUC-JP,JIS,sjis-win")); + $sepa = '?'; + if (strpos($url, '?') > 0) { + $sepa = '&'; + } + $location_url = $url . $sepa . SID . link; return "\n" . "$msg" . - "$msg\n"; + "$msg\n"; } } else { return "\n"; @@ -284,52 +299,52 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - array('@<[ ]*table[^>]*?>@si', ''), - array('@<[ ]*/table[^>]*?>@si', ''), - array('@<[ ]*thead[^>]*?>@si', ''), - array('@<[ ]*/thead[^>]*?>@si', ''), - array('@<[ ]*tbody[^>]*?>@si', ''), - array('@<[ ]*/tbody[^>]*?>@si',''), - array('@<[ ]*tfoot[^>]*?>@si', ''), - array('@<[ ]*/tfoot[^>]*?>@si', ''), - array('@<[ ]*tr[^>]*?>@si', ''), - array('@<[ ]*/tr[^>]*?>@si', '
      '), - array('@<[ ]*th[^>]*?>@si', ''), - array('@<[ ]*/th[^>]*?>@si', ' '), - array('@<[ ]*td[^>]*?>@si', ''), - array('@<[ ]*/td[^>]*?>@si', ' ') - ); + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
      ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', +); // コメント削除用のパターン配列 $_mobile_comment = array( - array('@@sm', ''), - array('@@', '') - ); + '@@sm' => '', + '@@' => '', +); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - array('@<[ ]*div[^>]*?>@si', ''), - array('@<[ ]*/div[^>]*?>@si', "
      \n"), - // cut style - array('@style="[^"].*?"@i', ''), - // cut class - array('@class="[^"].*?"@i', ''), - // cut embed - array('@]*?>@si', ''), - ); + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
      \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', +); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - array('@@', ''), - array('@.*?@ms', ''), - ); + '@@' => '', + '@.*?@ms' => '', +); @@ -345,56 +360,46 @@ // モバイル用のコンテンツを表示、PC用のコンテンツを非表示 // これは単独で一番先に実行する必要がある - if($CUSTOM_MOBILE_CONF['use_mobile_content']) { - for($i = 0; $i < count($_mobile_content); $i++) { - $search[$i] = $_mobile_content[$i][0]; - $replace[$i] = $_mobile_content[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { + $content = preg_replace( + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある - if($CUSTOM_MOBILE_CONF['cut_comment']) { - for($i = 0; $i < count($_mobile_comment); $i++) { - $search[$i] = $_mobile_comment[$i][0]; - $replace[$i] = $_mobile_comment[$i][1]; - } - $content = preg_replace($search, $replace, $content); + if ($CUSTOM_MOBILE_CONF['cut_comment']) { + $content = preg_replace( + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { - for($i = 0; $i < count($_mobile_table); $i++) { - $search[$i] = $_mobile_table[$i][0]; - $replace[$i] = $_mobile_table[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 - if($CUSTOM_MOBILE_CONF['force_2g_content'] || + if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { - for($i = 0; $i < count($_mobile_3g); $i++) { - $search[$i] = $_mobile_3g[$i][0]; - $replace[$i] = $_mobile_3g[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 - if($CUSTOM_MOBILE_CONF['resize_image']) { + if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); - for($i = 0; $i < count($_mobile_images); $i++) { - $search[$i] = $_mobile_images[$i][0]; - $replace[$i] = $_mobile_images[$i][1]; - } - $content = preg_replace($search, $replace, $content); + $content = preg_replace( + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 - if($CUSTOM_MOBILE_CONF['convert_to_sjis']) { + if ($CUSTOM_MOBILE_CONF['convert_to_sjis']) { $charset ='Shift_JIS'; } else { $charset = $CUSTOM_MOBILE_CONF['host_charset']; @@ -415,7 +420,7 @@ '@
    • @i', '@^\s*
      ([\s\n]*)
      @mi', '@^\s*
    • ([\s\n]*)
    • @mi', - '@[ ]*? @', + '@\s*? @', '@\s*\n+ @ m', '@((\s)*
      )+ @ sm', ); @@ -468,8 +473,8 @@ global $_CONF; // ページ内のタグ、タグのurlを抽出 - $pat1 = '!( 0 ) { - $blockmenu .= "
    • " . - $A['title'] . "
    • \n"; + $blockmenu .= "
    • " . + $A['title'] . "
    • \n"; } } $blockmenu .= "
    \n"; @@ -795,13 +818,12 @@ // 画像タグのパターン配列 $_mobile_images = array( - array('@<([ ]*img.*?)width="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)height="[0-9]+?"(.*?)>@si', '<$1$2>'), - array('@<([ ]*img.*?)src="([^"]*?)"(.*?)>@si', - '<$1src="' . $_CONF['site_url'] . RESIZER . '?image=$2&size='. - $CUSTOM_MOBILE_CONF['image_size'] . '&quality=' . - $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . - $_CONF['site_url'] . '"$3 ' . XHTML . '>'), - ); + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', +); ?> From codesite-noreply @ google.com Sat Mar 14 18:21:33 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:21:33 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2MyAtIHIxMjQyGyRCJE5KUTk5JHJIPzFHGyhC?= =?ISO-2022-JP?B?GyRCJDckXiQ5ISMbKEI=?= Message-ID: <000e0cd329825139d7046510be01@google.com> Author: tacahi Date: Sat Mar 14 02:09:28 2009 New Revision: 1263 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_mail_jp.php (contents, props changed) Log: r1242の変更を反映します。 r1242: r1216の更新をgeeklog-1-jp-extendedにも適用します。 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_mail_jp.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/system/custom/custom_mail_jp.php (original) +++ branches/geeklog-1.5.1-jp-extended/system/custom/custom_mail_jp.php Sat Mar 14 02:09:28 2009 @@ -11,7 +11,7 @@ // メールに戻します。 // @author mystral-kk - geeklog AT mystral-kk DOT net // @license LGPL -// @version 2008-09-26 +// @version 2009-02-27 // @note このハックが不要な場合は,system/lib-custom.phpの中の // require_once('custom/custom_mail_jp.php'); // を削除してください。 @@ -261,14 +261,16 @@ $from = COM_formatEmailAddress($_CONF['site_name'], $_CONF['site_mail']); } - // ヘッダをエスケープ - list($temp_to_comment, $temp_to_address) = CUSTOM_splitAddress($to); - $to = CUSTOM_formatEmailAddress($temp_to_comment, $temp_to_address); - list($temp_cc_comment, $temp_cc_address) = CUSTOM_splitAddress($cc); - $cc = CUSTOM_formatEmailAddress($temp_cc_comment, $temp_cc_address); - list($temp_from_comment, $temp_from_address) = CUSTOM_splitAddress($from); - $from = CUSTOM_formatEmailAddress($temp_from_comment, $temp_from_address); - $subject = CUSTOM_emailEscape($subject); + // ヘッダをエスケープ(1.5.2では、この時点でエスケープ済み) + if (version_compare(VERSION, '1.5.2') < 0) { + list($temp_to_comment, $temp_to_address) = CUSTOM_splitAddress($to); + $to = CUSTOM_formatEmailAddress($temp_to_comment, $temp_to_address); + list($temp_cc_comment, $temp_cc_address) = CUSTOM_splitAddress($cc); + $cc = CUSTOM_formatEmailAddress($temp_cc_comment, $temp_cc_address); + list($temp_from_comment, $temp_from_address) = CUSTOM_splitAddress($from); + $from = CUSTOM_formatEmailAddress($temp_from_comment, $temp_from_address); + $subject = CUSTOM_emailEscape($subject); + } // 本文をエスケープ $message = CUSTOM_convertEncoding($message, CUSTOM_MAIL_ENCODING); From codesite-noreply @ google.com Sat Mar 14 18:25:33 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:25:33 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2NCAtIHRydW5rL2dlZWtsb2ctMS1qcC1leHRlbg==?= =?ISO-2022-JP?B?ZGVkGyRCJCskaTxoJGo5fiRzJEBKUTk5JHI1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <000e0cd2dda4a13c46046510cc4f@google.com> Author: tacahi Date: Sat Mar 14 02:14:05 2009 New Revision: 1264 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: trunk/geeklog-1-jp-extendedから取り込んだ変更を記録しました。 (r1224, r1225, r1230, r1236, r1238, r1240, r1242) Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Sat Mar 14 02:14:05 2009 @@ -1,5 +1,25 @@ $Id$ +2009-03-14 Takahiro Kambe + + * 以下のリビジョンの修正を取り込みました。 + + * r1224 + language/japanese_utf-8.php + + * r1225 + public_html/layout/WAIproCSS/footer.thtml + + * r1230, r1236 + public_html/layout/WAIproCSS/README + public_html/layout/WAIproCSS/custom.sample.css + + * r1238, r1240 + system/custom/custom_cellular.php + + * r1242 + system/custom/custom_mail_jp.php + 2009-02-27 Takahiro Kambe * trunk/geeklog-1-jp-extendedのr1201の修正を取り込みました。 From codesite-noreply @ google.com Sat Mar 14 18:29:34 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:29:34 +0000 Subject: [geeklog-jp commit] r1265 - To identify as japanese pre-1.4 release, release_jp.php is now 1.3.99. Message-ID: <000e0cd2dc40f5507d046510da0c@google.com> Author: tacahi Date: Sat Mar 14 02:20:10 2009 New Revision: 1265 Modified: branches/geeklog-1.5.1-jp/release_jp.php Log: To identify as japanese pre-1.4 release, release_jp.php is now 1.3.99. (I don't know it is BETA, RC or so on.) Modified: branches/geeklog-1.5.1-jp/release_jp.php ============================================================================== --- branches/geeklog-1.5.1-jp/release_jp.php (original) +++ branches/geeklog-1.5.1-jp/release_jp.php Sat Mar 14 02:20:10 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sat Mar 14 18:33:34 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:33:34 +0000 Subject: [geeklog-jp commit] r1266 - To identify as japanese pre-1.4 release, release_jp.php is now 1.3.99. Message-ID: <000e0cd212cc4a9512046510e905@google.com> Author: tacahi Date: Sat Mar 14 02:20:26 2009 New Revision: 1266 Modified: branches/geeklog-1.5.1-jp-extended/release_jp.php Log: To identify as japanese pre-1.4 release, release_jp.php is now 1.3.99. (I don't know it is BETA, RC or so on.) Modified: branches/geeklog-1.5.1-jp-extended/release_jp.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/release_jp.php (original) +++ branches/geeklog-1.5.1-jp-extended/release_jp.php Sat Mar 14 02:20:26 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sat Mar 14 18:37:34 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:37:34 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2NyAtIBskQkZ8S1w4bEhHJE4laiVqITwbKEI=?= =?ISO-2022-JP?B?GyRCJTkkchsoQjEuMy45ORskQiRIJDckXiQ3JD8hIxsoQg==?= Message-ID: <000e0cd250889d0662046510f7b3@google.com> Author: tacahi Date: Sat Mar 14 02:21:37 2009 New Revision: 1267 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: 日本語版のリリースを1.3.99としました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Sat Mar 14 02:21:37 2009 @@ -2,6 +2,8 @@ 2009-03-14 Takahiro Kambe + * 日本語版のリリースを1.3.99としました。 + * 以下のリビジョンの修正を取り込みました。 * 1224 From codesite-noreply @ google.com Sat Mar 14 18:41:35 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:41:35 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2OCAtIBskQkZ8S1w4bEhHJE4laiVqITwbKEI=?= =?ISO-2022-JP?B?GyRCJTkkchsoQjEuMy45ORskQiRIJDckXiQ3JD8hIxsoQg==?= Message-ID: <001636417601f5722c046511051d@google.com> Author: tacahi Date: Sat Mar 14 02:22:15 2009 New Revision: 1268 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: 日本語版のリリースを1.3.99としました。 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Sat Mar 14 02:22:15 2009 @@ -2,6 +2,8 @@ 2009-03-14 Takahiro Kambe + * 日本語版のリリースを1.3.99としました。 + * 以下のリビジョンの修正を取り込みました。 * r1224 From codesite-noreply @ google.com Sat Mar 14 18:45:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:45:36 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI2OSAtIBskQiVVJSElJCVrTD4kTjRWMGMbKEI=?= =?ISO-2022-JP?B?GyRCJCQkcj0kQDUkNyReJDkhIxsoQg==?= Message-ID: <0016e64f68204d2d4e046511140b@google.com> Author: tacahi Date: Sat Mar 14 02:41:36 2009 New Revision: 1269 Added: trunk/geeklog-1-jp/public_html/japanize/index.html - copied unchanged from r1268, /trunk/geeklog-1-jp/public_html/japanize/inex.html Removed: trunk/geeklog-1-jp/public_html/japanize/inex.html Log: ファイル名の間違いを修正します。 From codesite-noreply @ google.com Sat Mar 14 18:49:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:49:37 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3MCAtIBskQiVVJSElJCVrTD4kTjhtJGobKEI=?= =?ISO-2022-JP?B?GyRCJHIlaiVdJTglSCVqPmUkThsoQnJlbmFtZRskQiRHPSRANSQ3JF4kOSEjGyhC?= Message-ID: <00163646b7b0a869570465112235@google.com> Author: tacahi Date: Sat Mar 14 02:43:31 2009 New Revision: 1270 Added: branches/geeklog-1.5.1-jp/public_html/japanize/index.html - copied unchanged from r1269, /branches/geeklog-1.5.1-jp/public_html/japanize/inex.html Removed: branches/geeklog-1.5.1-jp/public_html/japanize/inex.html Log: ファイル名の誤りをリポジトリ上のrenameで修正します。 From codesite-noreply @ google.com Sat Mar 14 18:53:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:53:37 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3MSAtIBskQiVVJSElJCVrTD4kTjhtJGobKEI=?= =?ISO-2022-JP?B?KHB1YmxpY19odG1sL2phcGFuaXplL2luZXguaHRtbCkbJEIkciVqJV0lOCVIJWo+ZSROGyhC?= Message-ID: <000e0cd243bafc8aef0465113018@google.com> Author: tacahi Date: Sat Mar 14 02:47:10 2009 New Revision: 1271 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: ファイル名の誤り(public_html/japanize/inex.html)をリポジトリ上の 名前変更で修正したことを記述しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Sat Mar 14 02:47:10 2009 @@ -2,6 +2,9 @@ 2009-03-10 Takahiro Kambe + * ファイル名の誤り(public_html/japanize/inex.html)をリポジトリ上の + 名前変更で修正しました。 + * Geeklog 1.5.2のマージの洩れを修正しました。 2009-03-06 mystral-kk From codesite-noreply @ google.com Sat Mar 14 18:57:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 09:57:37 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3MiAtIBskQiVVJSElJCVrTD4kTjhtJGobKEI=?= =?ISO-2022-JP?B?KHB1YmxpY19odG1sL2phcGFuaXplL2luZXguaHRtbCkbJEIkciVqJV0lOCVIJWo+ZSROGyhC?= Message-ID: <001636e9116b4e52ec0465113fb5@google.com> Author: tacahi Date: Sat Mar 14 02:49:48 2009 New Revision: 1272 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: ファイル名の誤り(public_html/japanize/inex.html)をリポジトリ上の 名前変更で修正したことを記述しました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Sat Mar 14 02:49:48 2009 @@ -2,6 +2,8 @@ 2009-03-14 Takahiro Kambe + * r1269の修正を、リポジトリ上のファイル名変更で取り込みました。 + * 日本語版のリリースを1.3.99としました。 * 以下のリビジョンの修正を取り込みました。 From codesite-noreply @ google.com Sat Mar 14 21:50:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 12:50:57 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3MyAtIGdlZWtsb2cgMS41LjHjga7jg57jg7w=?= =?UTF-8?B?44K444Gu6YGO56iL44Gn5oi744GX44Gm44GX44G+44Gj44Gf44Go5oCd44KP44KM44KL5L+u5q2j44KS?= =?UTF-8?B?5YWD44Gr77+9Li4u?= Message-ID: <001636e9100f2709c3046513abbd@google.com> Author: tacahi Date: Sat Mar 14 05:50:21 2009 New Revision: 1273 Modified: branches/geeklog-1.5.1-jp/public_html/calendar/index.php Log: geeklog 1.5.1のマージの過程で戻してしまったと思われる修正を元に戻します。 Modified: branches/geeklog-1.5.1-jp/public_html/calendar/index.php ============================================================================== --- branches/geeklog-1.5.1-jp/public_html/calendar/index.php (original) +++ branches/geeklog-1.5.1-jp/public_html/calendar/index.php Sat Mar 14 05:50:21 2009 @@ -801,12 +801,8 @@ break; case 'addentry': - if (SEC_checkToken()) { - $display .= plugin_submit_calendar($mode); - $display .= COM_siteFooter(); - } else { - $display = COM_refresh($_CONF['site_url'] . '/calendar/index.php'); - } + $display .= plugin_submit_calendar($mode); + $display .= COM_siteFooter(); break; case 'savepersonal': From codesite-noreply @ google.com Sat Mar 14 21:54:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 12:54:57 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3NCAtIHB1YmxpY19odG1sL2NhbGVuZGFyL2luZA==?= =?ISO-2022-JP?B?ZXgucGhwGyRCJE46Rj0kQDUkcjUtTz8kNyReJDckPyEjGyhC?= Message-ID: <000e0cd329827af5ac046513b911@google.com> Author: tacahi Date: Sat Mar 14 05:51:19 2009 New Revision: 1274 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: public_html/calendar/index.phpの再修正を記録しました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Sat Mar 14 05:51:19 2009 @@ -2,6 +2,8 @@ 2009-03-14 Takahiro Kambe + * public_html/calendar/index.phpが誤って戻っていたのを再修正しました。 + * r1269の修正を、リポジトリ上のファイル名変更で取り込みました。 * 日本語版のリリースを1.3.99としました。 From codesite-noreply @ google.com Sat Mar 14 21:58:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 12:58:57 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3NSAtIHIxMjUzGyRCJEhGMU1NJE49JEA1GyhC?= =?ISO-2022-JP?B?GyRCJHI5VCQkJF4kOSEjGyhC?= Message-ID: <000e0cd29bf0cccbae046513c71d@google.com> Author: tacahi Date: Sat Mar 14 05:52:28 2009 New Revision: 1275 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php Log: r1253と同様の修正を行います。 trunk/geeklog-1-jpに合わせる形で、両者を同一にします。 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php Sat Mar 14 05:52:28 2009 @@ -299,51 +299,51 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - '@<\s*table[^>]*?>@si' => '', - '@<\s*/table[^>]*?>@si' => '', - '@<\s*thead[^>]*?>@si' => '', - '@<\s*/thead[^>]*?>@si' => '', - '@<\s*tbody[^>]*?>@si' => '', - '@<\s*/tbody[^>]*?>@si' => '', - '@<\s*tfoot[^>]*?>@si' => '', - '@<\s*/tfoot[^>]*?>@si' => '', - '@<\s*tr[^>]*?>@si' => '', - '@<\s*/tr[^>]*?>@si' => '
    ', - '@<\s*th[^>]*?>@si' => '', - '@<\s*/th[^>]*?>@si' => ' ', - '@<\s*td[^>]*?>@si' => '', - '@<\s*/td[^>]*?>@si' => ' ', + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', ); // コメント削除用のパターン配列 $_mobile_comment = array( - '@@sm' => '', - '@@' => '', + '@@sm' => '', + '@@' => '', ); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - '@<\s*div[^>]*?>@si' => '', - '@<\s*/div[^>]*?>@si' => "
    \n", - // cut style - '@style="[^"].*?"@i' => '', - // cut class - '@class="[^"].*?"@i' => '', - // cut embed - '@]*?>@si' => '', + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', ); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - '@@' => '', - '@.*?@ms' => '', + '@@' => '', + '@.*?@ms' => '', ); @@ -362,15 +362,15 @@ // これは単独で一番先に実行する必要がある if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { $content = preg_replace( - array_keys($_mobile_content), array_values($_mobile_content), $content - ); + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある if ($CUSTOM_MOBILE_CONF['cut_comment']) { $content = preg_replace( - array_keys($_mobile_comment), array_values($_mobile_comment), $content - ); + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 @@ -378,24 +378,24 @@ $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { $content = preg_replace( - array_keys($_mobile_table), array_values($_mobile_table), $content - ); + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { $content = preg_replace( - array_keys($_mobile_3g), array_values($_mobile_3g), $content - ); + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); $content = preg_replace( - array_keys($_mobile_images), array_values($_mobile_images), $content - ); + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 @@ -539,20 +539,20 @@ // stripslashes(配列対応版) function _mobile_stripslashes_deep($data) { - if (is_array($data)) { - return array_map('_mobile_stripslashes_deep', $data); - } else { - return stripslashes($data); - } + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } } // urldecode(配列対応版) function _mobile_urldecode_deep($data) { - if (is_array($data)) { - return array_map('_mobile_urldecode_deep', $data); - } else { - return urldecode($data); - } + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } } // 入力をURLデコードする @@ -818,12 +818,12 @@ // 画像タグのパターン配列 $_mobile_images = array( - '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] - . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] - . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] - . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); ?> From codesite-noreply @ google.com Sat Mar 14 22:02:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 13:02:57 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3NiAtIHN5c3RlbS9jdXN0b20vY3VzdG9tX2NlbA==?= =?ISO-2022-JP?B?bHVsYXIucGhwGyRCJE5KUTk5JEskRCQkJEY1LT1SJHIyQyQoJF4kNyQ/ISMbKEI=?= Message-ID: <000e0cd179e21e7cfd046513d6e8@google.com> Author: tacahi Date: Sat Mar 14 05:54:55 2009 New Revision: 1276 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: system/custom/custom_cellular.phpの変更について記述を加えました。 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Sat Mar 14 05:54:55 2009 @@ -2,6 +2,9 @@ 2009-03-14 Takahiro Kambe + * system/custom/custom_cellular.phpのインデントをtrunk/geeklog-1-jpに + 合わせる形で同一にしました。 + * 日本語版のリリースを1.3.99としました。 * 以下のリビジョンの修正を取り込みました。 From codesite-noreply @ google.com Sat Mar 14 22:06:58 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 13:06:58 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3NyAtIENIQU5HRVMuanAbJEIkSEYxTU0kSxsoQg==?= =?ISO-2022-JP?B?GyRCISIbKEJzdm46a2V5d29yZHMbJEIkchsoQklkGyRCJEghIhsoQnN2bjplb2wtc3R5bGUbJEIkchsoQm5hdGl2ZRskQiRLQF9EaiQ3GyhC?= =?ISO-2022-JP?B?GyRCJF4kOSEjGyhC?= Message-ID: <00163645825a740b55046513e40a@google.com> Author: tacahi Date: Sat Mar 14 06:00:03 2009 New Revision: 1277 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (props changed) Log: CHANGES.jpと同様に、svn:keywordsをIdと、svn:eol-styleをnativeに設定します。 From codesite-noreply @ google.com Sat Mar 14 22:10:58 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 14 Mar 2009 13:10:58 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3OCAtIENIQU5HRVMuanAbJEIkSEYxTU0kSxsoQg==?= =?ISO-2022-JP?B?GyRCISIbKEJzdm46a2V5d29yZHMbJEIkchsoQklkGyRCJEghIhsoQnN2bjplb2wtc3R5bGUbJEIkchsoQm5hdGl2ZRskQiRLQF9EaiQ3GyhC?= =?ISO-2022-JP?B?GyRCJF4kOSEjGyhC?= Message-ID: <00163646c1e6c760a4046513f260@google.com> Author: tacahi Date: Sat Mar 14 06:02:15 2009 New Revision: 1278 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (props changed) Log: CHANGES.jpと同様に、svn:keywordsをIdと、svn:eol-styleをnativeに設定します。 From codesite-noreply @ google.com Mon Mar 16 02:50:47 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 15 Mar 2009 17:50:47 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI3OSAtIElzc3VlIDU5GyRCJEtCUDF+ISMbKEI=?= Message-ID: <000e0cd2421c4bff1b04652bf90a@google.com> Author: tatsumi.imai Date: Sun Mar 15 10:17:59 2009 New Revision: 1279 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php Log: Issue 59に対応。 ->CUSTOM_refresh()内で$linkとすべきところがlinkになっていたのを修正。 Ivyさん経由でmistral-kkさんの指摘によりphpの終了タグを削除。 参考: http://www.php.net/manual/ja/language.basic-syntax.instruction-separation.php http://framework.zend.com/manual/ja/coding-standard.php-file-formatting.html Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp/system/custom/custom_cellular.php Sun Mar 15 10:17:59 2009 @@ -275,7 +275,7 @@ $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID . link; + $location_url = 'Location: ' . $url . $sepa . SID . $link; header( $location_url ); exit; } else { @@ -285,7 +285,7 @@ if (strpos($url, '?') > 0) { $sepa = '&'; } - $location_url = $url . $sepa . SID . link; + $location_url = $url . $sepa . SID . $link; return "\n" . "$msg" . @@ -825,5 +825,3 @@ . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); - -?> From codesite-noreply @ google.com Mon Mar 16 03:14:51 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 15 Mar 2009 18:14:51 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4MCAtIGdlZWtsb2ctMS1qcBskQiROGyhCcjEyNzkbJEIkchsoQg==?= =?ISO-2022-JP?B?GyRCSD8xRyEjGyhC?= Message-ID: <000e0cd172a460fba604652c4f39@google.com> Author: tatsumi.imai Date: Sun Mar 15 11:03:48 2009 New Revision: 1280 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Log: geeklog-1-jpのr1279を反映。 Modified: trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp-extended/system/custom/custom_cellular.php Sun Mar 15 11:03:48 2009 @@ -275,7 +275,7 @@ $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID . link; + $location_url = 'Location: ' . $url . $sepa . SID . $link; header( $location_url ); exit; } else { @@ -285,7 +285,7 @@ if (strpos($url, '?') > 0) { $sepa = '&'; } - $location_url = $url . $sepa . SID . link; + $location_url = $url . $sepa . SID . $link; return "\n" . "$msg" . @@ -299,51 +299,51 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - '@<\s*table[^>]*?>@si' => '', - '@<\s*/table[^>]*?>@si' => '', - '@<\s*thead[^>]*?>@si' => '', - '@<\s*/thead[^>]*?>@si' => '', - '@<\s*tbody[^>]*?>@si' => '', - '@<\s*/tbody[^>]*?>@si' => '', - '@<\s*tfoot[^>]*?>@si' => '', - '@<\s*/tfoot[^>]*?>@si' => '', - '@<\s*tr[^>]*?>@si' => '', - '@<\s*/tr[^>]*?>@si' => '
    ', - '@<\s*th[^>]*?>@si' => '', - '@<\s*/th[^>]*?>@si' => ' ', - '@<\s*td[^>]*?>@si' => '', - '@<\s*/td[^>]*?>@si' => ' ', + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', ); // コメント削除用のパターン配列 $_mobile_comment = array( - '@@sm' => '', - '@@' => '', + '@@sm' => '', + '@@' => '', ); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - '@<\s*div[^>]*?>@si' => '', - '@<\s*/div[^>]*?>@si' => "
    \n", - // cut style - '@style="[^"].*?"@i' => '', - // cut class - '@class="[^"].*?"@i' => '', - // cut embed - '@]*?>@si' => '', + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', ); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - '@@' => '', - '@.*?@ms' => '', + '@@' => '', + '@.*?@ms' => '', ); @@ -362,15 +362,15 @@ // これは単独で一番先に実行する必要がある if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { $content = preg_replace( - array_keys($_mobile_content), array_values($_mobile_content), $content - ); + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある if ($CUSTOM_MOBILE_CONF['cut_comment']) { $content = preg_replace( - array_keys($_mobile_comment), array_values($_mobile_comment), $content - ); + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 @@ -378,24 +378,24 @@ $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { $content = preg_replace( - array_keys($_mobile_table), array_values($_mobile_table), $content - ); + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { $content = preg_replace( - array_keys($_mobile_3g), array_values($_mobile_3g), $content - ); + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); $content = preg_replace( - array_keys($_mobile_images), array_values($_mobile_images), $content - ); + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 @@ -539,20 +539,20 @@ // stripslashes(配列対応版) function _mobile_stripslashes_deep($data) { - if (is_array($data)) { - return array_map('_mobile_stripslashes_deep', $data); - } else { - return stripslashes($data); - } + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } } // urldecode(配列対応版) function _mobile_urldecode_deep($data) { - if (is_array($data)) { - return array_map('_mobile_urldecode_deep', $data); - } else { - return urldecode($data); - } + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } } // 入力をURLデコードする @@ -818,12 +818,10 @@ // 画像タグのパターン配列 $_mobile_images = array( - '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] - . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] - . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] - . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); - -?> From codesite-noreply @ google.com Tue Mar 17 01:23:07 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:23:07 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4NCAtIHIxMjgwGyRCJE49JEA1JE48aCRqGyhC?= =?ISO-2022-JP?B?GyRCOX4kXyRyNS09UiQ3JF4kNyQ/ISMbKEI=?= Message-ID: <0016e64ca7d6a5184b04653edddb@google.com> Author: tacahi Date: Mon Mar 16 09:10:23 2009 New Revision: 1284 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: r1280の修正の取り込みを記述しました。 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Mon Mar 16 09:10:23 2009 @@ -1,5 +1,14 @@ $Id$ +2009-03-17 Takahiro Kambe + + * r1280の修正を取り込みました。 + + Issue 59に対応。 + ->CUSTOM_refresh()内で$linkとすべきところがlinkになっていたのを修正。 + + Ivyさん経由でmistral-kkさんの指摘によりphpの終了タグを削除。 + 2009-03-14 Takahiro Kambe * system/custom/custom_cellular.phpのインデントをtrunk/geeklog-1-jpに From codesite-noreply @ google.com Tue Mar 17 01:27:11 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:27:11 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4NiAtIBskQj9lSj8lPyVWJHIlOSVaITwbKEI=?= =?ISO-2022-JP?B?GyRCJTkkWCROQ1YkLTQ5JCgkSyREJCQkRjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <001636b14b172efcd404653eecd4@google.com> Author: tacahi Date: Mon Mar 16 09:21:03 2009 New Revision: 1286 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: 水平タブをスペースへの置き換えについて記述しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Mon Mar 16 09:21:03 2009 @@ -1,5 +1,12 @@ $Id$ +2009-03-17 Takahiro Kambe + + * system/custom/custom_cellular.php: 水平タブをスペースに置き換え + ました。本来はすべてのファイルで水平タブとスペースの使用を確認 + すべきところですが、取り敢えず各trunkとブランチの差異を埋めるため + 最低限のファイルの変更を行います。 + 2009-03-10 Takahiro Kambe * ファイル名の誤り(public_html/japanize/inex.html)をリポジトリ上の From codesite-noreply @ google.com Tue Mar 17 01:31:15 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:31:15 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4MiAtIHIxMjc5GyRCJE5KUTk5JHI1LT1SGyhC?= =?ISO-2022-JP?B?GyRCJDckXiQ3JD8hIxsoQg==?= Message-ID: <00163646c1e6b2641204653efab1@google.com> Author: tacahi Date: Mon Mar 16 08:58:22 2009 New Revision: 1282 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: r1279の変更を記述しました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Mon Mar 16 08:58:22 2009 @@ -1,5 +1,14 @@ $Id$ +2009-03-17 Takahiro Kambe + + * r1279の修正を取り込みました。 + + Issue 59に対応。 + ->CUSTOM_refresh()内で$linkとすべきところがlinkになっていたのを修正。 + + Ivyさん経由でmistral-kkさんの指摘によりphpの終了タグを削除。 + 2009-03-14 Takahiro Kambe * public_html/calendar/index.phpが誤って戻っていたのを再修正しました。 From codesite-noreply @ google.com Tue Mar 17 01:35:16 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:35:16 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4MSAtIHIxMjc5GyRCJE5KUTk5JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkNyReJDkhIxsoQg==?= Message-ID: <001636e0a82615a3a804653f09c1@google.com> Author: tacahi Date: Mon Mar 16 08:56:07 2009 New Revision: 1281 Modified: branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php (contents, props changed) Log: r1279の変更をマージします。 Issue 59に対応。 ->CUSTOM_refresh()内で$linkとすべきところがlinkになっていたのを修正。 Ivyさん経由でmistral-kkさんの指摘によりphpの終了タグを削除。 参考: http://www.php.net/manual/ja/language.basic-syntax.instruction-separation.php http://framework.zend.com/manual/ja/coding-standard.php-file-formatting.html Modified: branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php Mon Mar 16 08:56:07 2009 @@ -275,7 +275,7 @@ $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID . link; + $location_url = 'Location: ' . $url . $sepa . SID . $link; header( $location_url ); exit; } else { @@ -285,7 +285,7 @@ if (strpos($url, '?') > 0) { $sepa = '&'; } - $location_url = $url . $sepa . SID . link; + $location_url = $url . $sepa . SID . $link; return "\n" . "$msg" . @@ -825,5 +825,3 @@ . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); - -?> From codesite-noreply @ google.com Tue Mar 17 01:39:20 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:39:20 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4OCAtIHIxMjg1GyRCJEhGMU1NJE5KUTk5GyhC?= =?ISO-2022-JP?B?GyRCJHI5VCQkJF4kNyQ/ISMbKEIoGyRCP2VKPyU/JVYkciU5JVohPCU5JFgkTkNWGyhC?= =?ISO-2022-JP?B?GyRCJC00OSQoGyhCKQ==?= Message-ID: <00163646d5f0a5d27304653f1762@google.com> Author: tacahi Date: Mon Mar 16 09:23:31 2009 New Revision: 1288 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php Log: r1285と同様の変更を行いました。(水平タブをスペースへの置き換え) Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php Mon Mar 16 09:23:31 2009 @@ -299,51 +299,51 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - '@<\s*table[^>]*?>@si' => '', - '@<\s*/table[^>]*?>@si' => '', - '@<\s*thead[^>]*?>@si' => '', - '@<\s*/thead[^>]*?>@si' => '', - '@<\s*tbody[^>]*?>@si' => '', - '@<\s*/tbody[^>]*?>@si' => '', - '@<\s*tfoot[^>]*?>@si' => '', - '@<\s*/tfoot[^>]*?>@si' => '', - '@<\s*tr[^>]*?>@si' => '', - '@<\s*/tr[^>]*?>@si' => '
    ', - '@<\s*th[^>]*?>@si' => '', - '@<\s*/th[^>]*?>@si' => ' ', - '@<\s*td[^>]*?>@si' => '', - '@<\s*/td[^>]*?>@si' => ' ', + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', ); // コメント削除用のパターン配列 $_mobile_comment = array( - '@@sm' => '', - '@@' => '', + '@@sm' => '', + '@@' => '', ); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - '@<\s*div[^>]*?>@si' => '', - '@<\s*/div[^>]*?>@si' => "
    \n", - // cut style - '@style="[^"].*?"@i' => '', - // cut class - '@class="[^"].*?"@i' => '', - // cut embed - '@]*?>@si' => '', + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', ); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - '@@' => '', - '@.*?@ms' => '', + '@@' => '', + '@.*?@ms' => '', ); @@ -362,15 +362,15 @@ // これは単独で一番先に実行する必要がある if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { $content = preg_replace( - array_keys($_mobile_content), array_values($_mobile_content), $content - ); + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある if ($CUSTOM_MOBILE_CONF['cut_comment']) { $content = preg_replace( - array_keys($_mobile_comment), array_values($_mobile_comment), $content - ); + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 @@ -378,24 +378,24 @@ $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { $content = preg_replace( - array_keys($_mobile_table), array_values($_mobile_table), $content - ); + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { $content = preg_replace( - array_keys($_mobile_3g), array_values($_mobile_3g), $content - ); + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); $content = preg_replace( - array_keys($_mobile_images), array_values($_mobile_images), $content - ); + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 @@ -539,20 +539,20 @@ // stripslashes(配列対応版) function _mobile_stripslashes_deep($data) { - if (is_array($data)) { - return array_map('_mobile_stripslashes_deep', $data); - } else { - return stripslashes($data); - } + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } } // urldecode(配列対応版) function _mobile_urldecode_deep($data) { - if (is_array($data)) { - return array_map('_mobile_urldecode_deep', $data); - } else { - return urldecode($data); - } + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } } // 入力をURLデコードする @@ -818,10 +818,10 @@ // 画像タグのパターン配列 $_mobile_images = array( - '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] - . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] - . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] - . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); From codesite-noreply @ google.com Tue Mar 17 01:43:22 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:43:22 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4NyAtIHIxMjg1GyRCJEhGMU1NJE5KUTk5GyhC?= =?ISO-2022-JP?B?GyRCJHI5VCQkJF4kNyQ/ISMbKEIoGyRCP2VKPyU/JVYkciU5JVohPCU5JFgkTkNWGyhC?= =?ISO-2022-JP?B?GyRCJC00OSQoGyhCKQ==?= Message-ID: <0016364c598312a00b04653f26e4@google.com> Author: tacahi Date: Mon Mar 16 09:22:46 2009 New Revision: 1287 Modified: branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php Log: r1285と同様の変更を行いました。(水平タブをスペースへの置き換え) Modified: branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp/system/custom/custom_cellular.php Mon Mar 16 09:22:46 2009 @@ -299,51 +299,51 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - '@<\s*table[^>]*?>@si' => '', - '@<\s*/table[^>]*?>@si' => '', - '@<\s*thead[^>]*?>@si' => '', - '@<\s*/thead[^>]*?>@si' => '', - '@<\s*tbody[^>]*?>@si' => '', - '@<\s*/tbody[^>]*?>@si' => '', - '@<\s*tfoot[^>]*?>@si' => '', - '@<\s*/tfoot[^>]*?>@si' => '', - '@<\s*tr[^>]*?>@si' => '', - '@<\s*/tr[^>]*?>@si' => '
    ', - '@<\s*th[^>]*?>@si' => '', - '@<\s*/th[^>]*?>@si' => ' ', - '@<\s*td[^>]*?>@si' => '', - '@<\s*/td[^>]*?>@si' => ' ', + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', ); // コメント削除用のパターン配列 $_mobile_comment = array( - '@@sm' => '', - '@@' => '', + '@@sm' => '', + '@@' => '', ); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - '@<\s*div[^>]*?>@si' => '', - '@<\s*/div[^>]*?>@si' => "
    \n", - // cut style - '@style="[^"].*?"@i' => '', - // cut class - '@class="[^"].*?"@i' => '', - // cut embed - '@]*?>@si' => '', + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', ); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - '@@' => '', - '@.*?@ms' => '', + '@@' => '', + '@.*?@ms' => '', ); @@ -362,15 +362,15 @@ // これは単独で一番先に実行する必要がある if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { $content = preg_replace( - array_keys($_mobile_content), array_values($_mobile_content), $content - ); + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある if ($CUSTOM_MOBILE_CONF['cut_comment']) { $content = preg_replace( - array_keys($_mobile_comment), array_values($_mobile_comment), $content - ); + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 @@ -378,24 +378,24 @@ $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { $content = preg_replace( - array_keys($_mobile_table), array_values($_mobile_table), $content - ); + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { $content = preg_replace( - array_keys($_mobile_3g), array_values($_mobile_3g), $content - ); + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); $content = preg_replace( - array_keys($_mobile_images), array_values($_mobile_images), $content - ); + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 @@ -539,20 +539,20 @@ // stripslashes(配列対応版) function _mobile_stripslashes_deep($data) { - if (is_array($data)) { - return array_map('_mobile_stripslashes_deep', $data); - } else { - return stripslashes($data); - } + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } } // urldecode(配列対応版) function _mobile_urldecode_deep($data) { - if (is_array($data)) { - return array_map('_mobile_urldecode_deep', $data); - } else { - return urldecode($data); - } + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } } // 入力をURLデコードする @@ -818,10 +818,10 @@ // 画像タグのパターン配列 $_mobile_images = array( - '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] - . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] - . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] - . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); From codesite-noreply @ google.com Tue Mar 17 01:47:26 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:47:26 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4MyAtIHIxMjgwGyRCJE49JEA1JHI8aCRqGyhC?= =?ISO-2022-JP?B?GyRCOX4kXyReJDckPyEjGyhC?= Message-ID: <000e0cd2de449b684904653f343f@google.com> Author: tacahi Date: Mon Mar 16 09:08:21 2009 New Revision: 1283 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php (contents, props changed) Log: r1280の修正を取り込みました。 Modified: branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php (original) +++ branches/geeklog-1.5.1-jp-extended/system/custom/custom_cellular.php Mon Mar 16 09:08:21 2009 @@ -275,7 +275,7 @@ $sepa = '&'; //$sepa = '&'; } - $location_url = 'Location: ' . $url . $sepa . SID . link; + $location_url = 'Location: ' . $url . $sepa . SID . $link; header( $location_url ); exit; } else { @@ -285,7 +285,7 @@ if (strpos($url, '?') > 0) { $sepa = '&'; } - $location_url = $url . $sepa . SID . link; + $location_url = $url . $sepa . SID . $link; return "\n" . "$msg" . @@ -825,5 +825,3 @@ . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); - -?> From codesite-noreply @ google.com Tue Mar 17 01:51:27 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:51:27 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4OSAtIHIxMjg1GyRCJE4lXiE8JTgkSyREGyhC?= =?ISO-2022-JP?B?GyRCJCQkRjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <000e0cd2449af1612c04653f422c@google.com> Author: tacahi Date: Mon Mar 16 09:25:23 2009 New Revision: 1289 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: r1285のマージについて記述しました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Mon Mar 16 09:25:23 2009 @@ -2,6 +2,9 @@ 2009-03-17 Takahiro Kambe + * r1285の修正を取り込みました。(system/custom/custom_cellular.phpの + 水平タブをスペースに置き換え。) + * r1279の修正を取り込みました。 Issue 59に対応。 From codesite-noreply @ google.com Tue Mar 17 01:55:27 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:55:27 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI5MCAtIHIxMjg1GyRCJE4lXiE8JTgkSyREGyhC?= =?ISO-2022-JP?B?GyRCJCQkRjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <000e0cd1a78245163104653f517e@google.com> Author: tacahi Date: Mon Mar 16 09:26:46 2009 New Revision: 1290 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: r1285のマージについて記述しました。 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Mon Mar 16 09:26:46 2009 @@ -2,6 +2,9 @@ 2009-03-17 Takahiro Kambe + * r1285の修正を取り込みました。(system/custom/custom_cellular.phpの + 水平タブをスペースに置き換え。) + * r1280の修正を取り込みました。 Issue 59に対応。 From codesite-noreply @ google.com Tue Mar 17 01:59:29 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 16 Mar 2009 16:59:29 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI4NSAtIOOCpOODs+ODh+ODs+ODhuODvOOCt+ODpw==?= =?UTF-8?B?44Oz44KS5ZCI44KP44Gb44KL44Gf44KB44CB5rC05bmz44K/44OW44KS44K544Oa44O844K544Gr572u?= =?UTF-8?B?44GN77+9Li4u?= Message-ID: <00163646d11aad2a8304653f5f95@google.com> Author: tacahi Date: Mon Mar 16 09:15:58 2009 New Revision: 1285 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php Log: インデンテーションを合わせるため、水平タブをスペースに置き換えます。 Modified: trunk/geeklog-1-jp/system/custom/custom_cellular.php ============================================================================== --- trunk/geeklog-1-jp/system/custom/custom_cellular.php (original) +++ trunk/geeklog-1-jp/system/custom/custom_cellular.php Mon Mar 16 09:15:58 2009 @@ -299,51 +299,51 @@ // テーブル削除用のパターン配列 $_mobile_table = array( - '@<\s*table[^>]*?>@si' => '', - '@<\s*/table[^>]*?>@si' => '', - '@<\s*thead[^>]*?>@si' => '', - '@<\s*/thead[^>]*?>@si' => '', - '@<\s*tbody[^>]*?>@si' => '', - '@<\s*/tbody[^>]*?>@si' => '', - '@<\s*tfoot[^>]*?>@si' => '', - '@<\s*/tfoot[^>]*?>@si' => '', - '@<\s*tr[^>]*?>@si' => '', - '@<\s*/tr[^>]*?>@si' => '
    ', - '@<\s*th[^>]*?>@si' => '', - '@<\s*/th[^>]*?>@si' => ' ', - '@<\s*td[^>]*?>@si' => '', - '@<\s*/td[^>]*?>@si' => ' ', + '@<\s*table[^>]*?>@si' => '', + '@<\s*/table[^>]*?>@si' => '', + '@<\s*thead[^>]*?>@si' => '', + '@<\s*/thead[^>]*?>@si' => '', + '@<\s*tbody[^>]*?>@si' => '', + '@<\s*/tbody[^>]*?>@si' => '', + '@<\s*tfoot[^>]*?>@si' => '', + '@<\s*/tfoot[^>]*?>@si' => '', + '@<\s*tr[^>]*?>@si' => '', + '@<\s*/tr[^>]*?>@si' => '
    ', + '@<\s*th[^>]*?>@si' => '', + '@<\s*/th[^>]*?>@si' => ' ', + '@<\s*td[^>]*?>@si' => '', + '@<\s*/td[^>]*?>@si' => ' ', ); // コメント削除用のパターン配列 $_mobile_comment = array( - '@@sm' => '', - '@@' => '', + '@@sm' => '', + '@@' => '', ); // 3Gケータイ専用コンテンツのパターン配列 $_mobile_3g = array( - // cut "div" - '@<\s*div[^>]*?>@si' => '', - '@<\s*/div[^>]*?>@si' => "
    \n", - // cut style - '@style="[^"].*?"@i' => '', - // cut class - '@class="[^"].*?"@i' => '', - // cut embed - '@]*?>@si' => '', + // cut "div" + '@<\s*div[^>]*?>@si' => '', + '@<\s*/div[^>]*?>@si' => "
    \n", + // cut style + '@style="[^"].*?"@i' => '', + // cut class + '@class="[^"].*?"@i' => '', + // cut embed + '@]*?>@si' => '', ); // ケータイ専用コンテンツのパターン配列 $_mobile_content = array( - '@@' => '', - '@.*?@ms' => '', + '@@' => '', + '@.*?@ms' => '', ); @@ -362,15 +362,15 @@ // これは単独で一番先に実行する必要がある if ($CUSTOM_MOBILE_CONF['use_mobile_content']) { $content = preg_replace( - array_keys($_mobile_content), array_values($_mobile_content), $content - ); + array_keys($_mobile_content), array_values($_mobile_content), $content + ); } // コメントを削除 // これは単独で2番目に実行する必要がある if ($CUSTOM_MOBILE_CONF['cut_comment']) { $content = preg_replace( - array_keys($_mobile_comment), array_values($_mobile_comment), $content - ); + array_keys($_mobile_comment), array_values($_mobile_comment), $content + ); } // テーブルを削除 @@ -378,24 +378,24 @@ $CUSTOM_MOBILE_CONF['force_cut_table'] || !CUSTOM_MOBILE_is_table_enabled()) { $content = preg_replace( - array_keys($_mobile_table), array_values($_mobile_table), $content - ); + array_keys($_mobile_table), array_values($_mobile_table), $content + ); } // 3G端末用コンテンツを削除 if ($CUSTOM_MOBILE_CONF['force_2g_content'] || !CUSTOM_MOBILE_is_3g()) { $content = preg_replace( - array_keys($_mobile_3g), array_values($_mobile_3g), $content - ); + array_keys($_mobile_3g), array_values($_mobile_3g), $content + ); } // 画像の縮小 if ($CUSTOM_MOBILE_CONF['resize_image']) { //CUSTOM_MOBILE_debug("search: " . $_mobile_images[0][0]); $content = preg_replace( - array_keys($_mobile_images), array_values($_mobile_images), $content - ); + array_keys($_mobile_images), array_values($_mobile_images), $content + ); } // その他雑多な変換 @@ -539,20 +539,20 @@ // stripslashes(配列対応版) function _mobile_stripslashes_deep($data) { - if (is_array($data)) { - return array_map('_mobile_stripslashes_deep', $data); - } else { - return stripslashes($data); - } + if (is_array($data)) { + return array_map('_mobile_stripslashes_deep', $data); + } else { + return stripslashes($data); + } } // urldecode(配列対応版) function _mobile_urldecode_deep($data) { - if (is_array($data)) { - return array_map('_mobile_urldecode_deep', $data); - } else { - return urldecode($data); - } + if (is_array($data)) { + return array_map('_mobile_urldecode_deep', $data); + } else { + return urldecode($data); + } } // 入力をURLデコードする @@ -818,10 +818,10 @@ // 画像タグのパターン配列 $_mobile_images = array( - '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', - '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] - . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] - . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] - . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', + '@<(\s*img.*?)width="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)height="[0-9]+?"(.*?)>@si' => '<$1$2>', + '@<(\s*img.*?)src="([^"]*?)"(.*?)>@si' => '<$1src="' . $_CONF['site_url'] + . RESIZER . '?image=$2&size='. $CUSTOM_MOBILE_CONF['image_size'] + . '&quality=' . $CUSTOM_MOBILE_CONF['image_quality'] + . '&site_url=' . $_CONF['site_url'] . '"$3 ' . XHTML . '>', ); From codesite-noreply @ google.com Fri Mar 20 23:22:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 14:22:32 +0000 Subject: [geeklog-jp commit] r1291 - Make it geeklog-1.5.1-jp-1.4 release. Message-ID: <0016e644d6eec550cb04658da51d@google.com> Author: tacahi Date: Fri Mar 20 07:17:50 2009 New Revision: 1291 Modified: branches/geeklog-1.5.1-jp/release_jp.php Log: Make it geeklog-1.5.1-jp-1.4 release. Modified: branches/geeklog-1.5.1-jp/release_jp.php ============================================================================== --- branches/geeklog-1.5.1-jp/release_jp.php (original) +++ branches/geeklog-1.5.1-jp/release_jp.php Fri Mar 20 07:17:50 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Fri Mar 20 23:32:04 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 14:32:04 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI5MiAtICogGyRCSVRDbTBVJEc4bSRDJEYbKEI=?= =?ISO-2022-JP?B?GyRCJCQkPztkJE4lIiUrJSYlcyVITD4kcj0kQDUkNyReJDckPyEjGyhC?= Message-ID: <001636b2b9c5d4202d04658dc784@google.com> Author: tacahi Date: Fri Mar 20 07:27:11 2009 New Revision: 1292 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: * 不注意で誤っていた私のアカウント名を修正しました。 * geeklog-1.5.1-jp-1.4のリリースを記述しました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Fri Mar 20 07:27:11 2009 @@ -1,6 +1,10 @@ $Id$ -2009-03-17 Takahiro Kambe +2009-03-20 Takahiro Kambe + + * geeklog-1.5.1-jp-1.4をリリースします。 + +2009-03-17 Takahiro Kambe * r1285の修正を取り込みました。(system/custom/custom_cellular.phpの 水平タブをスペースに置き換え。) @@ -12,7 +16,7 @@ Ivyさん経由でmistral-kkさんの指摘によりphpの終了タグを削除。 -2009-03-14 Takahiro Kambe +2009-03-14 Takahiro Kambe * public_html/calendar/index.phpが誤って戻っていたのを再修正しました。 From codesite-noreply @ google.com Fri Mar 20 23:51:44 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 14:51:44 +0000 Subject: [geeklog-jp commit] r1293 - Make it geeklog-1.5.1-jp-extended-1.4 release. Message-ID: <0016369fa25128ea5604658e0ea3@google.com> Author: tacahi Date: Fri Mar 20 07:28:10 2009 New Revision: 1293 Modified: branches/geeklog-1.5.1-jp-extended/release_jp.php Log: Make it geeklog-1.5.1-jp-extended-1.4 release. Modified: branches/geeklog-1.5.1-jp-extended/release_jp.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/release_jp.php (original) +++ branches/geeklog-1.5.1-jp-extended/release_jp.php Fri Mar 20 07:28:10 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Fri Mar 20 23:55:06 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 14:55:06 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI5NCAtICogGyRCSVRDbTBVJEc4bSRDJEYbKEI=?= =?ISO-2022-JP?B?GyRCJCQkPztkJE4lIiUrJSYlcyVITD4kcj0kQDUkNyReJDckPyEjGyhC?= Message-ID: <001636164ad135b92f04658e1a6d@google.com> Author: tacahi Date: Fri Mar 20 07:29:16 2009 New Revision: 1294 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: * 不注意で誤っていた私のアカウント名を修正しました。 * geeklog-1.5.1-jp-extended-1.4のリリースを記述しました。 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Fri Mar 20 07:29:16 2009 @@ -1,6 +1,10 @@ $Id$ -2009-03-17 Takahiro Kambe +2009-03-20 Takahiro Kambe + + * geeklog-1.5.1-jp-extended-1.4をリリースします。 + +2009-03-17 Takahiro Kambe * r1285の修正を取り込みました。(system/custom/custom_cellular.phpの 水平タブをスペースに置き換え。) @@ -12,7 +16,7 @@ Ivyさん経由でmistral-kkさんの指摘によりphpの終了タグを削除。 -2009-03-14 Takahiro Kambe +2009-03-14 Takahiro Kambe * system/custom/custom_cellular.phpのインデントをtrunk/geeklog-1-jpに 合わせる形で同一にしました。 From codesite-noreply @ google.com Sat Mar 21 00:02:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 15:02:32 +0000 Subject: [geeklog-jp commit] r1295 - Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.1-jp-extended-1.4 fro... Message-ID: <00163630f1dfc8fe5f04658e346e@google.com> Author: tacahi Date: Fri Mar 20 07:53:16 2009 New Revision: 1295 Added: tags/geeklog-1.5.1-jp-extended-1.4/ - copied from r1294, /branches/geeklog-1.5.1-jp-extended/ Log: Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.1-jp-extended-1.4 from https://geeklog-jp.googlecode.com/svn/branches/geeklog-1.5.1-jp-extended. From codesite-noreply @ google.com Sat Mar 21 00:12:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 15:12:37 +0000 Subject: [geeklog-jp commit] r1296 - Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.1-jp-1.4 from https:/... Message-ID: <0016e644cb28dbb98804658e589a@google.com> Author: tacahi Date: Fri Mar 20 07:54:58 2009 New Revision: 1296 Added: tags/geeklog-1.5.1-jp-1.4/ - copied from r1295, /branches/geeklog-1.5.1-jp/ Log: Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.1-jp-1.4 from https://geeklog-jp.googlecode.com/svn/branches/geeklog-1.5.1-jp. From codesite-noreply @ google.com Sat Mar 21 01:19:48 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:19:48 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI5OCAtICogZ2Vla2xvZy0xLjUuMi1qcC0xLjA=?= =?ISO-2022-JP?B?GyRCJHIlaiVqITwlOSQ3JF4kOSEjGyhC?= Message-ID: <00151750ec4c1bbe2e04658f4960@google.com> Author: tacahi Date: Fri Mar 20 08:45:14 2009 New Revision: 1298 Modified: trunk/geeklog-1-jp/CHANGES.jp trunk/geeklog-1-jp/release_jp.php Log: * geeklog-1.5.2-jp-1.0をリリースします。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Fri Mar 20 08:45:14 2009 @@ -2,6 +2,8 @@ 2009-03-21 Takahiro Kambe + * geeklog-1.5.2-jp-1.0をリリースします。 + * 本ファイルの私のアカウント名が不注意で誤っていたのを修正しました。 2009-03-17 Takahiro Kambe Modified: trunk/geeklog-1-jp/release_jp.php ============================================================================== --- trunk/geeklog-1-jp/release_jp.php (original) +++ trunk/geeklog-1-jp/release_jp.php Fri Mar 20 08:45:14 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sat Mar 21 01:24:12 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:24:12 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwMCAtICogGyRCSVRDbTBVJEc4bSRDJEYbKEI=?= =?ISO-2022-JP?B?GyRCJCQkPztkJE4lIiUrJSYlcyVITD4kcj0kQDUkNyReJDckPyEjGyhC?= Message-ID: <0016e645abf4e09df204658f583c@google.com> Author: tacahi Date: Fri Mar 20 09:05:38 2009 New Revision: 1300 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: * 不注意で誤っていた私のアカウント名を修正しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Fri Mar 20 09:05:38 2009 @@ -1,6 +1,10 @@ $Id$ -2009-03-14 Takahiro Kambe +2009-03-21 Takahiro Kambe + + * 本ファイルの私のアカウント名が不注意で誤っていたのを修正しました。 + +2009-03-14 Takahiro Kambe * 些細な(動作上の違いのない) trunk/geeklog-1-jp と異るファイルを 同一にしました。 From codesite-noreply @ google.com Sat Mar 21 01:27:48 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:27:48 +0000 Subject: [geeklog-jp commit] r1299 - Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.2-jp-1.0 from https:/... Message-ID: <0016e642d2b2c3271c04658f652a@google.com> Author: tacahi Date: Fri Mar 20 08:49:47 2009 New Revision: 1299 Added: tags/geeklog-1.5.2-jp-1.0/ - copied from r1298, /trunk/geeklog-1-jp/ Log: Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.2-jp-1.0 from https://geeklog-jp.googlecode.com/svn/trunk/geeklog-1-jp. From codesite-noreply @ google.com Sat Mar 21 01:31:59 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:31:59 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwMSAtICogZ2Vla2xvZy0xLjUuMi1qcC1leHRlbg==?= =?ISO-2022-JP?B?ZGVkLTEuMBskQiRyJWolaiE8JTkkNyReJDkhIxsoQg==?= Message-ID: <0016369895dcb8fc5104658f745b@google.com> Author: tacahi Date: Fri Mar 20 09:08:30 2009 New Revision: 1301 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp trunk/geeklog-1-jp-extended/release_jp.php Log: * geeklog-1.5.2-jp-extended-1.0をリリースします。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Fri Mar 20 09:08:30 2009 @@ -2,6 +2,8 @@ 2009-03-21 Takahiro Kambe + * geeklog-1.5.2-jp-extended-1.0をリリースします。 + * 本ファイルの私のアカウント名が不注意で誤っていたのを修正しました。 2009-03-14 Takahiro Kambe Modified: trunk/geeklog-1-jp-extended/release_jp.php ============================================================================== --- trunk/geeklog-1-jp-extended/release_jp.php (original) +++ trunk/geeklog-1-jp-extended/release_jp.php Fri Mar 20 09:08:30 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sat Mar 21 01:35:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:35:32 +0000 Subject: [geeklog-jp commit] r1302 - Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.2-jp-extended-1.0 fro... Message-ID: <0016361e8960602ccb04658f81ff@google.com> Author: tacahi Date: Fri Mar 20 09:11:06 2009 New Revision: 1302 Added: tags/geeklog-1.5.2-jp-extended-1.0/ - copied from r1301, /trunk/geeklog-1-jp-extended/ Log: Make release https://geeklog-jp.googlecode.com/svn/tags/geeklog-1.5.2-jp-extended-1.0 from https://geeklog-jp.googlecode.com/svn/trunk/geeklog-1-jp-extended. From codesite-noreply @ google.com Sat Mar 21 01:39:49 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:39:49 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTI5NyAtICogGyRCSVRDbTBVJEc4bSRDJEYbKEI=?= =?ISO-2022-JP?B?GyRCJCQkPztkJE4lIiUrJSYlcyVITD4kcj0kQDUkNyReJDckPyEjGyhC?= Message-ID: <001517576834be588d04658f903d@google.com> Author: tacahi Date: Fri Mar 20 08:41:59 2009 New Revision: 1297 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: * 不注意で誤っていた私のアカウント名を修正しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Fri Mar 20 08:41:59 2009 @@ -1,6 +1,10 @@ $Id$ -2009-03-17 Takahiro Kambe +2009-03-21 Takahiro Kambe + + * 本ファイルの私のアカウント名が不注意で誤っていたのを修正しました。 + +2009-03-17 Takahiro Kambe * system/custom/custom_cellular.php: 水平タブをスペースに置き換え ました。本来はすべてのファイルで水平タブとスペースの使用を確認 From codesite-noreply @ google.com Sat Mar 21 01:49:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:49:57 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwMyAtICogGyRCRnxLXDhsSEckTiVQITwbKEI=?= =?ISO-2022-JP?B?GyRCJTglZyVzJHIbKEIxLjAbJEIkaCRqOGUhIhsoQjEuMRskQiRoJGpBMCROQ00kS0BfRGokNyReGyhC?= =?ISO-2022-JP?B?GyRCJDkhIxsoQg==?= Message-ID: <0016e6440280f9661d04658fb4a8@google.com> Author: tacahi Date: Fri Mar 20 09:48:17 2009 New Revision: 1303 Modified: trunk/geeklog-1-jp/release_jp.php Log: * 日本語版のバージョンを1.0より後、1.1より前の値に設定します。 Modified: trunk/geeklog-1-jp/release_jp.php ============================================================================== --- trunk/geeklog-1-jp/release_jp.php (original) +++ trunk/geeklog-1-jp/release_jp.php Fri Mar 20 09:48:17 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sat Mar 21 01:53:44 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 20 Mar 2009 16:53:44 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwNCAtICogGyRCRnxLXDhsSEckTiVQITwbKEI=?= =?ISO-2022-JP?B?GyRCJTglZyVzJHIbKEIxLjAbJEIkaCRqOGUhIhsoQjEuMRskQiRoJGpBMCROQ00kS0BfRGokNyReGyhC?= =?ISO-2022-JP?B?GyRCJDkhIxsoQg==?= Message-ID: <00151757461480555f04658fc29a@google.com> Author: tacahi Date: Fri Mar 20 09:49:52 2009 New Revision: 1304 Modified: trunk/geeklog-1-jp-extended/release_jp.php Log: * 日本語版のバージョンを1.0より後、1.1より前の値に設定します。 Modified: trunk/geeklog-1-jp-extended/release_jp.php ============================================================================== --- trunk/geeklog-1-jp-extended/release_jp.php (original) +++ trunk/geeklog-1-jp-extended/release_jp.php Fri Mar 20 09:49:52 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sat Mar 21 20:52:12 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 21 Mar 2009 11:52:12 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwNSAtIBskQj83JDckJCVsJV0lOCVIJWobKEI=?= =?ISO-2022-JP?B?GyRCOT1ALiRyO24kOSQ/JGEkThsoQiBicmFuY2hlcy9nZWVrbG9nLW5ldy10cmVlIBskQiRyISIbKEI=?= Message-ID: <001636283689f9a31904659fa9fa@google.com> Author: tacahi Date: Sat Mar 21 04:45:22 2009 New Revision: 1305 Added: branches/geeklog-new-tree/ - copied from r1304, /trunk/geeklog-1-jp/ Log: 新しいレポジトリ構成を試すための branches/geeklog-new-tree を、 trunk/geeklog-1-jp をコピーして作成します。 From codesite-noreply @ google.com Sat Mar 21 20:56:13 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 21 Mar 2009 11:56:13 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwNiAtIBskQj83JDckJCVsJV0lOCVIJWobKEI=?= =?ISO-2022-JP?B?GyRCOT1ALiRyO24kOSQ/JGEhIhsoQiBicmFuY2hlcy9nZWVrbG9nLW5ldy10cmVlL2V4dGVuZGVkIA==?= =?ISO-2022-JP?B?GyRCJHIbKEI=?= Message-ID: <0016e643486a55b51604659fb8da@google.com> Author: tacahi Date: Sat Mar 21 04:47:48 2009 New Revision: 1306 Added: branches/geeklog-new-tree/extended/ - copied from r1305, /trunk/geeklog-1-jp-extended/ Log: 新しいレポジトリ構成を試すため、 branches/geeklog-new-tree/extended を trunk/geeklog-1-jp-extended をコピーして作成します。 From codesite-noreply @ google.com Sat Mar 21 21:00:14 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 21 Mar 2009 12:00:14 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwNyAtIBskQj83JDckJCVsJV0lOCVIJWobKEI=?= =?ISO-2022-JP?B?GyRCOT1ALiRyO24kOSQ/JGEhIhsoQiBicmFuY2hlcy9nZWVrbG9nLW5ldy10cmVlL3BsdWdpbnMtag==?= =?ISO-2022-JP?B?cCAbJEIkchsoQg==?= Message-ID: <001636283828b1440804659fc6a5@google.com> Author: tacahi Date: Sat Mar 21 04:51:39 2009 New Revision: 1307 Added: branches/geeklog-new-tree/plugins-jp/ - copied from r1306, /trunk/plugins/ Log: 新しいレポジトリ構成を試すため、 branches/geeklog-new-tree/plugins-jp を trunk/plugins をコピーして作成します。 From codesite-noreply @ google.com Sun Mar 22 01:49:40 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 21 Mar 2009 16:49:40 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwOCAtIGV4dGVuZGVkGyRCMEoyPCEiGyhCZ2Vla2xvZw==?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQgGyRCJEskIiRrGyhCIGdlZWtsb2ctMS1qcCAbJEIkSEYxMGwkTkZiTUYkThsoQg==?= Message-ID: <000e0ce0719cc958330465a3d11f@google.com> Author: tacahi Date: Sat Mar 21 09:21:05 2009 New Revision: 1308 Removed: branches/geeklog-new-tree/extended/INSTALL branches/geeklog-new-tree/extended/backups/README branches/geeklog-new-tree/extended/data/README branches/geeklog-new-tree/extended/db-config.php branches/geeklog-new-tree/extended/emailgeeklogstories branches/geeklog-new-tree/extended/emailgeeklogstories.en branches/geeklog-new-tree/extended/language/afrikaans.php branches/geeklog-new-tree/extended/language/afrikaans_utf-8.php branches/geeklog-new-tree/extended/language/bosnian.php branches/geeklog-new-tree/extended/language/bosnian_utf-8.php branches/geeklog-new-tree/extended/language/bulgarian.php branches/geeklog-new-tree/extended/language/bulgarian_utf-8.php branches/geeklog-new-tree/extended/language/catalan.php branches/geeklog-new-tree/extended/language/catalan_utf-8.php branches/geeklog-new-tree/extended/language/chinese_simplified_utf-8.php branches/geeklog-new-tree/extended/language/chinese_traditional_utf-8.php branches/geeklog-new-tree/extended/language/croatian.php branches/geeklog-new-tree/extended/language/croatian_utf-8.php branches/geeklog-new-tree/extended/language/czech.php branches/geeklog-new-tree/extended/language/czech_utf-8.php branches/geeklog-new-tree/extended/language/danish.php branches/geeklog-new-tree/extended/language/danish_utf-8.php branches/geeklog-new-tree/extended/language/dutch.php branches/geeklog-new-tree/extended/language/dutch_utf-8.php branches/geeklog-new-tree/extended/language/english.php branches/geeklog-new-tree/extended/language/english_utf-8.php branches/geeklog-new-tree/extended/language/estonian.php branches/geeklog-new-tree/extended/language/estonian_utf-8.php branches/geeklog-new-tree/extended/language/farsi_utf-8.php branches/geeklog-new-tree/extended/language/finnish.php branches/geeklog-new-tree/extended/language/finnish_utf-8.php branches/geeklog-new-tree/extended/language/french_canada.php branches/geeklog-new-tree/extended/language/french_canada_utf-8.php branches/geeklog-new-tree/extended/language/french_france.php branches/geeklog-new-tree/extended/language/french_france_utf-8.php branches/geeklog-new-tree/extended/language/german.php branches/geeklog-new-tree/extended/language/german_formal.php branches/geeklog-new-tree/extended/language/german_formal_utf-8.php branches/geeklog-new-tree/extended/language/german_utf-8.php branches/geeklog-new-tree/extended/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/language/hellenic.php branches/geeklog-new-tree/extended/language/hellenic_utf-8.php branches/geeklog-new-tree/extended/language/indonesian.php branches/geeklog-new-tree/extended/language/indonesian_utf-8.php branches/geeklog-new-tree/extended/language/italian.php branches/geeklog-new-tree/extended/language/italian_utf-8.php branches/geeklog-new-tree/extended/language/japanese_utf-8.php branches/geeklog-new-tree/extended/language/korean.php branches/geeklog-new-tree/extended/language/korean_utf-8.php branches/geeklog-new-tree/extended/language/norwegian.php branches/geeklog-new-tree/extended/language/norwegian_utf-8.php branches/geeklog-new-tree/extended/language/polish.php branches/geeklog-new-tree/extended/language/polish_utf-8.php branches/geeklog-new-tree/extended/language/portuguese.php branches/geeklog-new-tree/extended/language/portuguese_brazil.php branches/geeklog-new-tree/extended/language/portuguese_brazil_utf-8.php branches/geeklog-new-tree/extended/language/portuguese_utf-8.php branches/geeklog-new-tree/extended/language/romanian.php branches/geeklog-new-tree/extended/language/romanian_utf-8.php branches/geeklog-new-tree/extended/language/russian.php branches/geeklog-new-tree/extended/language/russian_utf-8.php branches/geeklog-new-tree/extended/language/slovak.php branches/geeklog-new-tree/extended/language/slovak_utf-8.php branches/geeklog-new-tree/extended/language/slovenian.php branches/geeklog-new-tree/extended/language/slovenian_utf-8.php branches/geeklog-new-tree/extended/language/spanish.php branches/geeklog-new-tree/extended/language/spanish_argentina.php branches/geeklog-new-tree/extended/language/spanish_argentina_utf-8.php branches/geeklog-new-tree/extended/language/spanish_utf-8.php branches/geeklog-new-tree/extended/language/swedish.php branches/geeklog-new-tree/extended/language/swedish_utf-8.php branches/geeklog-new-tree/extended/language/turkish.php branches/geeklog-new-tree/extended/language/turkish_utf-8.php branches/geeklog-new-tree/extended/language/ukrainian.php branches/geeklog-new-tree/extended/language/ukrainian_koi8-u.php branches/geeklog-new-tree/extended/language/ukrainian_utf-8.php branches/geeklog-new-tree/extended/logs/access.log branches/geeklog-new-tree/extended/logs/error.log branches/geeklog-new-tree/extended/logs/spamx.log branches/geeklog-new-tree/extended/plugins/calendar/functions.inc branches/geeklog-new-tree/extended/plugins/calendar/install_defaults.php branches/geeklog-new-tree/extended/plugins/calendar/language/README branches/geeklog-new-tree/extended/plugins/calendar/language/czech.php branches/geeklog-new-tree/extended/plugins/calendar/language/czech_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/danish.php branches/geeklog-new-tree/extended/plugins/calendar/language/danish_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/dutch.php branches/geeklog-new-tree/extended/plugins/calendar/language/dutch_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/english.php branches/geeklog-new-tree/extended/plugins/calendar/language/english_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/estonian.php branches/geeklog-new-tree/extended/plugins/calendar/language/estonian_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/french_canada.php branches/geeklog-new-tree/extended/plugins/calendar/language/french_canada_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/german.php branches/geeklog-new-tree/extended/plugins/calendar/language/german_formal.php branches/geeklog-new-tree/extended/plugins/calendar/language/german_formal_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/german_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/japanese_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/korean.php branches/geeklog-new-tree/extended/plugins/calendar/language/korean_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/russian.php branches/geeklog-new-tree/extended/plugins/calendar/language/russian_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/slovenian.php branches/geeklog-new-tree/extended/plugins/calendar/language/slovenian_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/spanish.php branches/geeklog-new-tree/extended/plugins/calendar/language/spanish_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/language/ukrainian.php branches/geeklog-new-tree/extended/plugins/calendar/language/ukrainian_koi8-u.php branches/geeklog-new-tree/extended/plugins/calendar/language/ukrainian_utf-8.php branches/geeklog-new-tree/extended/plugins/calendar/sql/mssql_install.php branches/geeklog-new-tree/extended/plugins/calendar/sql/mysql_install.php branches/geeklog-new-tree/extended/plugins/calendar/templates/addevent.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/addeventoption.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/addremoveevent.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/admin/batchdelete.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/admin/eventeditor.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/calendar.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/calendarday.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/calendarevent.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/calendarweek.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/dayview/column.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/dayview/dayview.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/dayview/quickaddform.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/dayview/singleevent.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/editpersonalevent.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/eventdetails.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/events.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/mastercalendaroption.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/personalcalendaroption.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/submitevent.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/weekview/events.thtml branches/geeklog-new-tree/extended/plugins/calendar/templates/weekview/weekview.thtml branches/geeklog-new-tree/extended/plugins/japanize/doc/v1.0.0b2_changes.txt branches/geeklog-new-tree/extended/plugins/japanize/doc/v1.0.0b3_changes.txt branches/geeklog-new-tree/extended/plugins/japanize/doc/v1.0.1_changes.txt branches/geeklog-new-tree/extended/plugins/japanize/doc/v1.0.2_changes.txt branches/geeklog-new-tree/extended/plugins/japanize/functions.inc branches/geeklog-new-tree/extended/plugins/japanize/install_defaults.php branches/geeklog-new-tree/extended/plugins/japanize/language/japanese_utf-8.php branches/geeklog-new-tree/extended/plugins/japanize/readme_ja.txt branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_1.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_105.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_107.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_2.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_3.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_4.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_5.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_6.php branches/geeklog-new-tree/extended/plugins/japanize/sql/sql_japanize_7.php branches/geeklog-new-tree/extended/plugins/japanize/templates/admin/index.thtml branches/geeklog-new-tree/extended/plugins/japanize/templates/admin/information.thtml branches/geeklog-new-tree/extended/plugins/japanize/templates/admin/settings.thtml branches/geeklog-new-tree/extended/plugins/japanize/templates/custom-memberlogin.thtml branches/geeklog-new-tree/extended/plugins/japanize/version.php branches/geeklog-new-tree/extended/plugins/links/README branches/geeklog-new-tree/extended/plugins/links/functions.inc branches/geeklog-new-tree/extended/plugins/links/install_defaults.php branches/geeklog-new-tree/extended/plugins/links/language/README branches/geeklog-new-tree/extended/plugins/links/language/chinese_simplified_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/chinese_traditional_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/czech.php branches/geeklog-new-tree/extended/plugins/links/language/czech_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/dutch.php branches/geeklog-new-tree/extended/plugins/links/language/dutch_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/english.php branches/geeklog-new-tree/extended/plugins/links/language/english_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/estonian.php branches/geeklog-new-tree/extended/plugins/links/language/estonian_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/french_canada.php branches/geeklog-new-tree/extended/plugins/links/language/french_canada_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/german.php branches/geeklog-new-tree/extended/plugins/links/language/german_formal.php branches/geeklog-new-tree/extended/plugins/links/language/german_formal_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/german_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/japanese_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/korean.php branches/geeklog-new-tree/extended/plugins/links/language/korean_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/polish.php branches/geeklog-new-tree/extended/plugins/links/language/polish_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/russian.php branches/geeklog-new-tree/extended/plugins/links/language/russian_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/slovenian.php branches/geeklog-new-tree/extended/plugins/links/language/slovenian_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/spanish.php branches/geeklog-new-tree/extended/plugins/links/language/spanish_utf-8.php branches/geeklog-new-tree/extended/plugins/links/language/ukrainian.php branches/geeklog-new-tree/extended/plugins/links/language/ukrainian_koi8-u.php branches/geeklog-new-tree/extended/plugins/links/language/ukrainian_utf-8.php branches/geeklog-new-tree/extended/plugins/links/sql/mssql_install.php branches/geeklog-new-tree/extended/plugins/links/sql/mysql_install.php branches/geeklog-new-tree/extended/plugins/links/templates/admin/categoryeditor.thtml branches/geeklog-new-tree/extended/plugins/links/templates/admin/categorylist.thtml branches/geeklog-new-tree/extended/plugins/links/templates/admin/catitem.thtml branches/geeklog-new-tree/extended/plugins/links/templates/admin/linkeditor.thtml branches/geeklog-new-tree/extended/plugins/links/templates/categoryactivecol.thtml branches/geeklog-new-tree/extended/plugins/links/templates/categorycol.thtml branches/geeklog-new-tree/extended/plugins/links/templates/categorydropdown.thtml branches/geeklog-new-tree/extended/plugins/links/templates/categorylinks.thtml branches/geeklog-new-tree/extended/plugins/links/templates/categorynavigation.thtml branches/geeklog-new-tree/extended/plugins/links/templates/categoryrow.thtml branches/geeklog-new-tree/extended/plugins/links/templates/linkdetails.thtml branches/geeklog-new-tree/extended/plugins/links/templates/links.thtml branches/geeklog-new-tree/extended/plugins/links/templates/pagenavigation.thtml branches/geeklog-new-tree/extended/plugins/links/templates/submitlink.thtml branches/geeklog-new-tree/extended/plugins/polls/functions.inc branches/geeklog-new-tree/extended/plugins/polls/install_defaults.php branches/geeklog-new-tree/extended/plugins/polls/language/README branches/geeklog-new-tree/extended/plugins/polls/language/chinese_simplified_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/chinese_traditional_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/dutch.php branches/geeklog-new-tree/extended/plugins/polls/language/dutch_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/english.php branches/geeklog-new-tree/extended/plugins/polls/language/english_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/estonian.php branches/geeklog-new-tree/extended/plugins/polls/language/estonian_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/french_canada.php branches/geeklog-new-tree/extended/plugins/polls/language/french_canada_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/german.php branches/geeklog-new-tree/extended/plugins/polls/language/german_formal.php branches/geeklog-new-tree/extended/plugins/polls/language/german_formal_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/german_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/japanese_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/korean.php branches/geeklog-new-tree/extended/plugins/polls/language/korean_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/russian.php branches/geeklog-new-tree/extended/plugins/polls/language/russian_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/slovenian.php branches/geeklog-new-tree/extended/plugins/polls/language/slovenian_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/spanish.php branches/geeklog-new-tree/extended/plugins/polls/language/spanish_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/language/ukrainian.php branches/geeklog-new-tree/extended/plugins/polls/language/ukrainian_koi8-u.php branches/geeklog-new-tree/extended/plugins/polls/language/ukrainian_utf-8.php branches/geeklog-new-tree/extended/plugins/polls/sql/mssql_install.php branches/geeklog-new-tree/extended/plugins/polls/sql/mysql_install.php branches/geeklog-new-tree/extended/plugins/polls/templates/admin/pollansweroption.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/admin/polleditor.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/admin/pollquestions.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollanswer.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollblock.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollcomments.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/polllist.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollquestion.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollquestions.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollresult.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollvotes_bar.thtml branches/geeklog-new-tree/extended/plugins/polls/templates/pollvotes_num.thtml branches/geeklog-new-tree/extended/plugins/spamx/BaseAdmin.class.php branches/geeklog-new-tree/extended/plugins/spamx/BaseCommand.class.php branches/geeklog-new-tree/extended/plugins/spamx/BlackList.Examine.class.php branches/geeklog-new-tree/extended/plugins/spamx/DeleteComment.Action.class.php branches/geeklog-new-tree/extended/plugins/spamx/Developer.txt branches/geeklog-new-tree/extended/plugins/spamx/EditBlackList.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/EditHeader.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/EditIP.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/EditIPofURL.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/Header.Examine.class.php branches/geeklog-new-tree/extended/plugins/spamx/IP.Examine.class.php branches/geeklog-new-tree/extended/plugins/spamx/IPofUrl.Examine.class.php branches/geeklog-new-tree/extended/plugins/spamx/LogView.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/MailAdmin.Action.class.php branches/geeklog-new-tree/extended/plugins/spamx/MassDelTrackback.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/MassDelete.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/SLV.Examine.class.php branches/geeklog-new-tree/extended/plugins/spamx/SLVbase.class.php branches/geeklog-new-tree/extended/plugins/spamx/SLVreport.Action.class.php branches/geeklog-new-tree/extended/plugins/spamx/SLVwhitelist.Admin.class.php branches/geeklog-new-tree/extended/plugins/spamx/functions.inc branches/geeklog-new-tree/extended/plugins/spamx/install_defaults.php branches/geeklog-new-tree/extended/plugins/spamx/language/english.php branches/geeklog-new-tree/extended/plugins/spamx/language/english_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/estonian.php branches/geeklog-new-tree/extended/plugins/spamx/language/estonian_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/farsi_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/french_canada.php branches/geeklog-new-tree/extended/plugins/spamx/language/french_canada_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/french_france.php branches/geeklog-new-tree/extended/plugins/spamx/language/french_france_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/italian.php branches/geeklog-new-tree/extended/plugins/spamx/language/italian_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/japanese_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/russian.php branches/geeklog-new-tree/extended/plugins/spamx/language/russian_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/slovenian.php branches/geeklog-new-tree/extended/plugins/spamx/language/slovenian_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/spanish.php branches/geeklog-new-tree/extended/plugins/spamx/language/spanish_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/language/ukrainian.php branches/geeklog-new-tree/extended/plugins/spamx/language/ukrainian_koi8-u.php branches/geeklog-new-tree/extended/plugins/spamx/language/ukrainian_utf-8.php branches/geeklog-new-tree/extended/plugins/spamx/rss.inc.php branches/geeklog-new-tree/extended/plugins/spamx/sql/mssql_install.php branches/geeklog-new-tree/extended/plugins/spamx/sql/mysql_install.php branches/geeklog-new-tree/extended/plugins/spamx/templates/admin.thtml branches/geeklog-new-tree/extended/plugins/spamx/templates/install.thtml branches/geeklog-new-tree/extended/plugins/staticpages/functions.inc branches/geeklog-new-tree/extended/plugins/staticpages/install_defaults.php branches/geeklog-new-tree/extended/plugins/staticpages/language/README branches/geeklog-new-tree/extended/plugins/staticpages/language/chinese_simplified_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/chinese_traditional_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/czech.php branches/geeklog-new-tree/extended/plugins/staticpages/language/czech_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/danish.php branches/geeklog-new-tree/extended/plugins/staticpages/language/danish_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/dutch.php branches/geeklog-new-tree/extended/plugins/staticpages/language/dutch_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/english.php branches/geeklog-new-tree/extended/plugins/staticpages/language/english_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/estonian.php branches/geeklog-new-tree/extended/plugins/staticpages/language/estonian_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/farsi_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/french_canada.php branches/geeklog-new-tree/extended/plugins/staticpages/language/french_canada_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/german.php branches/geeklog-new-tree/extended/plugins/staticpages/language/german_formal.php branches/geeklog-new-tree/extended/plugins/staticpages/language/german_formal_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/german_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/italian.php branches/geeklog-new-tree/extended/plugins/staticpages/language/italian_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/japanese_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/korean.php branches/geeklog-new-tree/extended/plugins/staticpages/language/korean_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/polish.php branches/geeklog-new-tree/extended/plugins/staticpages/language/polish_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/portuguese_brazil.php branches/geeklog-new-tree/extended/plugins/staticpages/language/portuguese_brazil_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/slovenian.php branches/geeklog-new-tree/extended/plugins/staticpages/language/slovenian_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/spanish.php branches/geeklog-new-tree/extended/plugins/staticpages/language/spanish_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/swedish.php branches/geeklog-new-tree/extended/plugins/staticpages/language/swedish_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/turkish.php branches/geeklog-new-tree/extended/plugins/staticpages/language/turkish_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/language/ukrainian.php branches/geeklog-new-tree/extended/plugins/staticpages/language/ukrainian_koi8-u.php branches/geeklog-new-tree/extended/plugins/staticpages/language/ukrainian_utf-8.php branches/geeklog-new-tree/extended/plugins/staticpages/services.inc.php branches/geeklog-new-tree/extended/plugins/staticpages/sql/mssql_install.php branches/geeklog-new-tree/extended/plugins/staticpages/sql/mysql_install.php branches/geeklog-new-tree/extended/plugins/staticpages/templates/admin/editor.thtml branches/geeklog-new-tree/extended/plugins/staticpages/templates/admin/editor_advanced.thtml branches/geeklog-new-tree/extended/plugins/staticpages/templates/centerblock.thtml branches/geeklog-new-tree/extended/plugins/staticpages/templates/printable.thtml branches/geeklog-new-tree/extended/plugins/staticpages/templates/spcomments.thtml branches/geeklog-new-tree/extended/plugins/staticpages/templates/staticpage.thtml branches/geeklog-new-tree/extended/readme branches/geeklog-new-tree/extended/readme.ja branches/geeklog-new-tree/extended/sql/mssql_tableanddata.php branches/geeklog-new-tree/extended/sql/mysql_tableanddata.php branches/geeklog-new-tree/extended/sql/updates/0.1_to_0.2.sql branches/geeklog-new-tree/extended/sql/updates/0.2_to_0.3.sql branches/geeklog-new-tree/extended/sql/updates/0.3_to_0.4.sql branches/geeklog-new-tree/extended/sql/updates/0.4_to_0.5.sql branches/geeklog-new-tree/extended/sql/updates/0.5_to_1.0.sql branches/geeklog-new-tree/extended/sql/updates/1.0_to_1.1.sql branches/geeklog-new-tree/extended/sql/updates/1.1_to_1.2.sql branches/geeklog-new-tree/extended/sql/updates/1.2.5-1_to_1.3.NOTES branches/geeklog-new-tree/extended/sql/updates/1.2.5-1_to_1.3.sql branches/geeklog-new-tree/extended/sql/updates/1.2_to_1.2.2.sql branches/geeklog-new-tree/extended/sql/updates/mssql_1.4.1_to_1.5.0.php branches/geeklog-new-tree/extended/sql/updates/mssql_1.5.0_to_1.5.1.php branches/geeklog-new-tree/extended/sql/updates/mssql_1.5.1_to_1.5.2.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.2.5-1_to_1.3.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.10_to_1.3.11.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.11_to_1.4.0.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.1_to_1.3.2.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.2-1_to_1.3.3.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.3_to_1.3.4.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.4_to_1.3.5.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.5_to_1.3.6.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.7_to_1.3.8.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.8_to_1.3.9.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3.9_to_1.3.10.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.3_to_1.3.1.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.4.0_to_1.4.1.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.4.1_to_1.5.0.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.5.0_to_1.5.1.php branches/geeklog-new-tree/extended/sql/updates/mysql_1.5.1_to_1.5.2.php branches/geeklog-new-tree/extended/system/classes/authentication/LDAP.auth.class.php branches/geeklog-new-tree/extended/system/classes/authentication/LiveJournal.auth.class.php branches/geeklog-new-tree/extended/system/classes/authentication/ldap/config.php branches/geeklog-new-tree/extended/system/classes/calendar.class.php branches/geeklog-new-tree/extended/system/classes/config.class.php branches/geeklog-new-tree/extended/system/classes/conversion.class.php branches/geeklog-new-tree/extended/system/classes/downloader.class.php branches/geeklog-new-tree/extended/system/classes/kses.class.php branches/geeklog-new-tree/extended/system/classes/navbar.class.php branches/geeklog-new-tree/extended/system/classes/openid/COPYING branches/geeklog-new-tree/extended/system/classes/openid/LICENSE branches/geeklog-new-tree/extended/system/classes/openid/association.php branches/geeklog-new-tree/extended/system/classes/openid/consumer.php branches/geeklog-new-tree/extended/system/classes/openid/httpclient.php branches/geeklog-new-tree/extended/system/classes/openid/interface.php branches/geeklog-new-tree/extended/system/classes/openid/oid_parse.php branches/geeklog-new-tree/extended/system/classes/openid/oid_util.php branches/geeklog-new-tree/extended/system/classes/openid/server.php branches/geeklog-new-tree/extended/system/classes/openid/trustroot.php branches/geeklog-new-tree/extended/system/classes/openidhelper.class.php branches/geeklog-new-tree/extended/system/classes/plugin.class.php branches/geeklog-new-tree/extended/system/classes/sanitize.class.php branches/geeklog-new-tree/extended/system/classes/search.class.php branches/geeklog-new-tree/extended/system/classes/story.class.php branches/geeklog-new-tree/extended/system/classes/syndication/atom.feed.class.php branches/geeklog-new-tree/extended/system/classes/syndication/feedparserbase.class.php branches/geeklog-new-tree/extended/system/classes/syndication/parserfactory.class.php branches/geeklog-new-tree/extended/system/classes/syndication/rdf.feed.class.php branches/geeklog-new-tree/extended/system/classes/syndication/rss.feed.class.php branches/geeklog-new-tree/extended/system/classes/template.class.php branches/geeklog-new-tree/extended/system/classes/timer.class.php branches/geeklog-new-tree/extended/system/classes/upload.class.php branches/geeklog-new-tree/extended/system/classes/url.class.php branches/geeklog-new-tree/extended/system/custom/custom_cellular.php branches/geeklog-new-tree/extended/system/custom/custom_mail_jp.php branches/geeklog-new-tree/extended/system/databases/mssql.class.php branches/geeklog-new-tree/extended/system/databases/mysql.class.php branches/geeklog-new-tree/extended/system/lib-admin.php branches/geeklog-new-tree/extended/system/lib-comment.php branches/geeklog-new-tree/extended/system/lib-database.php branches/geeklog-new-tree/extended/system/lib-mbyte.php branches/geeklog-new-tree/extended/system/lib-pingback.php branches/geeklog-new-tree/extended/system/lib-plugins.php branches/geeklog-new-tree/extended/system/lib-portalparts.php branches/geeklog-new-tree/extended/system/lib-security.php branches/geeklog-new-tree/extended/system/lib-sessions.php branches/geeklog-new-tree/extended/system/lib-story.php branches/geeklog-new-tree/extended/system/lib-syndication.php branches/geeklog-new-tree/extended/system/lib-trackback.php branches/geeklog-new-tree/extended/system/lib-user.php branches/geeklog-new-tree/extended/system/lib-webservices.php branches/geeklog-new-tree/extended/system/memberdetail.thtml branches/geeklog-new-tree/extended/system/pear/Archive/Tar.php branches/geeklog-new-tree/extended/system/pear/Archive/Zip.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL/Anonymous.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL/Common.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL/CramMD5.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL/DigestMD5.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL/Login.php branches/geeklog-new-tree/extended/system/pear/Auth/SASL/Plain.php branches/geeklog-new-tree/extended/system/pear/Console/Getopt.php branches/geeklog-new-tree/extended/system/pear/Date.php branches/geeklog-new-tree/extended/system/pear/Date/Calc.php branches/geeklog-new-tree/extended/system/pear/Date/Human.php branches/geeklog-new-tree/extended/system/pear/Date/Span.php branches/geeklog-new-tree/extended/system/pear/Date/TimeZone.php branches/geeklog-new-tree/extended/system/pear/HTTP/Request.php branches/geeklog-new-tree/extended/system/pear/HTTP/Request/Listener.php branches/geeklog-new-tree/extended/system/pear/Mail.php branches/geeklog-new-tree/extended/system/pear/Mail/RFC822.php branches/geeklog-new-tree/extended/system/pear/Mail/mail.php branches/geeklog-new-tree/extended/system/pear/Mail/null.php branches/geeklog-new-tree/extended/system/pear/Mail/sendmail.php branches/geeklog-new-tree/extended/system/pear/Mail/smtp.php branches/geeklog-new-tree/extended/system/pear/Net/DNS.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/Header.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/Packet.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/Question.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/A.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/AAAA.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/CNAME.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/HINFO.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/MX.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/NAPTR.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/NS.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/PTR.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/SOA.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/SRV.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/TSIG.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/RR/TXT.php branches/geeklog-new-tree/extended/system/pear/Net/DNS/Resolver.php branches/geeklog-new-tree/extended/system/pear/Net/SMTP.php branches/geeklog-new-tree/extended/system/pear/Net/Socket.php branches/geeklog-new-tree/extended/system/pear/Net/URL.php branches/geeklog-new-tree/extended/system/pear/OS/Guess.php branches/geeklog-new-tree/extended/system/pear/PEAR.php branches/geeklog-new-tree/extended/system/pear/PEAR/Autoloader.php branches/geeklog-new-tree/extended/system/pear/PEAR/Builder.php branches/geeklog-new-tree/extended/system/pear/PEAR/ChannelFile.php branches/geeklog-new-tree/extended/system/pear/PEAR/ChannelFile/Parser.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Auth.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Auth.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Build.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Build.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Channels.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Channels.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Common.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Config.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Config.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Install.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Install.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Mirror.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Mirror.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Package.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Package.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Pickle.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Pickle.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Registry.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Registry.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Remote.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Remote.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Test.php branches/geeklog-new-tree/extended/system/pear/PEAR/Command/Test.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Common.php branches/geeklog-new-tree/extended/system/pear/PEAR/Config.php branches/geeklog-new-tree/extended/system/pear/PEAR/Dependency.php branches/geeklog-new-tree/extended/system/pear/PEAR/Dependency2.php branches/geeklog-new-tree/extended/system/pear/PEAR/DependencyDB.php branches/geeklog-new-tree/extended/system/pear/PEAR/Downloader.php branches/geeklog-new-tree/extended/system/pear/PEAR/Downloader/Package.php branches/geeklog-new-tree/extended/system/pear/PEAR/ErrorStack.php branches/geeklog-new-tree/extended/system/pear/PEAR/Exception.php branches/geeklog-new-tree/extended/system/pear/PEAR/FixPHP5PEARWarnings.php branches/geeklog-new-tree/extended/system/pear/PEAR/Frontend.php branches/geeklog-new-tree/extended/system/pear/PEAR/Frontend/CLI.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Cfg.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Cfg.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Common.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Data.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Data.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Doc.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Doc.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Ext.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Ext.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Php.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Php.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Script.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Script.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Src.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Src.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Test.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Test.xml branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Www.php branches/geeklog-new-tree/extended/system/pear/PEAR/Installer/Role/Www.xml branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/Generator/v1.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/Generator/v2.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/Parser/v1.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/Parser/v2.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/v1.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/v2.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/v2/Validator.php branches/geeklog-new-tree/extended/system/pear/PEAR/PackageFile/v2/rw.php branches/geeklog-new-tree/extended/system/pear/PEAR/Packager.php branches/geeklog-new-tree/extended/system/pear/PEAR/REST.php branches/geeklog-new-tree/extended/system/pear/PEAR/REST/10.php branches/geeklog-new-tree/extended/system/pear/PEAR/REST/11.php branches/geeklog-new-tree/extended/system/pear/PEAR/REST/13.php branches/geeklog-new-tree/extended/system/pear/PEAR/Registry.php branches/geeklog-new-tree/extended/system/pear/PEAR/Remote.php branches/geeklog-new-tree/extended/system/pear/PEAR/RunTest.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Common.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Postinstallscript.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Postinstallscript/rw.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Replace.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Replace/rw.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Unixeol.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Unixeol/rw.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Windowseol.php branches/geeklog-new-tree/extended/system/pear/PEAR/Task/Windowseol/rw.php branches/geeklog-new-tree/extended/system/pear/PEAR/Validate.php branches/geeklog-new-tree/extended/system/pear/PEAR/Validator/PECL.php branches/geeklog-new-tree/extended/system/pear/PEAR/XMLParser.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Components.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/DIRECTORY_SEPARATOR.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/E_STRICT.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/FILE.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/PATH_SEPARATOR.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/PHP_EOL.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/STD.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/T.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Constant/UPLOAD_ERR.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_change_key_case.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_chunk.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_combine.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_diff_assoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_diff_key.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_diff_uassoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_diff_ukey.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_intersect_assoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_intersect_key.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_intersect_uassoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_intersect_ukey.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_key_exists.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_product.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_search.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_udiff.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_udiff_assoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_udiff_uassoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_uintersect.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_uintersect_assoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_uintersect_uassoc.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/array_walk_recursive.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/bcinvert.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/bcpowmod.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/call_user_func_array.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/clone.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/constant.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/convert_uudecode.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/convert_uuencode.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/debug_print_backtrace.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/file_get_contents.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/file_put_contents.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/floatval.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/fprintf.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/fputcsv.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/get_headers.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/get_include_path.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/html_entity_decode.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/htmlspecialchars_decode.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/http_build_query.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/ibase_timefmt.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/idate.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/image_type_to_mime_type.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/inet_ntop.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/inet_pton.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/ini_get_all.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/is_a.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/md5_file.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/mhash.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/mime_content_type.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/ob_clean.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/ob_flush.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/ob_get_clean.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/ob_get_flush.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/pg_affected_rows.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/pg_escape_bytea.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/pg_unescape_bytea.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/php_strip_whitespace.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/restore_include_path.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/scandir.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/set_include_path.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/str_ireplace.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/str_rot13.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/str_shuffle.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/str_split.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/str_word_count.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/stripos.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/strpbrk.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/strripos.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/substr_compare.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/time_sleep_until.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/var_export.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/version_compare.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/vprintf.php branches/geeklog-new-tree/extended/system/pear/PHP/Compat/Function/vsprintf.php branches/geeklog-new-tree/extended/system/pear/README branches/geeklog-new-tree/extended/system/pear/System.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Default.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Anchor.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Blockquote.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Bold.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Break.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Center.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Code.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Colortext.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Deflist.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Delimiter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Embed.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Emphasis.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Freelink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Function.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Heading.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Horiz.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Html.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Image.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Include.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Interwiki.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Italic.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/List.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Newline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Paragraph.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Phplookup.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Prefilter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Raw.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Revise.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Smiley.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Strong.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Subscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Superscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Table.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Tighten.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Toc.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Tt.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Underline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Url.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Parse/Default/Wikilink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Anchor.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Blockquote.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Bold.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Box.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Break.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Center.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Code.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Colortext.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Deflist.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Delimiter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Embed.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Emphasis.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Font.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Freelink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Function.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Heading.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Horiz.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Html.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Image.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Include.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Interwiki.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Italic.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/List.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Newline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Page.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Paragraph.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Phplookup.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Plugin.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Prefilter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Preformatted.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Raw.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Revise.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Smiley.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Specialchar.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Strong.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Subscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Superscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Table.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Tighten.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Titlebar.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Toc.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Tt.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Underline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Url.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Latex/Wikilink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Anchor.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Blockquote.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Bold.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Box.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Break.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Center.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Code.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Colortext.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Deflist.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Delimiter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Embed.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Emphasis.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Font.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Freelink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Function.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Heading.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Horiz.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Html.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Image.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Include.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Interwiki.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Italic.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/List.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Newline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Page.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Paragraph.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Phplookup.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Plugin.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Prefilter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Preformatted.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Raw.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Revise.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Smiley.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Specialchar.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Strong.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Subscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Superscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Table.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Tighten.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Titlebar.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Toc.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Tt.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Underline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Url.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Plain/Wikilink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Address.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Anchor.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Blockquote.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Bold.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Box.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Break.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Center.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Code.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Colortext.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Deflist.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Delimiter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Embed.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Emphasis.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Font.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Freelink.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Function.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Heading.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Horiz.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Html.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Image.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Include.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Interwiki.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Italic.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/List.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Newline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Page.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Paragraph.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Phplookup.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Plugin.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Prefilter.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Preformatted.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Raw.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Revise.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Smiley.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Specialchar.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Strong.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Subscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Superscript.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Table.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Tighten.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Titlebar.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Toc.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Tt.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Underline.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Url.php branches/geeklog-new-tree/extended/system/pear/Text/Wiki/Render/Xhtml/Wikilink.php branches/geeklog-new-tree/extended/system/pear/XML/RPC.php branches/geeklog-new-tree/extended/system/pear/XML/RPC/Dump.php branches/geeklog-new-tree/extended/system/pear/XML/RPC/Server.php branches/geeklog-new-tree/extended/system/pear/scripts/pear.bat branches/geeklog-new-tree/extended/system/pear/scripts/pear.sh branches/geeklog-new-tree/extended/system/pear/scripts/pearcmd.php branches/geeklog-new-tree/extended/system/pear/scripts/peardev.bat branches/geeklog-new-tree/extended/system/pear/scripts/peardev.sh branches/geeklog-new-tree/extended/system/pear/scripts/pecl.bat branches/geeklog-new-tree/extended/system/pear/scripts/pecl.sh branches/geeklog-new-tree/extended/system/pear/scripts/peclcmd.php Log: extended以下、geeklog-1-jp-extended にある geeklog-1-jp と同一の内容の ファイルを削除します。(多量で一度に行うのが困難なようなので、取り敢えず public_html以外を試みます。) From codesite-noreply @ google.com Sun Mar 22 02:15:45 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 21 Mar 2009 17:15:45 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMwOSAtIGV4dGVuZGVkGyRCMEoyPCEiGyhCZ2Vla2xvZw==?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQgGyRCJEskIiRrGyhCIGdlZWtsb2ctMS1qcCAbJEIkSEYxMGwkTkZiTUYkThsoQg==?= Message-ID: <000e0cd5d0720de6000465a42f9f@google.com> Author: tacahi Date: Sat Mar 21 10:11:30 2009 New Revision: 1309 Removed: branches/geeklog-new-tree/extended/public_html/404.php branches/geeklog-new-tree/extended/public_html/admin/auth.inc.php branches/geeklog-new-tree/extended/public_html/admin/block.php branches/geeklog-new-tree/extended/public_html/admin/configuration.php branches/geeklog-new-tree/extended/public_html/admin/database.php branches/geeklog-new-tree/extended/public_html/admin/group.php branches/geeklog-new-tree/extended/public_html/admin/index.php branches/geeklog-new-tree/extended/public_html/admin/install/LocalizeGeeklog.php branches/geeklog-new-tree/extended/public_html/admin/install/config-install.php branches/geeklog-new-tree/extended/public_html/admin/install/configinfo.php branches/geeklog-new-tree/extended/public_html/admin/install/disable-plugins.php branches/geeklog-new-tree/extended/public_html/admin/install/help.php branches/geeklog-new-tree/extended/public_html/admin/install/index.php branches/geeklog-new-tree/extended/public_html/admin/install/info.php branches/geeklog-new-tree/extended/public_html/admin/install/install.php branches/geeklog-new-tree/extended/public_html/admin/install/language/chinese_simplified_utf-8.php branches/geeklog-new-tree/extended/public_html/admin/install/language/chinese_traditional_utf-8.php branches/geeklog-new-tree/extended/public_html/admin/install/language/english.php branches/geeklog-new-tree/extended/public_html/admin/install/language/german.php branches/geeklog-new-tree/extended/public_html/admin/install/language/hebrew_utf-8.php branches/geeklog-new-tree/extended/public_html/admin/install/language/japanese_utf-8.php branches/geeklog-new-tree/extended/public_html/admin/install/language/polish.php branches/geeklog-new-tree/extended/public_html/admin/install/layout/header-bg.png branches/geeklog-new-tree/extended/public_html/admin/install/layout/logo.png branches/geeklog-new-tree/extended/public_html/admin/install/layout/style.css branches/geeklog-new-tree/extended/public_html/admin/install/success.php branches/geeklog-new-tree/extended/public_html/admin/install/toinnodb.php branches/geeklog-new-tree/extended/public_html/admin/install/tools/droptables.php branches/geeklog-new-tree/extended/public_html/admin/mail.php branches/geeklog-new-tree/extended/public_html/admin/moderation.php branches/geeklog-new-tree/extended/public_html/admin/plugins.php branches/geeklog-new-tree/extended/public_html/admin/plugins/calendar/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/calendar/install.php branches/geeklog-new-tree/extended/public_html/admin/plugins/calendarjp/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/calendarjp/install.php branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/convertconfig_1.4.1jp_to_1.5.0.php branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/information.php branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/install.php branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/japanize_functions.php branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/settings.php branches/geeklog-new-tree/extended/public_html/admin/plugins/links/category.php branches/geeklog-new-tree/extended/public_html/admin/plugins/links/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/links/install.php branches/geeklog-new-tree/extended/public_html/admin/plugins/polls/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/polls/install.php branches/geeklog-new-tree/extended/public_html/admin/plugins/spamx/images/spamx.png branches/geeklog-new-tree/extended/public_html/admin/plugins/spamx/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/spamx/install.php branches/geeklog-new-tree/extended/public_html/admin/plugins/staticpages/index.php branches/geeklog-new-tree/extended/public_html/admin/plugins/staticpages/install.php branches/geeklog-new-tree/extended/public_html/admin/sectest.php branches/geeklog-new-tree/extended/public_html/admin/story.php branches/geeklog-new-tree/extended/public_html/admin/syndication.php branches/geeklog-new-tree/extended/public_html/admin/topic.php branches/geeklog-new-tree/extended/public_html/admin/trackback.php branches/geeklog-new-tree/extended/public_html/admin/user.php branches/geeklog-new-tree/extended/public_html/article.php branches/geeklog-new-tree/extended/public_html/backend/geeklog.rss branches/geeklog-new-tree/extended/public_html/calendar/event.php branches/geeklog-new-tree/extended/public_html/calendar/images/calendar.png branches/geeklog-new-tree/extended/public_html/calendar/images/delete_event.gif branches/geeklog-new-tree/extended/public_html/calendar/images/delete_event.png branches/geeklog-new-tree/extended/public_html/calendar/index.php branches/geeklog-new-tree/extended/public_html/calendar/style.css branches/geeklog-new-tree/extended/public_html/calendarjp/event.php branches/geeklog-new-tree/extended/public_html/calendarjp/eventeditor_fckeditor.js branches/geeklog-new-tree/extended/public_html/calendarjp/images/calendar.png branches/geeklog-new-tree/extended/public_html/calendarjp/images/delete_event.gif branches/geeklog-new-tree/extended/public_html/calendarjp/images/delete_event.png branches/geeklog-new-tree/extended/public_html/calendarjp/index.php branches/geeklog-new-tree/extended/public_html/calendarjp/style.css branches/geeklog-new-tree/extended/public_html/comment.php branches/geeklog-new-tree/extended/public_html/directory.php branches/geeklog-new-tree/extended/public_html/disabledmsg.html branches/geeklog-new-tree/extended/public_html/docs/calendar.html branches/geeklog-new-tree/extended/public_html/docs/changed-files branches/geeklog-new-tree/extended/public_html/docs/changes.html branches/geeklog-new-tree/extended/public_html/docs/config.html branches/geeklog-new-tree/extended/public_html/docs/docstyle.css branches/geeklog-new-tree/extended/public_html/docs/history branches/geeklog-new-tree/extended/public_html/docs/history.html branches/geeklog-new-tree/extended/public_html/docs/images/de.png branches/geeklog-new-tree/extended/public_html/docs/images/fr.png branches/geeklog-new-tree/extended/public_html/docs/images/jp.png branches/geeklog-new-tree/extended/public_html/docs/images/newlogo.gif branches/geeklog-new-tree/extended/public_html/docs/images/pl.png branches/geeklog-new-tree/extended/public_html/docs/index.html branches/geeklog-new-tree/extended/public_html/docs/install.html branches/geeklog-new-tree/extended/public_html/docs/license branches/geeklog-new-tree/extended/public_html/docs/links.html branches/geeklog-new-tree/extended/public_html/docs/plugin.html branches/geeklog-new-tree/extended/public_html/docs/polls.html branches/geeklog-new-tree/extended/public_html/docs/readme.html branches/geeklog-new-tree/extended/public_html/docs/readme.ja.html branches/geeklog-new-tree/extended/public_html/docs/spamx.html branches/geeklog-new-tree/extended/public_html/docs/staticpages.html branches/geeklog-new-tree/extended/public_html/docs/support.html branches/geeklog-new-tree/extended/public_html/docs/theme.html branches/geeklog-new-tree/extended/public_html/docs/themevars.html branches/geeklog-new-tree/extended/public_html/docs/trackback.html branches/geeklog-new-tree/extended/public_html/fckeditor/_documentation.html branches/geeklog-new-tree/extended/public_html/fckeditor/_upgrade.html branches/geeklog-new-tree/extended/public_html/fckeditor/_whatsnew.html branches/geeklog-new-tree/extended/public_html/fckeditor/_whatsnew_history.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckcontextmenu.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdataprocessor.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdomrange.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdomrange_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdomrange_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckdomrangeiterator.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckeditingarea.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckelementpath.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckenterkey.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckevents.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckhtmliterator.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckicon.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckiecleanup.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckimagepreloader.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckkeystrokehandler.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckmenublock.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckmenublockpanel.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckmenuitem.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckpanel.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckspecialcombo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckstyle.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbar.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarbutton.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckw3crange.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckxml.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckxml_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/classes/fckxml_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fck_othercommands.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckfitwindow.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckindentcommands.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckjustifycommands.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fcklistcommands.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fcknamedcommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckshowblocks.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fckstylecommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fcktablecommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/fckconstants.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/fckeditorapi.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/fckjscoreextensions.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/fckscriptloader.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fck.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fck_contextmenu.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fck_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fck_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckbrowserinfo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckcodeformatter.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckcommands.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckconfig.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckdebug.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckdialog.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckdocumentprocessor.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckdomtools.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcklanguagemanager.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcklisthandler.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcklistslib.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckplugins.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckregexlib.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckselection.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckselection_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckselection_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckstyles.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktablehandler.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktablehandler_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktablehandler_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktoolbaritems.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktoolbarset.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktools.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktools_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fcktools_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckundo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckurlparams.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckxhtml.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckxhtml_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckxhtml_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/_source/internals/fckxhtmlentities.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/behaviors/disablehandles.htc branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/behaviors/showtableborders.htc branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/fck_editorarea.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/fck_internal.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/fck_showtableborders_gecko.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_address.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_blockquote.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_div.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_h1.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_h2.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_h3.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_h4.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_h5.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_h6.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_p.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/block_pre.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/fck_anchor.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/fck_flashlogo.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/fck_hiddenfield.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/fck_pagebreak.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/css/images/fck_plugin.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/common/fck_dialog_common.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/common/fck_dialog_common.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/common/images/locked.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/common/images/reset.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/common/images/unlocked.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_about.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_about/logo_fredck.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_anchor.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_button.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_checkbox.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_colorselector.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_docprops.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_flash.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_flash/fck_flash.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_form.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_hiddenfield.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_image.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_image/fck_image.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_image/fck_image_preview.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_link.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_link/fck_link.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_listprop.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_paste.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_radiobutton.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_replace.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_select.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_select/fck_select.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_smiley.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_source.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_specialchar.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_table.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_tablecell.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_template.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_template/images/template1.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_template/images/template2.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_template/images/template3.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_textarea.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dialog/fck_textfield.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dtd/fck_dtd_test.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dtd/fck_xhtml10strict.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/dtd/fck_xhtml10transitional.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/fckdebug.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/fckdialog.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/fckeditor.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/fckeditor.original.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/browser.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/browser.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/frmactualfolder.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/frmfolders.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/frmresourceslist.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/frmresourcetype.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/frmupload.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/Folder.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/Folder32.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/html.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/js.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/png.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/images/spacer.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/js/common.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/browser/default/js/fckxml.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/basexml.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/commands.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/config.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/connector.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/io.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/phpcompat.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/upload.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/filemanager/connectors/php/util.php branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/anchor.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/arrow_ltr.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/arrow_rtl.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/angel_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/angry_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/broken_heart.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/cake.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/confused_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/cry_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/devil_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/embaressed_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/envelope.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/heart.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/kiss.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/lightbulb.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/omg_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/regular_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/sad_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/shades_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/teeth_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/thumbs_down.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/thumbs_up.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/tounge_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/smiley/msn/wink_smile.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/images/spacer.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/js/fckadobeair.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/js/fckeditorcode_gecko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/js/fckeditorcode_ie.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/_translationstatus.txt branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/af.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ar.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/bg.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/bn.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/bs.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ca.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/cs.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/da.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/de.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/el.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/en-au.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/en-ca.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/en-uk.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/en.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/eo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/es.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/et.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/eu.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/fa.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/fi.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/fo.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/fr-ca.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/fr.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/gl.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/he.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/hi.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/hr.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/hu.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/it.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ja.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/km.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ko.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/lt.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/lv.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/mn.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ms.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/nb.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/nl.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/no.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/pl.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/pt-br.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/pt.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ro.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/ru.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/sk.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/sl.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/sr-latn.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/sr.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/sv.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/th.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/tr.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/uk.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/vi.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/zh-cn.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/lang/zh.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/autogrow/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.config.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/bbcode/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/dragresizetable/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/fck_placeholder.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/lang/de.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/lang/en.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/lang/es.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/lang/fr.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/lang/it.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/lang/pl.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/placeholder/placeholder.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/simplecommands/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/plugins/tablecommands/fckplugin.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/_fckviewstrips.html branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/fck_dialog.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/fck_dialog_ie6.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/fck_editor.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/fck_strip.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/dialog.sides.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/dialog.sides.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/dialog.sides.rtl.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/sprites.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/sprites.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.arrowright.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.collapse.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.end.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.expand.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.separator.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/default/images/toolbar.start.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/fck_dialog.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/fck_dialog_ie6.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/fck_editor.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/fck_strip.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/sprites.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/sprites.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.bg.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.end.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.expand.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.separator.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/office2003/images/toolbar.start.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/fck_dialog.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/fck_dialog_ie6.js branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/fck_editor.css branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/fck_strip.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/dialog.sides.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/dialog.sides.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/sprites.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/sprites.png branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.collapse.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.end.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.expand.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.separator.gif branches/geeklog-new-tree/extended/public_html/fckeditor/editor/skins/silver/images/toolbar.start.gif branches/geeklog-new-tree/extended/public_html/fckeditor/fckconfig.js branches/geeklog-new-tree/extended/public_html/fckeditor/fckeditor.js branches/geeklog-new-tree/extended/public_html/fckeditor/fckeditor.php branches/geeklog-new-tree/extended/public_html/fckeditor/fckeditor_php4.php branches/geeklog-new-tree/extended/public_html/fckeditor/fckeditor_php5.php branches/geeklog-new-tree/extended/public_html/fckeditor/fckpackager.xml branches/geeklog-new-tree/extended/public_html/fckeditor/fckstyles.xml branches/geeklog-new-tree/extended/public_html/fckeditor/fcktemplates.xml branches/geeklog-new-tree/extended/public_html/fckeditor/license.txt branches/geeklog-new-tree/extended/public_html/fckeditor/myconfig.js branches/geeklog-new-tree/extended/public_html/getimage.php branches/geeklog-new-tree/extended/public_html/help/advancedsearch.html branches/geeklog-new-tree/extended/public_html/help/cceventsubmission.html branches/geeklog-new-tree/extended/public_html/help/cclinksubmission.html branches/geeklog-new-tree/extended/public_html/help/ccstorysubmission.html branches/geeklog-new-tree/extended/public_html/help/submitevent.html branches/geeklog-new-tree/extended/public_html/help/submitlink.html branches/geeklog-new-tree/extended/public_html/help/submitstory.html branches/geeklog-new-tree/extended/public_html/imageresizer.php branches/geeklog-new-tree/extended/public_html/images/admin/block.gif branches/geeklog-new-tree/extended/public_html/images/admin/event.gif branches/geeklog-new-tree/extended/public_html/images/admin/link.gif branches/geeklog-new-tree/extended/public_html/images/admin/logout.gif branches/geeklog-new-tree/extended/public_html/images/admin/plugins.gif branches/geeklog-new-tree/extended/public_html/images/admin/poll.gif branches/geeklog-new-tree/extended/public_html/images/admin/story.gif branches/geeklog-new-tree/extended/public_html/images/admin/topic.gif branches/geeklog-new-tree/extended/public_html/images/admin/user.gif branches/geeklog-new-tree/extended/public_html/images/articles/index.html branches/geeklog-new-tree/extended/public_html/images/bar.gif branches/geeklog-new-tree/extended/public_html/images/button_help.gif branches/geeklog-new-tree/extended/public_html/images/buttons/cms-geeklog.png branches/geeklog-new-tree/extended/public_html/images/buttons/geeklog-badge.gif branches/geeklog-new-tree/extended/public_html/images/buttons/geekpower2.gif branches/geeklog-new-tree/extended/public_html/images/buttons/index.html branches/geeklog-new-tree/extended/public_html/images/buttons/mysql.gif branches/geeklog-new-tree/extended/public_html/images/buttons/php.gif branches/geeklog-new-tree/extended/public_html/images/buttons/valid-css.png branches/geeklog-new-tree/extended/public_html/images/buttons/valid-html.png branches/geeklog-new-tree/extended/public_html/images/icons/block.gif branches/geeklog-new-tree/extended/public_html/images/icons/event.gif branches/geeklog-new-tree/extended/public_html/images/icons/feed.gif branches/geeklog-new-tree/extended/public_html/images/icons/geeklog.gif branches/geeklog-new-tree/extended/public_html/images/icons/group.gif branches/geeklog-new-tree/extended/public_html/images/icons/link.gif branches/geeklog-new-tree/extended/public_html/images/icons/logout.gif branches/geeklog-new-tree/extended/public_html/images/icons/ping.gif branches/geeklog-new-tree/extended/public_html/images/icons/plugins.gif branches/geeklog-new-tree/extended/public_html/images/icons/poll.gif branches/geeklog-new-tree/extended/public_html/images/icons/story.gif branches/geeklog-new-tree/extended/public_html/images/icons/themes.gif branches/geeklog-new-tree/extended/public_html/images/icons/topic.gif branches/geeklog-new-tree/extended/public_html/images/icons/user.gif branches/geeklog-new-tree/extended/public_html/images/library/File/test.pdf branches/geeklog-new-tree/extended/public_html/images/library/Flash/index.html branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/ai.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/avi.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/bmp.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/cs.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/default.icon.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/dll.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/doc.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/exe.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/fla.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/gif.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/htm.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/html.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/jpg.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/js.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/mdb.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/mp3.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/pdf.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/ppt.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/rdp.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/swf.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/swt.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/txt.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/vsd.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/xls.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/xml.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/icons/zip.gif branches/geeklog-new-tree/extended/public_html/images/library/Image/image1.jpg branches/geeklog-new-tree/extended/public_html/images/library/Image/image2.jpg branches/geeklog-new-tree/extended/public_html/images/library/Image/image3.jpg branches/geeklog-new-tree/extended/public_html/images/library/Media/index.html branches/geeklog-new-tree/extended/public_html/images/mail.gif branches/geeklog-new-tree/extended/public_html/images/openid_login_icon.png branches/geeklog-new-tree/extended/public_html/images/print.gif branches/geeklog-new-tree/extended/public_html/images/right_arrow.png branches/geeklog-new-tree/extended/public_html/images/speck.gif branches/geeklog-new-tree/extended/public_html/images/sysmessage.gif branches/geeklog-new-tree/extended/public_html/images/topics/index.html branches/geeklog-new-tree/extended/public_html/images/topics/topic_gl.gif branches/geeklog-new-tree/extended/public_html/images/topics/topic_news.gif branches/geeklog-new-tree/extended/public_html/images/userphotos/index.html branches/geeklog-new-tree/extended/public_html/index.php branches/geeklog-new-tree/extended/public_html/japanize/disabledmsg.html branches/geeklog-new-tree/extended/public_html/japanize/images/japanize.png branches/geeklog-new-tree/extended/public_html/japanize/index.html branches/geeklog-new-tree/extended/public_html/japanize/memberlogin_help.php branches/geeklog-new-tree/extended/public_html/javascript/advanced_editor.js branches/geeklog-new-tree/extended/public_html/javascript/common.js branches/geeklog-new-tree/extended/public_html/javascript/configmanager.js branches/geeklog-new-tree/extended/public_html/javascript/moveusers.js branches/geeklog-new-tree/extended/public_html/javascript/profile_editor.js branches/geeklog-new-tree/extended/public_html/javascript/staticpages_fckeditor.js branches/geeklog-new-tree/extended/public_html/javascript/storyeditor_fckeditor.js branches/geeklog-new-tree/extended/public_html/javascript/submitcomment_fckeditor.js branches/geeklog-new-tree/extended/public_html/javascript/submitstory_fckeditor.js branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/README branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/block/blockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/block/defaultblockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/block/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/common/edit_permissions.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/common/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/config/config_element.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/config/configuration.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/config/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/config/menu_element.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/group/groupeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/group/groupmembers.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/group/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/field.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/header.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/list.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/searchmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/lists/topmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/mail/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/mail/mailform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/moderation/ccitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/moderation/ccrow.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/moderation/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/moderation/moderation.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/plugins/editor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/plugins/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/story/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/story/storyeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/story/storyeditor_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/syndication/feededitor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/syndication/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/syndication/selecttype.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/topic/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/topic/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/topic/topiceditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/topic/topiclist.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/autodetectitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/autodetectlist.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/pingbackform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/pingbackitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/pingbacklist.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/pingform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/pingitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/pinglist.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/serviceeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/trackback/trackbackeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/user/batchdelete.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/user/batchdelete_options.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/user/edituser.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/user/groupedit.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/user/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/user/reminder.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/adminoption.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/adminoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/advanced_editor_header.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/archivestorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/archivestorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/article/article.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/article/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/article/printable.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter-config.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter-left.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter-list.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter-message.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter-related.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter-right.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockfooter.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader-config.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader-left.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader-list.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader-message.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader-related.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader-right.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockheader.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/blockservices.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/comment.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/commentbar.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/commentform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/commentform_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/reportcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/startcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/thread.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/block.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/common.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/configuration.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/group.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/lists.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/moderation.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/plugins.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/story.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/topic.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/trackback.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/admin/user.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/article/article.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/article/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/block.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/comment/comment.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/comment/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/common.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/compatible.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/default.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/form.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/layout.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/navbar/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/navbar/navbar.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/option.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/plugin.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/plugin/forum.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/plugin/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/plugin/japanize.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/plugin/sitecalendar.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/preferences/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/preferences/preferences.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/search/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/search/search.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/stats/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/stats/stats.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/story.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/submit/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/submit/submit.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/trackback/trackback.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/users/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/users/users.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/custom.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/custom.sample.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/featuredstorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/featuredstorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/footer.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/header.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/addchild.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/admin/block-left.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/admin/block-right.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/bar.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/bararrowdown.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/bararrowup.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/button_help.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/collapse.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/copy.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_header.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_message_title.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_navigation.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_wrapper_center-right.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_wrapper_center.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_wrapper_left-center-right.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/bg_wrapper_left-center.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/css/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/deleteitem.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/edit.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/expand.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/external.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/header-bg.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icon_info.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/block.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/configuration.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/database.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/delete_event.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/docs.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/event.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/group.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/logout.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/mail.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/plugins.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/story.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/syndication.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/topic.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/trackback.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/user.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/icons/versioncheck.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/list.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/logo.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/logo.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/mail.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/pdf.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/person.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/print.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/sendping.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/smallcamera.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/sysmessage.png branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/javascript/confirm.js branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/javascript/fix_html.js branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/javascript/iepngfix.htc branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/javascript/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/leftblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/list.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/loginform_openid.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/menuitem_last.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/menuitem_none.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/breadcrumb_link.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/breadcrumbs.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/button.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/button_over.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/tableftI.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/tableftJ.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/tabrightI.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/images/tabrightJ.gif branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/navbar.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/boxesblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/commentblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/deleteaccount.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/digestblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/displayblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/displayprefs.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/excludeblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/language.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/privacyblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/theme.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/username.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/userphoto.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/profiles/contactauthorform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/profiles/contactuserform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/profiles/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/rightblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/headingcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/resultauthdatehits.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/resultcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/resultrow.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/resultrowenhanced.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/resultsummary.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/resulttitle.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchauthors.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchblock.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchresults.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchresults_heading.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchresults_norows.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/searchresults_rows.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/stats/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/stats/itemstatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/stats/singlestat.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/stats/singlesummary.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/stats/sitestatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/storybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/storytext.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/style.css branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/submit/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/submit/submitloginrequired.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/submit/submitstory.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/submit/submitstory_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/topicoption.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/topicoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/trackback/formattedcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/trackback/trackback.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/trackback/trackbackcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/useroption.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/useroption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/commentrow.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/getpasswordform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/index.html branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/newpassword.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/registrationform.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/services.thtml branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/storyrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/README branches/geeklog-new-tree/extended/public_html/layout/mobile/additional-forum.css branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/block/blockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/block/defaultblockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/block/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/block/listblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/block/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/block/listside.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/common/edit_permissions.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/common/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/config/config_element.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/config/configuration.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/config/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/config/menu_element.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/database/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/database/listbackups.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/database/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/event/eventeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/event/eventlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/event/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/event/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/group/groupeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/group/grouplist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/group/groupmembers.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/group/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/group/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/link/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/link/linkeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/link/linklist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/link/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/field.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/menufields.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/searchmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/topmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/lists/topmenu_nosearch.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/mail/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/mail/mailform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/moderation/ccitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/moderation/ccrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/moderation/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/moderation/itemlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/moderation/itemlistrows.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/moderation/moderation.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/plugins/editor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/plugins/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/plugins/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/plugins/newlistitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/plugins/newpluginlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/plugins/pluginlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/poll/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/poll/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/poll/pollansweroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/poll/polleditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/poll/polllist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/story/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/story/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/story/liststories.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/story/storyeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/story/storyeditor_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/syndication/feededitor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/syndication/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/syndication/listfeeds.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/syndication/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/syndication/selecttype.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/topic/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/topic/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/topic/topiceditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/topic/topiclist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/autodetectitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/autodetectlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/pingbackform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/pingbackitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/pingbacklist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/pingform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/pingitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/pinglist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/serviceeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/serviceitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/servicelist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/trackback/trackbackeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/batchdelete.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/batchdelete_options.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/edituser.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/groupedit.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/plainlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/reminder.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/user/userslist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/adminoption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/adminoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/advanced_editor_header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/archivestorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/archivestorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/article/a1 branches/geeklog-new-tree/extended/public_html/layout/mobile/article/article.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/article/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/article/printable.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter-config.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter-left.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter-list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter-message.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter-related.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter-right.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockfooter.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader-config.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader-left.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader-list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader-message.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader-related.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader-right.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockheader.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/blockservices.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/addevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/addeventoption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/addremoveevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/calendar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/calendarday.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/calendarevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/calendarweek.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/dayview/column.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/dayview/dayview.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/dayview/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/dayview/quickaddform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/dayview/singleevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/editpersonalevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/eventdetails.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/events.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/mastercalendaroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/personalcalendaroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/weekview/events.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/weekview/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/weekview/weekview.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/comment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/commentbar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/commentform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/commentform_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/commentwrap.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/reportcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/startcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/thread.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/custom-memberlogin.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/customlogin-footer.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/customlogin-header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/featuredstorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/featuredstorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/footer.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/forum.css branches/geeklog-new-tree/extended/public_html/layout/mobile/header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/images/addchild.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/block-left.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/block-left.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/block-right.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/block-right.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/block.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/event.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/link.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/logout.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/plugins.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/poll.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/story.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/topic.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/admin/user.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/bar.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/bararrowdown.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/bararrowup.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/button_help.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/button_help.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/button_login.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/button_register.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/buttons/geekpower2.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/buttons/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/images/buttons/mysql.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/buttons/php.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/buttons/valid-css.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/buttons/valid-html.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/collapse.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/collapse.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/copy.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/deleteitem.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/edit.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/edit.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/expand.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/expand.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/external.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/header-bg.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icon_info.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/block.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/block.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/configuration.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/database.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/delete_event.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/delete_event.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/docs.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/event.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/event.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/geeklog.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/group.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/group.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/link.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/logout.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/logout.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/mail.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/plugins.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/plugins.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/poll.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/story.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/story.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/syndication.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/themes.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/topic.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/topic.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/trackback.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/user.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/user.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/icons/versioncheck.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/images/list.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/logo-bg.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/logo.gd2 branches/geeklog-new-tree/extended/public_html/layout/mobile/images/logo.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/logo.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/mail.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/mail.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/pdf.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/pdf.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/person.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/person.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/print.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/print.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/sendping.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/smallcamera.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/smallcamera.png branches/geeklog-new-tree/extended/public_html/layout/mobile/images/sysmessage.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/images/sysmessage.png branches/geeklog-new-tree/extended/public_html/layout/mobile/leftblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/categoryactivecol.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/categorycol.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/categorylinks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/categorynavigation.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/categoryrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/links/linkdetails.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/links.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/links/pagenavigation.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/loginform_openid.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/menuitem_last.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/menuitem_none.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/breadcrumb_link.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/breadcrumbs.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/button.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/button_over.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/tableftI.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/tableftJ.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/tabrightI.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/images/tabrightJ.gif branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/navbar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pdfgenerator/pdf.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pdfgenerator/pdf_form.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/pollanswer.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/pollblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/pollcomments.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/polllist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/pollresult.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/pollvotes_bar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/pollvotes_num.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/pre1.4.1_forum.css branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/boxesblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/commentblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/deleteaccount.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/digestblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/displayblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/displayprefs.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/excludeblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/language.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/privacyblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/theme.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/username.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/userphoto.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/profiles/contactauthorform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/profiles/contactuserform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/profiles/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/rightblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/headingcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/search/resultauthdatehits.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/resultcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/resultrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/resultrowenhanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/resultsummary.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/resulttitle.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchauthors.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchresults.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchresults_heading.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchresults_norows.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/search/searchresults_rows.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/itemstatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/singlestat.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/singlesummary.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/sitestatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/stats.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/storybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/storytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/style.css branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/submitevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/submitlink.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/submitloginrequired.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/submitstory.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/submitstory_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/topcenterblock-span.thtmlx branches/geeklog-new-tree/extended/public_html/layout/mobile/topicoption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/topicoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/trackback/formattedcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/trackback/trackback.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/trackback/trackbackcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/useroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/useroption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/commentrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/getpasswordform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile/users/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/newpassword.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/registrationform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/services.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile/users/storyrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/README branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/additional-forum.css branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/block/blockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/block/defaultblockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/block/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/block/listblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/block/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/block/listside.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/common/edit_permissions.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/common/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/config/config_element.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/config/configuration.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/config/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/config/menu_element.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/database/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/database/listbackups.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/database/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/event/eventeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/event/eventlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/event/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/event/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/group/groupeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/group/grouplist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/group/groupmembers.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/group/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/group/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/link/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/link/linkeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/link/linklist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/link/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/field.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/menufields.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/searchmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/topmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/lists/topmenu_nosearch.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/mail/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/mail/mailform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/moderation/ccitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/moderation/ccrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/moderation/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/moderation/itemlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/moderation/itemlistrows.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/moderation/moderation.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/plugins/editor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/plugins/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/plugins/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/plugins/newlistitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/plugins/newpluginlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/plugins/pluginlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/poll/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/poll/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/poll/pollansweroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/poll/polleditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/poll/polllist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/story/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/story/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/story/liststories.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/story/storyeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/story/storyeditor_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/syndication/feededitor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/syndication/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/syndication/listfeeds.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/syndication/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/syndication/selecttype.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/topic/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/topic/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/topic/topiceditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/topic/topiclist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/autodetectitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/autodetectlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/pingbackform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/pingbackitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/pingbacklist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/pingform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/pingitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/pinglist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/serviceeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/serviceitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/servicelist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/trackback/trackbackeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/batchdelete.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/batchdelete_options.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/edituser.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/groupedit.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/plainlist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/reminder.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/user/userslist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/adminoption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/adminoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/advanced_editor_header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/archivestorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/archivestorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/article/a1 branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/article/article.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/article/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/article/printable.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter-config.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter-left.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter-list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter-message.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter-related.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter-right.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockfooter.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader-config.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader-left.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader-list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader-message.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader-related.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader-right.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockheader.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/blockservices.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/addevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/addeventoption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/addremoveevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/calendar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/calendarday.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/calendarevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/calendarweek.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/dayview/column.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/dayview/dayview.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/dayview/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/dayview/quickaddform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/dayview/singleevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/editpersonalevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/eventdetails.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/events.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/mastercalendaroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/personalcalendaroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/weekview/events.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/weekview/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/weekview/weekview.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/comment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/commentbar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/commentform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/commentform_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/commentwrap.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/reportcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/startcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/thread.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/custom-memberlogin.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/customlogin-footer.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/customlogin-header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/featuredstorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/featuredstorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/footer.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/forum.css branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/header.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/addchild.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/block-left.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/block-left.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/block-right.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/block-right.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/block.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/event.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/link.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/logout.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/plugins.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/poll.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/story.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/topic.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/admin/user.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/bar.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/bararrowdown.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/bararrowup.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/button_help.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/button_help.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/button_login.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/button_register.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/buttons/geekpower2.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/buttons/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/buttons/mysql.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/buttons/php.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/buttons/valid-css.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/buttons/valid-html.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/collapse.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/collapse.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/copy.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/deleteitem.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/edit.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/edit.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/expand.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/expand.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/external.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/header-bg.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icon_info.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/block.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/block.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/configuration.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/database.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/delete_event.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/delete_event.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/docs.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/event.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/event.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/geeklog.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/group.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/group.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/link.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/logout.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/logout.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/mail.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/plugins.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/plugins.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/poll.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/story.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/story.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/syndication.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/themes.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/topic.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/topic.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/trackback.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/user.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/user.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/icons/versioncheck.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/list.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/logo-bg.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/logo.gd2 branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/logo.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/logo.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/mail.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/mail.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/pdf.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/pdf.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/person.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/person.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/print.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/print.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/sendping.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/smallcamera.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/smallcamera.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/sysmessage.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/sysmessage.png branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/leftblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/categoryactivecol.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/categorycol.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/categorylinks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/categorynavigation.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/categoryrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/linkdetails.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/links.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/pagenavigation.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/list.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/loginform_openid.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/menuitem_last.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/menuitem_none.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/breadcrumb_link.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/breadcrumbs.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/button.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/button_over.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/tableftI.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/tableftJ.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/tabrightI.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/images/tabrightJ.gif branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/navbar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pdfgenerator/pdf.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pdfgenerator/pdf_form.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/pollanswer.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/pollblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/pollcomments.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/polllist.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/pollresult.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/pollvotes_bar.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/pollvotes_num.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pre1.4.1_forum.css branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/boxesblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/commentblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/deleteaccount.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/digestblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/displayblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/displayprefs.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/excludeblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/language.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/privacyblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/theme.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/username.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/userphoto.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/profiles/contactauthorform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/profiles/contactuserform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/profiles/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/rightblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/headingcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/resultauthdatehits.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/resultcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/resultrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/resultrowenhanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/resultsummary.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/resulttitle.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchauthors.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchblock.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchresults.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchresults_heading.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchresults_norows.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/searchresults_rows.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/itemstatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/singlestat.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/singlesummary.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/sitestatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/stats.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/storybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/storytext.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/style.css branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/submitevent.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/submitlink.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/submitloginrequired.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/submitstory.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/submitstory_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/topcenterblock-span.thtmlx branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/topicoption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/topicoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/trackback/formattedcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/trackback/trackback.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/trackback/trackbackcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/useroption.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/useroption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/commentrow.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/getpasswordform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/index.html branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/newpassword.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/registrationform.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/services.thtml branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/storyrow.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/README branches/geeklog-new-tree/extended/public_html/layout/professional/admin/block/blockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/block/defaultblockeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/block/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/common/edit_permissions.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/common/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/config/config_element.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/config/configuration.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/config/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/config/menu_element.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/group/groupeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/group/groupmembers.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/group/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/field.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/header.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/list.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/searchmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/lists/topmenu.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/mail/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/mail/mailform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/moderation/ccitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/moderation/ccrow.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/moderation/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/moderation/moderation.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/plugins/editor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/plugins/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/story/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/story/storyeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/story/storyeditor_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/syndication/feededitor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/syndication/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/syndication/selecttype.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/topic/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/topic/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/topic/topiceditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/topic/topiclist.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/autodetectitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/autodetectlist.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/pingbackform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/pingbackitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/pingbacklist.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/pingform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/pingitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/pinglist.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/serviceeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/trackback/trackbackeditor.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/user/batchdelete.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/user/batchdelete_options.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/user/edituser.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/user/groupedit.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/admin/user/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/admin/user/reminder.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/adminoption.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/adminoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/advanced_editor_header.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/archivestorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/archivestorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/article/article.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/article/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/article/printable.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter-config.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter-left.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter-list.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter-message.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter-related.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter-right.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockfooter.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader-config.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader-left.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader-list.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader-message.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader-related.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader-right.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockheader.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/blockservices.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/comment.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/commentbar.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/commentform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/commentform_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/comment/reportcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/startcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/comment/thread.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/featuredstorybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/featuredstorytext.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/footer.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/header.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/images/addchild.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/admin/block-left.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/admin/block-right.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/admin/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/images/bar.gif branches/geeklog-new-tree/extended/public_html/layout/professional/images/bararrowdown.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/bararrowup.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/button_help.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/collapse.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/copy.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/deleteitem.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/edit.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/expand.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/external.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/feed.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/header-bg.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icon_info.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/block.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/configuration.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/database.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/delete_event.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/docs.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/event.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/group.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/logout.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/mail.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/plugins.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/story.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/syndication.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/topic.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/trackback.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/user.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/icons/versioncheck.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/images/list.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/logo.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/mail.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/pdf.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/person.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/print.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/sendping.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/smallcamera.png branches/geeklog-new-tree/extended/public_html/layout/professional/images/sysmessage.png branches/geeklog-new-tree/extended/public_html/layout/professional/leftblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/list.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/listitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/loginform_openid.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/menuitem_last.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/menuitem_none.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/breadcrumb_link.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/breadcrumbs.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/button.gif branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/button_over.gif branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/tableftI.gif branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/tableftJ.gif branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/tabrightI.gif branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/images/tabrightJ.gif branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/menuitem.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/navbar.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/boxesblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/commentblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/deleteaccount.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/digestblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/displayblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/displayprefs.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/excludeblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/language.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/privacyblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/theme.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/username.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/userphoto.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/profiles/contactauthorform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/profiles/contactuserform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/profiles/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/rightblocks.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/headingcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/search/resultauthdatehits.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/resultcolumn.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/resultrow.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/resultrowenhanced.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/resultsummary.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/resulttitle.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchauthors.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchblock.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchresults.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchresults_heading.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchresults_norows.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/search/searchresults_rows.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/stats/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/stats/itemstatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/stats/singlestat.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/stats/singlesummary.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/stats/sitestatistics.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/storybodytext.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/storytext.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/submit/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/submit/submitloginrequired.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/submit/submitstory.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/submit/submitstory_advanced.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/topcenterblock-span.thtmlx branches/geeklog-new-tree/extended/public_html/layout/professional/topicoption.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/topicoption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/trackback/formattedcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/trackback/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/trackback/trackback.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/trackback/trackbackcomment.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/useroption.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/useroption_off.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/commentrow.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/getpasswordform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/index.html branches/geeklog-new-tree/extended/public_html/layout/professional/users/loginform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/newpassword.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/profile.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/registrationform.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/services.thtml branches/geeklog-new-tree/extended/public_html/layout/professional/users/storyrow.thtml branches/geeklog-new-tree/extended/public_html/lib-common.php branches/geeklog-new-tree/extended/public_html/links/images/links.png branches/geeklog-new-tree/extended/public_html/links/index.php branches/geeklog-new-tree/extended/public_html/links/portal.php branches/geeklog-new-tree/extended/public_html/mobileblocks.php branches/geeklog-new-tree/extended/public_html/pingback.php branches/geeklog-new-tree/extended/public_html/polls/images/polls.png branches/geeklog-new-tree/extended/public_html/polls/index.php branches/geeklog-new-tree/extended/public_html/polls/polls_editor.js branches/geeklog-new-tree/extended/public_html/polls/style.css branches/geeklog-new-tree/extended/public_html/profiles.php branches/geeklog-new-tree/extended/public_html/robots.txt branches/geeklog-new-tree/extended/public_html/search.php branches/geeklog-new-tree/extended/public_html/siteconfig.php branches/geeklog-new-tree/extended/public_html/staticpages/images/staticpages.png branches/geeklog-new-tree/extended/public_html/staticpages/index.php branches/geeklog-new-tree/extended/public_html/stats.php branches/geeklog-new-tree/extended/public_html/submit.php branches/geeklog-new-tree/extended/public_html/switchlang.php branches/geeklog-new-tree/extended/public_html/trackback.php branches/geeklog-new-tree/extended/public_html/users.php branches/geeklog-new-tree/extended/public_html/usersettings.php branches/geeklog-new-tree/extended/public_html/webservices/atom/index.php Log: extended以下、geeklog-1-jp-extended にある geeklog-1-jp と同一の内容の ファイルを削除します。(多量で一度に行うのが困難なようなので、取り敢えず public_html以下を試みます。) From codesite-noreply @ google.com Sun Mar 22 02:29:48 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 21 Mar 2009 17:29:48 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxMCAtIGV4dGVuZGVkGyRCMEoyPCEiGyhCZ2Vla2xvZw==?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQgGyRCJEskIiRrGyhCIGdlZWtsb2ctMS1qcCAbJEIkSEYxMGwkTkZiTUYkThsoQg==?= Message-ID: <000e0cd47cf65749370465a4613f@google.com> Author: tacahi Date: Sat Mar 21 10:24:19 2009 New Revision: 1310 Removed: branches/geeklog-new-tree/extended/backups/ branches/geeklog-new-tree/extended/data/ branches/geeklog-new-tree/extended/language/ branches/geeklog-new-tree/extended/logs/ branches/geeklog-new-tree/extended/plugins/calendar/ branches/geeklog-new-tree/extended/plugins/japanize/ branches/geeklog-new-tree/extended/plugins/links/ branches/geeklog-new-tree/extended/plugins/polls/ branches/geeklog-new-tree/extended/plugins/spamx/ branches/geeklog-new-tree/extended/plugins/staticpages/ branches/geeklog-new-tree/extended/public_html/admin/install/language/ branches/geeklog-new-tree/extended/public_html/admin/install/layout/ branches/geeklog-new-tree/extended/public_html/admin/install/tools/ branches/geeklog-new-tree/extended/public_html/admin/plugins/calendar/ branches/geeklog-new-tree/extended/public_html/admin/plugins/calendarjp/ branches/geeklog-new-tree/extended/public_html/admin/plugins/japanize/ branches/geeklog-new-tree/extended/public_html/admin/plugins/links/ branches/geeklog-new-tree/extended/public_html/admin/plugins/polls/ branches/geeklog-new-tree/extended/public_html/admin/plugins/spamx/ branches/geeklog-new-tree/extended/public_html/admin/plugins/staticpages/ branches/geeklog-new-tree/extended/public_html/backend/ branches/geeklog-new-tree/extended/public_html/calendar/ branches/geeklog-new-tree/extended/public_html/calendarjp/ branches/geeklog-new-tree/extended/public_html/docs/ branches/geeklog-new-tree/extended/public_html/fckeditor/ branches/geeklog-new-tree/extended/public_html/help/ branches/geeklog-new-tree/extended/public_html/images/ branches/geeklog-new-tree/extended/public_html/japanize/ branches/geeklog-new-tree/extended/public_html/javascript/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/admin/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/article/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/comment/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/css/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/images/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/javascript/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/navbar/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/preferences/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/profiles/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/search/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/stats/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/submit/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/trackback/ branches/geeklog-new-tree/extended/public_html/layout/ProfessionalCSS/users/ branches/geeklog-new-tree/extended/public_html/layout/mobile/admin/ branches/geeklog-new-tree/extended/public_html/layout/mobile/article/ branches/geeklog-new-tree/extended/public_html/layout/mobile/calendar/ branches/geeklog-new-tree/extended/public_html/layout/mobile/comment/ branches/geeklog-new-tree/extended/public_html/layout/mobile/images/ branches/geeklog-new-tree/extended/public_html/layout/mobile/links/ branches/geeklog-new-tree/extended/public_html/layout/mobile/navbar/ branches/geeklog-new-tree/extended/public_html/layout/mobile/pdfgenerator/ branches/geeklog-new-tree/extended/public_html/layout/mobile/pollbooth/ branches/geeklog-new-tree/extended/public_html/layout/mobile/preferences/ branches/geeklog-new-tree/extended/public_html/layout/mobile/profiles/ branches/geeklog-new-tree/extended/public_html/layout/mobile/search/ branches/geeklog-new-tree/extended/public_html/layout/mobile/stats/ branches/geeklog-new-tree/extended/public_html/layout/mobile/submit/ branches/geeklog-new-tree/extended/public_html/layout/mobile/trackback/ branches/geeklog-new-tree/extended/public_html/layout/mobile/users/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/admin/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/article/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/calendar/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/comment/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/images/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/links/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/navbar/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pdfgenerator/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/pollbooth/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/preferences/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/profiles/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/search/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/stats/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/submit/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/trackback/ branches/geeklog-new-tree/extended/public_html/layout/mobile_3g/users/ branches/geeklog-new-tree/extended/public_html/layout/professional/admin/ branches/geeklog-new-tree/extended/public_html/layout/professional/article/ branches/geeklog-new-tree/extended/public_html/layout/professional/comment/ branches/geeklog-new-tree/extended/public_html/layout/professional/images/ branches/geeklog-new-tree/extended/public_html/layout/professional/navbar/ branches/geeklog-new-tree/extended/public_html/layout/professional/preferences/ branches/geeklog-new-tree/extended/public_html/layout/professional/profiles/ branches/geeklog-new-tree/extended/public_html/layout/professional/search/ branches/geeklog-new-tree/extended/public_html/layout/professional/stats/ branches/geeklog-new-tree/extended/public_html/layout/professional/submit/ branches/geeklog-new-tree/extended/public_html/layout/professional/trackback/ branches/geeklog-new-tree/extended/public_html/layout/professional/users/ branches/geeklog-new-tree/extended/public_html/links/ branches/geeklog-new-tree/extended/public_html/polls/ branches/geeklog-new-tree/extended/public_html/staticpages/ branches/geeklog-new-tree/extended/public_html/webservices/ branches/geeklog-new-tree/extended/sql/ branches/geeklog-new-tree/extended/system/classes/ branches/geeklog-new-tree/extended/system/databases/ branches/geeklog-new-tree/extended/system/pear/ Log: extended以下、geeklog-1-jp-extended にある geeklog-1-jp と同一の内容の ファイルを削除した後に残っている不要なディレクトリを削除します。 From codesite-noreply @ google.com Sun Mar 22 14:24:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 05:24:23 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxMSAtIHIxMDQ0GyRCJEcbKEIgdHJ1bmsvZ2Vla2xvZy0x?= =?ISO-2022-JP?B?LWpwL3BsdWdpbnMvamFwYW5pemUvc3FsIBskQiRLOVQkbyRsJEYkJCRrPSRANSRPISIbKEI=?= Message-ID: <0016361e88c6da6cb60465ae5c56@google.com> Author: tacahi Date: Sat Mar 21 22:08:24 2009 New Revision: 1311 Modified: trunk/plugins/japanize/sql/sql_japanize_107.php trunk/plugins/japanize/sql/sql_japanize_7.php Log: r1044で trunk/geeklog-1-jp/plugins/japanize/sql に行われている修正は、 元の plugins/japanize/sql に存在しないため、改めて反映させます。 Modified: trunk/plugins/japanize/sql/sql_japanize_107.php ============================================================================== --- trunk/plugins/japanize/sql/sql_japanize_107.php (original) +++ trunk/plugins/japanize/sql/sql_japanize_107.php Sat Mar 21 22:08:24 2009 @@ -5,7 +5,7 @@ // $Id: sql_japanize6.php // もし万一エンコードの種類が utf-8でない場合は、utf-8に変換してください。 // 最終更新日 2008/09/02 tsuchi AT geeklog DOT jp - +// 更新日 2008/11/27 ivy AT geeklog DOT jp // (18) 初期ブロックタイトル等日本語化 $_SQL[] = " @@ -52,7 +52,7 @@ $_SQL[] = " UPDATE {$_TABLES['blocks']} SET title = 'About Geeklog' - ,content = '

    Welcome to Geeklog!

    If you''re already familiar with Geeklog - and especially if you''re not: There have been many improvements to Geeklog since earlier versions that you might want to read up on. Please read the release notes. If you need help, please see the support options.

    ' + ,content = '

    Welcome to Geeklog!

    If you''re already familiar with Geeklog - and especially if you''re not: There have been many improvements to Geeklog since earlier versions that you might want to read up on. Please read the release notes. If you need help, please see the support options.

    ' WHERE name = 'first_block' "; Modified: trunk/plugins/japanize/sql/sql_japanize_7.php ============================================================================== --- trunk/plugins/japanize/sql/sql_japanize_7.php (original) +++ trunk/plugins/japanize/sql/sql_japanize_7.php Sat Mar 21 22:08:24 2009 @@ -4,8 +4,8 @@ // +---------------------------------------------------------------------------+ // $Id: sql_japanize6.php // もし万一エンコードの種類が utf-8でない場合は、utf-8に変換してください。 -// 最終更新日 2008/09/02 tsuchi AT geeklog DOT jp - +// 更新日 2008/09/02 tsuchi AT geeklog DOT jp +// 更新日 2008/11/27 ivy AT geeklog DOT jp // (18) 初期ブロックタイトル等日本語化 $_SQL[] = " @@ -51,8 +51,8 @@ "; $_SQL[] = " UPDATE {$_TABLES['blocks']} SET - title = 'GeekLogについて' - ,content = '

    ようこそ、GeekLogへ!

    Geeklogについてのサポート は、 Geeklog Japaneseへ。ドキュメント は Geeklog Wiki ドキュメントをどう ぞ。' + title = 'Geeklogについて' + ,content = '

    Geeklogへようこそ!

    Geeklogのサ ポートは、Geeklog Japaneseへ。ドキュメ ントは Geeklog Wikiドキュメントをどう ぞ。

    ' WHERE name = 'first_block' "; From codesite-noreply @ google.com Sun Mar 22 14:30:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 05:30:25 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxMyAtIHIxMzExGyRCJE5KUTk5GyhCKHIxMDQ0GyRCJE4bKEIg?= =?ISO-2022-JP?B?dHJ1bmsvZ2Vla2xvZy0xLWpwIBskQiROSlE5OSRyGyhCIHRydW5rL3BsdWdpbnMvamFwYW5pemUgGyRCJFgbKEI=?= =?ISO-2022-JP?B?GyRCJE4bKEI=?= Message-ID: <0016e64652fa700dfc0465ae72f5@google.com> Author: tacahi Date: Sat Mar 21 22:22:21 2009 New Revision: 1313 Modified: branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_107.php branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_7.php Log: r1311の変更(r1044の trunk/geeklog-1-jp の変更を trunk/plugins/japanize への 反映)を適用しました。 Modified: branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_107.php ============================================================================== --- branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_107.php (original) +++ branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_107.php Sat Mar 21 22:22:21 2009 @@ -5,7 +5,7 @@ // $Id: sql_japanize6.php // もし万一エンコードの種類が utf-8でない場合は、utf-8に変換してください。 // 最終更新日 2008/09/02 tsuchi AT geeklog DOT jp - +// 更新日 2008/11/27 ivy AT geeklog DOT jp // (18) 初期ブロックタイトル等日本語化 $_SQL[] = " @@ -52,7 +52,7 @@ $_SQL[] = " UPDATE {$_TABLES['blocks']} SET title = 'About Geeklog' - ,content = '

    Welcome to Geeklog!

    If you''re already familiar with Geeklog - and especially if you''re not: There have been many improvements to Geeklog since earlier versions that you might want to read up on. Please read the release notes. If you need help, please see the support options.

    ' + ,content = '

    Welcome to Geeklog!

    If you''re already familiar with Geeklog - and especially if you''re not: There have been many improvements to Geeklog since earlier versions that you might want to read up on. Please read the release notes. If you need help, please see the support options.

    ' WHERE name = 'first_block' "; Modified: branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_7.php ============================================================================== --- branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_7.php (original) +++ branches/geeklog-new-tree/plugins-jp/japanize/sql/sql_japanize_7.php Sat Mar 21 22:22:21 2009 @@ -4,8 +4,8 @@ // +---------------------------------------------------------------------------+ // $Id: sql_japanize6.php // もし万一エンコードの種類が utf-8でない場合は、utf-8に変換してください。 -// 最終更新日 2008/09/02 tsuchi AT geeklog DOT jp - +// 更新日 2008/09/02 tsuchi AT geeklog DOT jp +// 更新日 2008/11/27 ivy AT geeklog DOT jp // (18) 初期ブロックタイトル等日本語化 $_SQL[] = " @@ -51,8 +51,8 @@ "; $_SQL[] = " UPDATE {$_TABLES['blocks']} SET - title = 'GeekLogについて' - ,content = '

    ようこそ、GeekLogへ!

    Geeklogについてのサポート は、 Geeklog Japaneseへ。ドキュメント は Geeklog Wiki ドキュメントをどう ぞ。' + title = 'Geeklogについて' + ,content = '

    Geeklogへようこそ!

    Geeklogのサ ポートは、Geeklog Japaneseへ。ドキュメ ントは Geeklog Wikiドキュメントをどう ぞ。

    ' WHERE name = 'first_block' "; From codesite-noreply @ google.com Sun Mar 22 15:04:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 06:04:32 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxNCAtIHIxMzExGyRCJE5KUTk5JE48aCRqGyhC?= =?ISO-2022-JP?B?GyRCOX4kXyRyNS09UiQ3JF4kNyQ/ISMbKEI=?= Message-ID: <0015175746146c021c0465aeecae@google.com> Author: tacahi Date: Sat Mar 21 22:54:16 2009 New Revision: 1314 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: r1311の変更の取り込みを記述しました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Sat Mar 21 22:54:16 2009 @@ -1,5 +1,10 @@ $Id$ +2009-03-22 Takahiro Kambe + + * r1311?????(r1044?? trunk/geeklog-1-jp ??????? + trunk/plugins/japanize ??????)??Ŭ?????????? + 2009-03-21 Takahiro Kambe * extended?????geeklog-1-jp-extended ????? geeklog-1-jp ?????????? From codesite-noreply @ google.com Sun Mar 22 15:40:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 06:40:37 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxMiAtIOacrOODluODqeODs+ODgeOBruS/ruatow==?= =?UTF-8?B?44KS6KiY6Yyy44GZ44KLIENIQU5HRVMg44OV44Kh44Kk44Or44KS5L2c5oiQ44GX44CB5pio5pel44G+?= =?UTF-8?B?44Gn77+9Li4u?= Message-ID: <001636163f417d51180465af6d31@google.com> Author: tacahi Date: Sat Mar 21 22:20:42 2009 New Revision: 1312 Added: branches/geeklog-new-tree/CHANGES-new-tree.jp (contents, props changed) Log: 本ブランチの修正を記録する CHANGES ファイルを作成し、昨日までの変更を 記述しました。 Added: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Sat Mar 21 22:20:42 2009 @@ -0,0 +1,13 @@ +$Id$ + +2009-03-21 Takahiro Kambe + + * extended?????geeklog-1-jp-extended ????? geeklog-1-jp ?????????? + ?????????????ä?????????????????? + + * ???????????????ĥ??ι???Τ???????Υ???????Υ???????ä?? + ????????????????? + + 1. trunk/geeklog-1-jp ?? branches/geeklog-new-tree + 2. trunk/geeklog-1-jp-extended ?? branches/geeklog-new-tree/extended + 3. trunk/plugins ?? branches/geeklog-new-tree/plugins-jp From codesite-noreply @ google.com Sun Mar 22 18:11:55 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 09:11:55 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxNSAtIBskQkZ8S1w4bCROSjg7eiUoJXMbKEI=?= =?ISO-2022-JP?B?GyRCJTMhPCVHJSMlcyUwJHIbKEIgdXRmLTggGyRCJEskNyReJDckPyEjGyhC?= Message-ID: <0016361e7bdc909cf60465b18a07@google.com> Author: tacahi Date: Sun Mar 22 02:10:20 2009 New Revision: 1315 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: 日本語の文字エンコーディングを utf-8 にしました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Sun Mar 22 02:10:20 2009 @@ -2,17 +2,17 @@ 2009-03-22 Takahiro Kambe - * r1311?????(r1044?? trunk/geeklog-1-jp ??????? - trunk/plugins/japanize ??????)??Ŭ?????????? + * r1311の変更(r1044の trunk/geeklog-1-jp の変更を + trunk/plugins/japanize への反映)を適用しました。 2009-03-21 Takahiro Kambe - * extended?????geeklog-1-jp-extended ????? geeklog-1-jp ?????????? - ?????????????ä?????????????????? + * extended以下、geeklog-1-jp-extended にある geeklog-1-jp と同一内容の + ファイルを削除し、空となったディレクトリも削除しました。 - * ???????????????ĥ??ι???Τ???????Υ???????Υ???????ä?? - ????????????????? + * 新しいソース・ツリーの構成のため、以下のリポジトリ上のコピーを行って、 + ブランチを作成しました。 - 1. trunk/geeklog-1-jp ?? branches/geeklog-new-tree - 2. trunk/geeklog-1-jp-extended ?? branches/geeklog-new-tree/extended - 3. trunk/plugins ?? branches/geeklog-new-tree/plugins-jp + 1. trunk/geeklog-1-jp を branches/geeklog-new-tree + 2. trunk/geeklog-1-jp-extended を branches/geeklog-new-tree/extended + 3. trunk/plugins を branches/geeklog-new-tree/plugins-jp From codesite-noreply @ google.com Sun Mar 22 20:42:20 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 11:42:20 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxNiAtIGdlZWtsb2ctbmV3LXRyZWUvZXh0ZW5kZQ==?= =?UTF-8?B?ZOS7peS4i+OBq+mHjeikh+OBl+OBpuOBhOOCi+ODl+ODqeOCsOOCpOODs+OBruOCs+ODvOODieOCkg==?= =?UTF-8?B?5YmK6Zmk77+9Li4u?= Message-ID: <001485f813a28a86d20465b3a431@google.com> Author: tacahi Date: Sun Mar 22 04:35:53 2009 New Revision: 1316 Removed: branches/geeklog-new-tree/extended/plugins/autotags/ branches/geeklog-new-tree/extended/public_html/admin/plugins/autotags/ branches/geeklog-new-tree/extended/public_html/autotags/ Log: geeklog-new-tree/extended以下に重複しているプラグインのコードを削除します。 (まずは、autotagsだけ。) From codesite-noreply @ google.com Sun Mar 22 22:24:49 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 13:24:49 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxNyAtIGdlZWtsb2ctbmV3LXRyZWXku6XkuIs=?= =?UTF-8?B?44Gr6YeN6KSH44GX44Gm44GE44KL44OX44Op44Kw44Kk44Oz44Gu44Kz44O844OJKGNhbGVuZGFyanAp?= =?UTF-8?B?44KS5YmK77+9Li4u?= Message-ID: <0016368e1b110c72140465b513e1@google.com> Author: tacahi Date: Sun Mar 22 06:23:19 2009 New Revision: 1317 Removed: branches/geeklog-new-tree/extended/plugins/calendarjp/ branches/geeklog-new-tree/plugins/calendarjp/ branches/geeklog-new-tree/public_html/admin/plugins/calendarjp/ branches/geeklog-new-tree/public_html/calendarjp/ Log: geeklog-new-tree以下に重複しているプラグインのコード(calendarjp)を削除しま す。 From codesite-noreply @ google.com Mon Mar 23 01:15:20 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 16:15:20 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxOCAtIGV4dGVuZGVkL3B1YmxpY19odG1sL2FkbQ==?= =?UTF-8?B?aW4g5Lul5LiL44Gu6YeN6KSH44GX44Gm44GE44KL44OX44Op44Kw44Kk44Oz44Gu44Kz44O844OJ44KS?= =?UTF-8?B?5YmK77+9Li4u?= Message-ID: <001636163f41d45d320465b774d3@google.com> Author: tacahi Date: Sun Mar 22 09:14:41 2009 New Revision: 1318 Removed: branches/geeklog-new-tree/extended/public_html/admin/plugins/captcha/ branches/geeklog-new-tree/extended/public_html/admin/plugins/custommenu/ branches/geeklog-new-tree/extended/public_html/admin/plugins/dataproxy/ branches/geeklog-new-tree/extended/public_html/admin/plugins/dbman/ branches/geeklog-new-tree/extended/public_html/admin/plugins/filemgmt/ branches/geeklog-new-tree/extended/public_html/admin/plugins/forum/ branches/geeklog-new-tree/extended/public_html/admin/plugins/mycaljp/ branches/geeklog-new-tree/extended/public_html/admin/plugins/nmoxqrblock/ branches/geeklog-new-tree/extended/public_html/admin/plugins/nmoxtopicown/ branches/geeklog-new-tree/extended/public_html/admin/plugins/sitemap/ branches/geeklog-new-tree/extended/public_html/admin/plugins/themedit/ branches/geeklog-new-tree/extended/public_html/admin/plugins/tkgmaps/ Log: extended/public_html/admin 以下の重複しているプラグインのコードを削除しま す。 From codesite-noreply @ google.com Mon Mar 23 01:19:22 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 16:19:22 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMxOSAtIGV4dGVuZGVkL3B1YmxpY19odG1sIOS7pQ==?= =?UTF-8?B?5LiL44Gu6YeN6KSH44GX44Gm44GE44KL44OX44Op44Kw44Kk44Oz44Gu44Kz44O844OJ44KS5YmK6Zmk?= =?UTF-8?B?44GX77+9Li4u?= Message-ID: <0016369fa2513fae100465b78309@google.com> Author: tacahi Date: Sun Mar 22 09:16:02 2009 New Revision: 1319 Removed: branches/geeklog-new-tree/extended/public_html/captcha/ branches/geeklog-new-tree/extended/public_html/custommenu/ branches/geeklog-new-tree/extended/public_html/filemgmt/ branches/geeklog-new-tree/extended/public_html/forum/ branches/geeklog-new-tree/extended/public_html/mycaljp/ branches/geeklog-new-tree/extended/public_html/nmoxqrblock/ branches/geeklog-new-tree/extended/public_html/sitemap/ branches/geeklog-new-tree/extended/public_html/tkgmaps/ Log: extended/public_html 以下の重複しているプラグインのコードを削除します。 From codesite-noreply @ google.com Mon Mar 23 01:23:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 16:23:23 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyMCAtIGV4dGVuZGVkL3B1YmxpY19odG1sIOS7pQ==?= =?UTF-8?B?5LiL44Gu6YeN6KSH44GX44Gm44GE44KL44OX44Op44Kw44Kk44Oz44Gu44Kz44O844OJ44KS5YmK6Zmk?= =?UTF-8?B?44GX77+9Li4u?= Message-ID: <00151750e692a013850465b7919e@google.com> Author: tacahi Date: Sun Mar 22 09:17:52 2009 New Revision: 1320 Removed: branches/geeklog-new-tree/extended/plugins/captcha/ branches/geeklog-new-tree/extended/plugins/custommenu/ branches/geeklog-new-tree/extended/plugins/dataproxy/ branches/geeklog-new-tree/extended/plugins/dbman/ branches/geeklog-new-tree/extended/plugins/filemgmt/ branches/geeklog-new-tree/extended/plugins/forum/ branches/geeklog-new-tree/extended/plugins/mycaljp/ branches/geeklog-new-tree/extended/plugins/nmoxqrblock/ branches/geeklog-new-tree/extended/plugins/nmoxtopicown/ branches/geeklog-new-tree/extended/plugins/sitemap/ branches/geeklog-new-tree/extended/plugins/themedit/ branches/geeklog-new-tree/extended/plugins/tkgmaps/ Log: extended/public_html 以下の重複しているプラグインのコードを削除します。 From codesite-noreply @ google.com Mon Mar 23 01:27:24 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 16:27:24 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyMSAtIHB1YmxpY19odG1sIBskQjBKMjwkTj1FGyhC?= =?ISO-2022-JP?B?GyRCSiMkNyRGJCQkayVXJWklMCUkJXMkTiUzITwlSSRyOm89fCQ3JF4kORsoQg==?= =?ISO-2022-JP?B?GyRCISMbKEI=?= Message-ID: <001485f54734fd5a990465b79f6d@google.com> Author: tacahi Date: Sun Mar 22 09:19:18 2009 New Revision: 1321 Removed: branches/geeklog-new-tree/public_html/admin/plugins/japanize/ branches/geeklog-new-tree/public_html/japanize/ Log: public_html 以下の重複しているプラグインのコードを削除します。 From codesite-noreply @ google.com Mon Mar 23 01:31:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 16:31:25 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyMiAtIHBsdWdpbnMgGyRCMEoyPCROPUVKIxsoQg==?= =?ISO-2022-JP?B?GyRCJDckRiQkJGslVyVpJTAlJCVzJE4lMyE8JUkkcjpvPXwkNyReJDkhIxsoQg==?= Message-ID: <0016e644de5e5742b60465b7ae59@google.com> Author: tacahi Date: Sun Mar 22 09:19:43 2009 New Revision: 1322 Removed: branches/geeklog-new-tree/plugins/japanize/ Log: plugins 以下の重複しているプラグインのコードを削除します。 From codesite-noreply @ google.com Mon Mar 23 01:35:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 22 Mar 2009 16:35:25 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyMyAtIBskQjojRnwkTjpuNkgbKEI6IBskQj1FSiMbKEI=?= =?ISO-2022-JP?B?GyRCJVUlISUkJWskTjpvPXwkcjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <0015174c449cad71f20465b7bc39@google.com> Author: tacahi Date: Sun Mar 22 09:21:14 2009 New Revision: 1323 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: 今日の作業: 重複ファイルの削除を記述しました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Sun Mar 22 09:21:14 2009 @@ -1,5 +1,10 @@ $Id$ +2009-03-23 Takahiro Kambe + + * plugins-jpから他に重複しているファイルの削除をしました。 + (まだ、すべては完了していません。) + 2009-03-22 Takahiro Kambe * r1311の変更(r1044の trunk/geeklog-1-jp の変更を From codesite-noreply @ google.com Mon Mar 23 22:43:20 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 13:43:20 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyNCAtIHRydW5rL2N1c3RvbSAbJEIkYhsoQiBicmFuY2hl?= =?ISO-2022-JP?B?cy9nZWVrbG9nLW5ldy10cmVlL2N1c3RvbSAbJEIkSyUzJVQhPCQ3JF4kOSEjGyhC?= Message-ID: <0016e6440280122d9a0465c97387@google.com> Author: tacahi Date: Mon Mar 23 06:41:28 2009 New Revision: 1324 Added: branches/geeklog-new-tree/custom/ - copied from r1323, /trunk/custom/ Log: trunk/custom も branches/geeklog-new-tree/custom にコピーします。 From codesite-noreply @ google.com Mon Mar 23 23:37:33 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 14:37:33 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyNSAtIHN5c3RlbS9jdXN0b20g44Gr44GC44KL?= =?UTF-8?B?44Kr44K544K/44Og6Zai5pWw44K544Kv44Oq44OX44OI44KSIGN1c3RvbSDjgavnp7vli5XjgZfjgaY=?= =?UTF-8?B?44G+44Go77+9Li4u?= Message-ID: <001485f86f4ef71f130465ca34b0@google.com> Author: tacahi Date: Mon Mar 23 07:13:31 2009 New Revision: 1325 Added: branches/geeklog-new-tree/custom/custom_cellular.php - copied unchanged from r1311, /branches/geeklog-new-tree/system/custom/custom_cellular.php branches/geeklog-new-tree/custom/custom_mail_jp.php - copied unchanged from r1311, /branches/geeklog-new-tree/system/custom/custom_mail_jp.php Removed: branches/geeklog-new-tree/system/custom/custom_cellular.php branches/geeklog-new-tree/system/custom/custom_mail_jp.php Log: system/custom にあるカスタム関数スクリプトを custom に移動してまとめます。 From codesite-noreply @ google.com Tue Mar 24 00:07:59 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 15:07:59 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyNiAtICogGyRCJT0hPCU5JHJDViQkJEYbKEI=?= =?ISO-2022-JP?B?GyRCJCQkayRvJDEkRyRPJEokJCVHJSMlbCUvJUglaiRyOm89fCQ3JF4kORsoQg==?= =?ISO-2022-JP?B?GyRCISMbKEI=?= Message-ID: <0016e644de5ed8d20e0465caa100@google.com> Author: tacahi Date: Mon Mar 23 07:22:44 2009 New Revision: 1326 Removed: branches/geeklog-new-tree/extended/public_html/filemgmt_data/ Log: * ソースを置いているわけではないディレクトリを削除します。 * これらのディレクトリは、実際の配布またはインストール用のファイル・ツリーを 構成する段階で作成するようにします。 From codesite-noreply @ google.com Tue Mar 24 00:14:30 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 15:14:30 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyNyAtIGN1c3RvbRskQiRLQ1YkLyQzJEgkSxsoQg==?= =?ISO-2022-JP?B?GyRCJDckPyUrJTklPyVgNFg/dCROJTklLyVqJVclSCRyOm89fCQ3JF4kORsoQg==?= =?ISO-2022-JP?B?GyRCISMbKEI=?= Message-ID: <0016369206112320df0465cab940@google.com> Author: tacahi Date: Mon Mar 23 08:07:02 2009 New Revision: 1327 Removed: branches/geeklog-new-tree/extended/system/custom/custom_getstaticpage.php branches/geeklog-new-tree/extended/system/custom/phpblock_lastarticles.php branches/geeklog-new-tree/extended/system/custom/phpblock_showrights.php branches/geeklog-new-tree/extended/system/custom/phpblock_sitemapmenu.php branches/geeklog-new-tree/extended/system/custom/phpblock_stats.php branches/geeklog-new-tree/extended/system/custom/phpblock_themetester.php Log: customに置くことにしたカスタム関数のスクリプトを削除します。 From codesite-noreply @ google.com Tue Mar 24 00:18:27 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 15:18:27 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyOCAtIBskQjZ1JEgkSiRDJD8lRyUjJWwbKEI=?= =?ISO-2022-JP?B?GyRCJS8lSCVqJHI6bz18JDckXiQ5ISMbKEI=?= Message-ID: <001485f5473440dee20465cac706@google.com> Author: tacahi Date: Mon Mar 23 08:14:25 2009 New Revision: 1328 Removed: branches/geeklog-new-tree/extended/plugins/ branches/geeklog-new-tree/extended/public_html/admin/plugins/ branches/geeklog-new-tree/extended/system/custom/ branches/geeklog-new-tree/system/custom/ Log: 空となったディレクトリを削除します。 From codesite-noreply @ google.com Tue Mar 24 00:22:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 15:22:37 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMyOSAtIOOCq+OCueOCv+ODoOmWouaVsOOCueOCrw==?= =?UTF-8?B?44Oq44OX44OI55So44Gu5aSJ5pu044KS6KiY6Yyy44GZ44KL44OV44Kh44Kk44Or44KS5L2c5oiQ44GX?= =?UTF-8?B?44G+77+9Li4u?= Message-ID: <00151750d9902a6f530465cad672@google.com> Author: tacahi Date: Mon Mar 23 08:19:20 2009 New Revision: 1329 Added: branches/geeklog-new-tree/custom/CHANGES.jp (contents, props changed) Log: カスタム関数スクリプト用の変更を記録するファイルを作成しました。 Added: branches/geeklog-new-tree/custom/CHANGES.jp ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/custom/CHANGES.jp Mon Mar 23 08:19:20 2009 @@ -0,0 +1,5 @@ +$Id$ + +2009-03-23 Takahiro Kambe + + * custom関数の変更を記述するファイルを用意しました。 From codesite-noreply @ google.com Tue Mar 24 00:26:03 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 23 Mar 2009 15:26:03 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzMCAtIBskQjojRnwkTkpROTk6bjZIJHIbKEI=?= =?ISO-2022-JP?B?GyRCNS09UiQ3JF4kNyQ/ISMbKEI=?= Message-ID: <001485f54734672b280465cae27b@google.com> Author: tacahi Date: Mon Mar 23 08:24:01 2009 New Revision: 1330 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: 今日の変更作業を記述しました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Mon Mar 23 08:24:01 2009 @@ -1,5 +1,14 @@ $Id$ +2009-03-24 Takahiro Kambe + + * 重複しているファイルの削除を含めた、ファイルの配置を一通り完了 + しました。 + + * カスタム関数の変更履歴を記述する CHANGES.jp を用意してみました。 + + * 忘れていたカスタム関数のスクリプトのとりまとめを行いました。 + 2009-03-23 Takahiro Kambe * plugins-jpから他に重複しているファイルの削除をしました。 From codesite-noreply @ google.com Wed Mar 25 22:33:12 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 13:33:12 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzMSAtIBskQiVIJWklQyUvJVAlQyUvJE4bKEI=?= =?ISO-2022-JP?B?GyRCQXc/LiRLPDpHVCQ5JGslUCUwJEtCUDF+JDckXiQ3JD8hIxsoQg==?= Message-ID: <0016e644d6ca826f0f0465f18a2a@google.com> Author: mystralkk Date: Wed Mar 25 06:31:58 2009 New Revision: 1331 Modified: trunk/geeklog-1-jp/system/lib-trackback.php Log: トラックバックの送信に失敗するバグに対応しました。 Modified: trunk/geeklog-1-jp/system/lib-trackback.php ============================================================================== --- trunk/geeklog-1-jp/system/lib-trackback.php (original) +++ trunk/geeklog-1-jp/system/lib-trackback.php Wed Mar 25 06:31:58 2009 @@ -773,8 +773,8 @@ return $LANG_TRB['error_socket']; } - $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) - . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' + $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) + . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' . rawurlencode ($excerpt); $charset = COM_getCharset (); From codesite-noreply @ google.com Wed Mar 25 22:37:31 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 13:37:31 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzMiAtIHIxMzMxGyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <00151750e692f4fbc00465f19990@google.com> Author: mystralkk Date: Wed Mar 25 06:35:17 2009 New Revision: 1332 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: r1331の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Wed Mar 25 06:35:17 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-25 mystral-kk + + * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 + 2009-03-21 Takahiro Kambe * geeklog-1.5.2-jp-1.0をリリースします。 From codesite-noreply @ google.com Wed Mar 25 22:41:46 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 13:41:46 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzMyAtIHIxMzMxGyRCJE45OT83JHIbKEJnZWVrbG9n?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQbJEIkSyRiRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <001485f86f4e2f34e10465f1a94b@google.com> Author: mystralkk Date: Wed Mar 25 06:36:41 2009 New Revision: 1333 Modified: trunk/geeklog-1-jp-extended/system/lib-trackback.php Log: r1331の更新をgeeklog-1-jp-extendedにも適用します。 Modified: trunk/geeklog-1-jp-extended/system/lib-trackback.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/lib-trackback.php (original) +++ trunk/geeklog-1-jp-extended/system/lib-trackback.php Wed Mar 25 06:36:41 2009 @@ -773,8 +773,8 @@ return $LANG_TRB['error_socket']; } - $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) - . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' + $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) + . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' . rawurlencode ($excerpt); $charset = COM_getCharset (); From codesite-noreply @ google.com Wed Mar 25 22:45:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 13:45:50 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzNCAtIHIxMzMzGyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <001636283828aec8b60465f1b729@google.com> Author: mystralkk Date: Wed Mar 25 06:38:28 2009 New Revision: 1334 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1333の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Wed Mar 25 06:38:28 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-25 mystral-kk + + * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 + 2009-03-21 Takahiro Kambe * geeklog-1.5.2-jp-extended-1.0をリリースします。 From codesite-noreply @ google.com Wed Mar 25 23:16:13 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:16:13 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzNSAtIHIxMzMxGyRCJE5KUTk5JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkNyReJDkhIxsoQg==?= Message-ID: <0016e644c7665db6ec0465f22403@google.com> Author: tacahi Date: Wed Mar 25 07:14:22 2009 New Revision: 1335 Modified: branches/geeklog-new-tree/system/lib-trackback.php (contents, props changed) Log: r1331の変更をマージします。 トラックバックの送信に失敗するバグに対応しました。 Modified: branches/geeklog-new-tree/system/lib-trackback.php ============================================================================== --- branches/geeklog-new-tree/system/lib-trackback.php (original) +++ branches/geeklog-new-tree/system/lib-trackback.php Wed Mar 25 07:14:22 2009 @@ -773,8 +773,8 @@ return $LANG_TRB['error_socket']; } - $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) - . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' + $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) + . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' . rawurlencode ($excerpt); $charset = COM_getCharset (); From codesite-noreply @ google.com Wed Mar 25 23:20:26 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:20:26 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzNiAtIBskQkpROTkkTyVIJUMlVyROGyhCQ0hB?= =?ISO-2022-JP?B?TkdFUy5qcBskQiRLNS09UiQ5JGskMyRIJEskNyReJDkhIxsoQg==?= Message-ID: <00163630f5c97a47fd0465f23355@google.com> Author: tacahi Date: Wed Mar 25 07:19:14 2009 New Revision: 1336 Removed: branches/geeklog-new-tree/custom/CHANGES.jp Log: 変更はトップのCHANGES.jpに記述することにします。 From codesite-noreply @ google.com Wed Mar 25 23:24:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:24:36 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzNyAtIHIxMzM0KHIxMzMzGyRCJE4bKEJDSEFOR0VTLmpw?= =?ISO-2022-JP?B?GyRCJFgkTjUtPVIbKEIpGyRCJHIlXiE8JTgkNyReJDkhIxsoQg==?= Message-ID: <001485f86f4e609d1a0465f242e5@google.com> Author: tacahi Date: Wed Mar 25 07:22:53 2009 New Revision: 1337 Modified: branches/geeklog-new-tree/CHANGES.jp Log: r1334(r1333のCHANGES.jpへの記述)をマージします。 Modified: branches/geeklog-new-tree/CHANGES.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES.jp (original) +++ branches/geeklog-new-tree/CHANGES.jp Wed Mar 25 07:22:53 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-25 mystral-kk + + * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 + 2009-03-21 Takahiro Kambe * geeklog-1.5.2-jp-1.0をリリースします。 From codesite-noreply @ google.com Wed Mar 25 23:27:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:27:57 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzOCAtIBskQjojRnwkTkpROTkkcjUtPVIbKEI=?= =?ISO-2022-JP?B?GyRCJDckXiQ3JD8hIxsoQg==?= Message-ID: <0016e644cb285b615b0465f24e29@google.com> Author: tacahi Date: Wed Mar 25 07:24:12 2009 New Revision: 1338 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: 今日の変更を記述しました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Wed Mar 25 07:24:12 2009 @@ -1,5 +1,11 @@ $Id$ +2009-03-25 Takahiro Kambe + + * カスタム関数の変更履歴を記述する CHANGES.jp は取り止めました。 + + * r1331とr1334を取り込みました。(トラックバックの送信に失敗するバグ修正) + 2009-03-24 Takahiro Kambe * 重複しているファイルの削除を含めた、ファイルの配置を一通り完了 From codesite-noreply @ google.com Wed Mar 25 23:32:09 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:32:09 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTMzOSAtIENIQU5HRVMtbmV3LXRyZWUuanAbJEIkThsoQg==?= =?ISO-2022-JP?B?GyRCNS09UiRyPSRANSQ3JF4kOSEjGyhC?= Message-ID: <0016e64402805f27ce0465f25dc9@google.com> Author: tacahi Date: Wed Mar 25 07:27:57 2009 New Revision: 1339 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: CHANGES-new-tree.jpの記述を修正します。 r1331とr1332が正しいリビジョンでした。 r1333やr1334と書いていたのも、r1331とr1332が正しいリビジョンでした。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Wed Mar 25 07:27:57 2009 @@ -4,7 +4,7 @@ * カスタム関数の変更履歴を記述する CHANGES.jp は取り止めました。 - * r1331とr1334を取り込みました。(トラックバックの送信に失敗するバグ修正) + * r1331とr1332を取り込みました。(トラックバックの送信に失敗するバグ修正) 2009-03-24 Takahiro Kambe From codesite-noreply @ google.com Wed Mar 25 23:46:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:46:25 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0MiAtIHIxMzMxGyRCJE49JEA1JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkNyReJDkhIxsoQg==?= Message-ID: <0015175cdf2a619adb0465f29066@google.com> Author: tacahi Date: Wed Mar 25 07:32:54 2009 New Revision: 1342 Modified: branches/geeklog-1.5.1-jp-extended/system/lib-trackback.php (contents, props changed) Log: r1331の修正をマージします。 トラックバックの送信に失敗するバグに対応しました。 Modified: branches/geeklog-1.5.1-jp-extended/system/lib-trackback.php ============================================================================== --- branches/geeklog-1.5.1-jp-extended/system/lib-trackback.php (original) +++ branches/geeklog-1.5.1-jp-extended/system/lib-trackback.php Wed Mar 25 07:32:54 2009 @@ -773,8 +773,8 @@ return $LANG_TRB['error_socket']; } - $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) - . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' + $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) + . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' . rawurlencode ($excerpt); $charset = COM_getCharset (); From codesite-noreply @ google.com Wed Mar 25 23:51:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 14:51:36 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0MCAtIHIxMzMxGyRCJE49JEA1JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkNyReJDkhIxsoQg==?= Message-ID: <0016369fa251e39c500465f2a22c@google.com> Author: tacahi Date: Wed Mar 25 07:30:29 2009 New Revision: 1340 Modified: branches/geeklog-1.5.1-jp/system/lib-trackback.php (contents, props changed) Log: r1331の修正をマージします。 トラックバックの送信に失敗するバグに対応しました。 Modified: branches/geeklog-1.5.1-jp/system/lib-trackback.php ============================================================================== --- branches/geeklog-1.5.1-jp/system/lib-trackback.php (original) +++ branches/geeklog-1.5.1-jp/system/lib-trackback.php Wed Mar 25 07:30:29 2009 @@ -773,8 +773,8 @@ return $LANG_TRB['error_socket']; } - $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) - . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' + $toSend = 'url=' . rawurlencode ($url) . '&title=' . rawurlencode ($title) + . '&blog_name=' . rawurlencode ($blog) . '&excerpt=' . rawurlencode ($excerpt); $charset = COM_getCharset (); From codesite-noreply @ google.com Thu Mar 26 00:57:24 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 15:57:24 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0MyAtIHIxMzMxGyRCJE49JEA1JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkcjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <0016e644cb28365bd70465f38e4b@google.com> Author: tacahi Date: Wed Mar 25 07:35:10 2009 New Revision: 1343 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Log: r1331の修正をマージを記述しました。 Modified: branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended ============================================================================== --- branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended (original) +++ branches/geeklog-1.5.1-jp-extended/CHANGES-1.5.1.jp-extended Wed Mar 25 07:35:10 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-25 Takahiro Kambe + + * r1331の変更をマージします。 + 2009-03-20 Takahiro Kambe * geeklog-1.5.1-jp-extended-1.4をリリースします。 From codesite-noreply @ google.com Thu Mar 26 01:04:40 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Wed, 25 Mar 2009 16:04:40 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0MSAtIHIxMzMxGyRCJE49JEA1JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkcjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <001636920611346c350465f3a845@google.com> Author: tacahi Date: Wed Mar 25 07:31:51 2009 New Revision: 1341 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Log: r1331の修正をマージを記述しました。 Modified: branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp ============================================================================== --- branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp (original) +++ branches/geeklog-1.5.1-jp/CHANGES-1.5.1.jp Wed Mar 25 07:31:51 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-25 Takahiro Kambe + + * r1331の変更をマージします。 + 2009-03-20 Takahiro Kambe * geeklog-1.5.1-jp-1.4をリリースします。 From codesite-noreply @ google.com Sat Mar 28 02:02:47 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 27 Mar 2009 17:02:47 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0NCAtIG15Y2FsanAbJEIlVyVpJTAlJCVzGyhCOg==?= =?ISO-2022-JP?B?GyRCJVAhPCU4JWclcxsoQjIuMC42GyRCJEs5OT83JDckXiQ5ISMbKEI=?= Message-ID: <0016e645abf4bd3e8404661cb334@google.com> Author: dengenxp Date: Fri Mar 27 09:58:52 2009 New Revision: 1344 Added: trunk/plugins/mycaljp/public_html/templates/black/ trunk/plugins/mycaljp/public_html/templates/black/README.txt (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/calendar.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/day.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/header.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/mycaljp.css (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/searchblockintro.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/searchresults.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black/week.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/ trunk/plugins/mycaljp/public_html/templates/black_multi_language/README.txt (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/calendar.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/config.php (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/day.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/header.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/mycaljp.css (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchblockintro.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchresults.thtml (contents, props changed) trunk/plugins/mycaljp/public_html/templates/black_multi_language/week.thtml (contents, props changed) Modified: trunk/plugins/mycaljp/README_JP trunk/plugins/mycaljp/config.php trunk/plugins/mycaljp/history trunk/plugins/mycaljp/public_html/calsearch.php trunk/plugins/mycaljp/readme_jp.html Log: mycaljpプラグイン:バージョン2.0.6に更新します。 ・Auge Bangさんが制作された、「mycaljp専用Black Theme」を同梱しました。 ・Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってしまう問 題を修正しました。 Modified: trunk/plugins/mycaljp/README_JP ============================================================================== --- trunk/plugins/mycaljp/README_JP (original) +++ trunk/plugins/mycaljp/README_JP Fri Mar 27 09:58:52 2009 @@ -1,4 +1,4 @@ -mycaljp2.0.0 から mycaljp2.0.5 (本バージョン)にアップデートする方法 +mycaljp2.0.0 から mycaljp2.0.6 (本バージョン)にアップデートする方法 mycaljp2.0.0 にはプラグインバージョンが正常に更新されない問題がありますの で、 以下の手順に従って、アップデートして下さい。 Modified: trunk/plugins/mycaljp/config.php ============================================================================== --- trunk/plugins/mycaljp/config.php (original) +++ trunk/plugins/mycaljp/config.php Fri Mar 27 09:58:52 2009 @@ -47,7 +47,7 @@ // Plugin info -$_MYCALJP2_CONF['pi_version'] = '2.0.5'; // Plugin Version +$_MYCALJP2_CONF['pi_version'] = '2.0.6'; // Plugin Version $_MYCALJP2_CONF['gl_version'] = '1.4.1'; // GL Version plugin for $_MYCALJP2_CONF['pi_url'] = 'http://www.trybase.com/~dengen/log/'; // Plugin Homepage Modified: trunk/plugins/mycaljp/history ============================================================================== --- trunk/plugins/mycaljp/history (original) +++ trunk/plugins/mycaljp/history Fri Mar 27 09:58:52 2009 @@ -174,4 +174,15 @@ * mycaljp plugin version 2.0.4 * * 2008.9.17 : Yoshinori Tahara as dengen * * Calendarjpに対応し た. * +* * +* mycaljp plugin version 2.0.5 * +* 2008.9.26 : Yoshinori Tahara as dengen * +* インクルード対策を実施し た. * +* * +* mycaljp plugin version 2.0.6 * +* 2009.3.28 : Yoshinori Tahara as dengen * +* Auge Bangさんが制作された、「mycaljp専用Black Theme」を同梱し た. * +* (Augeさん、どうも有難うございま す!) * +* Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってしま う * +* 問題を修 正. * *********************************************************************************/ Modified: trunk/plugins/mycaljp/public_html/calsearch.php ============================================================================== --- trunk/plugins/mycaljp/public_html/calsearch.php (original) +++ trunk/plugins/mycaljp/public_html/calsearch.php Fri Mar 27 09:58:52 2009 @@ -431,18 +431,38 @@ } $msql = array(); - $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS day, " - . $userfields . ", t.topic, t.imageurl " - . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " - . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " - . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; - $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " - . " UNIX_TIMESTAMP(s.date) AS day, " - . $userfields . ", t.topic, t.imageurl " - . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " - . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " - . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + if (floatval (VERSION) >= 1.5) { // 2009.03.23 - Supports v1.5 and upper version. + + $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS unixdate, " + . 'UNIX_TIMESTAMP(s.expire) as expireunix, ' + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY featured DESC, date DESC LIMIT $offset, $limit"; + + $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " + . " UNIX_TIMESTAMP(s.date) AS unixdate, " + . 'UNIX_TIMESTAMP(s.expire) as expireunix, ' + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY featured DESC, date DESC LIMIT $offset, $limit"; + } else { + + $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS day, " + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + + $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " + . " UNIX_TIMESTAMP(s.date) AS day, " + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + } $result = DB_query ($msql); Added: trunk/plugins/mycaljp/public_html/templates/black/README.txt ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/README.txt Fri Mar 27 09:58:52 2009 @@ -0,0 +1,16 @@ +/*======================================================================================== + タイトル: mycaljp専用Black Theme + + 著者 : Auge Bangrossa as Satoshi Nagata +      GLTMatrix(http://gltmatrix.com/) + + 説明 : dengenさんが制作されたmycaljpのテーマ用テンプレートです。 +      黒背景のテーマにマッチするように制作しております。 + http://www.trybase.com/~dengen/log/ + + 使用方法 :お使いのテーマに解凍して出来たmycaljpをアップロードします。 +       Mycaljp N/A でお使いのテーマを選び保存します。 + + 謝辞 : 配布にあたりプラグイン制作者のdengenさんに助言を頂きました。 +       この場をお借りして感謝と御礼申し上げます。 +==========================================================================================*/ \ No newline at end of file Added: trunk/plugins/mycaljp/public_html/templates/black/calendar.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/calendar.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,36 @@ + + + +
    +

    {lang_skipcalendar}

    + + + + + + + + {dayofweeks_title} + + {calendar_week} +
    + {title_1} {title_2} + +
    «
    +
    +
    »
    +
    + +

    +
    Added: trunk/plugins/mycaljp/public_html/templates/black/day.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/day.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1 @@ + {daylink} Added: trunk/plugins/mycaljp/public_html/templates/black/header.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/header.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1 @@ + {title_weekday} Added: trunk/plugins/mycaljp/public_html/templates/black/mycaljp.css ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/mycaljp.css Fri Mar 27 09:58:52 2009 @@ -0,0 +1,152 @@ + @ charset "utf-8"; + +/*------------------------------------------- + サイトカレンダ mycaljp プラグイン用スタイル +---------------------------------------------*/ + +/* カレンダ全体 */ +table.mycaljp2 { + margin: auto; + padding: 0; + border-collapse: collapse; + text-align: center; + width: 98%; +} +table.mycaljp2 a { + text-decoration: none; +} + +/* 曜日(見出し) */ +table.mycaljp2 tr th { + margin: 0; + padding: 0; + border: 1px solid #ffffff; + background: #000000; + font-size: 0.8em; + font-weight: normal; + text-align: center; + width: 14%; + height: 1.5em; + line-height: 1.5em; +} + +/* 日曜日(見出し) */ +table.mycaljp2 tr th.sunday { + color: #E50000; +} + +/* 土曜日(見出し) */ +table.mycaljp2 tr th.saturday { + color: #ffffff; +} + +/* カレンダ部分 */ +table.mycaljp2 tr td { + margin: 0; + padding: 0; + border: 1px solid #cccccc; + background-color: #333333; + font-size: 0.9em; + font-weight: normal; + text-align: center; + height: 1.5em; + line-height: 1.5em; +} + +/* タイトル部分 */ +table.mycaljp2 tr.title td { + font-weight: bold; + background-color: transparent; + border: none; +} + +/* 今年・今月へのリンク */ +table.mycaljp2 tr.title td a, +table.mycaljp2 tr.title td a:link, +table.mycaljp2 tr.title td a:visited { + color: #ffffff; +} + +/* 先月・来月へのリンク */ +table.mycaljp2 tr.title td a.prevmonth, +table.mycaljp2 tr.title td a.nextmonth { + font-weight: normal; + background: #ffffff; +} + +/* 日付(イベント) */ +table.mycaljp2 tr td.Event { + background-color: #C6F4C8; +} + +/* 日付(今日) */ +table.mycaljp2 tr td.Today { + background-color: #FFE986; +} + +/* 今月以外の日 */ +table.mycaljp2 tr td.NotThisMonth { + background-color: #000000; +} + +/* 日付(アクティブ) */ +table.mycaljp2 tr td.Active { + background-color: #999999; +} + +/* 日付(記事) */ +table.mycaljp2 tr td.Story { + background-color: #666666; +} + +/* 日付(今日&アクティブ) */ +table.mycaljp2 tr td.TodayActive { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&記事) */ +table.mycaljp2 tr td.TodayStory { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&予定日) */ +table.mycaljp2 tr td.TodayEvent { + background-color: #FFE986; + color: #112abb; +} + +/* 平日 */ +table.mycaljp2 tr td a, +table.mycaljp2 tr td a:link, +table.mycaljp2 tr td a:visited { + color: #000000; +} + +/* 日曜日 */ +table.mycaljp2 tr td.sunday, +table.mycaljp2 tr td.sunday a { + color: #E50000; +} + +/* 土曜日 */ +table.mycaljp2 tr td.saturday, +table.mycaljp2 tr td.saturday a { + color: #ffffff; +} + +/* 日本の休日(祝日) */ +table.mycaljp2 tr td.holiday, +table.mycaljp2 tr td.holiday a { + color: #E50000; +} + +/* サイトカレンダのスキップ用スパン */ +div#mycaljp p.skip { + position: absolute; + left: -9999px; + margin: 0; + padding: 0; + line-height: 1; +} Added: trunk/plugins/mycaljp/public_html/templates/black/searchblockintro.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/searchblockintro.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,5 @@ + + +{start_block_results} +{stories_intro} +{end_block} Added: trunk/plugins/mycaljp/public_html/templates/black/searchresults.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/searchresults.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,7 @@ + + +

    {lang_headerofdate}{date_start}{lang_middleofdate}{date_end}{lang_footerofdate} [{refine_search}]

    +

    {lang_found} {num_matches}. ({search_time} {lang_seconds})

    +{search_blocks_intro} +{search_blocks} +{search_pager} Added: trunk/plugins/mycaljp/public_html/templates/black/week.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black/week.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,3 @@ + +{calendar_days} + Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/README.txt ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/README.txt Fri Mar 27 09:58:52 2009 @@ -0,0 +1,16 @@ +/*======================================================================================== + タイトル: mycaljp専用Black Theme + + 著者 : Auge Bangrossa as Satoshi Nagata +      GLTMatrix(http://gltmatrix.com/) + + 説明 : dengenさんが制作されたmycaljpのテーマ用テンプレートです。 +      黒背景のテーマにマッチするように制作しております。 + http://www.trybase.com/~dengen/log/ + + 使用方法 :お使いのテーマに解凍して出来たmycaljpをアップロードします。 +       Mycaljp N/A でお使いのテーマを選び保存します。 + + 謝辞 : 配布にあたりプラグイン制作者のdengenさんに助言を頂きました。 +       この場をお借りして感謝と御礼申し上げます。 +==========================================================================================*/ \ No newline at end of file Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/calendar.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/calendar.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,36 @@ + + + +
    +

    {lang_skipcalendar}

    + + + + + + + + {dayofweeks_title} + + {calendar_week} +
    + {title_1} {title_2} + +
    «
    +
    +
    »
    +
    + +

    +
    Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/config.php ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/config.php Fri Mar 27 09:58:52 2009 @@ -0,0 +1,32 @@ + Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/day.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/day.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1 @@ + {daylink} Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/header.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/header.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1 @@ + {title_weekday} Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/mycaljp.css ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/mycaljp.css Fri Mar 27 09:58:52 2009 @@ -0,0 +1,152 @@ + @ charset "utf-8"; + +/*------------------------------------------- + サイトカレンダ mycaljp プラグイン用スタイル +---------------------------------------------*/ + +/* カレンダ全体 */ +table.mycaljp2 { + margin: auto; + padding: 0; + border-collapse: collapse; + text-align: center; + width: 98%; +} +table.mycaljp2 a { + text-decoration: none; +} + +/* 曜日(見出し) */ +table.mycaljp2 tr th { + margin: 0; + padding: 0; + border: 1px solid #ffffff; + background: #000000; + font-size: 0.8em; + font-weight: normal; + text-align: center; + width: 14%; + height: 1.5em; + line-height: 1.5em; +} + +/* 日曜日(見出し) */ +table.mycaljp2 tr th.sunday { + color: #E50000; +} + +/* 土曜日(見出し) */ +table.mycaljp2 tr th.saturday { + color: #ffffff; +} + +/* カレンダ部分 */ +table.mycaljp2 tr td { + margin: 0; + padding: 0; + border: 1px solid #cccccc; + background-color: #333333; + font-size: 0.9em; + font-weight: normal; + text-align: center; + height: 1.5em; + line-height: 1.5em; +} + +/* タイトル部分 */ +table.mycaljp2 tr.title td { + font-weight: bold; + background-color: transparent; + border: none; +} + +/* 今年・今月へのリンク */ +table.mycaljp2 tr.title td a, +table.mycaljp2 tr.title td a:link, +table.mycaljp2 tr.title td a:visited { + color: #ffffff; +} + +/* 先月・来月へのリンク */ +table.mycaljp2 tr.title td a.prevmonth, +table.mycaljp2 tr.title td a.nextmonth { + font-weight: normal; + background: #ffffff; +} + +/* 日付(イベント) */ +table.mycaljp2 tr td.Event { + background-color: #C6F4C8; +} + +/* 日付(今日) */ +table.mycaljp2 tr td.Today { + background-color: #FFE986; +} + +/* 今月以外の日 */ +table.mycaljp2 tr td.NotThisMonth { + background-color: #000000; +} + +/* 日付(アクティブ) */ +table.mycaljp2 tr td.Active { + background-color: #999999; +} + +/* 日付(記事) */ +table.mycaljp2 tr td.Story { + background-color: #666666; +} + +/* 日付(今日&アクティブ) */ +table.mycaljp2 tr td.TodayActive { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&記事) */ +table.mycaljp2 tr td.TodayStory { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&予定日) */ +table.mycaljp2 tr td.TodayEvent { + background-color: #FFE986; + color: #112abb; +} + +/* 平日 */ +table.mycaljp2 tr td a, +table.mycaljp2 tr td a:link, +table.mycaljp2 tr td a:visited { + color: #000000; +} + +/* 日曜日 */ +table.mycaljp2 tr td.sunday, +table.mycaljp2 tr td.sunday a { + color: #E50000; +} + +/* 土曜日 */ +table.mycaljp2 tr td.saturday, +table.mycaljp2 tr td.saturday a { + color: #ffffff; +} + +/* 日本の休日(祝日) */ +table.mycaljp2 tr td.holiday, +table.mycaljp2 tr td.holiday a { + color: #E50000; +} + +/* サイトカレンダのスキップ用スパン */ +div#mycaljp p.skip { + position: absolute; + left: -9999px; + margin: 0; + padding: 0; + line-height: 1; +} Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchblockintro.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchblockintro.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,5 @@ + + +{start_block_results} +{stories_intro} +{end_block} Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchresults.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchresults.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,7 @@ + + +

    {lang_headerofdate}{date_start}{lang_middleofdate}{date_end}{lang_footerofdate} [{refine_search}]

    +

    {lang_found} {num_matches}. ({search_time} {lang_seconds})

    +{search_blocks_intro} +{search_blocks} +{search_pager} Added: trunk/plugins/mycaljp/public_html/templates/black_multi_language/week.thtml ============================================================================== --- (empty file) +++ trunk/plugins/mycaljp/public_html/templates/black_multi_language/week.thtml Fri Mar 27 09:58:52 2009 @@ -0,0 +1,3 @@ + +{calendar_days} + Modified: trunk/plugins/mycaljp/readme_jp.html ============================================================================== --- trunk/plugins/mycaljp/readme_jp.html (original) +++ trunk/plugins/mycaljp/readme_jp.html Fri Mar 27 09:58:52 2009 @@ -118,10 +118,10 @@

    Geeklog Mycaljp プラグイン

    -

    バージョン: 2.0.5

    +

    バージョン: 2.0.6

    作成者: Yoshinori Tahara - dengen

    -

    公開日: 2008.9.26

    +

    公開日: 2009.3.28

    ライセンス: GPL

    概要:

    @@ -414,6 +414,12 @@ バージョン 公開日 説明 + + + 2.0.6 + 2009.3.28 + 追加 Auge Bangさんが制作された、「 mycaljp専用Black Theme」を同梱しました。(Augeさん、どうも有難うございます!)
    + 修正 Geeklog1.5以降で記事のイントロ表示 した際に日付が現在の日付になってしまう問題を修正しました。 2.0.5 From codesite-noreply @ google.com Sat Mar 28 02:11:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 27 Mar 2009 17:11:17 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0NSAtIG15Y2FsanDjg5fjg6njgrDjgqTjg7M=?= =?UTF-8?B?77yacjEzNDTjga7lpInmm7TjgpJ0cnVuay9nZWVrbG9nLTEtanAtZXh0ZW5kZWTjgbjlj43mmKDjgZU=?= =?UTF-8?B?44Gb44G+77+9Li4u?= Message-ID: <0016e644cfd625508804661cd27d@google.com> Author: dengenxp Date: Fri Mar 27 10:08:25 2009 New Revision: 1345 Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/README.txt (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/calendar.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/day.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/header.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/mycaljp.css (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/searchblockintro.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/searchresults.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/week.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/README.txt (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/calendar.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/config.php (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/day.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/header.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/mycaljp.css (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/searchblockintro.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/searchresults.thtml (contents, props changed) trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/week.thtml (contents, props changed) Modified: trunk/geeklog-1-jp-extended/CHANGES.jp trunk/geeklog-1-jp-extended/plugins/mycaljp/README_JP trunk/geeklog-1-jp-extended/plugins/mycaljp/config.php trunk/geeklog-1-jp-extended/plugins/mycaljp/history trunk/geeklog-1-jp-extended/plugins/mycaljp/readme_jp.html trunk/geeklog-1-jp-extended/public_html/mycaljp/calsearch.php Log: mycaljpプラグイン:r1344の変更をtrunk/geeklog-1-jp-extendedへ反映させます。 変更点をCHANGES.jpへ記載します。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Fri Mar 27 10:08:25 2009 @@ -1,5 +1,12 @@ $Id$ +2009-03-28 Yoshinori Tahara + + * mycaljpプラグインをバージョン2.0.6に更新しました。 + Auge Bangさんが制作された、「mycaljp専用Black Theme」を同梱しました。 + Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってしまう + 問題を修正しました。 + 2009-03-25 mystral-kk * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 Modified: trunk/geeklog-1-jp-extended/plugins/mycaljp/README_JP ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/mycaljp/README_JP (original) +++ trunk/geeklog-1-jp-extended/plugins/mycaljp/README_JP Fri Mar 27 10:08:25 2009 @@ -1,4 +1,4 @@ -mycaljp2.0.0 から mycaljp2.0.5 (本バージョン)にアップデートする方法 +mycaljp2.0.0 から mycaljp2.0.6 (本バージョン)にアップデートする方法 mycaljp2.0.0 にはプラグインバージョンが正常に更新されない問題がありますの で、 以下の手順に従って、アップデートして下さい。 Modified: trunk/geeklog-1-jp-extended/plugins/mycaljp/config.php ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/mycaljp/config.php (original) +++ trunk/geeklog-1-jp-extended/plugins/mycaljp/config.php Fri Mar 27 10:08:25 2009 @@ -47,7 +47,7 @@ // Plugin info -$_MYCALJP2_CONF['pi_version'] = '2.0.5'; // Plugin Version +$_MYCALJP2_CONF['pi_version'] = '2.0.6'; // Plugin Version $_MYCALJP2_CONF['gl_version'] = '1.4.1'; // GL Version plugin for $_MYCALJP2_CONF['pi_url'] = 'http://www.trybase.com/~dengen/log/'; // Plugin Homepage Modified: trunk/geeklog-1-jp-extended/plugins/mycaljp/history ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/mycaljp/history (original) +++ trunk/geeklog-1-jp-extended/plugins/mycaljp/history Fri Mar 27 10:08:25 2009 @@ -174,4 +174,15 @@ * mycaljp plugin version 2.0.4 * * 2008.9.17 : Yoshinori Tahara as dengen * * Calendarjpに対応し た. * +* * +* mycaljp plugin version 2.0.5 * +* 2008.9.26 : Yoshinori Tahara as dengen * +* インクルード対策を実施し た. * +* * +* mycaljp plugin version 2.0.6 * +* 2009.3.28 : Yoshinori Tahara as dengen * +* Auge Bangさんが制作された、「mycaljp専用Black Theme」を同梱し た. * +* (Augeさん、どうも有難うございま す!) * +* Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってしま う * +* 問題を修 正. * *********************************************************************************/ Modified: trunk/geeklog-1-jp-extended/plugins/mycaljp/readme_jp.html ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/mycaljp/readme_jp.html (original) +++ trunk/geeklog-1-jp-extended/plugins/mycaljp/readme_jp.html Fri Mar 27 10:08:25 2009 @@ -118,10 +118,10 @@

    Geeklog Mycaljp プラグイン

    -

    バージョン: 2.0.5

    +

    バージョン: 2.0.6

    作成者: Yoshinori Tahara - dengen

    -

    公開日: 2008.9.26

    +

    公開日: 2009.3.28

    ライセンス: GPL

    概要:

    @@ -414,6 +414,12 @@ バージョン 公開日 説明 + + + 2.0.6 + 2009.3.28 + 追加 Auge Bangさんが制作された、「 mycaljp専用Black Theme」を同梱しました。(Augeさん、どうも有難うございます!)
    + 修正 Geeklog1.5以降で記事のイントロ表示 した際に日付が現在の日付になってしまう問題を修正しました。 2.0.5 Modified: trunk/geeklog-1-jp-extended/public_html/mycaljp/calsearch.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/mycaljp/calsearch.php (original) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/calsearch.php Fri Mar 27 10:08:25 2009 @@ -431,18 +431,38 @@ } $msql = array(); - $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS day, " - . $userfields . ", t.topic, t.imageurl " - . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " - . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " - . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; - $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " - . " UNIX_TIMESTAMP(s.date) AS day, " - . $userfields . ", t.topic, t.imageurl " - . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " - . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " - . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + if (floatval (VERSION) >= 1.5) { // 2009.03.23 - Supports v1.5 and upper version. + + $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS unixdate, " + . 'UNIX_TIMESTAMP(s.expire) as expireunix, ' + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY featured DESC, date DESC LIMIT $offset, $limit"; + + $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " + . " UNIX_TIMESTAMP(s.date) AS unixdate, " + . 'UNIX_TIMESTAMP(s.expire) as expireunix, ' + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY featured DESC, date DESC LIMIT $offset, $limit"; + } else { + + $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS day, " + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + + $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " + . " UNIX_TIMESTAMP(s.date) AS day, " + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + } $result = DB_query ($msql); Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/README.txt ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/README.txt Fri Mar 27 10:08:25 2009 @@ -0,0 +1,16 @@ +/*======================================================================================== + タイトル: mycaljp専用Black Theme + + 著者 : Auge Bangrossa as Satoshi Nagata +      GLTMatrix(http://gltmatrix.com/) + + 説明 : dengenさんが制作されたmycaljpのテーマ用テンプレートです。 +      黒背景のテーマにマッチするように制作しております。 + http://www.trybase.com/~dengen/log/ + + 使用方法 :お使いのテーマに解凍して出来たmycaljpをアップロードします。 +       Mycaljp N/A でお使いのテーマを選び保存します。 + + 謝辞 : 配布にあたりプラグイン制作者のdengenさんに助言を頂きました。 +       この場をお借りして感謝と御礼申し上げます。 +==========================================================================================*/ \ No newline at end of file Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/calendar.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/calendar.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,36 @@ + + + +
    +

    {lang_skipcalendar}

    + + + + + + + + {dayofweeks_title} + + {calendar_week} +
    + {title_1} {title_2} + +
    «
    +
    +
    »
    +
    + +

    +
    Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/day.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/day.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1 @@ + {daylink} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/header.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/header.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1 @@ + {title_weekday} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/mycaljp.css ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/mycaljp.css Fri Mar 27 10:08:25 2009 @@ -0,0 +1,152 @@ + @ charset "utf-8"; + +/*------------------------------------------- + サイトカレンダ mycaljp プラグイン用スタイル +---------------------------------------------*/ + +/* カレンダ全体 */ +table.mycaljp2 { + margin: auto; + padding: 0; + border-collapse: collapse; + text-align: center; + width: 98%; +} +table.mycaljp2 a { + text-decoration: none; +} + +/* 曜日(見出し) */ +table.mycaljp2 tr th { + margin: 0; + padding: 0; + border: 1px solid #ffffff; + background: #000000; + font-size: 0.8em; + font-weight: normal; + text-align: center; + width: 14%; + height: 1.5em; + line-height: 1.5em; +} + +/* 日曜日(見出し) */ +table.mycaljp2 tr th.sunday { + color: #E50000; +} + +/* 土曜日(見出し) */ +table.mycaljp2 tr th.saturday { + color: #ffffff; +} + +/* カレンダ部分 */ +table.mycaljp2 tr td { + margin: 0; + padding: 0; + border: 1px solid #cccccc; + background-color: #333333; + font-size: 0.9em; + font-weight: normal; + text-align: center; + height: 1.5em; + line-height: 1.5em; +} + +/* タイトル部分 */ +table.mycaljp2 tr.title td { + font-weight: bold; + background-color: transparent; + border: none; +} + +/* 今年・今月へのリンク */ +table.mycaljp2 tr.title td a, +table.mycaljp2 tr.title td a:link, +table.mycaljp2 tr.title td a:visited { + color: #ffffff; +} + +/* 先月・来月へのリンク */ +table.mycaljp2 tr.title td a.prevmonth, +table.mycaljp2 tr.title td a.nextmonth { + font-weight: normal; + background: #ffffff; +} + +/* 日付(イベント) */ +table.mycaljp2 tr td.Event { + background-color: #C6F4C8; +} + +/* 日付(今日) */ +table.mycaljp2 tr td.Today { + background-color: #FFE986; +} + +/* 今月以外の日 */ +table.mycaljp2 tr td.NotThisMonth { + background-color: #000000; +} + +/* 日付(アクティブ) */ +table.mycaljp2 tr td.Active { + background-color: #999999; +} + +/* 日付(記事) */ +table.mycaljp2 tr td.Story { + background-color: #666666; +} + +/* 日付(今日&アクティブ) */ +table.mycaljp2 tr td.TodayActive { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&記事) */ +table.mycaljp2 tr td.TodayStory { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&予定日) */ +table.mycaljp2 tr td.TodayEvent { + background-color: #FFE986; + color: #112abb; +} + +/* 平日 */ +table.mycaljp2 tr td a, +table.mycaljp2 tr td a:link, +table.mycaljp2 tr td a:visited { + color: #000000; +} + +/* 日曜日 */ +table.mycaljp2 tr td.sunday, +table.mycaljp2 tr td.sunday a { + color: #E50000; +} + +/* 土曜日 */ +table.mycaljp2 tr td.saturday, +table.mycaljp2 tr td.saturday a { + color: #ffffff; +} + +/* 日本の休日(祝日) */ +table.mycaljp2 tr td.holiday, +table.mycaljp2 tr td.holiday a { + color: #E50000; +} + +/* サイトカレンダのスキップ用スパン */ +div#mycaljp p.skip { + position: absolute; + left: -9999px; + margin: 0; + padding: 0; + line-height: 1; +} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/searchblockintro.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/searchblockintro.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,5 @@ + + +{start_block_results} +{stories_intro} +{end_block} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/searchresults.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/searchresults.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,7 @@ + + +

    {lang_headerofdate}{date_start}{lang_middleofdate}{date_end}{lang_footerofdate} [{refine_search}]

    +

    {lang_found} {num_matches}. ({search_time} {lang_seconds})

    +{search_blocks_intro} +{search_blocks} +{search_pager} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/week.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black/week.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,3 @@ + +{calendar_days} + Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/README.txt ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/README.txt Fri Mar 27 10:08:25 2009 @@ -0,0 +1,16 @@ +/*======================================================================================== + タイトル: mycaljp専用Black Theme + + 著者 : Auge Bangrossa as Satoshi Nagata +      GLTMatrix(http://gltmatrix.com/) + + 説明 : dengenさんが制作されたmycaljpのテーマ用テンプレートです。 +      黒背景のテーマにマッチするように制作しております。 + http://www.trybase.com/~dengen/log/ + + 使用方法 :お使いのテーマに解凍して出来たmycaljpをアップロードします。 +       Mycaljp N/A でお使いのテーマを選び保存します。 + + 謝辞 : 配布にあたりプラグイン制作者のdengenさんに助言を頂きました。 +       この場をお借りして感謝と御礼申し上げます。 +==========================================================================================*/ \ No newline at end of file Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/calendar.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/calendar.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,36 @@ + + + +
    +

    {lang_skipcalendar}

    + + + + + + + + {dayofweeks_title} + + {calendar_week} +
    + {title_1} {title_2} + +
    «
    +
    +
    »
    +
    + +

    +
    Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/config.php ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/config.php Fri Mar 27 10:08:25 2009 @@ -0,0 +1,32 @@ + Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/day.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/day.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1 @@ + {daylink} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/header.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/header.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1 @@ + {title_weekday} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/mycaljp.css ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/mycaljp.css Fri Mar 27 10:08:25 2009 @@ -0,0 +1,152 @@ + @ charset "utf-8"; + +/*------------------------------------------- + サイトカレンダ mycaljp プラグイン用スタイル +---------------------------------------------*/ + +/* カレンダ全体 */ +table.mycaljp2 { + margin: auto; + padding: 0; + border-collapse: collapse; + text-align: center; + width: 98%; +} +table.mycaljp2 a { + text-decoration: none; +} + +/* 曜日(見出し) */ +table.mycaljp2 tr th { + margin: 0; + padding: 0; + border: 1px solid #ffffff; + background: #000000; + font-size: 0.8em; + font-weight: normal; + text-align: center; + width: 14%; + height: 1.5em; + line-height: 1.5em; +} + +/* 日曜日(見出し) */ +table.mycaljp2 tr th.sunday { + color: #E50000; +} + +/* 土曜日(見出し) */ +table.mycaljp2 tr th.saturday { + color: #ffffff; +} + +/* カレンダ部分 */ +table.mycaljp2 tr td { + margin: 0; + padding: 0; + border: 1px solid #cccccc; + background-color: #333333; + font-size: 0.9em; + font-weight: normal; + text-align: center; + height: 1.5em; + line-height: 1.5em; +} + +/* タイトル部分 */ +table.mycaljp2 tr.title td { + font-weight: bold; + background-color: transparent; + border: none; +} + +/* 今年・今月へのリンク */ +table.mycaljp2 tr.title td a, +table.mycaljp2 tr.title td a:link, +table.mycaljp2 tr.title td a:visited { + color: #ffffff; +} + +/* 先月・来月へのリンク */ +table.mycaljp2 tr.title td a.prevmonth, +table.mycaljp2 tr.title td a.nextmonth { + font-weight: normal; + background: #ffffff; +} + +/* 日付(イベント) */ +table.mycaljp2 tr td.Event { + background-color: #C6F4C8; +} + +/* 日付(今日) */ +table.mycaljp2 tr td.Today { + background-color: #FFE986; +} + +/* 今月以外の日 */ +table.mycaljp2 tr td.NotThisMonth { + background-color: #000000; +} + +/* 日付(アクティブ) */ +table.mycaljp2 tr td.Active { + background-color: #999999; +} + +/* 日付(記事) */ +table.mycaljp2 tr td.Story { + background-color: #666666; +} + +/* 日付(今日&アクティブ) */ +table.mycaljp2 tr td.TodayActive { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&記事) */ +table.mycaljp2 tr td.TodayStory { + background-color: #FFE986; + color: #112abb; +} + +/* 日付(今日&予定日) */ +table.mycaljp2 tr td.TodayEvent { + background-color: #FFE986; + color: #112abb; +} + +/* 平日 */ +table.mycaljp2 tr td a, +table.mycaljp2 tr td a:link, +table.mycaljp2 tr td a:visited { + color: #000000; +} + +/* 日曜日 */ +table.mycaljp2 tr td.sunday, +table.mycaljp2 tr td.sunday a { + color: #E50000; +} + +/* 土曜日 */ +table.mycaljp2 tr td.saturday, +table.mycaljp2 tr td.saturday a { + color: #ffffff; +} + +/* 日本の休日(祝日) */ +table.mycaljp2 tr td.holiday, +table.mycaljp2 tr td.holiday a { + color: #E50000; +} + +/* サイトカレンダのスキップ用スパン */ +div#mycaljp p.skip { + position: absolute; + left: -9999px; + margin: 0; + padding: 0; + line-height: 1; +} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/searchblockintro.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/searchblockintro.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,5 @@ + + +{start_block_results} +{stories_intro} +{end_block} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/searchresults.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/searchresults.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,7 @@ + + +

    {lang_headerofdate}{date_start}{lang_middleofdate}{date_end}{lang_footerofdate} [{refine_search}]

    +

    {lang_found} {num_matches}. ({search_time} {lang_seconds})

    +{search_blocks_intro} +{search_blocks} +{search_pager} Added: trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/week.thtml ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/mycaljp/templates/black_multi_language/week.thtml Fri Mar 27 10:08:25 2009 @@ -0,0 +1,3 @@ + +{calendar_days} + From codesite-noreply @ google.com Sat Mar 28 21:18:42 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 28 Mar 2009 12:18:42 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0OCAtIHIxMzQ2GyRCJE45OT83JHIbKEJnZWVrbG9n?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQbJEIkSyRiRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <001517570894a668b904662cd9ff@google.com> Author: mystralkk Date: Sat Mar 28 05:09:36 2009 New Revision: 1348 Modified: trunk/geeklog-1-jp-extended/public_html/lib-common.php Log: r1346の更新をgeeklog-1-jp-extendedにも適用します。 Modified: trunk/geeklog-1-jp-extended/public_html/lib-common.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/lib-common.php (original) +++ trunk/geeklog-1-jp-extended/public_html/lib-common.php Sat Mar 28 05:09:36 2009 @@ -6751,7 +6751,8 @@ require_once 'Text/Wiki.php'; $wiki = new Text_Wiki(); - $wiki->setFormatConf('Xhtml', 'translate', FALSE); + $wiki->setFormatConf('Xhtml', 'translate', HTML_SPECIALCHARS); + $wiki->setRenderConf('Xhtml', 'charset', COM_getCharset()); $wiki->disableRule('wikilink'); $wiki->disableRule('freelink'); $wiki->disableRule('interwiki'); From codesite-noreply @ google.com Sat Mar 28 21:44:45 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 28 Mar 2009 12:44:45 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0NyAtIHIxMzQ2GyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <0016e643486ac26b3e04662d3636@google.com> Author: mystralkk Date: Sat Mar 28 05:08:19 2009 New Revision: 1347 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: r1346の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Sat Mar 28 05:08:19 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-28 mystral-kk + + * Issue #49によりよく対応しました。 + 2009-03-25 mystral-kk * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 From codesite-noreply @ google.com Sat Mar 28 22:03:49 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 28 Mar 2009 13:03:49 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0NiAtIElzc3VlICM0ORskQiRLJGgkaiRoJC8bKEI=?= =?ISO-2022-JP?B?GyRCQlAxfiQ3JF4kNyQ/ISMbKEI=?= Message-ID: <00151750dbe2f7a6ba04662d7a28@google.com> Author: mystralkk Date: Sat Mar 28 05:05:56 2009 New Revision: 1346 Modified: trunk/geeklog-1-jp/public_html/lib-common.php Log: Issue #49によりよく対応しました。 Modified: trunk/geeklog-1-jp/public_html/lib-common.php ============================================================================== --- trunk/geeklog-1-jp/public_html/lib-common.php (original) +++ trunk/geeklog-1-jp/public_html/lib-common.php Sat Mar 28 05:05:56 2009 @@ -6751,7 +6751,8 @@ require_once 'Text/Wiki.php'; $wiki = new Text_Wiki(); - $wiki->setFormatConf('Xhtml', 'translate', FALSE); + $wiki->setFormatConf('Xhtml', 'translate', HTML_SPECIALCHARS); + $wiki->setRenderConf('Xhtml', 'charset', COM_getCharset()); $wiki->disableRule('wikilink'); $wiki->disableRule('freelink'); $wiki->disableRule('interwiki'); From codesite-noreply @ google.com Sat Mar 28 22:30:54 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sat, 28 Mar 2009 13:30:54 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM0OSAtIHIxMzQ4GyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <00151750e984ce175f04662ddbaa@google.com> Author: mystralkk Date: Sat Mar 28 05:12:22 2009 New Revision: 1349 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1348の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Sat Mar 28 05:12:22 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-28 mystral-kk + + * Issue#49によりよく対応しました。 + 2009-03-28 Yoshinori Tahara * mycaljpプラグインをバージョン2.0.6に更新しました。 From codesite-noreply @ google.com Sun Mar 29 21:55:52 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 12:55:52 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1MCAtIHIxMzQ2LCByMTM0NxskQiROSlE5OSRyGyhC?= =?ISO-2022-JP?B?GyRCJV4hPCU4JDckXiQ3JD8hIxsoQg==?= Message-ID: <0016368e1b116146a30466417c6d@google.com> Author: tacahi Date: Sun Mar 29 05:53:53 2009 New Revision: 1350 Added: branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/ - copied from r1344, /trunk/plugins/mycaljp/public_html/templates/black/ branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/README.txt - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/README.txt branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/calendar.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/calendar.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/day.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/day.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/header.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/header.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/mycaljp.css - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/mycaljp.css branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/searchblockintro.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/searchblockintro.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/searchresults.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/searchresults.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black/week.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black/week.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/ - copied from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/ branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/README.txt - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/README.txt branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/calendar.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/calendar.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/config.php - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/config.php branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/day.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/day.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/header.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/header.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/mycaljp.css - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/mycaljp.css branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/searchblockintro.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchblockintro.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/searchresults.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/searchresults.thtml branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/templates/black_multi_language/week.thtml - copied unchanged from r1344, /trunk/plugins/mycaljp/public_html/templates/black_multi_language/week.thtml Modified: branches/geeklog-new-tree/extended/CHANGES.jp branches/geeklog-new-tree/plugins-jp/mycaljp/README_JP branches/geeklog-new-tree/plugins-jp/mycaljp/config.php branches/geeklog-new-tree/plugins-jp/mycaljp/history branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/calsearch.php branches/geeklog-new-tree/plugins-jp/mycaljp/readme_jp.html Log: r1346, r1347の変更をマージしました。 Modified: branches/geeklog-new-tree/extended/CHANGES.jp ============================================================================== --- branches/geeklog-new-tree/extended/CHANGES.jp (original) +++ branches/geeklog-new-tree/extended/CHANGES.jp Sun Mar 29 05:53:53 2009 @@ -1,5 +1,12 @@ $Id$ +2009-03-28 Yoshinori Tahara + + * mycaljpプラグインをバージョン2.0.6に更新しました。 + Auge Bangさんが制作された、「mycaljp専用Black Theme」を同梱しました。 + Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってし + まう問題を修正しました。 + 2009-03-21 Takahiro Kambe * geeklog-1.5.2-jp-extended-1.0をリリースします。 Modified: branches/geeklog-new-tree/plugins-jp/mycaljp/README_JP ============================================================================== --- branches/geeklog-new-tree/plugins-jp/mycaljp/README_JP (original) +++ branches/geeklog-new-tree/plugins-jp/mycaljp/README_JP Sun Mar 29 05:53:53 2009 @@ -1,4 +1,4 @@ -mycaljp2.0.0 から mycaljp2.0.5 (本バージョン)にアップデートする方法 +mycaljp2.0.0 から mycaljp2.0.6 (本バージョン)にアップデートする方法 mycaljp2.0.0 にはプラグインバージョンが正常に更新されない問題がありますの で、 以下の手順に従って、アップデートして下さい。 Modified: branches/geeklog-new-tree/plugins-jp/mycaljp/config.php ============================================================================== --- branches/geeklog-new-tree/plugins-jp/mycaljp/config.php (original) +++ branches/geeklog-new-tree/plugins-jp/mycaljp/config.php Sun Mar 29 05:53:53 2009 @@ -47,7 +47,7 @@ // Plugin info -$_MYCALJP2_CONF['pi_version'] = '2.0.5'; // Plugin Version +$_MYCALJP2_CONF['pi_version'] = '2.0.6'; // Plugin Version $_MYCALJP2_CONF['gl_version'] = '1.4.1'; // GL Version plugin for $_MYCALJP2_CONF['pi_url'] = 'http://www.trybase.com/~dengen/log/'; // Plugin Homepage Modified: branches/geeklog-new-tree/plugins-jp/mycaljp/history ============================================================================== --- branches/geeklog-new-tree/plugins-jp/mycaljp/history (original) +++ branches/geeklog-new-tree/plugins-jp/mycaljp/history Sun Mar 29 05:53:53 2009 @@ -174,4 +174,15 @@ * mycaljp plugin version 2.0.4 * * 2008.9.17 : Yoshinori Tahara as dengen * * Calendarjpに対応し た. * +* * +* mycaljp plugin version 2.0.5 * +* 2008.9.26 : Yoshinori Tahara as dengen * +* インクルード対策を実施し た. * +* * +* mycaljp plugin version 2.0.6 * +* 2009.3.28 : Yoshinori Tahara as dengen * +* Auge Bangさんが制作された、「mycaljp専用Black Theme」を同梱し た. * +* (Augeさん、どうも有難うございま す!) * +* Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってしま う * +* 問題を修 正. * *********************************************************************************/ Modified: branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/calsearch.php ============================================================================== --- branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/calsearch.php (original) +++ branches/geeklog-new-tree/plugins-jp/mycaljp/public_html/calsearch.php Sun Mar 29 05:53:53 2009 @@ -431,18 +431,38 @@ } $msql = array(); - $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS day, " - . $userfields . ", t.topic, t.imageurl " - . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " - . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " - . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; - $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " - . " UNIX_TIMESTAMP(s.date) AS day, " - . $userfields . ", t.topic, t.imageurl " - . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " - . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " - . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + if (floatval (VERSION) >= 1.5) { // 2009.03.23 - Supports v1.5 and upper version. + + $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS unixdate, " + . 'UNIX_TIMESTAMP(s.expire) as expireunix, ' + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY featured DESC, date DESC LIMIT $offset, $limit"; + + $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " + . " UNIX_TIMESTAMP(s.date) AS unixdate, " + . 'UNIX_TIMESTAMP(s.expire) as expireunix, ' + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY featured DESC, date DESC LIMIT $offset, $limit"; + } else { + + $msql['mysql']="SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) AS day, " + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + + $msql['mssql']="SELECT STRAIGHT_JOIN s.sid, s.uid, s.draft_flag, s.tid, s.date, s.title, cast(s.introtext as text) as introtext, cast(s.bodytext as text) as bodytext, s.hits, s.numemails, s.comments, s.trackbacks, s.related, s.featured, s.show_topic_icon, s.commentcode, s.trackbackcode, s.statuscode, s.expire, s.postmode, s.frontpage, s.in_transit, s.owner_id, s.group_id, s.perm_owner, s.perm_group, s.perm_members, s.perm_anon, s.advanced_editor_mode, " + . " UNIX_TIMESTAMP(s.date) AS day, " + . $userfields . ", t.topic, t.imageurl " + . "FROM {$_TABLES['stories']} AS s, {$_TABLES['users']} AS u, " + . "{$_TABLES['topics']} AS t WHERE (s.uid = u.uid) AND (s.tid = t.tid) AND " + . $sql . "ORDER BY date DESC LIMIT $offset, $limit"; + } $result = DB_query ($msql); Modified: branches/geeklog-new-tree/plugins-jp/mycaljp/readme_jp.html ============================================================================== --- branches/geeklog-new-tree/plugins-jp/mycaljp/readme_jp.html (original) +++ branches/geeklog-new-tree/plugins-jp/mycaljp/readme_jp.html Sun Mar 29 05:53:53 2009 @@ -118,10 +118,10 @@

    Geeklog Mycaljp プラグイン

    -

    バージョン: 2.0.5

    +

    バージョン: 2.0.6

    作成者: Yoshinori Tahara - dengen

    -

    公開日: 2008.9.26

    +

    公開日: 2009.3.28

    ライセンス: GPL

    概要:

    @@ -414,6 +414,12 @@ バージョン 公開日 説明 + + + 2.0.6 + 2009.3.28 + 追加 Auge Bangさんが制作された、「 mycaljp専用Black Theme」を同梱しました。(Augeさん、どうも有難うございます!)
    + 修正 Geeklog1.5以降で記事のイントロ表示 した際に日付が現在の日付になってしまう問題を修正しました。 2.0.5 From codesite-noreply @ google.com Sun Mar 29 22:00:53 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 13:00:53 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1MSAtIHIxMzQ2LCByMTM0NxskQiROSlE5OSRyGyhC?= =?ISO-2022-JP?B?GyRCJV4hPCU4JDckXiQ3JD8hIxsoQg==?= Message-ID: <000e0cd48494561c3b0466418e2f@google.com> Author: tacahi Date: Sun Mar 29 05:59:38 2009 New Revision: 1351 Modified: branches/geeklog-new-tree/CHANGES.jp (contents, props changed) branches/geeklog-new-tree/public_html/lib-common.php (contents, props changed) Log: r1346, r1347の変更をマージしました。 Modified: branches/geeklog-new-tree/CHANGES.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES.jp (original) +++ branches/geeklog-new-tree/CHANGES.jp Sun Mar 29 05:59:38 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-28 mystral-kk + + * Issue #49によりよく対応しました。 + 2009-03-25 mystral-kk * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 Modified: branches/geeklog-new-tree/public_html/lib-common.php ============================================================================== --- branches/geeklog-new-tree/public_html/lib-common.php (original) +++ branches/geeklog-new-tree/public_html/lib-common.php Sun Mar 29 05:59:38 2009 @@ -6751,7 +6751,8 @@ require_once 'Text/Wiki.php'; $wiki = new Text_Wiki(); - $wiki->setFormatConf('Xhtml', 'translate', FALSE); + $wiki->setFormatConf('Xhtml', 'translate', HTML_SPECIALCHARS); + $wiki->setRenderConf('Xhtml', 'charset', COM_getCharset()); $wiki->disableRule('wikilink'); $wiki->disableRule('freelink'); $wiki->disableRule('interwiki'); From codesite-noreply @ google.com Sun Mar 29 22:05:54 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 13:05:54 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1MiAtIBskQjojRnwkTkpROTlFQCRyNS0bKEI=?= =?ISO-2022-JP?B?GyRCPVIkNyReJDckPyEjGyhC?= Message-ID: <00151750e13a4134c1046641a043@google.com> Author: tacahi Date: Sun Mar 29 06:04:32 2009 New Revision: 1352 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: 今日の変更点を記述しました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Sun Mar 29 06:04:32 2009 @@ -1,5 +1,13 @@ $Id$ +2009-03-29 Takahiro Kambe + + * r1346, r1347を取り込みました。(Issue #49によりよい対応) + + * r1344, r1345を取り込みました。(mycaljpプラグインのバージョン2.0.6に + 更新: mycaljp専用Black Themeの追加、Geeklog 1.5以降でイントロ表示で + 日付が現在になる問題の修正) + 2009-03-25 Takahiro Kambe * カスタム関数の変更履歴を記述する CHANGES.jp は取り止めました。 From codesite-noreply @ google.com Sun Mar 29 22:31:59 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 13:31:59 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1MyAtIHByZWNoZWNrGyRCJHJESTJDJDckXhsoQg==?= =?ISO-2022-JP?B?GyRCJDckPyEjGyhC?= Message-ID: <000e0cd3070a85f26d046641fd52@google.com> Author: mystralkk Date: Sun Mar 29 06:25:52 2009 New Revision: 1353 Added: trunk/geeklog-1-jp/public_html/admin/install/core.js (contents, props changed) trunk/geeklog-1-jp/public_html/admin/install/fb.php (contents, props changed) trunk/geeklog-1-jp/public_html/admin/install/precheck.css (contents, props changed) trunk/geeklog-1-jp/public_html/admin/install/precheck.js (contents, props changed) trunk/geeklog-1-jp/public_html/admin/install/precheck.php (contents, props changed) Log: precheckを追加しました。 Added: trunk/geeklog-1-jp/public_html/admin/install/core.js ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp/public_html/admin/install/core.js Sun Mar 29 06:25:52 2009 @@ -0,0 +1,338 @@ +/* +The MIT License + +Copyright (c) 2007 SitePoint Pty. Ltd. http://www.sitepoint.com/ + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +if (typeof Core == "undefined") { + +if (!window.$) { + window.$ = function(id) {return document.getElementById(id);}; +} + +var Core = {}; +// W3C DOM 2 Events model +if (document.addEventListener) { + Core.addEventListener = function(target, type, listener) + { + target.addEventListener(type, listener, false); + }; + + Core.removeEventListener = function(target, type, listener) + { + target.removeEventListener(type, listener, false); + }; + + Core.preventDefault = function(event) + { + event.preventDefault(); + }; + + Core.stopPropagation = function(event) + { + event.stopPropagation(); + }; +} else if (document.attachEvent) { + // Internet Explorer Events model + Core.addEventListener = function(target, type, listener) + { + // prevent adding the same listener twice, since DOM 2 Events ignores + // duplicates like this + if (Core._findListener(target, type, listener) != -1) return; + + // listener2 calls listener as a method of target in one of two ways, + // depending on what this version of IE supports, and passes it the global + // event object as an argument + var listener2 = function() + { + var event = window.event; + + if (Function.prototype.call) { + listener.call(target, event); + } else { + target._currentListener = listener; + target._currentListener(event); + target._currentListener = null; + } + }; + + // add listener2 using IE's attachEvent method + target.attachEvent("on" + type, listener2); + + // create an object describing this listener so we can clean it up later + var listenerRecord = + { + target: target, + type: type, + listener: listener, + listener2: listener2 + }; + + // get a reference to the window object containing target + var targetDocument = target.document || target; + var targetWindow = targetDocument.parentWindow; + + // create a unique ID for this listener + var listenerId = "l" + Core._listenerCounter++; + + // store a record of this listener in the window object + if (!targetWindow._allListeners) targetWindow._allListeners = {}; + targetWindow._allListeners[listenerId] = listenerRecord; + + // store this listener's ID in target + if (!target._listeners) target._listeners = []; + target._listeners[target._listeners.length] = listenerId; + + // set up Core._removeAllListeners to clean up all listeners on unload + if (!targetWindow._unloadListenerAdded) { + targetWindow._unloadListenerAdded = true; + targetWindow.attachEvent("onunload", Core._removeAllListeners); + } + }; + + Core.removeEventListener = function(target, type, listener) + { + // find out if the listener was actually added to target + var listenerIndex = Core._findListener(target, type, listener); + if (listenerIndex == -1) return; + + // get a reference to the window object containing target + var targetDocument = target.document || target; + var targetWindow = targetDocument.parentWindow; + + // obtain the record of the listener from the window object + var listenerId = target._listeners[listenerIndex]; + var listenerRecord = targetWindow._allListeners[listenerId]; + + // remove the listener, and remove its ID from target + target.detachEvent("on" + type, listenerRecord.listener2); + target._listeners.splice(listenerIndex, 1); + + // remove the record of the listener from the window object + delete targetWindow._allListeners[listenerId]; + }; + + Core.preventDefault = function(event) + { + event.returnValue = false; + }; + + Core.stopPropagation = function(event) + { + event.cancelBubble = true; + }; + + Core._findListener = function(target, type, listener) + { + // get the array of listener IDs added to target + var listeners = target._listeners; + if (!listeners) return -1; + + // get a reference to the window object containing target + var targetDocument = target.document || target; + var targetWindow = targetDocument.parentWindow; + + // searching backward (to speed up onunload processing), find the listener + for (var i = listeners.length - 1; i >= 0; i --) { + // get the listener's ID from target + var listenerId = listeners[i]; + + // get the record of the listener from the window object + var listenerRecord = targetWindow._allListeners[listenerId]; + + // compare type and listener with the retrieved record + if (listenerRecord.type == type && listenerRecord.listener == listener) { + return i; + } + } + return -1; + }; + + Core._removeAllListeners = function() + { + var targetWindow = this; + + for (id in targetWindow._allListeners) { + var listenerRecord = targetWindow._allListeners[id]; + listenerRecord.target.detachEvent("on" + listenerRecord.type, listenerRecord.listener2); + delete targetWindow._allListeners[id]; + } + }; + + Core._listenerCounter = 0; +} + +Core.addClass = function(target, theClass) +{ + if (!Core.hasClass(target, theClass)) { + if (target.className == "") { + target.className = theClass; + } else { + target.className += " " + theClass; + } + } +}; + +Core.getElementsByClass = function(theClass) +{ + var elementArray = []; + + if (typeof document.all != "undefined") { + elementArray = document.all; + } else { + elementArray = document.getElementsByTagName("*"); + } + + var matchedArray = []; + var pattern = new RegExp("(^| )" + theClass + "( |$)"); + + for (var i = 0; i < elementArray.length; i ++) { + if (pattern.test(elementArray[i].className)) { + matchedArray[matchedArray.length] = elementArray[i]; + } + } + + return matchedArray; +}; + +Core.hasClass = function(target, theClass) +{ + var pattern = new RegExp("(^| )" + theClass + "( |$)"); + + if (pattern.test(target.className)) { + return true; + } + + return false; +}; + +Core.removeClass = function(target, theClass) +{ + var pattern = new RegExp("(^| )" + theClass + "( |$)"); + + target.className = target.className.replace(pattern, "$1"); + target.className = target.className.replace(/ $/, ""); +}; + +Core.getComputedStyle = function(element, styleProperty) +{ + var computedStyle = null; + + if (typeof element.currentStyle != "undefined") { + computedStyle = element.currentStyle; + } else { + computedStyle = document.defaultView.getComputedStyle(element, null); + } + + return computedStyle[styleProperty]; +}; + +Core.start = function(runnable) +{ + var initOnce = function() + { + if (arguments.callee.done) { + return; + } else { + arguments.callee.done = true; + runnable.init(); + } + } + + Core.addEventListener(document, "DOMContentLoaded", initOnce); + Core.addEventListener(window, "load", initOnce); +}; + +/** +* @param hash options +* url: request URL +* method: "get" or "post" +* params: parameters +* onSuccess: call back functon +* onFail: call back functon +*/ +Core.Ajax = function(args) +{ + try { + var oReq = new XMLHttpRequest(); + } catch (e) { + try { + var oReq = new ActiveXObject("Microsoft.XMLHTTP"); + } catch (e) { + var oReq = null; + return false; + } + } + + oReq.onreadystatechange = function() + { + if (oReq.readyState == 4) { + if (oReq.status == 200 || oReq.status == 304) { + if (typeof args.onSuccess == "function") { + args.onSuccess(oReq); + } else { + throw "onSuccess handler is not defined."; + } + } else { + if (typeof args.onFailure == "function") { + args.onFailure(oReq); + } else { + throw "onFailure handler is not defined."; + } + } + } + } + + if (args.method.toLowerCase() == "get") { + args.url += "?" + args.params; + args.params = null; + } + + oReq.open(args.method, args.url, true); + oReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + oReq.send(args.params); + return true; +}; + +/** +* Load JavaScript file dynamically +*/ +Core.loadJS = function(URL) +{ + var script = document.createElement("script"); + script.setAttribute("type", "text/javascript"); + script.src = URL; + document.getElementsByTagName("head")[0].appendChild(script); +}; + +/** +* Load CSS file dynamically +*/ +Core.loadCSS = function(URL) +{ + var link = document.createElement("link"); + link.setAttribute("type", "text/css"); + link.setAttribute("rel", "stylesheet"); + link.setAttribute("href", URL); + document.getElementsByTagName("head")[0].appendChild(link); +}; + +} // End of Core class Added: trunk/geeklog-1-jp/public_html/admin/install/fb.php ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp/public_html/admin/install/fb.php Sun Mar 29 06:25:52 2009 @@ -0,0 +1,234 @@ + +* @date 2009-01-12 +* @version 1.3.0 +* @license GPLv2 or later +*/ +define('DS', DIRECTORY_SEPARATOR); +define('LB', "\n"); +define('OS_WIN', strcasecmp(substr(PHP_OS, 0, 3), 'WIN') === 0); +define('TARGET', 'db-config.php'); + +// Display an icon image + +if (isset($_GET['mode']) AND ($_GET['mode'] == 'img1')) { + header('Content-Type: image/gif'); + echo base64_decode( + 'R0lGODlhJAAZAOYAAP/zWf/bQP/aPv/4Xv/eQ//eO//8Yv7bNf//X//7Yv/3X//e' + . 'RPnWPMa5cNra 2f/bPPPy9MCuWcy2S/3+/tTT0PXTO/T0+//bO+bl5uzs7PDwZ/b' + . '4/fv8aoiIi8+8S8fIy8S7j/zY P//hObGyuv/cPu/NNpmRauzNRfTUQuDh6tPQlt' + . 'O/Tvv7+9e/QtPThbqnS7qrafrVNMjJ0Pv8//n5 /tvASeroXM/OyNTOp+/x+dDNh' + . 'Onoa7Ore8XDe/n5+Z6hqd7e3da7Rs/MuOfGOpWPed3ZZrOtk6Wa ZY+QlpeSefvf' + . 'RfrZO/7sUsq0VcWwTcvGqP/0WdvPYKGjrby7udC3SM+1RtPKipmanuHFRNrLV+3S' + . 'NvziSfT1a+bJTP3ZPPvzXOTidf3XLv/ZP/PWN6ugcrSxp8WsQ7y+ydfVcNPDUfnY' + . 'Pf/zUf/tTOfp 9MDCyeTkm/f5at3bWuXm7/XYQI+LdMLAsf/4VvzlSP/rUf/iSP/' + . 'nTf/uVf/+Zf/ZPv//Zv///yH5 BAAAAAAALAAAAAAkABkAAAf/gH+Cg4SFhTQQEB' + . 'YWGUAUDhOGhBMbOTOEM4sQGBRCOCA8PSo6YDs2 aBSSGxgOOFYNdSkON0IgDbcNR' + . 'XE2Nhp8CMB8fggqhhsgXSclMQdBETVYQ8thLRp+19jZw2+GFBEH Fw8CfRcH5hUn' + . '6VEc2u18LoYNFeN9fQ8VWCtZUUU7Guzt2vUwBCIGPQEVsuzgAgdgwIB8Bha60aJA' + . 'PS8rrAnzw6ejx48gf8Er1AbGATF9GKThYKBlApcvX7qcmSABgpGEaBgpQSLlCgUD' + . 'gA4YGnSoUAVC jSLQIcmNkwICGHj4AgWA1atYr1bFaoepoRQmo3rYQ7as2bNo11i' + . 'RpJOnVCZM7/DInUu3Ll02xSR9 qFKAgQQ9gAMLHkz4Tl5DckyqkbAlj+PHkCNHVo' + . 'JD0p8ZZYZckKCEwALPnz8TGD1atOfRc55Y/uOt gIQQAWLLji1gdu3YJEiIGKPac' + . 'g4eWqqEoFevuPE+Ah6IELGkQpAXN1b/mdKCyvDjxh8UKLAEhYQX JohcOeNDugMn' + . '1okn337hAgoPEUzQ6SBFRooN0gX9NiNg/XYUNTRhgglJdHDFCDJgwEJ+hUzxgggF' + . 'ANjEEUR0gMQPI3wABASRCDJBhwymQEYERxR4YYYOZFAeg9L5IIMUGH7gAAYQLMgi' + . 'i4xkUOON+QUC ADs=' + ); + exit; +} + +if (isset($_GET['mode']) AND ($_GET['mode'] == 'img2')) { + header('Content-Type: image/gif'); + echo base64_decode( + 'R0lGODlhEQAVAOZEAPr6+ubm5r6+vvLy8u7u7rOzs/f39/j39+np6aurq/Lx8v7/' + . '//r6+////vr7+u7u7+7v7u/v7vz8/Pf499HR0ff3+KampsHBwenp6PLy8fX19f/+' + . '//Hy8vf39vr5+u/u7/Lx8f38/fX19PDv7urr6vHw8by8vPf4+KCgoObm5evr6/r7' + . '++Dg4P38/OPj4+jp6e7v7/7+/u/v7+jp6OTk5Pj4+fj3+Nzc3MnJyf7+///+/uHh' + . '4fPz89/f3+Li4vv7+6Ojo6enp5ycnP///////wAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAACH5BAEAAEQALAAAAAARABUAAAfTgBQJFkGFhoeFQDgJBhI/' + . 'j5CRj0NAQT9DmJmampWXm5+YnUNCpKWmQqGWoKCVDA0LQzk6rzELDZgbG5U1Eqe+' + . 'IS2VHQDEACsMxQweDsyVPBU2BycGBgcT1tUGFZUlGr6nGiKVBAMcChnnCgPr6wog' + . 'lSQEBBEEEDIREA8PHyMEMJUzVPhCAaRgwQuVUiBAgOHFQgxANgkQEMRFgIsYA0TM' + . 'JKAAkSA7aPjaOKQjkY89fKhc6WOjyZNBUrJUGfHlyQQ3WPTYydOEzZOCCCEKcuGk' + . 'USKBAAA7' + ); + exit; +} + +if (isset($_GET['mode']) AND ($_GET['mode'] == 'imglogo')) { + header('Content-Type: image/jpeg'); + echo base64_decode( + '/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAACgAA/+4ADkFkb2Jl' + . 'AGTAAAAAAf/bAIQAFBAQGRIZJxcXJzImHyYyLiYmJiYuPjU1NTU1PkRBQUFBQUFE' + . 'RERERERERERERERERERERERERERERERERERERAEVGRkgHCAmGBgmNiYgJjZENisr' + . 'NkREREI1QkRERERERERERERERERERERERERERERERERERERERERERERERERE/8AA' + . 'EQgAOACXAwEiAAIRAQMRAf/EAI0AAQADAQEBAAAAAAAAAAAAAAADBAUBAgYBAQEB' + . 'AQEBAAAAAAAAAAAAAAABAwIEBRAAAQMCAwQIBAQEBwAAAAAAAQACAxEEIRIFMUFR' + . 'E2FxgZGhIlIU0TKSM7HBQmLwcoKiwiNDUyQ0BhEAAgICAgIBBAMAAAAAAAAAAAER' + . 'AhIDITFBUWFxkSIyQoIU/9oADAMBAAIRAxEAPwD7NFDcXDbdnMfUioFBxJoPFQCO' + . '4uPuHlM9DD5u127+n6kB7ub+K28rjV52Rs8zj2D8dipNfqE7hIGiMA/I84U6drif' + . 'pp0q81lvZNwysB2neeveSuC7MgrCwvHqPlHj8F0qt8+PYPBtp5PuTEDhE0N8TmPc' + . 'QuQN9tOYauLXtztzuLjVuDsT1tNOtRTvvyKsa0dWJ8VELh0kLJ34SQPGf+U+V39p' + . 'r1hdPW1XKU/oSTYREWZQiIgCIsS2v5ZLvIT5CXDKtKUdlZr+PJJNtEWLfX00NzkY' + . 'aNGXDilKO7xqG4NpERZlCIiAIiIDOkB1EOYCWwVLXOG15HDg0HftO7DE+X3E3tXU' + . 'NJYjkf2b+0UcpZQbN5mb9px/zW+k+sf4vq415M1rJg//AE5hy39f6T24j6V1Vw02' + . 'DM02393KZJauDdtd5Wpfag20o0CrjuUWkM5bZIzta+hWZrAcLhx4gZe74r2Qtm3G' + . '361XCOekWm/+gazGZoA4g/FVHas10khLDklblo7y13b8Tv2ArNgkgYKnF+Gx1HbM' + . 'c1AZK1rgMo4LZtoZIGumkiawDK5py0dWuO9zjh6j2LB2TeNK45cFIm65MIxHRuYU' + . 'Y52NQekOA20OK9m8vYKSSVofU3BVb+B0d+7LQB5ZK08TTL1YHMe1X5be/laWyGrT' + . 'txatdSSqssYfvsjL7dSYbfnndhl/dwWYL28uSXRVoNzQq8tu+GEEkFpd+k1xoprJ' + . 't26P/jny16Nq0WulU7LF88ZdEkuafqbpH8mb5jsOzsKoWZAvATszO/NSx2M/uGuk' + . 'LQ6od8wr3KnynTTFjdpLqLutafni1DrzHgGjdatI6QMttlaVpXMq2okm582Boyvc' + . 'F3S5mQTUlFCfKCf0lNU/7Z/pUrVVvhWsLHv2PBe1HUzA7lRfNvdwVEahdxEOeTQ+' + . 'puBXl1BenmbOZjXhVbGqlvtnZujL11XEVphTHLLtl7DdRYbczndhl/dwWSdQu5nE' + . 'srQbmt2KqA7kH05m99Ct3RsvIw21OZLUrqVrY5c/YnZmu1i4JFCBTdTai5KWe+Bb' + . '8udv5V8UW2FMcsF1MEln0iyp4TCw21aRP+y7/bfta3qqPL9PBaq8SxNmYY3irSKE' + . 'L5RoZcV01krJz5WTtFf2vH8UVq/sBdgEGjxsKy5Ld7Ipbd5zOidzWO9THbfGteld' + . 's5r1oDY2lzd2cYd+H4r1Vq3VbK2i1eHJz8E1tormvDpXAgY0bvUus3IbHyR8ztvU' + . 'pwy8kHncyP8AkFT4qJ1ja2/nndUnfI7amayV9tpx6SEeijeQOuo7aVvzGsRr1fFt' + . 'O1eRp147yGuXpdh+Kv3Eomi5drG5xBa5hDcratNRi7L4LUXK3usqqUTKnwWDOh0t' + . 'rYHQyGpca1G49CznaXdQk8vEcWup8F9Eild9035n2IMWz0qRsglmNKGtK1JXq302' + . 'SO65ppkBJB61sIj33c/KgQZWo6YZ3cyKmY/MOPSoJNKne9hJBwaHHqW4iLfdJL0I' + . 'MvUdM9weZHg/eDvVBulXTyGvFAN5dVfRold96rEQUXWUMVsYXmjdpcePFZbdKuAa' + . 'xuBaf1Nctm9tRdR5CaY1BWOdIuW4NIoeBWuq/Dm8NvlMjRSdABLyg4HENzbkWtBo' + . '+Rri8gvLXBvAEhFt/orOE/2JBsIiL5p2UrwGJ8dw0E5TkeGipyO6BwdlPVVd9xPJ' + . '9qKg9Upy+Aqe+iIgOe1mkxmmNPTEMg78XdzgpobOGE1YwB3q2u7ziiICdERAEREA' + . 'REQBERAEREAREQBERAf/2Q==' + ); + exit; +} + +/** +* Convert charset of a string to SJIS +*/ +function convertCharset($str) { + if (OS_WIN) { + return mb_convert_encoding($str, 'utf-8', 'sjis'); + } else { + return $str; + } +} + +if (isset($_GET['path'])) { + $path = $_GET['path']; +} else { + $path = dirname(__FILE__); +} +if (isset($_GET['mode'])) { + $mode = $_GET['mode']; +} else { + $mode = 'install'; +} + +$result = FALSE; +$header = << + + + + + Geeklog インストール前 ファイルブラウザ + + + +

    Geeklog インストール前 ファイルブラウザ

    +EOD; + +$body = '

    現在のパ ス:' + . convertCharset($path) . '

    ' . LB; + +$parent = @realpath($path . DS . '..'); +if ($parent !== FALSE) { + $body .= '

    [一つ上のフォルダへ]

    ' . LB; +} + +if (($dh = @opendir($path)) === FALSE) { + $body .= '

    エラー:ディレクトリを開けません。検索を終了します。

    ' . LB; +} else { + while (($entry = readdir($dh)) !== FALSE) { + $fullpath = $path . DS . $entry; + if (is_dir($fullpath)) { + if (($entry != '.') AND ($entry != '..')) { + $body .= 'フォルダのアイコン' + . htmlspecialchars(convertCharset($entry), ENT_QUOTES) + . '
    ' . LB; + } + } else { + if ($entry == TARGET) { + $body .= 'ファイルのアイコン ' + . '' + . TARGET . ' [このファイルを使用する]
    ' . LB; + $result = TRUE; + } + } + } + + closedir($dh); +} + +if ($result === TRUE) { + $msg = '

    ' . TARGET . 'が見つかりまし た。このファイルでよければ、[このファイルを使用する]をクリ ックしてください。

    ' . LB; +} else { + $msg = '

    下に表示されているリンクをクリックして、 ' . TARGET . 'を探してください。

    ' . LB; +} + +echo $header . $msg . $body; Added: trunk/geeklog-1-jp/public_html/admin/install/precheck.css ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp/public_html/admin/install/precheck.css Sun Mar 29 06:25:52 2009 @@ -0,0 +1,140 @@ +/** +* CSS for precheck.php +* +* @author mystral-kk +* @date 2009-01-12 +* @version 1.3.0 +* @license GPLv2 or later +*/ + + @ charset "utf-8"; + +body { + margin-left: 30px; +} + +li { + margin: 10px; + line-height: 1.5em; +} + +code { + padding: 2px; background-color: black; color: white; +} + +h1 { + font-size: 1.8em; +} + +h2 { + clear: both; + margin-top: 20px; + font-size: 1.5em; + border-left: solid 10px #6b6bff; + padding-left: 5px; +} + +a { + color: blue; +} + +a:visited { + color: blue; +} + +a:hover { + text-decoration: none; + color: white; + background-color: blue; +} + +.good { + padding: 2px; + border: solid 1px #006633; + background-color: #ccff99; +} + +.warning { + padding: 2px; + border: solid 1px #ffcc00; + background-color: #ffff66; +} + + +.bad { + visibility: visible; + padding: 2px; + border: solid 1px #cc3333; + background-color: #ffccff; +} + +.hidden { + visibility: hidden; +} + +.infobox { + padding: 5px; + border: solid 1px #cc3333; + background-color: #ffccff; +} + +.large { + font-size: 1.8em; +} + +.small { + font-size: 0.8em; +} + +.center { + text-align: center; +} + +.right { + text-align: right; +} + +.normal { + color: #6b6bff; + font-weight: bold; + background-color: white; +} + +.hilight { + color: white; + font-weight: bold; + background-color: #6b6bff; +} + +.lbl { + display: block; + float: left; + width: 14em; +} + +div#container { + margin-top: 20px; + width: 780px; +} + +fieldset { + width: 660px; +} + +input:focus { + background-color: #ffff66; +} + +ul.navi { + margin: 0 0 30px 0; + padding: 0; +} + +ul.navi li { + margin: 0px; + padding: 1px; + float: left; + list-style: none; + font-size: 0.9em; + border: solid 1px black; +} Added: trunk/geeklog-1-jp/public_html/admin/install/precheck.js ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp/public_html/admin/install/precheck.js Sun Mar 29 06:25:52 2009 @@ -0,0 +1,150 @@ +/** +* Check DB settings as a part of Precheck for Geeklog +* +* @author mystral-kk +* @date 2009-02-03 +* @version 1.3.2 +* @license GPLv2 or later +* @note This script (precheck.js) needs 'core.js' published +* by SitePoint Pty. Ltd. +*/ +var callback = { + /** + * Callback function when a database was selected + */ + showCountResult: function(req) { + var install_submit = $('install_submit'); + var db_name_warning = $('db_name_warning'); + + if ((req.responseText == '-ERR') || (parseInt(req.responseText) > 0)) { + install_submit.disabled = true; + Core.removeClass(db_name_warning, 'hidden'); + Core.addClass(db_name_warning, 'bad'); + } else { + install_submit.disabled = false; + Core.removeClass(db_name_warning, 'bad'); + Core.addClass(db_name_warning, 'hidden'); + } + }, + + /** + * Callback function when db_name selection was changed + */ + dbSelected: function() { + $('install_submit').disabled = true; + $('db_name_warning').setAttribute('class', 'hidden'); + + if ($('db_name').value != '--') { + var type = $('db_type').value; + var host = $('db_host').value; + var user = $('db_user').value; + var pass = $('db_pass').value; + var name = $('db_name').value; + var prefix = $('db_prefix').value; + var args = { + 'url': 'precheck.php', + 'method': 'get', + 'params': 'mode=counttable&type=' + type + '&host=' + host + '&user=' + user + '&pass=' + pass + '&name=' + name + '&prefix=' + prefix, + 'onSuccess': callback.showCountResult + } + + // prefix could be an empty string, so we don't check it here + if ((host != '') && (user != '') && (pass != '') && (name != '')) { + if (!Core.Ajax(args)) { + alert('サーバとの通信に失敗しました。'); + } + } + } + }, + + /** + * Callback function for Ajax + */ + showLookupResult: function(req) { + var db_name = $('db_name'); + var install_submit = $('install_submit'); + + if (req.responseText.substring(0, 4) == '-ERR') { + db_name.disabled = true; + install_submit.disabled = true; + if (req.responseText.length > 4) { + $('db_err').innerHTML = req.responseText.substring(4); + Core.addClass($('db_err'), 'bad'); + } + } else { + var dbs = req.responseText.split(';'); + while (db_name.length > 0) { + db_name.removeChild(db_name.childNodes[0]); + } + + var node = document.createElement('option'); + node.value = '--'; + node.appendChild(document.createTextNode('選択してください')); + db_name.appendChild(node); + + for (i in dbs) { + var db = dbs[i]; + if (db == 'mysql') { + continue; + } + var node = document.createElement('option'); + node.value = db; + node.appendChild(document.createTextNode(db)); + db_name.appendChild(node); + } + + db_name.disabled = false; + install_submit.disabled = true; + } + }, + + /** + * Callback function when values were changed + */ + dataEntered: function() { + var type = $('db_type').value; + var host = $('db_host').value; + var user = $('db_user').value; + var pass = $('db_pass').value; + var args = { + 'url': 'precheck.php', + 'method': 'get', + 'params': 'mode=lookupdb&type=' + type + '&host=' + host + '&user=' + user + '&pass=' + pass, + 'onSuccess': callback.showLookupResult + } + if ((host != '') && (user != '') && (pass != '')) { + if (!Core.Ajax(args)) { + alert('サーバとの通信に失敗しました。'); + } + } + }, + + /** + * Change element into

    ' . LB; + if ($this->mode == 'upgrade') { + $retval .= '' . LB + . '' . LB + . '' . LB + . '' . LB + . '' . LB + . '' . LB; + } + + $retval .= '' . LB; + } + + return $retval; + } + + /** + * Step 4. Check DB settings + * + * @access private + */ + function _step4() + { + $this->writeSiteconfig(); + $mode = $this->mode; + $language = 'japanese_utf-8'; + $path = rawurlencode($this->path . 'db-config.php'); + + $params = "mode={$mode}&language={$language}&dbconfig_path={$path}"; + + $retval = << +

    Step 4. データベース情報入力

    +
    +
    + 情報 +

    + +

    +

    +

    + +

    + +

    +

    + +

    +

    + +

    +

    + +

    +

    + + + + +

    +
    +

    + +

    +
    +
    +EOD; + return $retval; + } + + /** + * Try to look up DB tables + * + * @access public + * @param string $_GET['type'], $_GET['host'], $_GET['user'], + * $_GET['name'], $_GET['pass'] + * @return string DB names separated by a semicolon when success, + * otherwise '-ERR'. + */ + function lookupDb() + { + $retval = array(); + $err = '-ERR'; + + $type = isset($_GET['type']) ? $_GET['type'] : ''; + $host = isset($_GET['host']) ? $_GET['host'] : ''; + $user = isset($_GET['user']) ? $_GET['user'] : ''; + $pass = isset($_GET['pass']) ? $_GET['pass'] : ''; + if ($host == 'localhost') { + $host = '127.0.0.1'; + } + + if (($type == 'mysql') OR ($type == 'mysql-innodb')) { + if (($db = @mysql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + $v = mysql_get_server_info($db); + if (version_compare($v, MIN_MYSQL_VERSION) < 0) { + $err .= 'MySQLのバージョン(' . $v . ')が低すぎます。最 低でも' . MIN_MYSQL_VERSION . 'が必要です。'; + return $err; + } + + if (($result = @mysql_list_dbs($db)) === FALSE) { + return $err; + } + + while (($A = mysql_fetch_object($result)) !== FALSE) { + $retval[] = $A->Database; + } + + $retval = implode(';', $retval); + if ($retval == '') { + $err .= 'データベースが作成されていません。phpMyAdminなどを利用して、 データベースを作成してください。'; + } + + return $retval; + } else { + if (($db = @mssql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + + + return ''; + } + } + + /** + * Return the number of tables in a given database + * + * @access public + * @param string $_GET['type'], $_GET['host'], $_GET['user'], + * $_GET['name'], $_GET['pass'], $_GET['prefix'] + * @return string '-ERR' = DB error, otherwise a string representong the + * number of tables the given DB has + */ + function countTable() + { + $err = '-ERR'; + + $type = isset($_GET['type']) ? $_GET['type'] : ''; + $host = isset($_GET['host']) ? $_GET['host'] : ''; + $user = isset($_GET['user']) ? $_GET['user'] : ''; + $pass = isset($_GET['pass']) ? $_GET['pass'] : ''; + $name = isset($_GET['name']) ? $_GET['name'] : ''; + $prefix = isset($_GET['prefix']) ? $_GET['prefix'] : ''; + if ($host == 'localhost') { + $host = '127.0.0.1'; + } + + if (($type == 'mysql') OR ($type == 'mysql-innodb')) { + if (($db = @mysql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + if (mysql_select_db($name, $db) === FALSE) { + return $err; + } + + // '_' is a wild character in MySQL, so we have to escape it with '\' + $prefix = str_replace('_', '\\_', $prefix); + if (($result = mysql_query("SHOW TABLES LIKE '{$prefix}%'", $db)) === FALSE) { + return $err; + } else { + $num = mysql_num_rows($result); + } + + if ($num === FALSE) { + return $err; + } else { + return (string) $num; + } + } else { + if (($db = @mssql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + + + return $err; + } + } +} + +//============================================================================= +// MAIN +//============================================================================= + +/** +* step 1. Check the path to "db-config.php" +* v +* step 2. Select install type +* v +* step 3. Check PHP settings and path permissions -- upgrade --+ +* v | +* step 4. Check DB settings | +* v | +* step 5. Redirect to public_html/admin/install/index.php <----+ +*/ + +// Get the request vars +$step = 0; +if (isset($_GET['step'])) { + $step = intval($_GET['step']); +} else if (isset($_POST['step'])) { + $step = intval($_POST['step']); +} +if (($step < 1) OR ($step > 4)) { + $step = 0; +} + +$mode = ''; +if (isset($_GET['mode'])) { + $mode = $_GET['mode']; +} else if (isset($_POST['mode'])) { + $mode = $_POST['mode']; +} +if (!in_array($mode, array('install', 'upgrade', 'info', 'lookupdb', 'counttable'))) { + $step = 2; +} + +$path = ''; +if (isset($_GET['path'])) { + $path = $_GET['path']; +} else if (isset($_POST['path'])) { + $path = $_POST['path']; +} +if ($path == '') { + $step = 0; +} else { + $path = str_replace("\\", '/', $path); + $path = rawurldecode($path); +} + +$p = new Precheck; +$p->mode = $mode; +$p->step = $step; +$p->path = $path; + +if ($mode == 'lookupdb') { + $result = $p->lookupDb(); + header('Content-Type: text/plain'); + echo $result; + exit; +} else if ($mode == 'counttable') { + $result = $p->countTable(); + header('Content-Type: text/plain'); + echo $result; + exit; +} + +$display = $p->getHeader(); +if ($mode == 'info') { + $display .= $p->getInfo($_GET['item']); +} else { + $display .= $p->getNav(); + + switch ($step) { + case 0: // Check PHP setting + $temp = $p->_step0(); + if ($temp != '') { + $display .= $temp; + break; + } + + /* Fall through intentionally */ + + case 1: // Check the path to "db-config.php" + $display .= $p->_step1(); + break; + + case 2: // Select install type + $display .= $p->_step2(); + break; + + case 3: // Check PHP settings and path permissions + $display .= $p->_step3(); + break; + + case 4: // Check DB settings + $display .= $p->_step4(); + break; + } +} + +$display .= $p->getFooter(); +echo $display; From codesite-noreply @ google.com Sun Mar 29 22:36:00 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 13:36:00 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1NCAtIHIxMzUzGyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <000e0cd4d91aee0e730466420bd6@google.com> Author: mystralkk Date: Sun Mar 29 06:28:03 2009 New Revision: 1354 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: r1353の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Sun Mar 29 06:28:03 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-29 mystral-kk + + * precheck(インストール前診断用スクリプト)を追加しました。 + 2009-03-28 mystral-kk * Issue #49によりよく対応しました。 From codesite-noreply @ google.com Sun Mar 29 22:40:01 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 13:40:01 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1NSAtIHIxMzUzGyRCJE45OT83JHIbKEJnZWVrbG9n?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQbJEIkSyRiRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <0016362839604978e60466421a27@google.com> Author: mystralkk Date: Sun Mar 29 06:29:38 2009 New Revision: 1355 Added: trunk/geeklog-1-jp-extended/public_html/admin/install/core.js (contents, props changed) trunk/geeklog-1-jp-extended/public_html/admin/install/fb.php (contents, props changed) trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.css (contents, props changed) trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.js (contents, props changed) trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.php (contents, props changed) Log: r1353の更新をgeeklog-1-jp-extendedにも適用します。 Added: trunk/geeklog-1-jp-extended/public_html/admin/install/core.js ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/core.js Sun Mar 29 06:29:38 2009 @@ -0,0 +1,338 @@ +/* +The MIT License + +Copyright (c) 2007 SitePoint Pty. Ltd. http://www.sitepoint.com/ + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +*/ + +if (typeof Core == "undefined") { + +if (!window.$) { + window.$ = function(id) {return document.getElementById(id);}; +} + +var Core = {}; +// W3C DOM 2 Events model +if (document.addEventListener) { + Core.addEventListener = function(target, type, listener) + { + target.addEventListener(type, listener, false); + }; + + Core.removeEventListener = function(target, type, listener) + { + target.removeEventListener(type, listener, false); + }; + + Core.preventDefault = function(event) + { + event.preventDefault(); + }; + + Core.stopPropagation = function(event) + { + event.stopPropagation(); + }; +} else if (document.attachEvent) { + // Internet Explorer Events model + Core.addEventListener = function(target, type, listener) + { + // prevent adding the same listener twice, since DOM 2 Events ignores + // duplicates like this + if (Core._findListener(target, type, listener) != -1) return; + + // listener2 calls listener as a method of target in one of two ways, + // depending on what this version of IE supports, and passes it the global + // event object as an argument + var listener2 = function() + { + var event = window.event; + + if (Function.prototype.call) { + listener.call(target, event); + } else { + target._currentListener = listener; + target._currentListener(event); + target._currentListener = null; + } + }; + + // add listener2 using IE's attachEvent method + target.attachEvent("on" + type, listener2); + + // create an object describing this listener so we can clean it up later + var listenerRecord = + { + target: target, + type: type, + listener: listener, + listener2: listener2 + }; + + // get a reference to the window object containing target + var targetDocument = target.document || target; + var targetWindow = targetDocument.parentWindow; + + // create a unique ID for this listener + var listenerId = "l" + Core._listenerCounter++; + + // store a record of this listener in the window object + if (!targetWindow._allListeners) targetWindow._allListeners = {}; + targetWindow._allListeners[listenerId] = listenerRecord; + + // store this listener's ID in target + if (!target._listeners) target._listeners = []; + target._listeners[target._listeners.length] = listenerId; + + // set up Core._removeAllListeners to clean up all listeners on unload + if (!targetWindow._unloadListenerAdded) { + targetWindow._unloadListenerAdded = true; + targetWindow.attachEvent("onunload", Core._removeAllListeners); + } + }; + + Core.removeEventListener = function(target, type, listener) + { + // find out if the listener was actually added to target + var listenerIndex = Core._findListener(target, type, listener); + if (listenerIndex == -1) return; + + // get a reference to the window object containing target + var targetDocument = target.document || target; + var targetWindow = targetDocument.parentWindow; + + // obtain the record of the listener from the window object + var listenerId = target._listeners[listenerIndex]; + var listenerRecord = targetWindow._allListeners[listenerId]; + + // remove the listener, and remove its ID from target + target.detachEvent("on" + type, listenerRecord.listener2); + target._listeners.splice(listenerIndex, 1); + + // remove the record of the listener from the window object + delete targetWindow._allListeners[listenerId]; + }; + + Core.preventDefault = function(event) + { + event.returnValue = false; + }; + + Core.stopPropagation = function(event) + { + event.cancelBubble = true; + }; + + Core._findListener = function(target, type, listener) + { + // get the array of listener IDs added to target + var listeners = target._listeners; + if (!listeners) return -1; + + // get a reference to the window object containing target + var targetDocument = target.document || target; + var targetWindow = targetDocument.parentWindow; + + // searching backward (to speed up onunload processing), find the listener + for (var i = listeners.length - 1; i >= 0; i --) { + // get the listener's ID from target + var listenerId = listeners[i]; + + // get the record of the listener from the window object + var listenerRecord = targetWindow._allListeners[listenerId]; + + // compare type and listener with the retrieved record + if (listenerRecord.type == type && listenerRecord.listener == listener) { + return i; + } + } + return -1; + }; + + Core._removeAllListeners = function() + { + var targetWindow = this; + + for (id in targetWindow._allListeners) { + var listenerRecord = targetWindow._allListeners[id]; + listenerRecord.target.detachEvent("on" + listenerRecord.type, listenerRecord.listener2); + delete targetWindow._allListeners[id]; + } + }; + + Core._listenerCounter = 0; +} + +Core.addClass = function(target, theClass) +{ + if (!Core.hasClass(target, theClass)) { + if (target.className == "") { + target.className = theClass; + } else { + target.className += " " + theClass; + } + } +}; + +Core.getElementsByClass = function(theClass) +{ + var elementArray = []; + + if (typeof document.all != "undefined") { + elementArray = document.all; + } else { + elementArray = document.getElementsByTagName("*"); + } + + var matchedArray = []; + var pattern = new RegExp("(^| )" + theClass + "( |$)"); + + for (var i = 0; i < elementArray.length; i ++) { + if (pattern.test(elementArray[i].className)) { + matchedArray[matchedArray.length] = elementArray[i]; + } + } + + return matchedArray; +}; + +Core.hasClass = function(target, theClass) +{ + var pattern = new RegExp("(^| )" + theClass + "( |$)"); + + if (pattern.test(target.className)) { + return true; + } + + return false; +}; + +Core.removeClass = function(target, theClass) +{ + var pattern = new RegExp("(^| )" + theClass + "( |$)"); + + target.className = target.className.replace(pattern, "$1"); + target.className = target.className.replace(/ $/, ""); +}; + +Core.getComputedStyle = function(element, styleProperty) +{ + var computedStyle = null; + + if (typeof element.currentStyle != "undefined") { + computedStyle = element.currentStyle; + } else { + computedStyle = document.defaultView.getComputedStyle(element, null); + } + + return computedStyle[styleProperty]; +}; + +Core.start = function(runnable) +{ + var initOnce = function() + { + if (arguments.callee.done) { + return; + } else { + arguments.callee.done = true; + runnable.init(); + } + } + + Core.addEventListener(document, "DOMContentLoaded", initOnce); + Core.addEventListener(window, "load", initOnce); +}; + +/** +* @param hash options +* url: request URL +* method: "get" or "post" +* params: parameters +* onSuccess: call back functon +* onFail: call back functon +*/ +Core.Ajax = function(args) +{ + try { + var oReq = new XMLHttpRequest(); + } catch (e) { + try { + var oReq = new ActiveXObject("Microsoft.XMLHTTP"); + } catch (e) { + var oReq = null; + return false; + } + } + + oReq.onreadystatechange = function() + { + if (oReq.readyState == 4) { + if (oReq.status == 200 || oReq.status == 304) { + if (typeof args.onSuccess == "function") { + args.onSuccess(oReq); + } else { + throw "onSuccess handler is not defined."; + } + } else { + if (typeof args.onFailure == "function") { + args.onFailure(oReq); + } else { + throw "onFailure handler is not defined."; + } + } + } + } + + if (args.method.toLowerCase() == "get") { + args.url += "?" + args.params; + args.params = null; + } + + oReq.open(args.method, args.url, true); + oReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + oReq.send(args.params); + return true; +}; + +/** +* Load JavaScript file dynamically +*/ +Core.loadJS = function(URL) +{ + var script = document.createElement("script"); + script.setAttribute("type", "text/javascript"); + script.src = URL; + document.getElementsByTagName("head")[0].appendChild(script); +}; + +/** +* Load CSS file dynamically +*/ +Core.loadCSS = function(URL) +{ + var link = document.createElement("link"); + link.setAttribute("type", "text/css"); + link.setAttribute("rel", "stylesheet"); + link.setAttribute("href", URL); + document.getElementsByTagName("head")[0].appendChild(link); +}; + +} // End of Core class Added: trunk/geeklog-1-jp-extended/public_html/admin/install/fb.php ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/fb.php Sun Mar 29 06:29:38 2009 @@ -0,0 +1,234 @@ + +* @date 2009-01-12 +* @version 1.3.0 +* @license GPLv2 or later +*/ +define('DS', DIRECTORY_SEPARATOR); +define('LB', "\n"); +define('OS_WIN', strcasecmp(substr(PHP_OS, 0, 3), 'WIN') === 0); +define('TARGET', 'db-config.php'); + +// Display an icon image + +if (isset($_GET['mode']) AND ($_GET['mode'] == 'img1')) { + header('Content-Type: image/gif'); + echo base64_decode( + 'R0lGODlhJAAZAOYAAP/zWf/bQP/aPv/4Xv/eQ//eO//8Yv7bNf//X//7Yv/3X//e' + . 'RPnWPMa5cNra 2f/bPPPy9MCuWcy2S/3+/tTT0PXTO/T0+//bO+bl5uzs7PDwZ/b' + . '4/fv8aoiIi8+8S8fIy8S7j/zY P//hObGyuv/cPu/NNpmRauzNRfTUQuDh6tPQlt' + . 'O/Tvv7+9e/QtPThbqnS7qrafrVNMjJ0Pv8//n5 /tvASeroXM/OyNTOp+/x+dDNh' + . 'Onoa7Ore8XDe/n5+Z6hqd7e3da7Rs/MuOfGOpWPed3ZZrOtk6Wa ZY+QlpeSefvf' + . 'RfrZO/7sUsq0VcWwTcvGqP/0WdvPYKGjrby7udC3SM+1RtPKipmanuHFRNrLV+3S' + . 'NvziSfT1a+bJTP3ZPPvzXOTidf3XLv/ZP/PWN6ugcrSxp8WsQ7y+ydfVcNPDUfnY' + . 'Pf/zUf/tTOfp 9MDCyeTkm/f5at3bWuXm7/XYQI+LdMLAsf/4VvzlSP/rUf/iSP/' + . 'nTf/uVf/+Zf/ZPv//Zv///yH5 BAAAAAAALAAAAAAkABkAAAf/gH+Cg4SFhTQQEB' + . 'YWGUAUDhOGhBMbOTOEM4sQGBRCOCA8PSo6YDs2 aBSSGxgOOFYNdSkON0IgDbcNR' + . 'XE2Nhp8CMB8fggqhhsgXSclMQdBETVYQ8thLRp+19jZw2+GFBEH Fw8CfRcH5hUn' + . '6VEc2u18LoYNFeN9fQ8VWCtZUUU7Guzt2vUwBCIGPQEVsuzgAgdgwIB8Bha60aJA' + . 'PS8rrAnzw6ejx48gf8Er1AbGATF9GKThYKBlApcvX7qcmSABgpGEaBgpQSLlCgUD' + . 'gA4YGnSoUAVC jSLQIcmNkwICGHj4AgWA1atYr1bFaoepoRQmo3rYQ7as2bNo11i' + . 'RpJOnVCZM7/DInUu3Ll02xSR9 qFKAgQQ9gAMLHkz4Tl5DckyqkbAlj+PHkCNHVo' + . 'JD0p8ZZYZckKCEwALPnz8TGD1atOfRc55Y/uOt gIQQAWLLji1gdu3YJEiIGKPac' + . 'g4eWqqEoFevuPE+Ah6IELGkQpAXN1b/mdKCyvDjxh8UKLAEhYQX JohcOeNDugMn' + . '1okn337hAgoPEUzQ6SBFRooN0gX9NiNg/XYUNTRhgglJdHDFCDJgwEJ+hUzxgggF' + . 'ANjEEUR0gMQPI3wABASRCDJBhwymQEYERxR4YYYOZFAeg9L5IIMUGH7gAAYQLMgi' + . 'i4xkUOON+QUC ADs=' + ); + exit; +} + +if (isset($_GET['mode']) AND ($_GET['mode'] == 'img2')) { + header('Content-Type: image/gif'); + echo base64_decode( + 'R0lGODlhEQAVAOZEAPr6+ubm5r6+vvLy8u7u7rOzs/f39/j39+np6aurq/Lx8v7/' + . '//r6+////vr7+u7u7+7v7u/v7vz8/Pf499HR0ff3+KampsHBwenp6PLy8fX19f/+' + . '//Hy8vf39vr5+u/u7/Lx8f38/fX19PDv7urr6vHw8by8vPf4+KCgoObm5evr6/r7' + . '++Dg4P38/OPj4+jp6e7v7/7+/u/v7+jp6OTk5Pj4+fj3+Nzc3MnJyf7+///+/uHh' + . '4fPz89/f3+Li4vv7+6Ojo6enp5ycnP///////wAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' + . 'AAAAAAAAAAAAAAAAACH5BAEAAEQALAAAAAARABUAAAfTgBQJFkGFhoeFQDgJBhI/' + . 'j5CRj0NAQT9DmJmampWXm5+YnUNCpKWmQqGWoKCVDA0LQzk6rzELDZgbG5U1Eqe+' + . 'IS2VHQDEACsMxQweDsyVPBU2BycGBgcT1tUGFZUlGr6nGiKVBAMcChnnCgPr6wog' + . 'lSQEBBEEEDIREA8PHyMEMJUzVPhCAaRgwQuVUiBAgOHFQgxANgkQEMRFgIsYA0TM' + . 'JKAAkSA7aPjaOKQjkY89fKhc6WOjyZNBUrJUGfHlyQQ3WPTYydOEzZOCCCEKcuGk' + . 'USKBAAA7' + ); + exit; +} + +if (isset($_GET['mode']) AND ($_GET['mode'] == 'imglogo')) { + header('Content-Type: image/jpeg'); + echo base64_decode( + '/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAACgAA/+4ADkFkb2Jl' + . 'AGTAAAAAAf/bAIQAFBAQGRIZJxcXJzImHyYyLiYmJiYuPjU1NTU1PkRBQUFBQUFE' + . 'RERERERERERERERERERERERERERERERERERERAEVGRkgHCAmGBgmNiYgJjZENisr' + . 'NkREREI1QkRERERERERERERERERERERERERERERERERERERERERERERERERE/8AA' + . 'EQgAOACXAwEiAAIRAQMRAf/EAI0AAQADAQEBAAAAAAAAAAAAAAADBAUBAgYBAQEB' + . 'AQEBAAAAAAAAAAAAAAABAwIEBRAAAQMCAwQIBAQEBwAAAAAAAQACAxEEIRIFMUFR' + . 'E2FxgZGhIlIU0TKSM7HBQmLwcoKiwiNDUyQ0BhEAAgICAgIBBAMAAAAAAAAAAAER' + . 'AhIDITFBUWFxkSIyQoIU/9oADAMBAAIRAxEAPwD7NFDcXDbdnMfUioFBxJoPFQCO' + . '4uPuHlM9DD5u127+n6kB7ub+K28rjV52Rs8zj2D8dipNfqE7hIGiMA/I84U6drif' + . 'pp0q81lvZNwysB2neeveSuC7MgrCwvHqPlHj8F0qt8+PYPBtp5PuTEDhE0N8TmPc' + . 'QuQN9tOYauLXtztzuLjVuDsT1tNOtRTvvyKsa0dWJ8VELh0kLJ34SQPGf+U+V39p' + . 'r1hdPW1XKU/oSTYREWZQiIgCIsS2v5ZLvIT5CXDKtKUdlZr+PJJNtEWLfX00NzkY' + . 'aNGXDilKO7xqG4NpERZlCIiAIiIDOkB1EOYCWwVLXOG15HDg0HftO7DE+X3E3tXU' + . 'NJYjkf2b+0UcpZQbN5mb9px/zW+k+sf4vq415M1rJg//AE5hy39f6T24j6V1Vw02' + . 'DM02393KZJauDdtd5Wpfag20o0CrjuUWkM5bZIzta+hWZrAcLhx4gZe74r2Qtm3G' + . '361XCOekWm/+gazGZoA4g/FVHas10khLDklblo7y13b8Tv2ArNgkgYKnF+Gx1HbM' + . 'c1AZK1rgMo4LZtoZIGumkiawDK5py0dWuO9zjh6j2LB2TeNK45cFIm65MIxHRuYU' + . 'Y52NQekOA20OK9m8vYKSSVofU3BVb+B0d+7LQB5ZK08TTL1YHMe1X5be/laWyGrT' + . 'txatdSSqssYfvsjL7dSYbfnndhl/dwWYL28uSXRVoNzQq8tu+GEEkFpd+k1xoprJ' + . 't26P/jny16Nq0WulU7LF88ZdEkuafqbpH8mb5jsOzsKoWZAvATszO/NSx2M/uGuk' + . 'LQ6od8wr3KnynTTFjdpLqLutafni1DrzHgGjdatI6QMttlaVpXMq2okm582Boyvc' + . 'F3S5mQTUlFCfKCf0lNU/7Z/pUrVVvhWsLHv2PBe1HUzA7lRfNvdwVEahdxEOeTQ+' + . 'puBXl1BenmbOZjXhVbGqlvtnZujL11XEVphTHLLtl7DdRYbczndhl/dwWSdQu5nE' + . 'srQbmt2KqA7kH05m99Ct3RsvIw21OZLUrqVrY5c/YnZmu1i4JFCBTdTai5KWe+Bb' + . '8udv5V8UW2FMcsF1MEln0iyp4TCw21aRP+y7/bfta3qqPL9PBaq8SxNmYY3irSKE' + . 'L5RoZcV01krJz5WTtFf2vH8UVq/sBdgEGjxsKy5Ld7Ipbd5zOidzWO9THbfGteld' + . 's5r1oDY2lzd2cYd+H4r1Vq3VbK2i1eHJz8E1tormvDpXAgY0bvUus3IbHyR8ztvU' + . 'pwy8kHncyP8AkFT4qJ1ja2/nndUnfI7amayV9tpx6SEeijeQOuo7aVvzGsRr1fFt' + . 'O1eRp147yGuXpdh+Kv3Eomi5drG5xBa5hDcratNRi7L4LUXK3usqqUTKnwWDOh0t' + . 'rYHQyGpca1G49CznaXdQk8vEcWup8F9Eild9035n2IMWz0qRsglmNKGtK1JXq302' + . 'SO65ppkBJB61sIj33c/KgQZWo6YZ3cyKmY/MOPSoJNKne9hJBwaHHqW4iLfdJL0I' + . 'MvUdM9weZHg/eDvVBulXTyGvFAN5dVfRold96rEQUXWUMVsYXmjdpcePFZbdKuAa' + . 'xuBaf1Nctm9tRdR5CaY1BWOdIuW4NIoeBWuq/Dm8NvlMjRSdABLyg4HENzbkWtBo' + . '+Rri8gvLXBvAEhFt/orOE/2JBsIiL5p2UrwGJ8dw0E5TkeGipyO6BwdlPVVd9xPJ' + . '9qKg9Upy+Aqe+iIgOe1mkxmmNPTEMg78XdzgpobOGE1YwB3q2u7ziiICdERAEREA' + . 'REQBERAEREAREQBERAf/2Q==' + ); + exit; +} + +/** +* Convert charset of a string to SJIS +*/ +function convertCharset($str) { + if (OS_WIN) { + return mb_convert_encoding($str, 'utf-8', 'sjis'); + } else { + return $str; + } +} + +if (isset($_GET['path'])) { + $path = $_GET['path']; +} else { + $path = dirname(__FILE__); +} +if (isset($_GET['mode'])) { + $mode = $_GET['mode']; +} else { + $mode = 'install'; +} + +$result = FALSE; +$header = << + + + + + Geeklog インストール前 ファイルブラウザ + + + +

    Geeklog インストール前 ファイルブラウザ

    +EOD; + +$body = '

    現在のパ ス:' + . convertCharset($path) . '

    ' . LB; + +$parent = @realpath($path . DS . '..'); +if ($parent !== FALSE) { + $body .= '

    [一つ上のフォルダへ]

    ' . LB; +} + +if (($dh = @opendir($path)) === FALSE) { + $body .= '

    エラー:ディレクトリを開けません。検索を終了します。

    ' . LB; +} else { + while (($entry = readdir($dh)) !== FALSE) { + $fullpath = $path . DS . $entry; + if (is_dir($fullpath)) { + if (($entry != '.') AND ($entry != '..')) { + $body .= 'フォルダのアイコン' + . htmlspecialchars(convertCharset($entry), ENT_QUOTES) + . '
    ' . LB; + } + } else { + if ($entry == TARGET) { + $body .= 'ファイルのアイコン ' + . '' + . TARGET . ' [このファイルを使用する]
    ' . LB; + $result = TRUE; + } + } + } + + closedir($dh); +} + +if ($result === TRUE) { + $msg = '

    ' . TARGET . 'が見つかりまし た。このファイルでよければ、[このファイルを使用する]をクリ ックしてください。

    ' . LB; +} else { + $msg = '

    下に表示されているリンクをクリックして、 ' . TARGET . 'を探してください。

    ' . LB; +} + +echo $header . $msg . $body; Added: trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.css ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.css Sun Mar 29 06:29:38 2009 @@ -0,0 +1,140 @@ +/** +* CSS for precheck.php +* +* @author mystral-kk +* @date 2009-01-12 +* @version 1.3.0 +* @license GPLv2 or later +*/ + + @ charset "utf-8"; + +body { + margin-left: 30px; +} + +li { + margin: 10px; + line-height: 1.5em; +} + +code { + padding: 2px; background-color: black; color: white; +} + +h1 { + font-size: 1.8em; +} + +h2 { + clear: both; + margin-top: 20px; + font-size: 1.5em; + border-left: solid 10px #6b6bff; + padding-left: 5px; +} + +a { + color: blue; +} + +a:visited { + color: blue; +} + +a:hover { + text-decoration: none; + color: white; + background-color: blue; +} + +.good { + padding: 2px; + border: solid 1px #006633; + background-color: #ccff99; +} + +.warning { + padding: 2px; + border: solid 1px #ffcc00; + background-color: #ffff66; +} + + +.bad { + visibility: visible; + padding: 2px; + border: solid 1px #cc3333; + background-color: #ffccff; +} + +.hidden { + visibility: hidden; +} + +.infobox { + padding: 5px; + border: solid 1px #cc3333; + background-color: #ffccff; +} + +.large { + font-size: 1.8em; +} + +.small { + font-size: 0.8em; +} + +.center { + text-align: center; +} + +.right { + text-align: right; +} + +.normal { + color: #6b6bff; + font-weight: bold; + background-color: white; +} + +.hilight { + color: white; + font-weight: bold; + background-color: #6b6bff; +} + +.lbl { + display: block; + float: left; + width: 14em; +} + +div#container { + margin-top: 20px; + width: 780px; +} + +fieldset { + width: 660px; +} + +input:focus { + background-color: #ffff66; +} + +ul.navi { + margin: 0 0 30px 0; + padding: 0; +} + +ul.navi li { + margin: 0px; + padding: 1px; + float: left; + list-style: none; + font-size: 0.9em; + border: solid 1px black; +} Added: trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.js ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/precheck.js Sun Mar 29 06:29:38 2009 @@ -0,0 +1,150 @@ +/** +* Check DB settings as a part of Precheck for Geeklog +* +* @author mystral-kk +* @date 2009-02-03 +* @version 1.3.2 +* @license GPLv2 or later +* @note This script (precheck.js) needs 'core.js' published +* by SitePoint Pty. Ltd. +*/ +var callback = { + /** + * Callback function when a database was selected + */ + showCountResult: function(req) { + var install_submit = $('install_submit'); + var db_name_warning = $('db_name_warning'); + + if ((req.responseText == '-ERR') || (parseInt(req.responseText) > 0)) { + install_submit.disabled = true; + Core.removeClass(db_name_warning, 'hidden'); + Core.addClass(db_name_warning, 'bad'); + } else { + install_submit.disabled = false; + Core.removeClass(db_name_warning, 'bad'); + Core.addClass(db_name_warning, 'hidden'); + } + }, + + /** + * Callback function when db_name selection was changed + */ + dbSelected: function() { + $('install_submit').disabled = true; + $('db_name_warning').setAttribute('class', 'hidden'); + + if ($('db_name').value != '--') { + var type = $('db_type').value; + var host = $('db_host').value; + var user = $('db_user').value; + var pass = $('db_pass').value; + var name = $('db_name').value; + var prefix = $('db_prefix').value; + var args = { + 'url': 'precheck.php', + 'method': 'get', + 'params': 'mode=counttable&type=' + type + '&host=' + host + '&user=' + user + '&pass=' + pass + '&name=' + name + '&prefix=' + prefix, + 'onSuccess': callback.showCountResult + } + + // prefix could be an empty string, so we don't check it here + if ((host != '') && (user != '') && (pass != '') && (name != '')) { + if (!Core.Ajax(args)) { + alert('サーバとの通信に失敗しました。'); + } + } + } + }, + + /** + * Callback function for Ajax + */ + showLookupResult: function(req) { + var db_name = $('db_name'); + var install_submit = $('install_submit'); + + if (req.responseText.substring(0, 4) == '-ERR') { + db_name.disabled = true; + install_submit.disabled = true; + if (req.responseText.length > 4) { + $('db_err').innerHTML = req.responseText.substring(4); + Core.addClass($('db_err'), 'bad'); + } + } else { + var dbs = req.responseText.split(';'); + while (db_name.length > 0) { + db_name.removeChild(db_name.childNodes[0]); + } + + var node = document.createElement('option'); + node.value = '--'; + node.appendChild(document.createTextNode('選択してください')); + db_name.appendChild(node); + + for (i in dbs) { + var db = dbs[i]; + if (db == 'mysql') { + continue; + } + var node = document.createElement('option'); + node.value = db; + node.appendChild(document.createTextNode(db)); + db_name.appendChild(node); + } + + db_name.disabled = false; + install_submit.disabled = true; + } + }, + + /** + * Callback function when values were changed + */ + dataEntered: function() { + var type = $('db_type').value; + var host = $('db_host').value; + var user = $('db_user').value; + var pass = $('db_pass').value; + var args = { + 'url': 'precheck.php', + 'method': 'get', + 'params': 'mode=lookupdb&type=' + type + '&host=' + host + '&user=' + user + '&pass=' + pass, + 'onSuccess': callback.showLookupResult + } + if ((host != '') && (user != '') && (pass != '')) { + if (!Core.Ajax(args)) { + alert('サーバとの通信に失敗しました。'); + } + } + }, + + /** + * Change element into

    ' . LB; + if ($this->mode == 'upgrade') { + $retval .= '' . LB + . '' . LB + . '' . LB + . '' . LB + . '' . LB + . '' . LB; + } + + $retval .= '' . LB; + } + + return $retval; + } + + /** + * Step 4. Check DB settings + * + * @access private + */ + function _step4() + { + $this->writeSiteconfig(); + $mode = $this->mode; + $language = 'japanese_utf-8'; + $path = rawurlencode($this->path . 'db-config.php'); + + $params = "mode={$mode}&language={$language}&dbconfig_path={$path}"; + + $retval = << +

    Step 4. データベース情報入力

    +
    +
    + 情報 +

    + +

    +

    +

    + +

    + +

    +

    + +

    +

    + +

    +

    + +

    +

    + + + + +

    +
    +

    + +

    +
    + +EOD; + return $retval; + } + + /** + * Try to look up DB tables + * + * @access public + * @param string $_GET['type'], $_GET['host'], $_GET['user'], + * $_GET['name'], $_GET['pass'] + * @return string DB names separated by a semicolon when success, + * otherwise '-ERR'. + */ + function lookupDb() + { + $retval = array(); + $err = '-ERR'; + + $type = isset($_GET['type']) ? $_GET['type'] : ''; + $host = isset($_GET['host']) ? $_GET['host'] : ''; + $user = isset($_GET['user']) ? $_GET['user'] : ''; + $pass = isset($_GET['pass']) ? $_GET['pass'] : ''; + if ($host == 'localhost') { + $host = '127.0.0.1'; + } + + if (($type == 'mysql') OR ($type == 'mysql-innodb')) { + if (($db = @mysql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + $v = mysql_get_server_info($db); + if (version_compare($v, MIN_MYSQL_VERSION) < 0) { + $err .= 'MySQLのバージョン(' . $v . ')が低すぎます。最 低でも' . MIN_MYSQL_VERSION . 'が必要です。'; + return $err; + } + + if (($result = @mysql_list_dbs($db)) === FALSE) { + return $err; + } + + while (($A = mysql_fetch_object($result)) !== FALSE) { + $retval[] = $A->Database; + } + + $retval = implode(';', $retval); + if ($retval == '') { + $err .= 'データベースが作成されていません。phpMyAdminなどを利用して、 データベースを作成してください。'; + } + + return $retval; + } else { + if (($db = @mssql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + + + return ''; + } + } + + /** + * Return the number of tables in a given database + * + * @access public + * @param string $_GET['type'], $_GET['host'], $_GET['user'], + * $_GET['name'], $_GET['pass'], $_GET['prefix'] + * @return string '-ERR' = DB error, otherwise a string representong the + * number of tables the given DB has + */ + function countTable() + { + $err = '-ERR'; + + $type = isset($_GET['type']) ? $_GET['type'] : ''; + $host = isset($_GET['host']) ? $_GET['host'] : ''; + $user = isset($_GET['user']) ? $_GET['user'] : ''; + $pass = isset($_GET['pass']) ? $_GET['pass'] : ''; + $name = isset($_GET['name']) ? $_GET['name'] : ''; + $prefix = isset($_GET['prefix']) ? $_GET['prefix'] : ''; + if ($host == 'localhost') { + $host = '127.0.0.1'; + } + + if (($type == 'mysql') OR ($type == 'mysql-innodb')) { + if (($db = @mysql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + if (mysql_select_db($name, $db) === FALSE) { + return $err; + } + + // '_' is a wild character in MySQL, so we have to escape it with '\' + $prefix = str_replace('_', '\\_', $prefix); + if (($result = mysql_query("SHOW TABLES LIKE '{$prefix}%'", $db)) === FALSE) { + return $err; + } else { + $num = mysql_num_rows($result); + } + + if ($num === FALSE) { + return $err; + } else { + return (string) $num; + } + } else { + if (($db = @mssql_connect($host, $user, $pass)) === FALSE) { + return $err; + } + + + + return $err; + } + } +} + +//============================================================================= +// MAIN +//============================================================================= + +/** +* step 1. Check the path to "db-config.php" +* v +* step 2. Select install type +* v +* step 3. Check PHP settings and path permissions -- upgrade --+ +* v | +* step 4. Check DB settings | +* v | +* step 5. Redirect to public_html/admin/install/index.php <----+ +*/ + +// Get the request vars +$step = 0; +if (isset($_GET['step'])) { + $step = intval($_GET['step']); +} else if (isset($_POST['step'])) { + $step = intval($_POST['step']); +} +if (($step < 1) OR ($step > 4)) { + $step = 0; +} + +$mode = ''; +if (isset($_GET['mode'])) { + $mode = $_GET['mode']; +} else if (isset($_POST['mode'])) { + $mode = $_POST['mode']; +} +if (!in_array($mode, array('install', 'upgrade', 'info', 'lookupdb', 'counttable'))) { + $step = 2; +} + +$path = ''; +if (isset($_GET['path'])) { + $path = $_GET['path']; +} else if (isset($_POST['path'])) { + $path = $_POST['path']; +} +if ($path == '') { + $step = 0; +} else { + $path = str_replace("\\", '/', $path); + $path = rawurldecode($path); +} + +$p = new Precheck; +$p->mode = $mode; +$p->step = $step; +$p->path = $path; + +if ($mode == 'lookupdb') { + $result = $p->lookupDb(); + header('Content-Type: text/plain'); + echo $result; + exit; +} else if ($mode == 'counttable') { + $result = $p->countTable(); + header('Content-Type: text/plain'); + echo $result; + exit; +} + +$display = $p->getHeader(); +if ($mode == 'info') { + $display .= $p->getInfo($_GET['item']); +} else { + $display .= $p->getNav(); + + switch ($step) { + case 0: // Check PHP setting + $temp = $p->_step0(); + if ($temp != '') { + $display .= $temp; + break; + } + + /* Fall through intentionally */ + + case 1: // Check the path to "db-config.php" + $display .= $p->_step1(); + break; + + case 2: // Select install type + $display .= $p->_step2(); + break; + + case 3: // Check PHP settings and path permissions + $display .= $p->_step3(); + break; + + case 4: // Check DB settings + $display .= $p->_step4(); + break; + } +} + +$display .= $p->getFooter(); +echo $display; From codesite-noreply @ google.com Sun Mar 29 22:44:02 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 13:44:02 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1NiAtIHIxMzU1GyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <00163662e657a3595b04664228b9@google.com> Author: mystralkk Date: Sun Mar 29 06:31:18 2009 New Revision: 1356 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1355の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Sun Mar 29 06:31:18 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-29 mystral-kk + + * precheck(インストール前診断用スクリプト)を追加しました。 + 2009-03-28 mystral-kk * Issue#49によりよく対応しました。 From codesite-noreply @ google.com Sun Mar 29 23:15:08 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 14:15:08 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1NyAtIHIxMzUzLCByMTM1NBskQiRyJV4hPCU4GyhC?= =?ISO-2022-JP?B?GyRCJDckXiQ3JD8hIxsoQg==?= Message-ID: <0016e644de6ce0d62804664297ec@google.com> Author: tacahi Date: Sun Mar 29 07:14:44 2009 New Revision: 1357 Added: branches/geeklog-new-tree/public_html/admin/install/core.js - copied unchanged from r1353, /trunk/geeklog-1-jp/public_html/admin/install/core.js branches/geeklog-new-tree/public_html/admin/install/fb.php - copied unchanged from r1353, /trunk/geeklog-1-jp/public_html/admin/install/fb.php branches/geeklog-new-tree/public_html/admin/install/precheck.css - copied unchanged from r1353, /trunk/geeklog-1-jp/public_html/admin/install/precheck.css branches/geeklog-new-tree/public_html/admin/install/precheck.js - copied unchanged from r1353, /trunk/geeklog-1-jp/public_html/admin/install/precheck.js branches/geeklog-new-tree/public_html/admin/install/precheck.php - copied unchanged from r1353, /trunk/geeklog-1-jp/public_html/admin/install/precheck.php Modified: branches/geeklog-new-tree/CHANGES.jp (contents, props changed) Log: r1353, r1354をマージしました。 Modified: branches/geeklog-new-tree/CHANGES.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES.jp (original) +++ branches/geeklog-new-tree/CHANGES.jp Sun Mar 29 07:14:44 2009 @@ -1,5 +1,9 @@ $Id$ +2009-03-29 mystral-kk + + * precheck(インストール前診断用スクリプト)を追加しました。 + 2009-03-28 mystral-kk * Issue #49によりよく対応しました。 From codesite-noreply @ google.com Sun Mar 29 23:19:09 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 29 Mar 2009 14:19:09 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1OCAtIBskQiQ1JGkkSzojRnwkTkpROTkbKEI=?= =?ISO-2022-JP?B?GyRCRUAkcjUtPVIkNyReJDckPyEjGyhC?= Message-ID: <00151750dbe23532de046642a61d@google.com> Author: tacahi Date: Sun Mar 29 07:16:44 2009 New Revision: 1358 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: さらに今日の変更点を記述しました。 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES-new-tree.jp (original) +++ branches/geeklog-new-tree/CHANGES-new-tree.jp Sun Mar 29 07:16:44 2009 @@ -2,6 +2,8 @@ 2009-03-29 Takahiro Kambe + * r1353, r1354を取り込みました。(precheckを追加) + * r1346, r1347を取り込みました。(Issue #49によりよい対応) * r1344, r1345を取り込みました。(mycaljpプラグインのバージョン2.0.6に From codesite-noreply @ google.com Tue Mar 31 12:56:45 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 03:56:45 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM1OSAtIEdlZWtsb2cgMS41LjJzcjEbJEIkciUkGyhC?= =?ISO-2022-JP?B?GyRCJXMlXSE8JUgkNyReJDkhIxsoQg==?= Message-ID: <0016e645abf405dc4f0466623091@google.com> Author: tacahi Date: Mon Mar 30 18:39:21 2009 New Revision: 1359 Added: externals/geeklog-1.5.2sr1/ externals/geeklog-1.5.2sr1/INSTALL (contents, props changed) externals/geeklog-1.5.2sr1/backups/ externals/geeklog-1.5.2sr1/backups/README (contents, props changed) externals/geeklog-1.5.2sr1/data/ externals/geeklog-1.5.2sr1/data/README (contents, props changed) externals/geeklog-1.5.2sr1/db-config.php (contents, props changed) externals/geeklog-1.5.2sr1/emailgeeklogstories (contents, props changed) externals/geeklog-1.5.2sr1/language/ externals/geeklog-1.5.2sr1/language/afrikaans.php (contents, props changed) externals/geeklog-1.5.2sr1/language/afrikaans_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/bosnian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/bosnian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/bulgarian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/bulgarian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/catalan.php (contents, props changed) externals/geeklog-1.5.2sr1/language/catalan_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/croatian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/croatian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/czech.php (contents, props changed) externals/geeklog-1.5.2sr1/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/danish.php (contents, props changed) externals/geeklog-1.5.2sr1/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/dutch.php (contents, props changed) externals/geeklog-1.5.2sr1/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/language/english_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/estonian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/finnish.php (contents, props changed) externals/geeklog-1.5.2sr1/language/finnish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/french_canada.php (contents, props changed) externals/geeklog-1.5.2sr1/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/french_france.php (contents, props changed) externals/geeklog-1.5.2sr1/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/german.php (contents, props changed) externals/geeklog-1.5.2sr1/language/german_formal.php (contents, props changed) externals/geeklog-1.5.2sr1/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/german_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/hellenic.php (contents, props changed) externals/geeklog-1.5.2sr1/language/hellenic_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/indonesian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/indonesian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/italian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/korean.php (contents, props changed) externals/geeklog-1.5.2sr1/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/norwegian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/norwegian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/polish.php (contents, props changed) externals/geeklog-1.5.2sr1/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/portuguese.php (contents, props changed) externals/geeklog-1.5.2sr1/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.5.2sr1/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/portuguese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/romanian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/romanian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/russian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/slovak.php (contents, props changed) externals/geeklog-1.5.2sr1/language/slovak_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/slovenian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/spanish.php (contents, props changed) externals/geeklog-1.5.2sr1/language/spanish_argentina.php (contents, props changed) externals/geeklog-1.5.2sr1/language/spanish_argentina_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/swedish.php (contents, props changed) externals/geeklog-1.5.2sr1/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/turkish.php (contents, props changed) externals/geeklog-1.5.2sr1/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/language/ukrainian.php (contents, props changed) externals/geeklog-1.5.2sr1/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.5.2sr1/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/logs/ externals/geeklog-1.5.2sr1/logs/access.log (contents, props changed) externals/geeklog-1.5.2sr1/logs/error.log (contents, props changed) externals/geeklog-1.5.2sr1/logs/spamx.log (contents, props changed) externals/geeklog-1.5.2sr1/plugins/ externals/geeklog-1.5.2sr1/plugins/calendar/ externals/geeklog-1.5.2sr1/plugins/calendar/functions.inc (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/install_defaults.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/ externals/geeklog-1.5.2sr1/plugins/calendar/language/README (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/czech.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/danish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/dutch.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/english_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/estonian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/french_canada.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/german.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/german_formal.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/german_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/korean.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/russian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/slovenian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/spanish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/ukrainian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/sql/ externals/geeklog-1.5.2sr1/plugins/calendar/sql/mssql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/sql/mysql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/ externals/geeklog-1.5.2sr1/plugins/calendar/templates/addevent.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/addeventoption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/addremoveevent.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/admin/ externals/geeklog-1.5.2sr1/plugins/calendar/templates/admin/batchdelete.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/admin/eventeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/calendar.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/calendarday.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/calendarevent.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/calendarweek.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/dayview/ externals/geeklog-1.5.2sr1/plugins/calendar/templates/dayview/column.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/dayview/dayview.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/dayview/quickaddform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/dayview/singleevent.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/editpersonalevent.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/eventdetails.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/events.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/mastercalendaroption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/personalcalendaroption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/submitevent.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/weekview/ externals/geeklog-1.5.2sr1/plugins/calendar/templates/weekview/events.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/calendar/templates/weekview/weekview.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/ externals/geeklog-1.5.2sr1/plugins/links/README (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/functions.inc (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/install_defaults.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/ externals/geeklog-1.5.2sr1/plugins/links/language/README (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/czech.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/dutch.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/english_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/estonian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/french_canada.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/german.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/german_formal.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/german_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/korean.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/polish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/russian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/slovenian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/spanish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/ukrainian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/sql/ externals/geeklog-1.5.2sr1/plugins/links/sql/mssql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/sql/mysql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/ externals/geeklog-1.5.2sr1/plugins/links/templates/admin/ externals/geeklog-1.5.2sr1/plugins/links/templates/admin/categoryeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/admin/categorylist.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/admin/catitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/admin/linkeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/categoryactivecol.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/categorycol.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/categorydropdown.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/categorylinks.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/categorynavigation.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/categoryrow.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/linkdetails.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/links.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/pagenavigation.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/links/templates/submitlink.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/ externals/geeklog-1.5.2sr1/plugins/polls/functions.inc (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/install_defaults.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/ externals/geeklog-1.5.2sr1/plugins/polls/language/README (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/dutch.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/english_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/estonian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/french_canada.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/german.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/german_formal.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/german_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/korean.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/russian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/slovenian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/spanish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/ukrainian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/sql/ externals/geeklog-1.5.2sr1/plugins/polls/sql/mssql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/sql/mysql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/ externals/geeklog-1.5.2sr1/plugins/polls/templates/admin/ externals/geeklog-1.5.2sr1/plugins/polls/templates/admin/pollansweroption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/admin/polleditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/admin/pollquestions.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollanswer.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollcomments.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/polllist.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollquestion.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollquestions.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollresult.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollvotes_bar.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/polls/templates/pollvotes_num.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/ externals/geeklog-1.5.2sr1/plugins/spamx/BaseAdmin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/BaseCommand.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/BlackList.Examine.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/DeleteComment.Action.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/Developer.txt (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/EditBlackList.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/EditHeader.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/EditIP.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/EditIPofURL.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/Header.Examine.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/IP.Examine.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/IPofUrl.Examine.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/LogView.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/MailAdmin.Action.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/MassDelTrackback.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/MassDelete.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/SLV.Examine.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/SLVbase.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/SLVreport.Action.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/SLVwhitelist.Admin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/functions.inc (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/install_defaults.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/ externals/geeklog-1.5.2sr1/plugins/spamx/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/english_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/estonian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/french_canada.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/french_france.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/italian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/russian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/slovenian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/spanish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/ukrainian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/rss.inc.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/sql/ externals/geeklog-1.5.2sr1/plugins/spamx/sql/mssql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/sql/mysql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/templates/ externals/geeklog-1.5.2sr1/plugins/spamx/templates/admin.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/spamx/templates/install.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/ externals/geeklog-1.5.2sr1/plugins/staticpages/functions.inc (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/install_defaults.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/ externals/geeklog-1.5.2sr1/plugins/staticpages/language/README (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/czech.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/danish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/dutch.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/english_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/estonian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/french_canada.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/german.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/german_formal.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/german_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/italian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/korean.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/polish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/slovenian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/spanish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/swedish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/turkish.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/ukrainian.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/services.inc.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/sql/ externals/geeklog-1.5.2sr1/plugins/staticpages/sql/mssql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/sql/mysql_install.php (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/templates/ externals/geeklog-1.5.2sr1/plugins/staticpages/templates/admin/ externals/geeklog-1.5.2sr1/plugins/staticpages/templates/admin/editor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/templates/admin/editor_advanced.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/templates/centerblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/templates/printable.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/templates/spcomments.thtml (contents, props changed) externals/geeklog-1.5.2sr1/plugins/staticpages/templates/staticpage.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/ externals/geeklog-1.5.2sr1/public_html/404.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/ externals/geeklog-1.5.2sr1/public_html/admin/auth.inc.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/block.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/configuration.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/database.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/group.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/ externals/geeklog-1.5.2sr1/public_html/admin/install/config-install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/configinfo.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/help.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/info.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/ externals/geeklog-1.5.2sr1/public_html/admin/install/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/english.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/german.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/language/polish.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/layout/ externals/geeklog-1.5.2sr1/public_html/admin/install/layout/header-bg.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/layout/logo.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/layout/style.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/success.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/install/toinnodb.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/mail.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/moderation.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/ externals/geeklog-1.5.2sr1/public_html/admin/plugins.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/calendar/ externals/geeklog-1.5.2sr1/public_html/admin/plugins/calendar/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/calendar/install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/links/ externals/geeklog-1.5.2sr1/public_html/admin/plugins/links/category.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/links/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/links/install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/polls/ externals/geeklog-1.5.2sr1/public_html/admin/plugins/polls/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/polls/install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/spamx/ externals/geeklog-1.5.2sr1/public_html/admin/plugins/spamx/images/ externals/geeklog-1.5.2sr1/public_html/admin/plugins/spamx/images/spamx.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/spamx/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/spamx/install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/staticpages/ externals/geeklog-1.5.2sr1/public_html/admin/plugins/staticpages/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/plugins/staticpages/install.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/sectest.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/story.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/syndication.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/topic.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/trackback.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/admin/user.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/article.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/backend/ externals/geeklog-1.5.2sr1/public_html/backend/geeklog.rss (contents, props changed) externals/geeklog-1.5.2sr1/public_html/calendar/ externals/geeklog-1.5.2sr1/public_html/calendar/event.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/calendar/images/ externals/geeklog-1.5.2sr1/public_html/calendar/images/calendar.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/calendar/images/delete_event.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/calendar/images/delete_event.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/calendar/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/calendar/style.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/comment.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/directory.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/ externals/geeklog-1.5.2sr1/public_html/docs/calendar.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/changed-files externals/geeklog-1.5.2sr1/public_html/docs/changes.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/config.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/docstyle.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/history externals/geeklog-1.5.2sr1/public_html/docs/images/ externals/geeklog-1.5.2sr1/public_html/docs/images/de.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/images/fr.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/images/jp.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/images/newlogo.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/images/pl.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/install.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/license externals/geeklog-1.5.2sr1/public_html/docs/links.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/plugin.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/polls.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/spamx.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/staticpages.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/support.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/theme.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/themevars.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/docs/trackback.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/ externals/geeklog-1.5.2sr1/public_html/fckeditor/_documentation.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/_upgrade.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/_whatsnew.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/_whatsnew_history.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckcontextmenu.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdataprocessor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdomrange.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdomrange_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdomrange_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckdomrangeiterator.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckeditingarea.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckelementpath.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckenterkey.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckevents.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckhtmliterator.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckicon.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckiecleanup.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckimagepreloader.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckkeystrokehandler.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckmenublock.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckmenublockpanel.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckmenuitem.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckpanel.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckspecialcombo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckstyle.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbar.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarbutton.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckw3crange.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckxml.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckxml_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/classes/fckxml_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fck_othercommands.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckfitwindow.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckindentcommands.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckjustifycommands.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fcklistcommands.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fcknamedcommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckshowblocks.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fckstylecommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fcktablecommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/fckconstants.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/fckeditorapi.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/fckjscoreextensions.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/fckscriptloader.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fck.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fck_contextmenu.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fck_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fck_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckbrowserinfo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckcodeformatter.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckcommands.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckconfig.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckdebug.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckdialog.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckdocumentprocessor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckdomtools.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcklanguagemanager.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcklisthandler.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcklistslib.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckplugins.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckregexlib.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckselection.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckselection_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckselection_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckstyles.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktablehandler.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktablehandler_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktablehandler_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktoolbaritems.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktoolbarset.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktools.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktools_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fcktools_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckundo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckurlparams.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckxhtml.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckxhtml_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckxhtml_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/_source/internals/fckxhtmlentities.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/behaviors/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/behaviors/disablehandles.htc externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/behaviors/showtableborders.htc externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/fck_editorarea.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/fck_internal.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/fck_showtableborders_gecko.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_address.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_blockquote.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_div.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_h1.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_h2.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_h3.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_h4.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_h5.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_h6.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_p.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/block_pre.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/fck_anchor.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/fck_flashlogo.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/fck_hiddenfield.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/fck_pagebreak.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/css/images/fck_plugin.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/fck_dialog_common.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/fck_dialog_common.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/images/locked.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/images/reset.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/common/images/unlocked.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_about/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_about.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_about/logo_fredck.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_about/sponsors/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_anchor.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_button.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_checkbox.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_colorselector.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_docprops/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_docprops.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_flash/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_flash.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_flash/fck_flash.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_form.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_hiddenfield.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_image/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_image.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_image/fck_image.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_image/fck_image_preview.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_link/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_link.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_link/fck_link.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_listprop.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_paste.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_radiobutton.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_replace.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_select/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_select.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_select/fck_select.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_smiley.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_source.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_specialchar.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_table.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_tablecell.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_template/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_template.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_template/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_template/images/template1.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_template/images/template2.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_template/images/template3.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_textarea.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dialog/fck_textfield.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dtd/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dtd/fck_dtd_test.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dtd/fck_xhtml10strict.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/dtd/fck_xhtml10transitional.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/fckdebug.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/fckdialog.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/fckeditor.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/fckeditor.original.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/browser.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/browser.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/frmactualfolder.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/frmfolders.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/frmresourceslist.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/frmresourcetype.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/frmupload.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/Folder.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/Folder32.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/html.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/js.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/png.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/images/spacer.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/js/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/js/common.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/browser/default/js/fckxml.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/basexml.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/commands.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/config.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/connector.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/io.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/phpcompat.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/upload.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/filemanager/connectors/php/util.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/anchor.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/arrow_ltr.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/arrow_rtl.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/angel_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/angry_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/broken_heart.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/cake.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/confused_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/cry_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/devil_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/embaressed_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/envelope.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/heart.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/kiss.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/lightbulb.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/omg_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/regular_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/sad_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/shades_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/teeth_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/thumbs_down.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/thumbs_up.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/tounge_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/smiley/msn/wink_smile.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/images/spacer.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/js/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/js/fckadobeair.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/js/fckeditorcode_gecko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/js/fckeditorcode_ie.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/_translationstatus.txt (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/af.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ar.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/bg.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/bn.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/bs.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ca.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/cs.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/da.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/de.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/el.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/en-au.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/en-ca.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/en-uk.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/en.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/eo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/es.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/et.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/eu.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/fa.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/fi.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/fo.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/fr-ca.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/fr.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/gl.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/he.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/hi.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/hr.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/hu.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/it.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ja.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/km.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ko.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/lt.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/lv.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/mn.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ms.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/nb.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/nl.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/no.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/pl.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/pt-br.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/pt.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ro.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/ru.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/sk.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/sl.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/sr-latn.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/sr.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/sv.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/th.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/tr.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/uk.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/vi.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/zh-cn.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/lang/zh.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/autogrow/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/autogrow/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/bbcode/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/bbcode/_sample/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.config.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/bbcode/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/dragresizetable/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/dragresizetable/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/fck_placeholder.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/de.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/en.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/es.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/fr.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/it.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/lang/pl.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/placeholder/placeholder.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/simplecommands/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/simplecommands/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/tablecommands/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/plugins/tablecommands/fckplugin.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/_fckviewstrips.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/fck_dialog.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/fck_editor.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/fck_strip.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/dialog.sides.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/sprites.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/sprites.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/default/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/fck_dialog.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/fck_editor.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/fck_strip.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/sprites.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/sprites.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.bg.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/office2003/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/fck_dialog.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/fck_editor.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/fck_strip.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/ externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/dialog.sides.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/sprites.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/sprites.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/editor/skins/silver/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckconfig.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckeditor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckeditor.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckeditor_php4.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckeditor_php5.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckpackager.xml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fckstyles.xml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/fcktemplates.xml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/license.txt (contents, props changed) externals/geeklog-1.5.2sr1/public_html/fckeditor/myconfig.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/getimage.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/ externals/geeklog-1.5.2sr1/public_html/help/advancedsearch.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/cceventsubmission.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/cclinksubmission.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/ccstorysubmission.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/submitevent.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/submitlink.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/help/submitstory.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/ externals/geeklog-1.5.2sr1/public_html/images/admin/ externals/geeklog-1.5.2sr1/public_html/images/admin/block.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/event.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/link.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/logout.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/plugins.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/poll.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/story.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/topic.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/admin/user.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/articles/ externals/geeklog-1.5.2sr1/public_html/images/articles/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/bar.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/button_help.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/ externals/geeklog-1.5.2sr1/public_html/images/buttons/cms-geeklog.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/geeklog-badge.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/geekpower2.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/mysql.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/php.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/valid-css.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/buttons/valid-html.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/ externals/geeklog-1.5.2sr1/public_html/images/icons/block.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/event.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/feed.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/geeklog.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/group.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/link.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/logout.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/ping.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/plugins.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/poll.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/story.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/themes.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/topic.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/icons/user.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/ externals/geeklog-1.5.2sr1/public_html/images/library/File/ externals/geeklog-1.5.2sr1/public_html/images/library/File/test.pdf externals/geeklog-1.5.2sr1/public_html/images/library/Flash/ externals/geeklog-1.5.2sr1/public_html/images/library/Flash/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/ externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/ externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/ai.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/avi.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/bmp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/cs.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/default.icon.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/dll.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/doc.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/exe.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/fla.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/gif.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/htm.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/html.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/jpg.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/js.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/mdb.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/mp3.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/pdf.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/ppt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/rdp.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/swf.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/swt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/txt.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/vsd.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/xls.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/xml.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/icons/zip.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/image1.jpg (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/image2.jpg (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Image/image3.jpg (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/library/Media/ externals/geeklog-1.5.2sr1/public_html/images/library/Media/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/mail.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/openid_login_icon.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/print.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/right_arrow.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/speck.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/sysmessage.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/topics/ externals/geeklog-1.5.2sr1/public_html/images/topics/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/topics/topic_gl.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/topics/topic_news.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/images/userphotos/ externals/geeklog-1.5.2sr1/public_html/images/userphotos/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/ externals/geeklog-1.5.2sr1/public_html/javascript/advanced_editor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/common.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/configmanager.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/moveusers.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/profile_editor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/staticpages_fckeditor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/storyeditor_fckeditor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/submitcomment_fckeditor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/javascript/submitstory_fckeditor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/ externals/geeklog-1.5.2sr1/public_html/layout/professional/ externals/geeklog-1.5.2sr1/public_html/layout/professional/README (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/block/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/block/blockeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/block/defaultblockeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/block/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/common/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/common/edit_permissions.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/common/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/config/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/config/config_element.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/config/configuration.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/config/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/config/menu_element.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/group/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/group/groupeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/group/groupmembers.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/group/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/field.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/header.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/list.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/listitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/searchmenu.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/lists/topmenu.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/mail/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/mail/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/mail/mailform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/moderation/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/moderation/ccitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/moderation/ccrow.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/moderation/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/moderation/moderation.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/plugins/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/plugins/editor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/plugins/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/story/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/story/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/story/storyeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/story/storyeditor_advanced.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/syndication/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/syndication/feededitor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/syndication/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/syndication/selecttype.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/topic/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/topic/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/topic/listitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/topic/topiceditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/topic/topiclist.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/autodetectitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/autodetectlist.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/pingbackform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/pingbackitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/pingbacklist.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/pingform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/pingitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/pinglist.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/serviceeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/trackback/trackbackeditor.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/ externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/batchdelete.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/batchdelete_options.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/edituser.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/groupedit.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/admin/user/reminder.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/adminoption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/adminoption_off.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/advanced_editor_header.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/archivestorybodytext.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/archivestorytext.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/article/ externals/geeklog-1.5.2sr1/public_html/layout/professional/article/article.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/article/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/article/printable.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter-config.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter-left.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter-list.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter-message.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter-related.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter-right.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockfooter.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader-config.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader-left.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader-list.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader-message.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader-related.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader-right.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockheader.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/blockservices.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/ externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/comment.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/commentbar.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/commentform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/commentform_advanced.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/reportcomment.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/startcomment.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/comment/thread.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/featuredstorybodytext.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/featuredstorytext.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/footer.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/functions.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/header.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/ externals/geeklog-1.5.2sr1/public_html/layout/professional/images/addchild.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/admin/ externals/geeklog-1.5.2sr1/public_html/layout/professional/images/admin/block-left.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/admin/block-right.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/admin/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/bar.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/bararrowdown.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/bararrowup.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/button_help.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/collapse.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/copy.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/deleteitem.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/edit.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/expand.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/external.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/feed.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/header-bg.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icon_info.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/ externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/block.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/configuration.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/database.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/delete_event.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/docs.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/event.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/group.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/logout.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/mail.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/plugins.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/story.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/syndication.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/topic.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/trackback.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/user.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/icons/versioncheck.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/list.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/logo.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/mail.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/pdf.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/person.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/print.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/sendping.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/smallcamera.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/images/sysmessage.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/leftblocks.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/list.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/listitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/loginform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/loginform_openid.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/menuitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/menuitem_last.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/menuitem_none.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/ externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/breadcrumb_link.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/breadcrumbs.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/ externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/button.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/button_over.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/tableftI.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/tableftJ.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/tabrightI.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/images/tabrightJ.gif (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/menuitem.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/navbar/navbar.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/ externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/boxesblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/commentblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/deleteaccount.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/digestblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/displayblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/displayprefs.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/excludeblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/language.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/privacyblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/profile.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/theme.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/username.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/preferences/userphoto.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/profiles/ externals/geeklog-1.5.2sr1/public_html/layout/professional/profiles/contactauthorform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/profiles/contactuserform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/profiles/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/rightblocks.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/ externals/geeklog-1.5.2sr1/public_html/layout/professional/search/headingcolumn.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/resultauthdatehits.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/resultcolumn.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/resultrow.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/resultrowenhanced.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/resultsummary.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/resulttitle.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchauthors.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchblock.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchresults.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchresults_heading.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchresults_norows.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/search/searchresults_rows.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/stats/ externals/geeklog-1.5.2sr1/public_html/layout/professional/stats/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/stats/itemstatistics.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/stats/singlestat.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/stats/singlesummary.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/stats/sitestatistics.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/storybodytext.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/storytext.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/style.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/submit/ externals/geeklog-1.5.2sr1/public_html/layout/professional/submit/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/submit/submitloginrequired.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/submit/submitstory.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/submit/submitstory_advanced.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/topcenterblock-span.thtmlx (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/topicoption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/topicoption_off.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/trackback/ externals/geeklog-1.5.2sr1/public_html/layout/professional/trackback/formattedcomment.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/trackback/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/trackback/trackback.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/trackback/trackbackcomment.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/useroption.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/useroption_off.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/ externals/geeklog-1.5.2sr1/public_html/layout/professional/users/commentrow.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/getpasswordform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/index.html (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/loginform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/newpassword.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/profile.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/registrationform.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/services.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/layout/professional/users/storyrow.thtml (contents, props changed) externals/geeklog-1.5.2sr1/public_html/lib-common.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/links/ externals/geeklog-1.5.2sr1/public_html/links/images/ externals/geeklog-1.5.2sr1/public_html/links/images/links.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/links/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/links/portal.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/pingback.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/polls/ externals/geeklog-1.5.2sr1/public_html/polls/images/ externals/geeklog-1.5.2sr1/public_html/polls/images/polls.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/polls/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/polls/polls_editor.js (contents, props changed) externals/geeklog-1.5.2sr1/public_html/polls/style.css (contents, props changed) externals/geeklog-1.5.2sr1/public_html/profiles.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/robots.txt (contents, props changed) externals/geeklog-1.5.2sr1/public_html/search.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/siteconfig.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/staticpages/ externals/geeklog-1.5.2sr1/public_html/staticpages/images/ externals/geeklog-1.5.2sr1/public_html/staticpages/images/staticpages.png (contents, props changed) externals/geeklog-1.5.2sr1/public_html/staticpages/index.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/stats.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/submit.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/switchlang.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/trackback.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/users.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/usersettings.php (contents, props changed) externals/geeklog-1.5.2sr1/public_html/webservices/ externals/geeklog-1.5.2sr1/public_html/webservices/atom/ externals/geeklog-1.5.2sr1/public_html/webservices/atom/index.php (contents, props changed) externals/geeklog-1.5.2sr1/readme (contents, props changed) externals/geeklog-1.5.2sr1/sql/ externals/geeklog-1.5.2sr1/sql/mssql_tableanddata.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/mysql_tableanddata.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/ externals/geeklog-1.5.2sr1/sql/updates/0.1_to_0.2.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/0.2_to_0.3.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/0.3_to_0.4.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/0.4_to_0.5.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/0.5_to_1.0.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/1.0_to_1.1.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/1.1_to_1.2.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/1.2.5-1_to_1.3.NOTES externals/geeklog-1.5.2sr1/sql/updates/1.2.5-1_to_1.3.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/1.2_to_1.2.2.sql (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mssql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mssql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mssql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.2.5-1_to_1.3.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.10_to_1.3.11.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.11_to_1.4.0.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.1_to_1.3.2.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.2-1_to_1.3.3.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.3_to_1.3.4.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.4_to_1.3.5.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.5_to_1.3.6.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.7_to_1.3.8.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.8_to_1.3.9.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3.9_to_1.3.10.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.3_to_1.3.1.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.4.0_to_1.4.1.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.5.2sr1/sql/updates/mysql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.5.2sr1/system/ externals/geeklog-1.5.2sr1/system/classes/ externals/geeklog-1.5.2sr1/system/classes/authentication/ externals/geeklog-1.5.2sr1/system/classes/authentication/LDAP.auth.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/authentication/LiveJournal.auth.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/authentication/ldap/ externals/geeklog-1.5.2sr1/system/classes/authentication/ldap/config.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/calendar.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/config.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/conversion.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/downloader.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/kses.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/navbar.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/ externals/geeklog-1.5.2sr1/system/classes/openid/COPYING externals/geeklog-1.5.2sr1/system/classes/openid/LICENSE externals/geeklog-1.5.2sr1/system/classes/openid/association.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/consumer.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/httpclient.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/interface.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/oid_parse.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/oid_util.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/server.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openid/trustroot.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/openidhelper.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/plugin.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/sanitize.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/search.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/story.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/syndication/ externals/geeklog-1.5.2sr1/system/classes/syndication/atom.feed.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/syndication/feedparserbase.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/syndication/parserfactory.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/syndication/rdf.feed.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/syndication/rss.feed.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/template.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/timer.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/upload.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/classes/url.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/databases/ externals/geeklog-1.5.2sr1/system/databases/mssql.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/databases/mysql.class.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-admin.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-comment.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-custom.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-database.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-mbyte.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-pingback.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-plugins.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-security.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-sessions.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-story.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-syndication.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-trackback.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-user.php (contents, props changed) externals/geeklog-1.5.2sr1/system/lib-webservices.php (contents, props changed) externals/geeklog-1.5.2sr1/system/memberdetail.thtml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/ externals/geeklog-1.5.2sr1/system/pear/Archive/ externals/geeklog-1.5.2sr1/system/pear/Archive/Tar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Archive/Zip.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/ externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/ externals/geeklog-1.5.2sr1/system/pear/Auth/SASL.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/Anonymous.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/Common.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/CramMD5.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/DigestMD5.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/Login.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Auth/SASL/Plain.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Console/ externals/geeklog-1.5.2sr1/system/pear/Console/Getopt.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Date/ externals/geeklog-1.5.2sr1/system/pear/Date.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Date/Calc.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Date/Human.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Date/Span.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Date/TimeZone.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/HTTP/ externals/geeklog-1.5.2sr1/system/pear/HTTP/Request/ externals/geeklog-1.5.2sr1/system/pear/HTTP/Request.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/HTTP/Request/Listener.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Mail/ externals/geeklog-1.5.2sr1/system/pear/Mail.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Mail/RFC822.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Mail/mail.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Mail/null.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Mail/sendmail.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Mail/smtp.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/ externals/geeklog-1.5.2sr1/system/pear/Net/DNS/ externals/geeklog-1.5.2sr1/system/pear/Net/DNS.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/Header.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/Packet.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/Question.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/ externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/A.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/AAAA.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/CNAME.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/HINFO.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/MX.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/NAPTR.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/NS.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/PTR.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/SOA.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/SRV.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/TSIG.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/RR/TXT.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/DNS/Resolver.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/SMTP.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/Socket.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Net/URL.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/OS/ externals/geeklog-1.5.2sr1/system/pear/OS/Guess.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/ externals/geeklog-1.5.2sr1/system/pear/PEAR.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Autoloader.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Builder.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/ChannelFile/ externals/geeklog-1.5.2sr1/system/pear/PEAR/ChannelFile.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/ChannelFile/Parser.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Command.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Auth.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Auth.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Build.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Build.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Channels.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Channels.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Common.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Config.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Config.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Install.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Install.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Mirror.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Mirror.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Package.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Package.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Pickle.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Pickle.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Registry.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Registry.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Remote.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Remote.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Test.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Command/Test.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Common.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Config.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Dependency.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Dependency2.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/DependencyDB.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Downloader/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Downloader.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Downloader/Package.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/ErrorStack.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Exception.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/FixPHP5PEARWarnings.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Frontend/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Frontend.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Frontend/CLI.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Cfg.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Cfg.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Common.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Data.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Data.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Doc.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Doc.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Ext.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Ext.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Php.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Php.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Script.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Script.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Src.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Src.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Test.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Test.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Www.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Installer/Role/Www.xml (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/ externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/Generator/ externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/Generator/v1.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/Generator/v2.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/Parser/ externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/Parser/v1.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/Parser/v2.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/v1.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/v2/ externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/v2.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/v2/Validator.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/PackageFile/v2/rw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Packager.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/REST/ externals/geeklog-1.5.2sr1/system/pear/PEAR/REST.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/REST/10.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/REST/11.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/REST/13.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Registry.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Remote.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/RunTest.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Common.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Postinstallscript/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Postinstallscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Postinstallscript/rw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Replace/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Replace.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Replace/rw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Unixeol/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Unixeol.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Unixeol/rw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Windowseol/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Windowseol.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Task/Windowseol/rw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Validate.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/Validator/ externals/geeklog-1.5.2sr1/system/pear/PEAR/Validator/PECL.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/PEAR/XMLParser.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/README (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/System.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Default.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Anchor.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Blockquote.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Bold.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Break.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Center.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Code.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Colortext.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Deflist.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Delimiter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Embed.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Emphasis.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Freelink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Function.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Heading.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Horiz.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Html.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Image.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Include.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Interwiki.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Italic.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/List.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Newline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Paragraph.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Phplookup.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Prefilter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Raw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Revise.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Smiley.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Strong.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Subscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Superscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Table.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Tighten.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Toc.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Tt.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Underline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Url.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Parse/Default/Wikilink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Anchor.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Blockquote.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Bold.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Box.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Break.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Center.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Code.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Colortext.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Deflist.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Delimiter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Embed.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Emphasis.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Font.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Freelink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Function.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Heading.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Horiz.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Html.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Image.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Include.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Interwiki.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Italic.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/List.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Newline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Page.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Paragraph.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Phplookup.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Plugin.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Prefilter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Preformatted.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Raw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Revise.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Smiley.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Specialchar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Strong.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Subscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Superscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Table.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Tighten.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Titlebar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Toc.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Tt.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Underline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Url.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Latex/Wikilink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Anchor.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Blockquote.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Bold.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Box.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Break.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Center.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Code.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Colortext.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Deflist.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Delimiter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Embed.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Emphasis.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Font.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Freelink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Function.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Heading.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Horiz.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Html.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Image.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Include.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Interwiki.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Italic.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/List.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Newline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Page.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Paragraph.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Phplookup.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Plugin.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Prefilter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Preformatted.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Raw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Revise.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Smiley.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Specialchar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Strong.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Subscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Superscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Table.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Tighten.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Titlebar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Toc.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Tt.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Underline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Url.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Plain/Wikilink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/ externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Address.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Anchor.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Blockquote.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Bold.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Box.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Break.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Center.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Code.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Colortext.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Deflist.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Delimiter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Embed.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Emphasis.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Font.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Freelink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Function.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Heading.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Horiz.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Html.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Image.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Include.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Interwiki.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Italic.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/List.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Newline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Page.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Paragraph.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Phplookup.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Plugin.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Prefilter.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Preformatted.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Raw.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Revise.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Smiley.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Specialchar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Strong.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Subscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Superscript.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Table.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Tighten.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Titlebar.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Toc.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Tt.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Underline.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Url.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/Text/Wiki/Render/Xhtml/Wikilink.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/XML/ externals/geeklog-1.5.2sr1/system/pear/XML/RPC/ externals/geeklog-1.5.2sr1/system/pear/XML/RPC.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/XML/RPC/Dump.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/XML/RPC/Server.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/ externals/geeklog-1.5.2sr1/system/pear/scripts/pear.bat (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/pear.sh (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/pearcmd.php (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/peardev.bat (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/peardev.sh (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/pecl.bat (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/pecl.sh (contents, props changed) externals/geeklog-1.5.2sr1/system/pear/scripts/peclcmd.php (contents, props changed) Log: Geeklog 1.5.2sr1をインポートします。 Added: externals/geeklog-1.5.2sr1/INSTALL ============================================================================== --- (empty file) +++ externals/geeklog-1.5.2sr1/INSTALL Mon Mar 30 18:39:21 2009 @@ -0,0 +1,7 @@ +Installation instructions for Geeklog can be found in the docs directory, +specifically in + + public_html/docs/install.html + +That document also includes a section on common installation problems. + Added: externals/geeklog-1.5.2sr1/backups/README ============================================================================== --- (empty file) +++ externals/geeklog-1.5.2sr1/backups/README Mon Mar 30 18:39:21 2009 @@ -0,0 +1,11 @@ +This is the directory where Geeklog will store database backups from the +"DB Backups" menu entry. Please note that Geeklog only lists the last 10 +backups - the directory may contain more files (old backups are NOT deleted). + +To restore a backup, either use phpMyAdmin or type + + mysql -u{user_name} -p -D {database_name} < {backup_file} + +on the command line, replacing {user_name}, {database_name}, and {backup_file} +with the correct values (do not include the curly brackets). + Added: externals/geeklog-1.5.2sr1/data/README ============================================================================== --- (empty file) +++ externals/geeklog-1.5.2sr1/data/README Mon Mar 30 18:39:21 2009 @@ -0,0 +1,3 @@ +This is Geeklog's general data directory, used for e.g. the batch user import. + +Remember that this file must be writable! Added: externals/geeklog-1.5.2sr1/db-config.php ============================================================================== --- (empty file) +++ externals/geeklog-1.5.2sr1/db-config.php Mon Mar 30 18:39:21 2009 @@ -0,0 +1,24 @@ + Added: externals/geeklog-1.5.2sr1/emailgeeklogstories ============================================================================== --- (empty file) +++ externals/geeklog-1.5.2sr1/emailgeeklogstories Mon Mar 30 18:39:21 2009 @@ -0,0 +1,15 @@ +#!/usr/local/bin/php -q + Added: externals/geeklog-1.5.2sr1/language/afrikaans.php ============================================================================== --- (empty file) +++ externals/geeklog-1.5.2sr1/language/afrikaans.php Mon Mar 30 18:39:21 2009 @@ -0,0 +1,1859 @@ + 'Geskryf deur:', + 2 => 'lees verder', + 3 => 'kommentaar', + 4 => 'Wysig', + 5 => 'Stem', + 6 => 'Resultaat', + 7 => '', + 8 => 'stemme', + 9 => 'Admin Funksies:', + 10 => 'Bydraes', + 11 => 'Artikels', + 12 => 'Blokke', + 13 => 'Onderwerpe', + 14 => '', + 15 => '', + 16 => '', + 17 => 'Gebruikers', + 18 => 'SQL Query', + 19 => 'Teken Uit', + 20 => 'Gebruikersinligting:', + 21 => 'Gebruikernaam', + 22 => 'Gebruiker ID', + 23 => 'Sekuriteitsvlak', + 24 => 'Anoniem', + 25 => 'Antwoord', + 26 => 'Die volgende kommentaar is die eiendom van wie dit ookal gepos het. Hierdie werf is geensins verantwoordelik vir wat daar gesê word nie.', + 27 => 'Mees Onlangse Plasing', + 28 => 'Verwyder', + 29 => 'Geen gebruiker kommentaar.', + 30 => 'Ouer Artikels', + 31 => 'Toegelate HTML Etikette:', + 32 => 'Fout, ongeldige gebruikernaam', + 33 => 'Fout, kon nie na die log lêer skryf nie', + 34 => 'Fout', + 35 => 'Teken Uit', + 36 => 'aan', + 37 => 'Geen gebruiker artikels', + 38 => 'Inhoud Sindikasie', + 39 => 'Herlaai', + 40 => 'Jou register_globals = Off in jou php.ini. Geekolog vereis egter dat register_globals aan is. Voordat jy verder gaan, stel dit na on en herlaai jou webblaaier.', + 41 => 'Besoekers', + 42 => 'Geskryf deur:', + 43 => 'Antwoord hierop', + 44 => 'Stam', + 45 => 'MySQL Foutnommer', + 46 => 'MySQL Foutboodskap', + 47 => 'Gebruikersfunksies', + 48 => 'Rekeninginligting', + 49 => 'Voorkeure', + 50 => 'Fout in SQL stelling', + 51 => 'help', + 52 => 'Nuut', + 53 => 'Admin Tuiste', + 54 => 'Kon die lêer nie oopmaak nie.', + 55 => 'Fout by', + 56 => 'Stem', + 57 => 'Wagwoord', + 58 => 'Teken in', + 59 => "Nog nie 'n rekening? Registreer dan as 'n Nuwe Gebruiker", + 60 => 'Lewer kommentaar', + 61 => 'Skep Nuwe Rekening', + 62 => 'woorde', + 63 => 'Kommentaar Voorkeure', + 64 => 'Epos Artikel aan \'n Vriend', + 65 => 'Vertoon Drukbare Weergawe', + 66 => '', + 67 => 'Welkom by', + 68 => 'Tuisblad', + 69 => 'Kontak', + 70 => 'Soek', + 71 => 'Skryf iets', + 72 => 'Web Hulpmiddele', + 73 => '', + 74 => '', + 75 => 'Gevorderde Soektog', + 76 => 'Werfstatistieke', + 77 => 'Proppies', + 78 => '', + 79 => 'Wat\'s Nuut', + 80 => 'artikels in laaste', + 81 => 'artikel in laaste', + 82 => 'ure', + 83 => 'KOMMENTARE', + 84 => '', + 85 => 'laaste 48 uur', + 86 => 'Geen nuwe kommentaar', + 87 => 'laaste 2 weke', + 88 => '', + 89 => '', + 90 => 'Tuisblad', + 91 => 'Hierdie blad geskep in', + 92 => 'sekondes', + 93 => 'Kopiereg', + 94 => 'Alle handelsmerke en kopieregte op hierdie blad word deur hulle onderskeie eienaars besit.', + 95 => 'Aangedryf Deur', + 96 => 'Groepe', + 97 => 'Woordelys', + 98 => 'Proppies', + 99 => 'ARTIKELS', + 100 => 'Geen nuwe artikels', + 101 => '', + 102 => '', + 103 => 'DB Rugsteuning', + 104 => 'deur', + 105 => 'EPOS aan Gebruikers', + 106 => 'Besigtigings:', + 107 => 'GL Weergawe Toets', + 108 => 'Vee Kas skoon', + 109 => 'Meld misbruik aan', + 110 => 'Rapporteer hierdie plasing aan die werfadmin', + 111 => 'Vertoon PDF Weergawe', + 112 => 'Geregistreerde Gebruikers', + 113 => 'Dokumentasie', + 114 => 'TRACKBACKS', + 115 => 'Geen nuwe trackback kommentaar', + 116 => 'Trackback', + 117 => 'Gids', + 118 => 'Lees asseblief verder op die volgende bladsy:', + 119 => "Jou wagwoord vergeet?", + 120 => 'Permanente skakel na hierdie kommentaar', + 121 => 'Kommentaar (%d)', + 122 => 'Trackbacks (%d)', + 123 => 'Alle HTML word toegelaat', + 124 => 'Click to delete all checked items', + 125 => 'Are you sure you want to Delete all checked items?', + 126 => 'Select or de-select all items', + 127 => 'Permalink', + 128 => 'Login with OpenID:', + 129 => 'Configuration', + 130 => 'Webservices' +); + +############################################################################### +# comment.php + +$LANG03 = array( + 1 => 'Lewer Kommentaar', + 2 => 'Plasingmodus', + 3 => 'Teken Uit', + 4 => 'Skep Rekening', + 5 => 'Gebruikernaam', + 6 => 'Hierdie werf vereis dat jy ingeteken moet wees om kommentaar te kan lewer, teken asseblief in. As jy nie \'n rekening het nie kan jy die vorm hier onder gebruik om een te skep.', + 7 => 'Jou laast kommentaar was ', + 8 => " sekondes gelede. Hierdie werf vereis dat ten minstne {$_CONF['commentspeedlimit']} sekondes tussen kommentare verstryk.", + 9 => 'Kommentaar', + 10 => 'Stuur Verslag', + 11 => 'Stuur Kommentaar', + 12 => 'Vul asseblief die Titel en Kommentaar velde in, dit is \'n vereiste.', + 13 => 'Jou Inligting', + 14 => 'Voorskou', + 15 => 'Rapporteer hierdie plasing', + 16 => 'Titel', + 17 => 'Fout', + 18 => 'Belangrike Goed', + 19 => 'Die plasing moet verkieslik met die onderwerp verband hou.', + 20 => 'Probeer eerder om kommentaar te lewer eerder as om \'n nuwe artikel te begin oor dieselfde besprekingsonderwerp.', + 21 => 'Lees ander mense se boodskappe voordat jy jou eie plaas om te verhoed dat jy herhaal wat reeds gesê is.', + 22 => 'Gebruik \'n duidelike onderwerp wat beskryf waaroor jou boodskap gaan.', + 23 => 'Jou epos adres sal NIE geopenbaar word nie.', + 24 => 'Anonieme Gebruiker', + 25 => 'Is jy seker dat jy hierdie plasing aan die werf admin wil rapporteer?', + 26 => '%s het die volgende beledigende plasing of misbruik gerapporteer:', + 27 => 'Misbruikverslag' +); + +############################################################################### +# users.php + +$LANG04 = array( + 1 => 'Gebruikersprofiel van', + 2 => 'Gebruikernaam', + 3 => 'Volle Naam', + 4 => 'Nuwe Wagwoord', + 5 => 'Epos', + 6 => 'Tuisblad', + 7 => 'Bio', + 8 => 'PGP Sleutel', + 9 => 'Stoor Inligting', + 10 => 'Laaste 10 kommentare van gebruiker', + 11 => 'Geen Gebruikerkommentaar', + 12 => 'Gebruikersvoorkeure van', + 13 => 'Epos Nagtelike Opsomming', + 14 => 'Hierdie wagwoord word deur \'n lukraak algoritme saamgestel. Daar word aanbeveel dat jy dit onmiddelik verander. Om jou wagwoord te verander moet jy inteken en dan op Rekeninginligting kliek by die Gebruikersfunksies keusebalk.', + 15 => "Jou {$_CONF['site_name']} rekening is suksesvol opgestel. Om dit te kan gebruik moet jy inteken deur die onderstaande inligting te gebruik. Stoor hierdie epos vir latere verwysing.", + 16 => 'Jou Rekeninginligting', + 17 => 'Rekening bestaan nie', + 18 => 'Die epos adres wat verskaf is blyk nie \'n geldige een te wees nie', + 19 => 'Die gebruikernaam of epos adres wat verskaf is bestaan reeds', + 20 => 'Die epos adres verskaf blyk nie \'n geldige adres te wees nie', + 21 => 'Fout', + 22 => "Registreer by {$_CONF['site_name']}!", + 23 => "Die skep van 'n gebruikersrekening sal jou al die voordele gee van lidmaatskap by {$_CONF['site_name']} en sal jou in staat stel om kommentaar te plaas asook om artikels self te skep. As jy nie 'n rekening het nie, sal jy slegs anonieme plasing kan maak. Neem asseblief kennis dat jou epos adres nooit op hierdie werf geopenbaar sal word nie.", + 24 => 'Jou wagwoord sal na die eposadres wat jy verskaf gestuur word.', + 25 => 'Het jy jou Wagwoord vergeet?', + 26 => 'Sleutel of jou gebruikernaam of die epos adres wat jy gebruik het om mee te registreer en kliek Epos Wagwoord. Instruksies oor hoe om \'n nuwe wagwoord in te stel sal aan die betrokke epos adres op rekord gestuur word.', + 27 => 'Registreer Nou!', + 28 => 'Epos Wagwoord', + 29 => 'uitgeteken vanuit', + 30 => 'ingeteken vanuit', + 31 => 'Die funksie wat jy gekies het vereis dat jy inteken', + 32 => 'Handtekening', + 33 => 'Nooit vertoon', + 34 => 'Dit is jou regte naam', + 35 => 'Sleutel wagwoord in om dit te verander', + 36 => 'Begin met http://', + 37 => 'Aangeheg by jou kommentaar', + 38 => 'Dit gaan alles oor jou! Enigeen kan dit lees', + 39 => 'Jou publieke PGP sleutel om te deel', + 40 => 'Geen Onderwerp Ikone', + 41 => 'Gewillig om te Modereer', + 42 => 'Datumformaat', + 43 => 'Maksimum Artikels', + 44 => 'Geen bokse', + 45 => 'Vertoon Voorkeure vir', + 46 => 'Uitgeslote Items vir', + 47 => 'Nuwe boks Konfigurasie vir', + 48 => 'Onderwerpe', + 49 => 'Geen ikone in artikels', + 50 => 'Verwyder merk as jy nie hierin belangstel nie', + 51 => 'Slegs die nuusartikels', + 52 => 'Die standaard is', + 53 => 'Ontvang die dag se stories elke nag', + 54 => 'Merk die boksies vir die onderwerpe en skrywers wat jy nie wil sien nie.', + 55 => 'As jy almal ongemerk laat beteken dit dat jy die standaard keuse van bokse wil sien. As jy bokse merk onthou om almal wat jy wil sien te merk aangesien die standaard keuses geïgnoreer gaan word. Standaard items word in drukskrif aangedui.', + 56 => 'Skrywers', + 57 => 'Vertoonmodus', + 58 => 'Sorteer Volgorde', + 59 => 'Kommentaar Limiet', + 60 => 'Hoe wil jy hê dat jou kommentaar vertoon word?', + 61 => 'Nuutste of oudstes eerste?', + 62 => 'Die standaard is 100', + 63 => "Jou wagwoord is aan jou gestuur per epos en behoort kortliks by jou uit te kom. Volg asseblief die aanwysings in die boodskap en dankie dat jy {$_CONF['site_name']} gebruik", + 64 => 'Kommentaarvoorkeure van', + 65 => 'Probeer weer Inteken', + 66 => 'Jy het moontlik jou besonderhede verkeerd ingesleutel. Probeer asseblief weer om hieronder in te teken.', + 67 => 'Lid Sedert', + 68 => 'Onthou My vir', + 69 => 'Hoe lank moet ons jou onthou na jy ingeteken het? Tydsverloop waarop jy kan terugkom sonder om weer in te teken', + 70 => "Verander die uitleg en inhoud van {$_CONF['site_name']} na jou sin", + 71 => "Een van die beste kenmerke van {$_CONF['site_name']} is dat jy die inhoud wat jy ontvang en die uitleg van die werf kan maak pas by jou eie sin. Om van hierdie kenmerke gebruik te kan maak moet jy eers registreer by {$_CONF['site_name']}. Is jy reeds 'n lid? Gebruik dan die intekenvorm aan die linkerkant om in te teken!", + 72 => 'Tema', + 73 => 'Taal', + 74 => 'Verander hoe die werf vertoon!', + 75 => 'Onderwerpe Gepos aan', + 76 => 'As jy \'n onderwerp hieronder kies sal jy enige nuwe stories wat by daardie onderwerp gevoeg word aan die einde van elke dag ontvang. Kies slegs die onderwerpe wat jou intereseer!', + 77 => 'Foto', + 78 => 'Sit \'n foto van jouself op!', + 79 => 'Merk hier om die foto te verwyder', + 80 => 'Teken in', + 81 => 'Stuur Epos', + 82 => 'Laaste 10 artikel vir gebruiker', + 83 => 'Plasingstatistiek van gebruiker', + 84 => 'Totale aantal artikels:', + 85 => 'Totale aantal kommentare:', + 86 => 'Vind alle plasings deur', + 87 => 'Jou gebruikernaam', + 88 => "Iemand (moontlik jy) het versoek dat 'n nuwe wagwoord geskep word vir jou rekening \"%s\" op {$_CONF['site_name']}, <{$_CONF['site_url']}>.\n\nAs jy dit werklik wou doen, kliek op die volgende skakel:\n\n", + 89 => "As jy dit nie wil doen nie, ignoreer eenvoudig hierdie boodskap en die versoek sal geïgnoreer word (jou wagwoord sal dan onveranderd bly).\n\n", + 90 => 'Jy kan \'n nuwe wagwoord vir jou rekening hieronder insleutel. Neem asseblief kennis dat jou ou wagwoord steeds geldig bly totdat jy hierdie vorm instuur.', + 91 => 'Stel Nuwe Wagwoord', + 92 => 'Sleutel Nuwe Wagwoord in', + 93 => 'Jou laaste versoek vir \'n nuwe wagwoord was %d sekondes gelede. Hierdie werf vereis dat ten minste %d sekondes verstryk tussen wagwoordversoeke.', + 94 => 'Verwyder Rekening "%s"', + 95 => 'Kliek die "verwyder rekening" knop hieronder om jou rekening van ons databasis te verwyder. Neem kennis dat enige artikels en kommentaar onder hierdie rekening bygedra nie verwyder sal word nie maar gemerk sal word as deur "Anoniem" gepos.', + 96 => 'verwyder rekening', + 97 => 'Bevestig Verwydering van Rekening', + 98 => 'Is jy seker dat jy jou rekening wil verwyder? Deur dit te doen sal jy nie meer op hierdie werf kan inteken nie (tensy jy \'n nuwe rekening skep). As jy seker is, kliek weer op "verwyder rekening" op die vorm hieronder.', + 99 => 'Privaatheidsopsis vir', + 100 => 'Epos van Admin', + 101 => 'Laat epos van Werf Admin toe', + 102 => 'Epos van Gebruikers', + 103 => 'Laat epos toe vanaf onder gebruikers', + 104 => 'Vertoon Aanlyn Status', + 105 => 'Vertoon in die Wie\'s Aanlyn blok', + 106 => 'Ligging', + 107 => 'Vertoon in jou openbare profiel', + 108 => 'Bevestig nuwe wagwoord', + 109 => 'Sleutel die Nuwe wagwoord weer hier in', + 110 => 'Huidige Wagwoord', + 111 => 'Sleutel asseblief jou Huidige wagwoord in', + 112 => 'Jy het die toelaatbare getal intekenpogings oorskry. Probeer asseblief weer later.', + 113 => 'Intekenpoging het Misluk', + 114 => 'Rekening Gedeaktiveer', + 115 => 'Jou rekening is gedeatkiveer, jy mag nie inteken nie. Kontak die Administrateur.', + 116 => 'Rekening Wag op Aktivering', + 117 => 'Jou rekening is tans gelys vir aktivering deur die administrateur. Jy sal nie kan inteken alvorens jou rekening goedgekeur is nie.', + 118 => "Jou {$_CONF['site_name']} rekening is nou geaktiveer deur \'n administrateur. Jy mag nou inteken op die werf by die url hieronder deur jou gebruikernaam en wagwoord te gebruik soos voorheen aan jou ge-epos.", + 119 => 'As jy jou wagwoord vergeet het, kan jy \'n nuwe een aanvra by die volgende url:', + 120 => 'Rekening Geaktiveer', + 121 => 'Diens', + 122 => 'Jammer, nuwe gebruiker registrasie is gedeaktiveer', + 123 => "Is jy 'n nuwe gebruiker?", + 124 => 'Confirm Email', + 125 => 'You have to enter the same email address in both fields!', + 126 => 'Please repeat for confirmation', + 127 => 'To change any of these settings, you will have to enter your current password.', + 128 => 'Your Name', + 129 => 'Password & Email', + 130 => 'About You', + 131 => 'Daily Digest Options', + 132 => 'Daily Digest Feature', + 133 => 'Comment Display', + 134 => 'Comment Options', + 135 => '
  • Default mode for how comments will be displayed
  • Default order to display comments
  • Set maximum number of comments to show - default is 100
  • ', + 136 => 'Exclude Topics and Authors', + 137 => 'Filter Story Content', + 138 => 'Misc Settings', + 139 => 'Layout and Language', + 140 => '
  • No Topic Icons if checked will not display the story topic icons
  • No boxes if checked will only show the Admin Menu, User Menu and Topics
  • Set the maximum number of stories to show per page
  • Set your theme and perferred date format
  • ', + 141 => 'Privacy Settings', + 142 => 'The default setting is to allow users & admins to email fellow site members and show your status as online. Un-check these options to protect your privacy.', + 143 => 'Filter Block Content', + 144 => 'Show & hide boxes', + 145 => 'Your Public Profile', + 146 => 'Password and email', + 147 => 'Edit your account password, email and autologin feature. You will need to enter the same password or email address twice as a confirmation.', + 148 => 'User Information', + 149 => 'Modify your user information that will be shown to other users.
  • The signature will be added to any comments or forum posts you made
  • The BIO is a brief summary of yourself to share
  • Share your PGP Key
  • ', + 150 => 'Warning: Javascript recommended for enhanced functionality', + 156 => 'Delete Account', + 157 => 'Delete Option', + 158 => 'Time Zone', + 159 => 'This email was generated automatically. Please do not reply to this email.' +); + +############################################################################### +# Customize if need to modify the Tabbed navbar MyAccount panels used. +# Array index key matches preference div id + +$LANG_MYACCOUNT = array( + 'pe_preview' => 'Preview', + 'pe_namepass' => 'Username & Password', + 'pe_userinfo' => 'About You', + 'pe_layout' => 'Layout & Language', + 'pe_content' => 'Content', + 'pe_privacy' => 'Privacy' +); + +############################################################################### +# index.php + +$LANG05 = array( + 1 => 'Geen Nuus om te Vertoon', + 2 => 'Daar is geen nuwe nuusartikels om te vertoon nie. Daar mag dalk geen nuusartikels vir hierdie onderwerp wees nie of jou gebruikersvoorkeure mag dalk te beperkend wees.', + 3 => ' vir onderwerp %s', + 4 => 'Artikel van die Dag', + 5 => 'Volgende', + 6 => 'Vorige', + 7 => 'Eerste', + 8 => 'Laaste' +); + +############################################################################### +# profiles.php + +$LANG08 = array( + 1 => 'Daar was \'n fout tydens die stuur van jou boodskap. Probeer asseblief weer.', + 2 => 'Boodskap suksesvol gestuur.', + 3 => 'Maak asseblief seker dat jy \'n geldige epos adres in die Antwoord Na veld ingevul het.', + 4 => 'Vul asseblief jou Naam, Antwoord Aan, Onderwerp en Boodskapvelde in', + 5 => 'Fout: Geen sodanige gebruiker.', + 6 => 'Daar was \'n fout.', + 7 => 'Gebruikersprofiel vir', + 8 => 'Gebruikernaam', + 9 => 'Gebruiker URL', + 10 => 'Stuur epos aan', + 11 => 'Jou Naam:', + 12 => 'Antwoord Na:', + 13 => 'Onderwerp:', + 14 => 'Boodskap:', + 15 => 'HTML word nie vertaal nie.', + 16 => 'Stuur Boodskap', + 17 => 'Epos Artikel aan \'n Vriend', + 18 => 'Aan Naam', + 19 => 'Na Epos Adres', + 20 => 'Van Naam', + 21 => 'Van Epos Adres', + 22 => 'Alle velde word vereis', + 23 => "Hierdie epos is aan jou gestuur deur %s by %s omdat hulle gedink het dat jy dalk mag belangstel in hierdie artikel op {$_CONF['site_url']}. Hierdie is nie gemorspos nie en die epos adres van die ontvanger is nie op 'n lys gestoor vir latere gebruik nie.", + 24 => 'Kommentaar op hierdie artikel by', + 25 => 'Jy moet ingetekn wees om hierdie kenmerk te benut. Deur jou te laat inteken vermy ons misbruik van die stelsel', + 26 => 'Hierdie vorm sal jou toelaat om \'n epos aan die gekose gebruiker te stuur. Alle velde word vereis.', + 27 => 'Kort boodskap', + 28 => '%s het geskryf: ', + 29 => "Hierdie is die daaglikse opsomming van {$_CONF['site_name']} vir ", + 30 => ' Daaglikse Nuusbrief vir ', + 31 => 'Titel', + 32 => 'Datum', + 33 => 'Lees die volledige artikel by', + 34 => 'Einde van Boodskap', + 35 => 'Jammer, hierdie gebruiker verkies om nie epos te ontvang nie.' +); + +############################################################################### +# search.php + +$LANG09 = array( + 1 => 'Gevorderde Soektog', + 2 => 'Sleutelwoorde', + 3 => 'Onderwerp', + 4 => 'Almal', + 5 => 'Tipe', + 6 => 'Artikels', + 7 => 'Kommentaar', + 8 => 'Skrywers', + 9 => 'Almal', + 10 => 'Soek', + 11 => 'Soekresultate', + 12 => 'passende artikels', + 13 => 'Soekresultate: Geen passende artikels', + 14 => 'Geen artikels het by jou sleutelwoorde gepas nie', + 15 => 'Probeer asseblief weer.', + 16 => 'Titel', + 17 => 'Datum', + 18 => 'Skrywer', + 19 => "Deursoek die hele {$_CONF['site_name']} databasis vir huidige en ouer artikels", + 20 => 'Datum', + 21 => 'tot', + 22 => '(Datum Formaat YYYY-MM-DD)', + 23 => 'Besigtigings', + 24 => '%d items gevind', + 25 => 'Gesoek vir', + 26 => 'items ', + 27 => 'sekondes', + 28 => 'Geen artikel of kommentaar pas by jou soeknavraag nie', + 29 => 'Artikel- en Kommentaarresultate', + 30 => '', + 31 => 'Hierdie proppie het geen passende resultaat gelewer nie', + 32 => '', + 33 => 'URL', + 34 => 'Ligging', + 35 => 'Heeldag', + 36 => '', + 37 => '', + 38 => '', + 39 => '', + 40 => '', + 41 => 'Jou soeknavraag moet ten minste 3 karakters bevat.', + 42 => 'Gebruik asseblief \'n datum wat as sulks geformatteer is YYYY-MM-DD (jaar-maand-dag).', + 43 => 'presiese sinsnede', + 44 => 'al hierdie woorde', + 45 => 'enig ============================================================================== Diff truncated at 200k characters From codesite-noreply @ google.com Tue Mar 31 13:23:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 04:23:50 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2MiAtIGdlZWtsb2ctMS41LjIbJEIkSBsoQmdlZWtsb2ct?= =?ISO-2022-JP?B?MS41LjJzcjEbJEIkTjRWJE5KUTk5JHIlXiE8JTgkcjUtPVIkNyReJDkhIxsoQg==?= Message-ID: <001517570894eae58404666290f7@google.com> Author: tacahi Date: Mon Mar 30 20:11:35 2009 New Revision: 1362 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージを記述します。 但し、svnが途中でクラッシュしたため、public_html/docs/changed-files だけが コミットできずにいます。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Mon Mar 30 20:11:35 2009 @@ -1,5 +1,11 @@ $Id$ +2009-03-31 Takahiro Kambe + + * geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージしました。 + これはセキュリティ修正を含みます。 + (http://www.geeklog.net/article.php/geeklog-1.5.2sr1) + 2009-03-29 mystral-kk * precheck(インストール前診断用スクリプト)を追加しました。 From codesite-noreply @ google.com Tue Mar 31 14:41:10 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 05:41:10 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2MSAtIGdlZWtsb2ctMS41LjIbJEIkSBsoQmdlZWtsb2ct?= =?ISO-2022-JP?B?MS41LjJzcjEbJEIkTjRWJE5KUTk5JHIlXiE8JTgkNyReJDkhIxsoQg==?= Message-ID: <000e0cd403f66eaeaf046663a566@google.com> Author: tacahi Date: Mon Mar 30 20:06:49 2009 New Revision: 1361 Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/index.php trunk/geeklog-1-jp-extended/public_html/docs/changed-files trunk/geeklog-1-jp-extended/public_html/docs/changes.html trunk/geeklog-1-jp-extended/public_html/docs/history trunk/geeklog-1-jp-extended/public_html/siteconfig.php trunk/geeklog-1-jp-extended/system/lib-admin.php trunk/geeklog-1-jp-extended/system/pear/Archive/Tar.php Log: geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージします。 Modified: trunk/geeklog-1-jp-extended/public_html/admin/install/index.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/admin/install/index.php (original) +++ trunk/geeklog-1-jp-extended/public_html/admin/install/index.php Mon Mar 30 20:06:49 2009 @@ -48,7 +48,7 @@ define("LB", "\n"); } if (!defined('VERSION')) { - define('VERSION', '1.5.2'); + define('VERSION', '1.5.2sr1'); } if (!defined('XHTML')) { define('XHTML', ' /'); Modified: trunk/geeklog-1-jp-extended/public_html/docs/changed-files ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/docs/changed-files (original) +++ trunk/geeklog-1-jp-extended/public_html/docs/changed-files Mon Mar 30 20:06:49 2009 @@ -1,15 +1,6 @@ -geeklog-1.5.2/language/japanese_utf-8.php -geeklog-1.5.2/plugins/calendar/language/estonian.php -geeklog-1.5.2/plugins/calendar/language/estonian_utf-8.php -geeklog-1.5.2/plugins/staticpages/services.inc.php -geeklog-1.5.2/public_html/admin/install/config-install.php -geeklog-1.5.2/public_html/admin/story.php -geeklog-1.5.2/public_html/comment.php -geeklog-1.5.2/public_html/docs/changed-files -geeklog-1.5.2/public_html/docs/changes.html -geeklog-1.5.2/public_html/docs/history -geeklog-1.5.2/public_html/lib-common.php -geeklog-1.5.2/public_html/siteconfig.php -geeklog-1.5.2/public_html/users.php -geeklog-1.5.2/system/lib-comment.php -geeklog-1.5.2/system/lib-security.php +geeklog-1.5.2sr1/public_html/admin/install/index.php +geeklog-1.5.2sr1/public_html/docs/changed-files +geeklog-1.5.2sr1/public_html/docs/changes.html +geeklog-1.5.2sr1/public_html/docs/history +geeklog-1.5.2sr1/public_html/siteconfig.php +geeklog-1.5.2sr1/system/lib-admin.php Modified: trunk/geeklog-1-jp-extended/public_html/docs/changes.html ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/docs/changes.html (original) +++ trunk/geeklog-1-jp-extended/public_html/docs/changes.html Mon Mar 30 20:06:49 2009 @@ -16,6 +16,11 @@

    このドキュメントでは最も重要な変更点や目につく変更点を簡潔に説明していま す。変更点の詳細なリストは、 ChangeLogをご覧ください。 docs/changed-filesには、前回リリース以来変更されたファイルの一覧が あります。

    +

    Geeklog 1.5.2sr1

    + +

    Fernando Muñoz reported a possible XSS in the query form on most admin panels that we are fixing with this release.

    + +

    Geeklog 1.5.2

    バグ修正

    Modified: trunk/geeklog-1-jp-extended/public_html/docs/history ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/docs/history (original) +++ trunk/geeklog-1-jp-extended/public_html/docs/history Mon Mar 30 20:06:49 2009 @@ -1,5 +1,14 @@ Geeklog History/Changes: +Mar 30, 2009 (1.5.2sr1) +------------ + +This release addresses the following security issue: + +Fernando Munoz reported a possible XSS in the query form on most admin panels +that we are fixing with this release (bug #0000841). + + Feb 8, 2009 (1.5.2) ----------- Modified: trunk/geeklog-1-jp-extended/public_html/siteconfig.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/siteconfig.php (original) +++ trunk/geeklog-1-jp-extended/public_html/siteconfig.php Mon Mar 30 20:06:49 2009 @@ -38,7 +38,7 @@ define('LB',"\n"); } if (!defined('VERSION')) { - define('VERSION', '1.5.2'); + define('VERSION', '1.5.2sr1'); } ?> Modified: trunk/geeklog-1-jp-extended/system/lib-admin.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/lib-admin.php (original) +++ trunk/geeklog-1-jp-extended/system/lib-admin.php Mon Mar 30 20:06:49 2009 @@ -221,7 +221,7 @@ $query = ''; if (isset ($_REQUEST['q'])) { # get query (text-search) - $query = $_REQUEST['q']; + $query = strip_tags(COM_stripslashes($_REQUEST['q'])); } $query_limit = ""; @@ -317,7 +317,7 @@ $admin_templates->set_var('lang_search', $LANG_ADMIN['search']); $admin_templates->set_var('lang_submit', $LANG_ADMIN['submit']); $admin_templates->set_var('lang_limit_results', $LANG_ADMIN['limit_results']); - $admin_templates->set_var('last_query', COM_applyFilter($query)); + $admin_templates->set_var('last_query', htmlspecialchars($query)); $admin_templates->set_var('filter', $filter); } @@ -398,7 +398,7 @@ $th_subtags .= '&' . $component . 'listpage=' . $page; } if (!empty ($query)) { - $th_subtags .= '&q=' . $query; + $th_subtags .= '&q=' . urlencode($query); } if (!empty ($query_limit)) { $th_subtags .= '&query_limit=' . $query_limit; Modified: trunk/geeklog-1-jp-extended/system/pear/Archive/Tar.php ============================================================================== --- trunk/geeklog-1-jp-extended/system/pear/Archive/Tar.php (original) +++ trunk/geeklog-1-jp-extended/system/pear/Archive/Tar.php Mon Mar 30 20:06:49 2009 @@ -1,22 +1,44 @@ | -// +----------------------------------------------------------------------+ -// -// $Id: Tar.php,v 1.39 2006/12/22 19:20:08 cellog Exp $ +/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ + +/** + * File::CSV + * + * PHP versions 4 and 5 + * + * Copyright (c) 1997-2008, + * Vincent Blavet + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * @category File_Formats + * @package Archive_Tar + * @author Vincent Blavet + * @copyright 1997-2008 The Authors + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Tar.php,v 1.43 2008/10/30 17:58:42 dufuz Exp $ + * @link http://pear.php.net/package/Archive_Tar + */ require_once 'PEAR.php'; @@ -28,8 +50,9 @@ * Creates a (compressed) Tar archive * * @author Vincent Blavet -* @version $Revision: 1.39 $ -* @package Archive +* @version $Revision: 1.43 $ +* @license http://www.opensource.org/licenses/bsd-license.php New BSD License +* @package Archive_Tar */ class Archive_Tar extends PEAR { @@ -377,14 +400,14 @@ function addString($p_filename, $p_string) { $v_result = true; - + if (!$this->_isArchive()) { if (!$this->_openWrite()) { return false; } $this->_close(); } - + if (!$this->_openAppend()) return false; @@ -524,12 +547,12 @@ function setAttribute() { $v_result = true; - + // ----- Get the number of variable list of arguments if (($v_size = func_num_args()) == 0) { return true; } - + // ----- Get the arguments $v_att_list = &func_get_args(); @@ -589,7 +612,7 @@ $p_filename = $this->_tarname; } clearstatcache(); - return @is_file($p_filename); + return @is_file($p_filename) && !@is_link($p_filename); } // }}} @@ -599,7 +622,7 @@ if ($this->_compress_type == 'gz') $this->_file = @gzopen($this->_tarname, "wb9"); else if ($this->_compress_type == 'bz2') - $this->_file = @bzopen($this->_tarname, "wb"); + $this->_file = @bzopen($this->_tarname, "w"); else if ($this->_compress_type == 'none') $this->_file = @fopen($this->_tarname, "wb"); else @@ -652,7 +675,7 @@ if ($this->_compress_type == 'gz') $this->_file = @gzopen($v_filename, "rb"); else if ($this->_compress_type == 'bz2') - $this->_file = @bzopen($v_filename, "rb"); + $this->_file = @bzopen($v_filename, "r"); else if ($this->_compress_type == 'none') $this->_file = @fopen($v_filename, "rb"); else @@ -673,9 +696,11 @@ { if ($this->_compress_type == 'gz') $this->_file = @gzopen($this->_tarname, "r+b"); - else if ($this->_compress_type == 'bz2') - $this->_file = @bzopen($this->_tarname, "r+b"); - else if ($this->_compress_type == 'none') + else if ($this->_compress_type == 'bz2') { + $this->_error('Unable to open bz2 in read/write mode \'' + .$this->_tarname.'\' (limitation of bz2 extension)'); + return false; + } else if ($this->_compress_type == 'none') $this->_file = @fopen($this->_tarname, "r+b"); else $this->_error('Unknown or missing compression type (' @@ -866,7 +891,7 @@ if (!$this->_addFile($v_filename, $v_header, $p_add_dir, $p_remove_dir)) return false; - if (@is_dir($v_filename)) { + if (@is_dir($v_filename) && !@is_link($v_filename)) { if (!($p_hdir = opendir($v_filename))) { $this->_warning("Directory '$v_filename' can not be read"); continue; @@ -999,24 +1024,28 @@ return false; } - $v_info = stat($p_filename); + $v_info = lstat($p_filename); $v_uid = sprintf("%6s ", DecOct($v_info[4])); $v_gid = sprintf("%6s ", DecOct($v_info[5])); - $v_perms = sprintf("%6s ", DecOct(fileperms($p_filename))); + $v_perms = sprintf("%6s ", DecOct($v_info['mode'])); - $v_mtime = sprintf("%11s", DecOct(filemtime($p_filename))); + $v_mtime = sprintf("%11s", DecOct($v_info['mode'])); - if (@is_dir($p_filename)) { + $v_linkname = ''; + + if (@is_link($p_filename)) { + $v_typeflag = '2'; + $v_linkname = readlink($p_filename); + $v_size = sprintf("%11s ", DecOct(0)); + } elseif (@is_dir($p_filename)) { $v_typeflag = "5"; $v_size = sprintf("%11s ", DecOct(0)); } else { $v_typeflag = ''; clearstatcache(); - $v_size = sprintf("%11s ", DecOct(filesize($p_filename))); + $v_size = sprintf("%11s ", DecOct($v_info['size'])); } - $v_linkname = ''; - $v_magic = ''; $v_version = ''; @@ -1323,6 +1352,7 @@ if (!$this->_readHeader($v_binary_data, $v_header)) return false; + $v_filename = trim($v_filename); $v_header['filename'] = $v_filename; if ($this->_maliciousFilename($v_filename)) { $this->_error('Malicious .tar detected, file "' . $v_filename . @@ -1530,6 +1560,9 @@ } } } elseif ($v_header['typeflag'] == "2") { + if (@file_exists($v_header['filename'])) { + @unlink($v_header['filename']); + } if (!@symlink($v_header['link'], $v_header['filename'])) { $this->_error('Unable to extract symbolic link {' .$v_header['filename'].'}'); @@ -1611,7 +1644,7 @@ { if (filesize($this->_tarname) == 0) return $this->_openWrite(); - + if ($this->_compress) { $this->_close(); @@ -1625,8 +1658,8 @@ if ($this->_compress_type == 'gz') $v_temp_tar = @gzopen($this->_tarname.".tmp", "rb"); elseif ($this->_compress_type == 'bz2') - $v_temp_tar = @bzopen($this->_tarname.".tmp", "rb"); - + $v_temp_tar = @bzopen($this->_tarname.".tmp", "r"); + if ($v_temp_tar == 0) { $this->_error('Unable to open file \''.$this->_tarname .'.tmp\' in binary read mode'); @@ -1680,14 +1713,14 @@ $v_size = filesize($this->_tarname); // We might have zero, one or two end blocks. - // The standard is two, but we should try to handle + // The standard is two, but we should try to handle // other cases. fseek($this->_file, $v_size - 1024); if (fread($this->_file, 512) == ARCHIVE_TAR_END_BLOCK) { fseek($this->_file, $v_size - 1024); } elseif (fread($this->_file, 512) == ARCHIVE_TAR_END_BLOCK) { - fseek($this->_file, $v_size - 512); + fseek($this->_file, $v_size - 512); } } @@ -1700,7 +1733,7 @@ { if (!$this->_openAppend()) return false; - + if ($this->_addList($p_filelist, $p_add_dir, $p_remove_dir)) $this->_writeFooter(); @@ -1746,7 +1779,7 @@ // {{{ _pathReduction() /** - * Compress path by changing for example "/dir/foo/../bar" to "/dir/bar", + * Compress path by changing for example "/dir/foo/../bar" to "/dir/bar", * rand emove double slashes. * * @param string $p_dir path to reduce From codesite-noreply @ google.com Tue Mar 31 16:16:26 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 07:16:26 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2MCAtIGdlZWtsb2ctMS41LjIbJEIkSBsoQmdlZWtsb2ct?= =?ISO-2022-JP?B?MS41LjJzcjEbJEIkTjRWJE5KUTk5JHIlXiE8JTgkNyReJDkhIxsoQg==?= Message-ID: <0016368e1b112e6819046664fa8d@google.com> Author: tacahi Date: Mon Mar 30 19:42:09 2009 New Revision: 1360 Modified: externals/geeklog-1.5.2/public_html/docs/changed-files trunk/geeklog-1-jp/public_html/admin/install/index.php trunk/geeklog-1-jp/public_html/docs/changes.html trunk/geeklog-1-jp/public_html/docs/history trunk/geeklog-1-jp/public_html/siteconfig.php trunk/geeklog-1-jp/system/lib-admin.php trunk/geeklog-1-jp/system/pear/Archive/Tar.php Log: geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージします。 Modified: externals/geeklog-1.5.2/public_html/docs/changed-files ============================================================================== --- externals/geeklog-1.5.2/public_html/docs/changed-files (original) +++ externals/geeklog-1.5.2/public_html/docs/changed-files Mon Mar 30 19:42:09 2009 @@ -1,15 +1,6 @@ -geeklog-1.5.2/language/japanese_utf-8.php -geeklog-1.5.2/plugins/calendar/language/estonian.php -geeklog-1.5.2/plugins/calendar/language/estonian_utf-8.php -geeklog-1.5.2/plugins/staticpages/services.inc.php -geeklog-1.5.2/public_html/admin/install/config-install.php -geeklog-1.5.2/public_html/admin/story.php -geeklog-1.5.2/public_html/comment.php -geeklog-1.5.2/public_html/docs/changed-files -geeklog-1.5.2/public_html/docs/changes.html -geeklog-1.5.2/public_html/docs/history -geeklog-1.5.2/public_html/lib-common.php -geeklog-1.5.2/public_html/siteconfig.php -geeklog-1.5.2/public_html/users.php -geeklog-1.5.2/system/lib-comment.php -geeklog-1.5.2/system/lib-security.php +geeklog-1.5.2sr1/public_html/admin/install/index.php +geeklog-1.5.2sr1/public_html/docs/changed-files +geeklog-1.5.2sr1/public_html/docs/changes.html +geeklog-1.5.2sr1/public_html/docs/history +geeklog-1.5.2sr1/public_html/siteconfig.php +geeklog-1.5.2sr1/system/lib-admin.php Modified: trunk/geeklog-1-jp/public_html/admin/install/index.php ============================================================================== --- trunk/geeklog-1-jp/public_html/admin/install/index.php (original) +++ trunk/geeklog-1-jp/public_html/admin/install/index.php Mon Mar 30 19:42:09 2009 @@ -48,7 +48,7 @@ define("LB", "\n"); } if (!defined('VERSION')) { - define('VERSION', '1.5.2'); + define('VERSION', '1.5.2sr1'); } if (!defined('XHTML')) { define('XHTML', ' /'); Modified: trunk/geeklog-1-jp/public_html/docs/changes.html ============================================================================== --- trunk/geeklog-1-jp/public_html/docs/changes.html (original) +++ trunk/geeklog-1-jp/public_html/docs/changes.html Mon Mar 30 19:42:09 2009 @@ -16,6 +16,11 @@

    このドキュメントでは最も重要な変更点や目につく変更点を簡潔に説明していま す。変更点の詳細なリストは、 ChangeLogをご覧ください。 docs/changed-filesには、前回リリース以来変更されたファイルの一覧が あります。

    +

    Geeklog 1.5.2sr1

    + +

    Fernando Muñoz reported a possible XSS in the query form on most admin panels that we are fixing with this release.

    + +

    Geeklog 1.5.2

    バグ修正

    Modified: trunk/geeklog-1-jp/public_html/docs/history ============================================================================== --- trunk/geeklog-1-jp/public_html/docs/history (original) +++ trunk/geeklog-1-jp/public_html/docs/history Mon Mar 30 19:42:09 2009 @@ -1,5 +1,14 @@ Geeklog History/Changes: +Mar 30, 2009 (1.5.2sr1) +------------ + +This release addresses the following security issue: + +Fernando Munoz reported a possible XSS in the query form on most admin panels +that we are fixing with this release (bug #0000841). + + Feb 8, 2009 (1.5.2) ----------- Modified: trunk/geeklog-1-jp/public_html/siteconfig.php ============================================================================== --- trunk/geeklog-1-jp/public_html/siteconfig.php (original) +++ trunk/geeklog-1-jp/public_html/siteconfig.php Mon Mar 30 19:42:09 2009 @@ -38,7 +38,7 @@ define('LB',"\n"); } if (!defined('VERSION')) { - define('VERSION', '1.5.2'); + define('VERSION', '1.5.2sr1'); } ?> Modified: trunk/geeklog-1-jp/system/lib-admin.php ============================================================================== --- trunk/geeklog-1-jp/system/lib-admin.php (original) +++ trunk/geeklog-1-jp/system/lib-admin.php Mon Mar 30 19:42:09 2009 @@ -221,7 +221,7 @@ $query = ''; if (isset ($_REQUEST['q'])) { # get query (text-search) - $query = $_REQUEST['q']; + $query = strip_tags(COM_stripslashes($_REQUEST['q'])); } $query_limit = ""; @@ -317,7 +317,7 @@ $admin_templates->set_var('lang_search', $LANG_ADMIN['search']); $admin_templates->set_var('lang_submit', $LANG_ADMIN['submit']); $admin_templates->set_var('lang_limit_results', $LANG_ADMIN['limit_results']); - $admin_templates->set_var('last_query', COM_applyFilter($query)); + $admin_templates->set_var('last_query', htmlspecialchars($query)); $admin_templates->set_var('filter', $filter); } @@ -398,7 +398,7 @@ $th_subtags .= '&' . $component . 'listpage=' . $page; } if (!empty ($query)) { - $th_subtags .= '&q=' . $query; + $th_subtags .= '&q=' . urlencode($query); } if (!empty ($query_limit)) { $th_subtags .= '&query_limit=' . $query_limit; Modified: trunk/geeklog-1-jp/system/pear/Archive/Tar.php ============================================================================== --- trunk/geeklog-1-jp/system/pear/Archive/Tar.php (original) +++ trunk/geeklog-1-jp/system/pear/Archive/Tar.php Mon Mar 30 19:42:09 2009 @@ -1,22 +1,44 @@ | -// +----------------------------------------------------------------------+ -// -// $Id: Tar.php,v 1.39 2006/12/22 19:20:08 cellog Exp $ +/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ + +/** + * File::CSV + * + * PHP versions 4 and 5 + * + * Copyright (c) 1997-2008, + * Vincent Blavet + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * @category File_Formats + * @package Archive_Tar + * @author Vincent Blavet + * @copyright 1997-2008 The Authors + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Tar.php,v 1.43 2008/10/30 17:58:42 dufuz Exp $ + * @link http://pear.php.net/package/Archive_Tar + */ require_once 'PEAR.php'; @@ -28,8 +50,9 @@ * Creates a (compressed) Tar archive * * @author Vincent Blavet -* @version $Revision: 1.39 $ -* @package Archive +* @version $Revision: 1.43 $ +* @license http://www.opensource.org/licenses/bsd-license.php New BSD License +* @package Archive_Tar */ class Archive_Tar extends PEAR { @@ -377,14 +400,14 @@ function addString($p_filename, $p_string) { $v_result = true; - + if (!$this->_isArchive()) { if (!$this->_openWrite()) { return false; } $this->_close(); } - + if (!$this->_openAppend()) return false; @@ -524,12 +547,12 @@ function setAttribute() { $v_result = true; - + // ----- Get the number of variable list of arguments if (($v_size = func_num_args()) == 0) { return true; } - + // ----- Get the arguments $v_att_list = &func_get_args(); @@ -589,7 +612,7 @@ $p_filename = $this->_tarname; } clearstatcache(); - return @is_file($p_filename); + return @is_file($p_filename) && !@is_link($p_filename); } // }}} @@ -599,7 +622,7 @@ if ($this->_compress_type == 'gz') $this->_file = @gzopen($this->_tarname, "wb9"); else if ($this->_compress_type == 'bz2') - $this->_file = @bzopen($this->_tarname, "wb"); + $this->_file = @bzopen($this->_tarname, "w"); else if ($this->_compress_type == 'none') $this->_file = @fopen($this->_tarname, "wb"); else @@ -652,7 +675,7 @@ if ($this->_compress_type == 'gz') $this->_file = @gzopen($v_filename, "rb"); else if ($this->_compress_type == 'bz2') - $this->_file = @bzopen($v_filename, "rb"); + $this->_file = @bzopen($v_filename, "r"); else if ($this->_compress_type == 'none') $this->_file = @fopen($v_filename, "rb"); else @@ -673,9 +696,11 @@ { if ($this->_compress_type == 'gz') $this->_file = @gzopen($this->_tarname, "r+b"); - else if ($this->_compress_type == 'bz2') - $this->_file = @bzopen($this->_tarname, "r+b"); - else if ($this->_compress_type == 'none') + else if ($this->_compress_type == 'bz2') { + $this->_error('Unable to open bz2 in read/write mode \'' + .$this->_tarname.'\' (limitation of bz2 extension)'); + return false; + } else if ($this->_compress_type == 'none') $this->_file = @fopen($this->_tarname, "r+b"); else $this->_error('Unknown or missing compression type (' @@ -866,7 +891,7 @@ if (!$this->_addFile($v_filename, $v_header, $p_add_dir, $p_remove_dir)) return false; - if (@is_dir($v_filename)) { + if (@is_dir($v_filename) && !@is_link($v_filename)) { if (!($p_hdir = opendir($v_filename))) { $this->_warning("Directory '$v_filename' can not be read"); continue; @@ -999,24 +1024,28 @@ return false; } - $v_info = stat($p_filename); + $v_info = lstat($p_filename); $v_uid = sprintf("%6s ", DecOct($v_info[4])); $v_gid = sprintf("%6s ", DecOct($v_info[5])); - $v_perms = sprintf("%6s ", DecOct(fileperms($p_filename))); + $v_perms = sprintf("%6s ", DecOct($v_info['mode'])); - $v_mtime = sprintf("%11s", DecOct(filemtime($p_filename))); + $v_mtime = sprintf("%11s", DecOct($v_info['mode'])); - if (@is_dir($p_filename)) { + $v_linkname = ''; + + if (@is_link($p_filename)) { + $v_typeflag = '2'; + $v_linkname = readlink($p_filename); + $v_size = sprintf("%11s ", DecOct(0)); + } elseif (@is_dir($p_filename)) { $v_typeflag = "5"; $v_size = sprintf("%11s ", DecOct(0)); } else { $v_typeflag = ''; clearstatcache(); - $v_size = sprintf("%11s ", DecOct(filesize($p_filename))); + $v_size = sprintf("%11s ", DecOct($v_info['size'])); } - $v_linkname = ''; - $v_magic = ''; $v_version = ''; @@ -1323,6 +1352,7 @@ if (!$this->_readHeader($v_binary_data, $v_header)) return false; + $v_filename = trim($v_filename); $v_header['filename'] = $v_filename; if ($this->_maliciousFilename($v_filename)) { $this->_error('Malicious .tar detected, file "' . $v_filename . @@ -1530,6 +1560,9 @@ } } } elseif ($v_header['typeflag'] == "2") { + if (@file_exists($v_header['filename'])) { + @unlink($v_header['filename']); + } if (!@symlink($v_header['link'], $v_header['filename'])) { $this->_error('Unable to extract symbolic link {' .$v_header['filename'].'}'); @@ -1611,7 +1644,7 @@ { if (filesize($this->_tarname) == 0) return $this->_openWrite(); - + if ($this->_compress) { $this->_close(); @@ -1625,8 +1658,8 @@ if ($this->_compress_type == 'gz') $v_temp_tar = @gzopen($this->_tarname.".tmp", "rb"); elseif ($this->_compress_type == 'bz2') - $v_temp_tar = @bzopen($this->_tarname.".tmp", "rb"); - + $v_temp_tar = @bzopen($this->_tarname.".tmp", "r"); + if ($v_temp_tar == 0) { $this->_error('Unable to open file \''.$this->_tarname .'.tmp\' in binary read mode'); @@ -1680,14 +1713,14 @@ $v_size = filesize($this->_tarname); // We might have zero, one or two end blocks. - // The standard is two, but we should try to handle + // The standard is two, but we should try to handle // other cases. fseek($this->_file, $v_size - 1024); if (fread($this->_file, 512) == ARCHIVE_TAR_END_BLOCK) { fseek($this->_file, $v_size - 1024); } elseif (fread($this->_file, 512) == ARCHIVE_TAR_END_BLOCK) { - fseek($this->_file, $v_size - 512); + fseek($this->_file, $v_size - 512); } } @@ -1700,7 +1733,7 @@ { if (!$this->_openAppend()) return false; - + if ($this->_addList($p_filelist, $p_add_dir, $p_remove_dir)) $this->_writeFooter(); @@ -1746,7 +1779,7 @@ // {{{ _pathReduction() /** - * Compress path by changing for example "/dir/foo/../bar" to "/dir/bar", + * Compress path by changing for example "/dir/foo/../bar" to "/dir/bar", * rand emove double slashes. * * @param string $p_dir path to reduce From codesite-noreply @ google.com Tue Mar 31 21:56:20 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 12:56:20 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2NCAtIGdlZWtsb2ctMS41LjIbJEIkSBsoQmdlZWtsb2ct?= =?ISO-2022-JP?B?MS41LjJzcjEbJEIkTjRWJE5KUTk5JE4lXiE8JTgkcjUtTz8kNyReJDkhIxsoQg==?= Message-ID: <001636163f41bccca3046669b9b0@google.com> Author: tacahi Date: Tue Mar 31 02:20:40 2009 New Revision: 1364 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更のマージを記録します。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Mar 31 02:20:40 2009 @@ -1,4 +1,10 @@ -$Id$ +?$Id$ + +2009-03-31 Takahiro Kambe + + * geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージしました。 + これはセキュリティ修正を含みます。 + (http://www.geeklog.net/article.php/geeklog-1.5.2sr1) 2009-03-29 mystral-kk From codesite-noreply @ google.com Tue Mar 31 22:14:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 13:14:50 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2MyAtIGdlZWtsb2ctMS41LjIbJEIkSBsoQmdlZWtsb2ct?= =?ISO-2022-JP?B?MS41LjJzcjEbJEIkTjRWJE5KUTk5JHIlXiE8JTgkNyReJDkhIxsoQg==?= Message-ID: <0016e644c766e9ba23046669fb4f@google.com> Author: tacahi Date: Tue Mar 31 02:06:02 2009 New Revision: 1363 Modified: trunk/geeklog-1-jp/public_html/docs/changed-files Log: geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージします。 (svnがクラッシュして、コミットできていなかった分の追加です。) Modified: trunk/geeklog-1-jp/public_html/docs/changed-files ============================================================================== --- trunk/geeklog-1-jp/public_html/docs/changed-files (original) +++ trunk/geeklog-1-jp/public_html/docs/changed-files Tue Mar 31 02:06:02 2009 @@ -1,15 +1,6 @@ -geeklog-1.5.2/language/japanese_utf-8.php -geeklog-1.5.2/plugins/calendar/language/estonian.php -geeklog-1.5.2/plugins/calendar/language/estonian_utf-8.php -geeklog-1.5.2/plugins/staticpages/services.inc.php -geeklog-1.5.2/public_html/admin/install/config-install.php -geeklog-1.5.2/public_html/admin/story.php -geeklog-1.5.2/public_html/comment.php -geeklog-1.5.2/public_html/docs/changed-files -geeklog-1.5.2/public_html/docs/changes.html -geeklog-1.5.2/public_html/docs/history -geeklog-1.5.2/public_html/lib-common.php -geeklog-1.5.2/public_html/siteconfig.php -geeklog-1.5.2/public_html/users.php -geeklog-1.5.2/system/lib-comment.php -geeklog-1.5.2/system/lib-security.php +geeklog-1.5.2sr1/public_html/admin/install/index.php +geeklog-1.5.2sr1/public_html/docs/changed-files +geeklog-1.5.2sr1/public_html/docs/changes.html +geeklog-1.5.2sr1/public_html/docs/history +geeklog-1.5.2sr1/public_html/siteconfig.php +geeklog-1.5.2sr1/system/lib-admin.php From codesite-noreply @ google.com Tue Mar 31 22:51:02 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 13:51:02 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2NiAtIHIxMzY1GyRCJE45OT83JHIbKEJDSEFOR0VT?= =?ISO-2022-JP?B?LmpwGyRCJEs1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <0016e6434612591a4804666a7d20@google.com> Author: mystralkk Date: Tue Mar 31 06:22:54 2009 New Revision: 1366 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: r1365の更新をCHANGES.jpに記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Mar 31 06:22:54 2009 @@ -1,5 +1,10 @@ ?$Id$ +2009-03-31 mystral-kk + + * ファイル管理(filemgmt)プラグインで、RSSが日付の新しい順に出力されない + バグ(Issue #64)に対処しました。 + 2009-03-31 Takahiro Kambe * geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージしました。 From codesite-noreply @ google.com Tue Mar 31 22:55:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 13:55:36 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2NSAtIElzc3VlICM2NBskQiRLQlAxfiQ3JF4bKEI=?= =?ISO-2022-JP?B?GyRCJDckPyEjGyhC?= Message-ID: <0016361e7cc6ae21cd04666a8dea@google.com> Author: mystralkk Date: Tue Mar 31 06:19:51 2009 New Revision: 1365 Modified: trunk/geeklog-1-jp-extended/plugins/filemgmt/functions.inc Log: Issue #64に対応しました。 Modified: trunk/geeklog-1-jp-extended/plugins/filemgmt/functions.inc ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/filemgmt/functions.inc (original) +++ trunk/geeklog-1-jp-extended/plugins/filemgmt/functions.inc Tue Mar 31 06:19:51 2009 @@ -655,7 +655,7 @@ $result = DB_query ("SELECT topic,limits FROM {$_TABLES['syndication']} WHERE fid = $feed"); $F = DB_fetchArray ($result); - $sql = "SELECT lid,title,submitter,date FROM {$_FM_TABLES['filemgmt_filedetail']}" . filemgmt_buildSql ($F['topic'], $F['limits']); + $sql = "SELECT lid,title,submitter,date FROM {$_FM_TABLES['filemgmt_filedetail']} ORDER BY date DESC " . filemgmt_buildSql ($F['topic'], $F['limits']); $result = DB_query ($sql); $num = DB_numRows ($result); for ($i = 0; $i < $num; $i++) { From codesite-noreply @ google.com Tue Mar 31 23:15:29 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 14:15:29 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2NyAtIGRvY3MvY2hhbmdlcy5odG1sGyRCJE4bKEJzcjE=?= =?ISO-2022-JP?B?GyRCSXQkTktdTHUkSCEkGyhCZG9jcy9oaXN0b3J5Lmh0bWwbJEIkchsoQnNyMRskQiRLQlAxfiQ1JDskXhsoQg==?= =?ISO-2022-JP?B?GyRCJDckPyEjGyhC?= Message-ID: <00151750dbe2c8a21804666ad452@google.com> Author: ivysoho Date: Tue Mar 31 06:42:57 2009 New Revision: 1367 Modified: trunk/geeklog-1-jp/CHANGES.jp trunk/geeklog-1-jp/public_html/docs/changes.html trunk/geeklog-1-jp/public_html/docs/history.html Log: docs/changes.htmlのsr1部の翻訳と,docs/history.htmlをsr1に対応させました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Tue Mar 31 06:42:57 2009 @@ -1,5 +1,10 @@ $Id$ +2009-03-31 Tetsuko Komma + + * docs/changes.htmlのsr1部の翻訳と,docs/history.htmlをsr1に + 対応させました。 + 2009-03-31 Takahiro Kambe * geeklog-1.5.2とgeeklog-1.5.2sr1の間の変更をマージしました。 Modified: trunk/geeklog-1-jp/public_html/docs/changes.html ============================================================================== --- trunk/geeklog-1-jp/public_html/docs/changes.html (original) +++ trunk/geeklog-1-jp/public_html/docs/changes.html Tue Mar 31 06:42:57 2009 @@ -9,16 +9,16 @@

    Geeklog Documentation

    - +

    変更点

    -

    このドキュメントでは最も重要な変更点や目につく変更点を簡潔に説明していま す。変更点の詳細なリストは、 +

    このドキュメントでは最も重要な変更点や目につく変更点を簡潔に説明していま す。変更点の詳細なリストは、 ChangeLogをご覧ください。 docs/changed-filesには、前回リリース以来変更されたファイルの一覧が あります。

    -

    Geeklog 1.5.2sr1

    +

    Geeklog 1.5.2sr1

    -

    Fernando Muñoz reported a possible XSS in the query form on most admin panels that we are fixing with this release.

    +Fernando Muñoz は,管理者用クエリフォームにおいてXSSの問題を報告し,このリリースでフィックスしました。

    Geeklog 1.5.2

    Modified: trunk/geeklog-1-jp/public_html/docs/history.html ============================================================================== --- trunk/geeklog-1-jp/public_html/docs/history.html (original) +++ trunk/geeklog-1-jp/public_html/docs/history.html Tue Mar 31 06:42:57 2009 @@ -10,9 +10,17 @@ -

    Geeklog History/Changes:

    +

    Geeklog History/Changes:

    -

    Feb 8, 2009 (1.5.2)

    +

    Mar 30, 2009 (1.5.2sr1)

    + +
      +
    • This release addresses the following security issue:
    • +
    • Fernando Munoz reported a possible XSS in the query form on most admin panels
      + that we are fixing with this release (bug #0000841).
    • +
    + +

    Feb 8, 2009 (1.5.2)

    • The default replacement text for censored text was supposed to read "censored", not "censormode" [Dirk]
    • From codesite-noreply @ google.com Tue Mar 31 23:19:53 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 31 Mar 2009 14:19:53 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTM2OCAtIHIxMzY3GyRCJE45OT83JHIbKEJnZWVrbG9n?= =?ISO-2022-JP?B?LTEtanAtZXh0ZW5kZWQbJEIkSyRiRSxNUSQ3JF4kOSEjGyhC?= Message-ID: <00151750e9848d71e904666ae404@google.com> Author: ivysoho Date: Tue Mar 31 06:47:22 2009 New Revision: 1368 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp trunk/geeklog-1-jp-extended/public_html/docs/changes.html trunk/geeklog-1-jp-extended/public_html/docs/history.html Log: r1367の更新をgeeklog-1-jp-extendedにも適用します。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Mar 31 06:47:22 2009 @@ -1,5 +1,10 @@ ?$Id$ +2009-03-31 Tetsuko Komma + + * docs/changes.htmlのsr1部の翻訳と,docs/history.htmlをsr1に + 対応させました。 + 2009-03-31 mystral-kk * ファイル管理(filemgmt)プラグインで、RSSが日付の新しい順に出力されない Modified: trunk/geeklog-1-jp-extended/public_html/docs/changes.html ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/docs/changes.html (original) +++ trunk/geeklog-1-jp-extended/public_html/docs/changes.html Tue Mar 31 06:47:22 2009 @@ -9,16 +9,16 @@

      Geeklog Documentation

      - +

      変更点

      -

      このドキュメントでは最も重要な変更点や目につく変更点を簡潔に説明していま す。変更点の詳細なリストは、 +

      このドキュメントでは最も重要な変更点や目につく変更点を簡潔に説明していま す。変更点の詳細なリストは、 ChangeLogをご覧ください。 docs/changed-filesには、前回リリース以来変更されたファイルの一覧が あります。

      -

      Geeklog 1.5.2sr1

      +

      Geeklog 1.5.2sr1

      -

      Fernando Muñoz reported a possible XSS in the query form on most admin panels that we are fixing with this release.

      +Fernando Muñoz は,管理者用クエリフォームにおいてXSSの問題を報告し,このリリースでフィックスしました。

      Geeklog 1.5.2

      Modified: trunk/geeklog-1-jp-extended/public_html/docs/history.html ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/docs/history.html (original) +++ trunk/geeklog-1-jp-extended/public_html/docs/history.html Tue Mar 31 06:47:22 2009 @@ -10,9 +10,17 @@ -

      Geeklog History/Changes:

      +

      Geeklog History/Changes:

      -

      Feb 8, 2009 (1.5.2)

      +

      Mar 30, 2009 (1.5.2sr1)

      + +
        +
      • This release addresses the following security issue:
      • +
      • Fernando Munoz reported a possible XSS in the query form on most admin panels
        + that we are fixing with this release (bug #0000841).
      • +
      + +

      Feb 8, 2009 (1.5.2)

      • The default replacement text for censored text was supposed to read "censored", not "censormode" [Dirk]