From codesite-noreply @ google.com Tue Jun 2 21:55:27 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 02 Jun 2009 12:55:27 +0000 Subject: [geeklog-jp commit] r1565 - url rewrite Message-ID: <000e0cd20d128be7e3046b5d0ed7@google.com> Author: tsuchi000 Date: Tue Jun 2 05:54:10 2009 New Revision: 1565 Added: trunk/plugins/filemgmt/update_20090602.html (contents, props changed) Removed: trunk/plugins/filemgmt/update_20080926.html Modified: trunk/plugins/filemgmt/public_html/include/dlformat.php trunk/plugins/filemgmt/public_html/index.php trunk/plugins/filemgmt/templates/filelisting_record.thtml Log: url rewrite Modified: trunk/plugins/filemgmt/public_html/include/dlformat.php ============================================================================== --- trunk/plugins/filemgmt/public_html/include/dlformat.php (original) +++ trunk/plugins/filemgmt/public_html/include/dlformat.php Tue Jun 2 05:54:10 2009 @@ -27,7 +27,7 @@ // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------- // - +//@@@@@20090602 update urlrewrite if (basename($GLOBALS['PHP_SELF']) == "dlformat.php") { exit(); @@ -63,21 +63,21 @@ $p->set_var('votestring', $votestring); } else { $p->set_var('rating',$rating); - $p->set_var('votestring', ''); + $p->set_var('votestring', ''); } if ($logourl != '') { $p->set_var('snapshot_icon',''); $p->set_var('snapshot_url',$filemgmt_FileSnapURL . $logourl); $p->set_var('LANG_CLICK2SEE', _MD_CLICK2SEE.$logourl); $p->set_var('show_snapshoticon',''); - $p->set_var('show_snapshoticon_na','none'); + $p->set_var('show_snapshoticon_na','none'); } else { $p->set_var('show_snapshoticon','none'); - $p->set_var('show_snapshoticon_na',''); + $p->set_var('show_snapshoticon_na',''); $p->set_var('snapshot_icon',''); $p->set_var('snapshot_url',''); $p->set_var('LANG_CLICK2SEE',''); -} +} $p->set_var('LANG_MD_SCREENSHOT_NA', _MD_SCREENSHOT_NA); $p->set_var('LANG_VERSION', _MD_VERSION); @@ -92,9 +92,9 @@ $p->set_var('end_dlreport_link',''); } else { $p->set_var('begin_dlreport_link',''); - $p->set_var('end_dlreport_link',''); + $p->set_var('end_dlreport_link',''); } -$p->set_var('download_times',sprintf(_MD_DLTIMES,$hits)); +$p->set_var('download_times',sprintf(_MD_DLTIMES,$hits)); $p->set_var('download_count',$hits); $p->set_var('LANG_FILESIZE',_MD_FILESIZE); $p->set_var('file_size',PrettySize($size)); @@ -114,21 +114,27 @@ $comment_link = '' . _MD_ENTERCOMMENT . ''; } $p->set_var('comment_link',$comment_link); - $p->set_var('show_comments',''); + $p->set_var('show_comments',''); } else { - $p->set_var('show_comments','none'); + $p->set_var('show_comments','none'); } $p->set_var('LANG_DOWNLOAD',_MD_DOWNLOAD); -$p->set_var('LANG_FILELINK',_MD_FILELINK); -$p->set_var('LANG_RATETHISFILE',_MD_RATETHISFILE); +$p->set_var('LANG_FILELINK',_MD_FILELINK); +$p->set_var('LANG_RATETHISFILE',_MD_RATETHISFILE); $p->set_var('LANG_REPORTBROKEN',_MD_REPORTBROKEN); +//@@@@@20090602add----> +$pageurl = COM_buildURL ($_CONF[site_url]. "/filemgmt/index.php?id=".$lid); +$readmore_link=COM_createLink(_MD_FILELINK, $pageurl); +$p->set_var('readmore_link',$readmore_link); +//@@@@@20090602add<---- + if ($FilemgmtAdmin) { $p->set_var('LANG_EDIT', _MD_EDIT); - $p->set_var('show_editlink',''); + $p->set_var('show_editlink',''); } else { - $p->set_var('LANG_EDIT', ''); + $p->set_var('LANG_EDIT', ''); $p->set_var('show_editlink','none'); } Modified: trunk/plugins/filemgmt/public_html/index.php ============================================================================== --- trunk/plugins/filemgmt/public_html/index.php (original) +++ trunk/plugins/filemgmt/public_html/index.php Tue Jun 2 05:54:10 2009 @@ -2,7 +2,7 @@ /* Reminder: always indent with 4 spaces (no tabs). */ // +-------------------------------------------------------------------------+ -// | File Management Plugin for Geeklog - by portalparts www.portalparts.com | +// | File Management Plugin for Geeklog - by portalparts www.portalparts.com | // | File: index.php | // | Main public script to view filemgmt categories and files | // +-------------------------------------------------------------------------+ @@ -31,6 +31,8 @@ // | | // +-------------------------------------------------------------------------+ // +//@@@@@20090602update urlrewrite + require_once("../lib-common.php"); include_once($_CONF[path_html]."filemgmt/include/header.php"); include($_CONF[path_html] ."filemgmt/include/functions.php"); @@ -58,11 +60,16 @@ $mytree->setGroupAccessFilter($_GROUPS); $display = COM_siteHeader('menu'); - $lid = COM_applyFilter($_GET['id'],true); + //@@@@@20090602update urlrewrite ----> + //$lid = COM_applyFilter($_GET['id'],true); + COM_setArgNames(array('id')); + $lid = COM_applyFilter(COM_getArgument('id'),true); + //@@@@@20090602update urlrewrite<----- + if ($lid == 0) { // Check if the script is being called from the commentbar $lid = str_replace('fileid_','',$_POST['id']); } - + $groupsql = filemgmt_buildAccessSql(); $sql = "SELECT COUNT(*) FROM {$_FM_TABLES['filemgmt_filedetail']} a "; @@ -71,24 +78,24 @@ list($fileAccessCnt) = DB_fetchArray( DB_query($sql)); if ($fileAccessCnt > 0 AND DB_count($_FM_TABLES['filemgmt_filedetail'],"lid",$lid ) == 1) { - + $p->set_var('block_header', COM_startBlock("". $LANG_FILEMGMT['plugin_name'] ."")); $p->set_var('block_footer', COM_endBlock()); - + require_once $_CONF['path_system'] . 'lib-comment.php'; - + $sql = "SELECT d.lid, d.cid, d.title, d.url, d.homepage, d.version, d.size, d.logourl, d.submitter, d.status, d.date, "; $sql .= "d.hits, d.rating, d.votes, d.comments, t.description FROM {$_FM_TABLES['filemgmt_filedetail']} d, "; $sql .= "{$_FM_TABLES['filemgmt_filedesc']} t WHERE d.lid='$lid' AND d.lid=t.lid AND status > 0"; - + $result = DB_query($sql); list($lid, $cid, $dtitle, $url, $homepage, $version, $size, $logourl, $submitter, $status, $time, $hits, $rating, $votes, $comments, $description) = DB_fetchARRAY($result); - + $pathstring = ""._MD_MAIN." : "; $nicepath = $mytree->getNicePathFromId($cid, "title", "{$_CONF['site_url']}/filemgmt/viewcat.php"); $pathstring .= $nicepath; $p->set_var('category_path_link',$pathstring); - + $rating = number_format($rating, 2); $dtitle = $myts->makeTboxData4Show($dtitle); $url = $myts->makeTboxData4Show($url); @@ -103,20 +110,19 @@ list ($submitter_name,$submitter_fullname,$photo) = DB_fetchARRAY($result2); $submitter_name = COM_getDisplayName ($submitter, $submitter_name, $submitter_fullname); include($_CONF[path_html] ."/filemgmt/include/dlformat.php"); - $p->set_var('cssid',1); $p->parse ('filelisting_records', 'records'); if (SEC_hasRights('filemgmt.edit')) { $delete_option = true; } else { $delete_option = false; - } + } $p->set_var('comment_records', CMT_userComments( "fileid_{$lid}", $title, 'filemgmt',$_POST['order'],$_POST['mode'],0,1,false,$delete_option)); $p->parse ('output', 'page'); $display .= $p->finish ($p->get_var('output')); } else { - + $p = new Template($_CONF['path'] . 'plugins/filemgmt/templates'); $p->set_file (array ( 'page' => 'filelisting.thtml', @@ -148,7 +154,7 @@ $countsql = DB_query($sql); list($maxrows) = DB_fetchArray($countsql); $numpages = ceil($maxrows / $show); - + $p->set_var('block_header', COM_startBlock(sprintf(_MD_LISTINGHEADING,$maxrows))); $p->set_var('block_footer', COM_endBlock()); $count = 0; @@ -167,7 +173,7 @@ $category_image_link .= ''; $p->set_var('category_link',$category_image_link); } else { - $p->set_var('category_link',' '); + $p->set_var('category_link',' '); } $downloadsWaitingSubmission = getTotalItems($myrow['cid'], 0); @@ -198,7 +204,7 @@ $chcount++; } $p->set_var('subcategories',$subcategories); - $count++; + $count++; if ($count == $numCategoriesPerRow) { $p->set_var('end_of_row',''); $p->parse ('category_records', 'category',true); @@ -207,13 +213,13 @@ } else { $p->set_var('end_of_row',''); $p->parse ('category_records', 'category',true); - $p->set_var('new_table_row',''); + $p->set_var('new_table_row',''); } } } } - - + + $offset = ($page - 1) * $show; $sql = "SELECT d.lid, d.cid, d.title, url, homepage, version, size, platform, submitter, logourl, status, "; @@ -254,7 +260,7 @@ $cssid = ($cssid == 2) ? 1 : 2; } } - + // Print Google-like paging navigation $base_url = $_CONF['site_url'] . '/filemgmt/index.php'; $p->set_var('page_navigation', COM_printPageNavigation($base_url,$page, $numpages)); Modified: trunk/plugins/filemgmt/templates/filelisting_record.thtml ============================================================================== --- trunk/plugins/filemgmt/templates/filelisting_record.thtml (original) +++ trunk/plugins/filemgmt/templates/filelisting_record.thtml Tue Jun 2 05:54:10 2009 @@ -19,19 +19,19 @@ - + {snapshot_icon}{LANG_SCREENSHOT} - - + + - + {LANG_MD_SCREENSHOT_NA} {LANG_VERSION}:  {version}  {LANG_SUBMITDATE}: {datetime}   {LANG_RATING}{rating}{votestring}  @@ -44,7 +44,7 @@ {comment_link} |  {LANG_DOWNLOAD} |   - {LANG_FILELINK} |   + {readmore_link} |  {LANG_RATETHISFILE} |   {LANG_REPORTBROKEN}  | {LANG_EDIT} Added: trunk/plugins/filemgmt/update_20090602.html ============================================================================== --- (empty file) +++ trunk/plugins/filemgmt/update_20090602.html Tue Jun 2 05:54:10 2009 @@ -0,0 +1,122 @@ + + + + + + +Geeklog ?T?C?g + +

WIKI JapanesefilemgmtFiles + +

+ +

Ver1.5.3 ORIGINAL?Ń_?E?????[?h
+??{??Ł@??I?X?V??2008/01/29 ??{?????Ń_?E?????[?h +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
?t?@?C???i?t?H???_?j????I?ύX????l
/language/japanese.php2007/06/161.5.2???ύX???
/language/japanese_utf-8.php2007/06/161.5.2???ύX???
/public_htm/include/functions.php2008/01/29date format multilang ?Ή??@by hiroron
/public_htm/viewcat.php2006/06/17?y?[?W?i?r?Q?[?V????????s?ǏC??1.5.3?ʼn??
/templates/sortmenu.thtml2006/06/16?^?C?g??????N???b?N????????????????????????????C??1.5.3?ʼn??
functions.php2008/01/15Wht's New ??????????
filemgmt.php2007/05/20????l?ύX1.5.2???ύX???
/sql/filemgmt_sql_install.php2008/01/15?C???X?g?[????????J?e?S?????
+

1.5?p???C???@??I?X?V??2009/06/02??{?????Ń_?E?????[?h + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
?t?@?C???i?t?H???_?j????I?ύX????l
/admin/index.php2008/09/17CSRF checks
/admin/install.php2008/09/17CSRF checks
function.inc2009/06/02include check urlrewrite
public_html/index.php2009/06/02urlrewrite
public_html/include/dlformat.php2009/06/02urlrewrite
template/filelisting_record2009/06/02urlrewrite
+

???Fplugins/filemgmt/filemgmt.php?@(??肪?L??????Ă???t?@?C??)???t?@?C??????????Ă???????A?Ǘ??????X?V???????Ă????????B +

+ + + + + \ No newline at end of file From codesite-noreply @ google.com Sun Jun 7 10:32:00 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 01:32:00 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU2NiAtIHRydW5rGyRCJEckTz0kQDU6USROGyhC?= =?ISO-2022-JP?B?GyRCJVUlISUkJWtMPiRONFYwYyQkJHI9JEA1JDckXiQ5ISMbKEI=?= Message-ID: <000e0cd3298290ee50046bb8171f@google.com> Author: tacahi Date: Sat Jun 6 18:31:00 2009 New Revision: 1566 Added: branches/geeklog-new-tree/plugins-jp/japanize/public_html/index.html - copied unchanged from r1554, /branches/geeklog-new-tree/plugins-jp/japanize/public_html/inex.html Removed: branches/geeklog-new-tree/plugins-jp/japanize/public_html/inex.html Log: trunkでは修正済のファイル名の間違いを修正します。 From codesite-noreply @ google.com Sun Jun 7 15:44:03 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 06:44:03 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU2NyAtIOaXpeacrOiqnuWfuuacrOeJiOOBqOWFsQ==?= =?UTF-8?B?6YCa44Gu44OV44Kh44Kk44Or44KS5L2/55So44GZ44KL44GT44Go44Gr44GX44Gm44CB44GT44Gu44OV?= =?UTF-8?B?44Kh77+9Li4u?= Message-ID: <0016364179378e431b046bbc73c9@google.com> Author: tacahi Date: Sat Jun 6 23:43:45 2009 New Revision: 1567 Removed: branches/geeklog-new-tree/extended/release_jp.php Log: 日本語基本版と共通のファイルを使用することにして、このファイルは削除します。 From codesite-noreply @ google.com Sun Jun 7 16:07:06 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 07:07:06 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU2OCAtIBskQklUTVckSjZ1JE4lRyUjJWwbKEI=?= =?ISO-2022-JP?B?GyRCJS8lSCVqJHI6bz18JDckXiQ5ISMbKEI=?= Message-ID: <000e0cd25088f544e4046bbcc545@google.com> Author: tacahi Date: Sun Jun 7 00:06:42 2009 New Revision: 1568 Removed: trunk/geeklog-1-jp/public_html/layout/mobile/images/droplinemenu/ Log: 不要な空のディレクトリを削除します。 From codesite-noreply @ google.com Sun Jun 7 16:15:07 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 07:15:07 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU2OSAtIBskQklUTVckSjZ1JE4lRyUjJWwbKEI=?= =?ISO-2022-JP?B?GyRCJS8lSCVqJHI6bz18JDckXiQ5ISMbKEI=?= Message-ID: <0016e64b9d08a89624046bbce293@google.com> Author: tacahi Date: Sun Jun 7 00:14:24 2009 New Revision: 1569 Removed: trunk/geeklog-1-jp/public_html/layout/mobile_3g/images/droplinemenu/ Log: 不要な空のディレクトリを削除します。 From codesite-noreply @ google.com Sun Jun 7 16:26:10 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 07:26:10 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3MCAtIHB1YmxpY19odG1sL2xheW91dC9tb2JpbA==?= =?ISO-2022-JP?B?ZS9pbWFnZXMvZHJvcGxpbmVtZW51IBskQiRIGyhC?= Message-ID: <000e0cd2e2a43317a8046bbd0a0a@google.com> Author: tacahi Date: Sun Jun 7 00:25:39 2009 New Revision: 1570 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: public_html/layout/mobile/images/droplinemenu と public_html/layout/mobile_3g/images/droplinemenu の削除を記録しました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Sun Jun 7 00:25:39 2009 @@ -1,5 +1,11 @@ $Id$ +2009-06-07 Takahiro Kambe + + * 空のディレクトリ public_html/layout/mobile/images/droplinemenu と + public_html/layout/mobile_3g/images/droplinemenu は不要なので削除 + しました。 + 2009-04-30 Takahiro Kambe * geeklog-1.5.2sr4-jp-1.0をリリースします。 From codesite-noreply @ google.com Sun Jun 7 16:30:11 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 07:30:11 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3MSAtIHIxNTY4LCByMTU2ORskQiRIRjFNTSRLGyhC?= =?ISO-2022-JP?B?GyRCSVRNVyRKNnUkTiVHJSMlbCUvJUglaiRyOm89fCQ3JF4kOSEjGyhC?= Message-ID: <000e0cd1776a8940c3046bbd18ea@google.com> Author: tacahi Date: Sun Jun 7 00:27:01 2009 New Revision: 1571 Removed: trunk/geeklog-1-jp-extended/public_html/layout/mobile/images/droplinemenu/ trunk/geeklog-1-jp-extended/public_html/layout/mobile_3g/images/droplinemenu/ Log: r1568, r1569と同様に不要な空のディレクトリを削除します。 From codesite-noreply @ google.com Sun Jun 7 16:34:11 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 07:34:11 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3MiAtIHB1YmxpY19odG1sL2xheW91dC9tb2JpbA==?= =?ISO-2022-JP?B?ZS9pbWFnZXMvZHJvcGxpbmVtZW51IBskQiRIGyhC?= Message-ID: <001636e0a91cdc7f20046bbd26bc@google.com> Author: tacahi Date: Sun Jun 7 00:27:34 2009 New Revision: 1572 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: public_html/layout/mobile/images/droplinemenu と public_html/layout/mobile_3g/images/droplinemenu の削除を記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Sun Jun 7 00:27:34 2009 @@ -1,5 +1,11 @@ $Id$ +2009-06-07 Takahiro Kambe + + * 空のディレクトリ public_html/layout/mobile/images/droplinemenuと + public_html/layout/mobile_3g/images/droplinemenu は不要なので削除 + しました。 + 2009-05-25 Masuko Koeda * WAIproCSSのfooter.thtmlの不具合を修正し、 From codesite-noreply @ google.com Sun Jun 7 16:38:12 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 07:38:12 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3MyAtIBskQklUTVckSjZ1JE4lRyUjJWwbKEI=?= =?ISO-2022-JP?B?GyRCJS8lSCVqJHI6bz18JDckXiQ5ISMbKEI=?= Message-ID: <000e0cd32cdc2e4864046bbd3545@google.com> Author: tacahi Date: Sun Jun 7 00:28:46 2009 New Revision: 1573 Removed: branches/geeklog-new-tree/public_html/layout/mobile/images/droplinemenu/ branches/geeklog-new-tree/public_html/layout/mobile_3g/images/droplinemenu/ Log: 不要な空のディレクトリを削除します。 From codesite-noreply @ google.com Sun Jun 7 17:04:15 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 08:04:15 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3NCAtIHIxNTY4LCByMTU2ORskQiROPGgkajl+GyhC?= =?ISO-2022-JP?B?GyRCJF8kcjUtTz8kNyReJDckPyEjGyhC?= Message-ID: <000e0cd50a2a571fb9046bbd9228@google.com> Author: tacahi Date: Sun Jun 7 00:58:48 2009 New Revision: 1574 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: r1568, r1569の取り込みを記録しました。 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 Jun 7 00:58:48 2009 @@ -1,8 +1,12 @@ +$Id$ + +2009-06-07 Takahiro Kambe + + * r1568, r1569を取り込みました。(不要な空のディレクトリの削除) + 2009-05-01 Takahiro Kambe * geeklog-1.5.2sr4-jp-1.0リリース直後までの変更を取り込みました。 - -$Id$ 2009-04-18 Takahiro Kambe From codesite-noreply @ google.com Sun Jun 7 17:28:16 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 08:28:16 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3NSAtIBskQkZ8S1w4bDRwS1xIRyRIRnwbKEI=?= =?ISO-2022-JP?B?GyRCS1w4bDNIRCVIRyRHQlA+XSRIJDkkayVXJWklMCUkJXMkSyREJCQkRhsoQg==?= =?ISO-2022-JP?B?GyRCISIbKEI=?= Message-ID: <00163646c7b644725d046bbde80c@google.com> Author: tacahi Date: Sun Jun 7 01:27:29 2009 New Revision: 1575 Modified: branches/geeklog-new-tree/plugins-jp/README.jp Log: 日本語基本版と日本語拡張版で対象とするプラグインについて、 簡単に記述を追加します。 Modified: branches/geeklog-new-tree/plugins-jp/README.jp ============================================================================== --- branches/geeklog-new-tree/plugins-jp/README.jp (original) +++ branches/geeklog-new-tree/plugins-jp/README.jp Sun Jun 7 01:27:29 2009 @@ -9,5 +9,5 @@ 2. 日本語通常版と拡張版では対象となるプラグインが異なります。(拡張版では、 すべてが対象となります。) - - +日本語基本版: calendarjp japanize +日本語拡張版: すべて From codesite-noreply @ google.com Sun Jun 7 17:33:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 08:33:17 +0000 Subject: =?Big5?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3NiAtIHMvpOmlu7t5s3GxYKqpL6Tp?= =?Big5?B?pbu7ebDypbuqqS9n?= Message-ID: <000e0cd229d22e66c8046bbdfa6d@google.com> Author: tacahi Date: Sun Jun 7 01:32:02 2009 New Revision: 1576 Modified: branches/geeklog-new-tree/extended/README.jp Log: s/日本語通常版/日本語基本版/g Modified: branches/geeklog-new-tree/extended/README.jp ============================================================================== Binary files. No diff available. From codesite-noreply @ google.com Sun Jun 7 18:22:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 09:22:23 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3NyAtIHMvGyRCRnxLXDhsREw+b0hHGyhCLxskQkZ8GyhC?= =?ISO-2022-JP?B?GyRCS1w4bDRwS1xIRxsoQi8=?= Message-ID: <000e0cd2421ccec2a8046bbea9a4@google.com> Author: tacahi Date: Sun Jun 7 02:21:53 2009 New Revision: 1577 Modified: branches/geeklog-new-tree/plugins-jp/README.jp Log: s/日本語通常版/日本語基本版/ Modified: branches/geeklog-new-tree/plugins-jp/README.jp ============================================================================== --- branches/geeklog-new-tree/plugins-jp/README.jp (original) +++ branches/geeklog-new-tree/plugins-jp/README.jp Sun Jun 7 02:21:53 2009 @@ -6,7 +6,7 @@ 1. 日本語のリリースやインストールをするときは公開領域やプライベート領域等に 個別にファイルはコピーされます。 -2. 日本語通常版と拡張版では対象となるプラグインが異なります。(拡張版では、 +2. 日本語基本版と拡張版では対象となるプラグインが異なります。(拡張版では、 すべてが対象となります。) 日本語基本版: calendarjp japanize From codesite-noreply @ google.com Sun Jun 7 18:27:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 09:27:23 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU3OCAtIOaWsOOBl+OBhOOCveODvOOCueODu+ODhA==?= =?UTF-8?B?44Oq44O844GL44KJ44CB44Oq44Oq44O844K544KE44Kk44Oz44K544OI44O844Or55So44Gu44OV44Kh?= =?UTF-8?B?44Kk77+9Li4u?= Message-ID: <000e0cd25088b2be56046bbebb88@google.com> Author: tacahi Date: Sun Jun 7 02:26:10 2009 New Revision: 1578 Added: branches/geeklog-new-tree/GNUmakefile branches/geeklog-new-tree/GNUmakefile.common branches/geeklog-new-tree/GNUmakefile.plugins branches/geeklog-new-tree/README-tree (contents, props changed) branches/geeklog-new-tree/custom/GNUmakefile branches/geeklog-new-tree/extended/GNUmakefile branches/geeklog-new-tree/plugins-jp/GNUmakefile branches/geeklog-new-tree/plugins-jp/autotags/GNUmakefile branches/geeklog-new-tree/plugins-jp/calendarjp/GNUmakefile branches/geeklog-new-tree/plugins-jp/captcha/GNUmakefile Log: 新しいソース・ツリーから、リリースやインストール用のファイル・ツリーを作成 するためのMakefileを追加します。 詳細は、README-treeの内容を参照してください。 なお、日本語拡張版への対応は完全ではありません。 Added: branches/geeklog-new-tree/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,45 @@ +# + +FILES= CHANGES.jp INSTALL db-config.php emailgeeklogstories \ + emailgeeklogstories.en readme readme.ja release_jp.php +DIRS= backups data language logs plugins sql system + +SUBDIR= custom plugins-jp # extended + +GLDESTDIR?= $(GLDIR) + +PREINSTALL= pre-install + +all: + +pre-install: + $(MKDIR) $(DESTDIR)$(GLDIR) + $(MKDIR) $(DESTDIR)$(GLPUBDIR) + + +pre-release: + @if [ "$(GLDIR)" != "`$(DIRNAME) $(GLPUBDIR)`" ]; then \ + echo "$(GLPUBDIR) should be under $(GLDIR) when making release."; \ + exit 1; \ + fi + +install: $(PREINSTALL) install-myfiles install-dirs install-pubdir + +release: pre-release install + cd $(TOPDIR); \ + $(MV) $(GLBASE) $(GL_RELEASE); \ + $(PAX) -x ustar -w $(GL_RELEASE) | $(GZIP) -9 > $(GL_RELEASE).tar.gz; \ + $(RM) -f $(GL_RELEASE).zip; \ + $(ZIP) -qr $(GL_RELEASE).zip $(GL_RELEASE) + +update-release-jp: + @$(SED) -e '/release_no =/s/"(.*)"/$(GL_JPVERSION)/' release_jp.php \ + > release_jp.php.tmp; \ + if ${CMP} -s release_jp.php release_jp.php.tmp; then \ + :; \ + else \ + ${MV} release_jp.php.tmp release_jp.php; \ + fi; \ + ${RM} release_jp.php.tmp + +include GNUmakefile.common Added: branches/geeklog-new-tree/GNUmakefile.common ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/GNUmakefile.common Sun Jun 7 02:26:10 2009 @@ -0,0 +1,177 @@ +# +# GNUmakefile.common +# +# +# このファイルは各GNUmakefileで使用するための共通の定義を記述したファイルで す。 +# + +# +# 以下はコマンド行などで指定して、Subversionからチェックアウトやエクスポー ト +# した内容を、 +# +# o サーバの特定のディレクトリにインストール +# o リリース用のソース・ツリーの作成 +# +# といった目的で指定することを想定しした変数です。 +# +# DESTDIR +# DESTIDR(インストールの基準のルート・ディレクトリ)を使用可能とする +# ために一応用意してあります。通常使用することはないでしょう。 +# デフォルト: 空 +# +# EXTENDED +# trueに定義すると日本語拡張版として、インストールするファイルの追加や +# 一部のデフォルトの値を変更します。 +# デフォルト: 未定義 +# +# TOPDIR +# インストールの基準とするトップのディレクトリです。 +# デフォルト: /var/tmp +# +# GLBASE +# TOPDIR以下にソース・ツリーを作成するときの、Geeklogのディレクトリの +# 名前です。デフォルトは、geeklogですが、EXTENDEDがtrueの場合は、 +# geeklog-extendedとなります。 +# +# GLDIR +# Geeklogの非公開領域のディレクトリで、TOPDIRからの相対パスとなります。 +# デフォルト: +# $(TOPDIR)/$(GLBASE) +# +# GLPUBDIR +# Geeklogの公開領域のディレクトリで、TOPDIRからの相対パスとなります。 +# デフォルトはインストール用のソース・ツリーの作成を前提として、 +# GLDIRのサブディレクトリとしてあります。 +# デフォルト: +# $(TOPDIR)/$(GLBASE)/public_html +# +# サーバのホスト上で、Geeklogの非公開領域を/usr/local/share/geeklog、 +# 公開領域を/usr/local/share/wwwとしてインストールしたい場合は、次のように +# 実行します。 +# +# # gmake GLDIR=/usr/local/share GLPUBDIR=/usr/local/www install +# +# VERBOSE +# $(TRUE)とすると、実行するコマンドを説明するメッセージを表示します。 +# $(FALSE)とすると、makeコマンドが表示する以外は特に表示しません。 +# デフォルト: $(FALSE) +# + +DESTDIR?= # empty +TOPDIR?= /var/tmp +ifneq ($(EXTENDED), true) +GLBASE?= geeklog +else +GLBASE?= geeklog-extended +endif + +GLDIR?= $(TOPDIR)/$(GLBASE) +GLPUBDIR?= $(TOPDIR)/$(GLBASE)/public_html +VERBOSE?= $(TRUE) # $(FALSE) + +GL_VERSION= 1.5.2sr4 +GL_JPVERSION= 1.0.99 + +ifneq ($(EXTENDED), true) +GL_RELEASE= $(GLBASE)-$(GL_VERSION)-jp-$(GL_JPVERSION) +else +GL_RELEASE= $(GLBASE)-$(GL_VERSION)-jp-extended-$(GL_JPVERSION) +endif + +# +# 使用するコマンドの名前 +# +CMP?= cmp +DIRNAME?= dirname +FIND?= find +GZIP?= gzip +ZIP?= zip +INSTALL?= install +MKDIR?= install -d -m $(DIRMODE) +MV?= mv +PAX?= pax +#RM?= rm +SED?= sed +TRUE= true +FALSE= false + +# +# DIRMODE +# インストールする時に作成するディレクトリのアクセス権です。但し、 +# DIRS等の指定でファイル・ツリーをインストールする部分については対象と +# ならず、明示的にディレクトリを作成する場合に限られます。 +# また、これ以外のアクセス権を設定したい場合は独自のルールを定義する +# 必要があります。 +# +# +# FILESMODE +# インストールするファイルのアクセス権です。これ以外のアクセス権を設定 +# したい場合は独自のルールを定義する必要があります。 +# + +DIRMODE?= 0755 +FILESMODE?= 0644 + +# FIND_ARGS +# DIRS等の指定でファイル・ツリーをインストールする場合の、ファイルの +# 一覧を得るためのfindコマンドのオプションです。 +# +FIND_ARGS= -name .svn -prune -o -type f -print + +# +# FILES +# GNUmakefileと同じディレクトリの直下にある、非公開領域にインストールする +# ファイルを指定します。 +# デフォルト: 未定義 +# +# DIRS +# GNUmakefileと同じディレクトリの直下にある、非公開領域にソース・ツリーを +# そのままインストールするディレクトリを指定します。 + +FILES?= # empty default +DIRS?= # empty default + +SUBDIR?= # empty default +POSTINSTALL?= # empty default +GLDESTDIR?= $(GLDIR) +GLDESTPUBDIR?= $(GLPUBDIR) + +$(DESTDIR)$(GLDESTDIR): + $(MKDIR) $(DESTDIR)$(GLDESTDIR) + +# FILESに指定したファイルのインストール +install-myfiles: + @test -d $(DESTDIR)$(GLDESTDIR) || $(MKDIR) $(DESTDIR)$(GLDESTDIR) + @for f in $(FILES); do \ + $(VERBOSE) && echo $(INSTALL) -c -m $(FILESMODE) $$f $(DESTDIR)$(GLDESTDIR); \ + $(INSTALL) -c -m $(FILESMODE) $$f \ + $(DESTDIR)$(GLDESTDIR); \ + done + +# DIRSに指定したディレクトリのインストール +install-dirs: + @test -d $(DESTDIR)$(GLDESTDIR) || $(MKDIR) $(DESTDIR)$(GLDESTDIR) + @for d in $(DIRS); do \ + if test -d $$d; then \ + $(VERBOSE) && echo "Copying $$d to $(DESTDIR)$(GLDESTDIR)/$$d"; \ + $(FIND) $$d $(FIND_ARGS) | $(PAX) -w | \ + (cd $(DESTDIR)$(GLDESTDIR); $(PAX) -r -pm); \ + fi; \ + done + +# public_html以下を、公開領域のプラグインを置くディレクトリへのインストール +install-pubdir: + @if test public_html; then \ + test -d $(DESTDIR)$(PLUGINPUBDIR) || \ + $(MKDIR) $(DESTDIR)$(PLUGINPUBDIR); \ + $(VERBOSE) && echo "Copying public_html to $(DESTDIR)$(GLDESTPUBDIR)"; \ + cd public_html; $(FIND) . $(FIND_ARGS) | $(PAX) -w | \ + (cd $(DESTDIR)$(GLDESTPUBDIR); $(PAX) -r -pm); \ + fi + +ifneq ($(strip $(SUBDIR)),) + +install: + @for d in $(SUBDIR); do (cd $$d && $(MAKE) $@); done + +endif Added: branches/geeklog-new-tree/GNUmakefile.plugins ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/GNUmakefile.plugins Sun Jun 7 02:26:10 2009 @@ -0,0 +1,94 @@ +# +# GNUmakefile.plugins +# + +# +# このファイルはプラグインを扱うためのmakefileの一部です。 +# +# 以下はプラグインのソースが置かれている(以下プラグインのディレクトリ)に置 く +# GNUmakefileで設定することを前提とした変数です。 +# +# PLUGIN +# プラグインのディレクトリで定義が必要です。 +# デフォルト: 未定義 +# +# FILES +# プラグインのディレクトリ直下の、非公開領域のプラグインのディレクトリに +# インストールするファイルを指定します。 +# デフォルト: 空 +# +# DIRS +# プラグインのディレクトリ直下の、非公開領域のプラグインのディレクトリに +# インストールするディレクトリを指定します。 +# DIRSに指定されたディレクトリが存在しない場合は、処理せずに飛ばして +# エラーとしません。 +# デフォルト: language sql templates +# + +FILES?= # empty default +DIRS?= language sql templates + +# +# 以下はコマンド行やプラグインのディレクトリのGNUmakefileで上書きすることが +# できる変数ですが、通常は上書きする必要はないものです。 +# +# PLUGINDIR +# 非公開領域のプラグインを置くディレクトリの相対パスです。 +# デフォルト: $(GLDIR)/plugins/$(PLUGIN) +# +# PLUGINPUBDIR +# 公開領域のプラグインを置くディレクトリの相対パスです。 +# デフォルト: $(GLPUBDIR)/$(PLUGIN) +# +# ADMINDIR +# 公開領域の管理ディレクトリ以下の、プラグインの管理用のファイルを置く +# ディレクトリの相対パスです。 +# デフォルト: $(GLPUBDIR)/admin/plugins/$(PLUGIN) + +PLUGINDIR?= $(GLDIR)/plugins/$(PLUGIN) +PLUGINPUBDIR?= $(GLPUBDIR)/$(PLUGIN) +ADMINDIR?= $(GLPUBDIR)/admin/plugins/$(PLUGIN) + +GLDESTDIR= $(PLUGINDIR) +GLDESTPUBDIR= $(PLUGINPUBDIR) + +# +# 各ルール +# + +# 非公開領域のプラグインを置くディレクトリを作成 +make-plugindir: + @if test -d admin; then \ + $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(PLUGINDIR); \ + $(MKDIR) $(DESTDIR)$(PLUGINDIR); \ + fi + +# 公開領域のプラグインを置くディレクトリを作成 +make-pluginpubdir: + @if test -d admin; then \ + $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(PLUGINPUBDIR); \ + $(MKDIR) $(DESTDIR)$(PLUGINPUBDIR); \ + fi + +# 公開領域の管理ディレクトリ以下のプラグインを置くディレクトリを作成 +make-admindir: + @if test -d admin; then \ + $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(ADMINDIR); \ + $(MKDIR) $(DESTDIR)$(ADMINDIR); \ + fi + +# プラグインに必要なディレクトリを作成 +make-dirs: make-plugindir make-pluginpubdir make-admindir + +# admin以下を、公開領域の管理ディレクトリ以下のプラグインの管理用の +# ディレクトリにインストール +install-admin: + @if test admin; then \ + $(VERBOSE) && echo "Copying admin to $(DESTDIR)$(ADMINDIR)"; \ + cd admin; $(FIND) . $(FIND_ARGS) | $(PAX) -w | \ + (cd $(DESTDIR)$(ADMINDIR); $(PAX) -r -pm); \ + fi + +install-files: install-myfiles install-dirs install-pubdir install-admin + +install: make-dirs install-files Added: branches/geeklog-new-tree/README-tree ============================================================================== Binary file. No diff available. Added: branches/geeklog-new-tree/custom/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/custom/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,14 @@ +# + +FILES= custom_cellular.php custom_mail_jp.php +ifeq ($(EXTENDED), true) +FILES+= custom_getstaticpage.php phpblock_lastarticles.php +FILES+= phpblock_showrights.php phpblock_sitemapmenu.php +FILES+= phpblock_stats.php phpblock_themetester.php +endif + +GLDESTDIR= $(GLDIR)/system/custom + +install: install-myfiles + +include ../GNUmakefile.common Added: branches/geeklog-new-tree/extended/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/extended/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,11 @@ +# + +ifdef EXTENDED +DIRS= public_html system +endif + +#GLDESTDIR= $(GLDIR)/system/custom + +install: install-myfiles + +include ../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,10 @@ +# + +SUBDIR= calendarjp japanize + +ifeq ($(EXTENDED), true) +SUBDIR+= autotags captcha custommenu dataproxy dbman filemgmt forum +SUBDIR+= mycaljp nmoxqrblock nmoxtopicown sitemap themedit tkgmaps +endif + +include ../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/autotags/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/autotags/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= autotags + +FILES= Changelog INSTALL INSTALL_ja.txt README_ja.txt TODO \ + config.php functions.inc + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/calendarjp/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/calendarjp/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,8 @@ +# $Id$ + +PLUGIN= calendarjp + +FILES= functions.inc install_defaults.php readme_jp.html + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/captcha/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/captcha/GNUmakefile Sun Jun 7 02:26:10 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= captcha + +FILES= README.txt config.php functions.inc upgrade.inc +DIRS= class images language sql templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common From codesite-noreply @ google.com Sun Jun 7 20:09:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 11:09:50 +0000 Subject: [geeklog-jp commit] r1579 - Importing geeklog-1.6.0b2 under external directory. Message-ID: <000e0cd28d521193cc046bc02a2b@google.com> Author: tacahi Date: Sun Jun 7 03:36:21 2009 New Revision: 1579 Added: externals/geeklog-1.6.0b2/ externals/geeklog-1.6.0b2/INSTALL (contents, props changed) externals/geeklog-1.6.0b2/backups/ externals/geeklog-1.6.0b2/backups/README (contents, props changed) externals/geeklog-1.6.0b2/data/ externals/geeklog-1.6.0b2/data/README (contents, props changed) externals/geeklog-1.6.0b2/db-config.php (contents, props changed) externals/geeklog-1.6.0b2/emailgeeklogstories (contents, props changed) externals/geeklog-1.6.0b2/language/ externals/geeklog-1.6.0b2/language/afrikaans.php (contents, props changed) externals/geeklog-1.6.0b2/language/afrikaans_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/bosnian.php (contents, props changed) externals/geeklog-1.6.0b2/language/bosnian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/bulgarian.php (contents, props changed) externals/geeklog-1.6.0b2/language/bulgarian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/catalan.php (contents, props changed) externals/geeklog-1.6.0b2/language/catalan_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/croatian.php (contents, props changed) externals/geeklog-1.6.0b2/language/croatian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/czech.php (contents, props changed) externals/geeklog-1.6.0b2/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/danish.php (contents, props changed) externals/geeklog-1.6.0b2/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b2/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b2/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/finnish.php (contents, props changed) externals/geeklog-1.6.0b2/language/finnish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b2/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/french_france.php (contents, props changed) externals/geeklog-1.6.0b2/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/german.php (contents, props changed) externals/geeklog-1.6.0b2/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b2/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/hellenic.php (contents, props changed) externals/geeklog-1.6.0b2/language/hellenic_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/indonesian.php (contents, props changed) externals/geeklog-1.6.0b2/language/indonesian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/italian.php (contents, props changed) externals/geeklog-1.6.0b2/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/korean.php (contents, props changed) externals/geeklog-1.6.0b2/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/norwegian.php (contents, props changed) externals/geeklog-1.6.0b2/language/norwegian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/polish.php (contents, props changed) externals/geeklog-1.6.0b2/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/portuguese.php (contents, props changed) externals/geeklog-1.6.0b2/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.6.0b2/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/portuguese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/romanian.php (contents, props changed) externals/geeklog-1.6.0b2/language/romanian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/russian.php (contents, props changed) externals/geeklog-1.6.0b2/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/serbian.php (contents, props changed) externals/geeklog-1.6.0b2/language/serbian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/slovak.php (contents, props changed) externals/geeklog-1.6.0b2/language/slovak_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b2/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b2/language/spanish_argentina.php (contents, props changed) externals/geeklog-1.6.0b2/language/spanish_argentina_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/swedish.php (contents, props changed) externals/geeklog-1.6.0b2/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/turkish.php (contents, props changed) externals/geeklog-1.6.0b2/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b2/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b2/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/logs/ externals/geeklog-1.6.0b2/logs/access.log (contents, props changed) externals/geeklog-1.6.0b2/logs/error.log (contents, props changed) externals/geeklog-1.6.0b2/logs/spamx.log (contents, props changed) externals/geeklog-1.6.0b2/plugins/ externals/geeklog-1.6.0b2/plugins/calendar/ externals/geeklog-1.6.0b2/plugins/calendar/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/functions.inc (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/ externals/geeklog-1.6.0b2/plugins/calendar/language/README (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/czech.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/danish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/german.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/korean.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/russian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/sql/ externals/geeklog-1.6.0b2/plugins/calendar/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/ externals/geeklog-1.6.0b2/plugins/calendar/templates/addevent.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/addeventoption.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/addremoveevent.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/admin/ externals/geeklog-1.6.0b2/plugins/calendar/templates/admin/batchdelete.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/admin/eventeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/calendar.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/calendarday.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/calendarevent.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/calendarweek.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/dayview/ externals/geeklog-1.6.0b2/plugins/calendar/templates/dayview/column.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/dayview/dayview.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/dayview/quickaddform.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/dayview/singleevent.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/editpersonalevent.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/eventdetails.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/events.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/mastercalendaroption.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/personalcalendaroption.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/submitevent.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/weekview/ externals/geeklog-1.6.0b2/plugins/calendar/templates/weekview/events.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/calendar/templates/weekview/weekview.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/ externals/geeklog-1.6.0b2/plugins/links/README (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/functions.inc (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/ externals/geeklog-1.6.0b2/plugins/links/language/README (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/czech.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/german.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/korean.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/polish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/russian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/sql/ externals/geeklog-1.6.0b2/plugins/links/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/ externals/geeklog-1.6.0b2/plugins/links/templates/admin/ externals/geeklog-1.6.0b2/plugins/links/templates/admin/categoryeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/admin/categorylist.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/admin/catitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/admin/linkeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/categoryactivecol.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/categorycol.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/categorydropdown.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/categorylinks.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/categorynavigation.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/categoryrow.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/linkdetails.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/links.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/pagenavigation.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/links/templates/submitlink.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/ externals/geeklog-1.6.0b2/plugins/polls/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/functions.inc (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/ externals/geeklog-1.6.0b2/plugins/polls/language/README (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/german.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/korean.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/russian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/sql/ externals/geeklog-1.6.0b2/plugins/polls/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/sql/mssql_updates.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/sql/mysql_updates.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/ externals/geeklog-1.6.0b2/plugins/polls/templates/admin/ externals/geeklog-1.6.0b2/plugins/polls/templates/admin/pollansweroption.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/admin/polleditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/admin/pollquestions.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollanswer.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollcomments.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/polllist.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollquestion.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollquestions.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollresult.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollvotes_bar.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/polls/templates/pollvotes_num.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/ externals/geeklog-1.6.0b2/plugins/spamx/BaseAdmin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/BaseCommand.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/BlackList.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/DeleteComment.Action.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/EditBlackList.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/EditHeader.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/EditIP.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/EditIPofURL.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/Header.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/IP.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/IPofUrl.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/LogView.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/MailAdmin.Action.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/MassDelTrackback.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/MassDelete.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/SLV.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/SLVbase.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/SLVreport.Action.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/SLVwhitelist.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/functions.inc (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/ externals/geeklog-1.6.0b2/plugins/spamx/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/french_france.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/italian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/russian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/sql/ externals/geeklog-1.6.0b2/plugins/spamx/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/templates/ externals/geeklog-1.6.0b2/plugins/spamx/templates/admin.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/spamx/templates/install.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/ externals/geeklog-1.6.0b2/plugins/staticpages/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/functions.inc (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/ externals/geeklog-1.6.0b2/plugins/staticpages/language/README (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/czech.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/danish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/german.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/italian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/korean.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/polish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/swedish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/turkish.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/services.inc.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/sql/ externals/geeklog-1.6.0b2/plugins/staticpages/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/templates/ externals/geeklog-1.6.0b2/plugins/staticpages/templates/admin/ externals/geeklog-1.6.0b2/plugins/staticpages/templates/admin/editor.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/templates/admin/editor_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/templates/centerblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/templates/printable.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/templates/spcomments.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/staticpages/templates/staticpage.thtml (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/ externals/geeklog-1.6.0b2/plugins/xmlsitemap/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/functions.inc (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/language/ externals/geeklog-1.6.0b2/plugins/xmlsitemap/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/sql/ externals/geeklog-1.6.0b2/plugins/xmlsitemap/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b2/plugins/xmlsitemap/xmlsitemap.class.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/ externals/geeklog-1.6.0b2/public_html/404.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/ externals/geeklog-1.6.0b2/public_html/admin/auth.inc.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/block.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/configuration.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/database.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/group.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/ externals/geeklog-1.6.0b2/public_html/admin/install/bigdump.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/config-install.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/configinfo.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/help.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/info.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/install-plugins.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/ externals/geeklog-1.6.0b2/public_html/admin/install/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/english.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/german.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/language/polish.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/layout/ externals/geeklog-1.6.0b2/public_html/admin/install/layout/header-bg.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/layout/logo.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/layout/style.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/lib-install.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/lib-upgrade.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/migrate.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/success.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/install/toinnodb.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/mail.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/moderation.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/ externals/geeklog-1.6.0b2/public_html/admin/plugins.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/calendar/ externals/geeklog-1.6.0b2/public_html/admin/plugins/calendar/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/links/ externals/geeklog-1.6.0b2/public_html/admin/plugins/links/category.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/links/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/polls/ externals/geeklog-1.6.0b2/public_html/admin/plugins/polls/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/spamx/ externals/geeklog-1.6.0b2/public_html/admin/plugins/spamx/images/ externals/geeklog-1.6.0b2/public_html/admin/plugins/spamx/images/spamx.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/spamx/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/plugins/staticpages/ externals/geeklog-1.6.0b2/public_html/admin/plugins/staticpages/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/sectest.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/story.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/syndication.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/topic.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/trackback.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/admin/user.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/article.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/backend/ externals/geeklog-1.6.0b2/public_html/backend/geeklog.rss (contents, props changed) externals/geeklog-1.6.0b2/public_html/calendar/ externals/geeklog-1.6.0b2/public_html/calendar/event.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/calendar/images/ externals/geeklog-1.6.0b2/public_html/calendar/images/calendar.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/calendar/images/delete_event.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/calendar/images/delete_event.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/calendar/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/calendar/style.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/comment.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/directory.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/ externals/geeklog-1.6.0b2/public_html/docs/changed-files externals/geeklog-1.6.0b2/public_html/docs/docstyle.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/ externals/geeklog-1.6.0b2/public_html/docs/english/calendar.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/changes.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/config.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/install.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/links.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/plugin.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/polls.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/spamx.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/staticpages.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/support.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/theme.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/themevars.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/english/trackback.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/history externals/geeklog-1.6.0b2/public_html/docs/images/ externals/geeklog-1.6.0b2/public_html/docs/images/de.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/images/fr.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/images/jp.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/images/newlogo.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/images/pl.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/docs/license externals/geeklog-1.6.0b2/public_html/fckeditor/ externals/geeklog-1.6.0b2/public_html/fckeditor/_documentation.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/_upgrade.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/_whatsnew.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/_whatsnew_history.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckcontextmenu.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdataprocessor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdomrange.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdomrange_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdomrange_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckdomrangeiterator.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckeditingarea.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckelementpath.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckenterkey.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckevents.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckhtmliterator.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckicon.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckiecleanup.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckimagepreloader.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckkeystrokehandler.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckmenublock.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckmenublockpanel.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckmenuitem.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckpanel.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckspecialcombo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckstyle.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbar.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarbutton.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckw3crange.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckxml.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckxml_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/classes/fckxml_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fck_othercommands.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckfitwindow.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckindentcommands.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckjustifycommands.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fcklistcommands.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fcknamedcommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckshowblocks.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fckstylecommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fcktablecommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/fckconstants.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/fckeditorapi.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/fckjscoreextensions.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/fckscriptloader.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fck.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fck_contextmenu.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fck_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fck_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckbrowserinfo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckcodeformatter.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckcommands.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckconfig.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckdebug.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckdebug_empty.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckdialog.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckdocumentprocessor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckdomtools.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcklanguagemanager.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcklisthandler.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcklistslib.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckplugins.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckregexlib.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckselection.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckselection_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckselection_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckstyles.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktablehandler.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktablehandler_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktablehandler_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktoolbaritems.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktoolbarset.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktools.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktools_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fcktools_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckundo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckurlparams.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckxhtml.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckxhtml_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckxhtml_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/_source/internals/fckxhtmlentities.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/behaviors/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/behaviors/disablehandles.htc externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/behaviors/showtableborders.htc externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/fck_editorarea.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/fck_internal.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/fck_showtableborders_gecko.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_address.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_blockquote.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_div.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_h1.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_h2.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_h3.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_h4.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_h5.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_h6.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_p.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/block_pre.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/fck_anchor.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/fck_flashlogo.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/fck_hiddenfield.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/fck_pagebreak.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/css/images/fck_plugin.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/fck_dialog_common.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/fck_dialog_common.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/images/locked.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/images/reset.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/common/images/unlocked.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_about/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_about.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_about/logo_fredck.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_about/sponsors/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_anchor.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_button.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_checkbox.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_colorselector.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_div.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_docprops/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_docprops.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_flash/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_flash.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_flash/fck_flash.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_form.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_hiddenfield.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_image/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_image.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_image/fck_image.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_image/fck_image_preview.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_link/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_link.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_link/fck_link.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_listprop.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_paste.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_radiobutton.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_replace.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_select/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_select.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_select/fck_select.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_smiley.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_source.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_specialchar.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_table.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_tablecell.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_template/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_template.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_template/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_template/images/template1.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_template/images/template2.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_template/images/template3.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_textarea.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dialog/fck_textfield.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dtd/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dtd/fck_dtd_test.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dtd/fck_xhtml10strict.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/dtd/fck_xhtml10transitional.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/fckdebug.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/fckdialog.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/fckeditor.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/fckeditor.original.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/browser.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/browser.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/frmactualfolder.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/frmfolders.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/frmresourceslist.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/frmresourcetype.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/frmupload.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/Folder.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/Folder32.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif0000644 (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/html.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/js.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/png.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/images/spacer.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/js/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/js/common.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/browser/default/js/fckxml.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/basexml.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/commands.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/config.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/connector.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/io.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/phpcompat.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/upload.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/filemanager/connectors/php/util.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/anchor.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/arrow_ltr.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/arrow_rtl.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/angel_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/angry_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/broken_heart.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/cake.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/confused_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/cry_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/devil_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/embaressed_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/envelope.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/heart.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/kiss.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/lightbulb.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/omg_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/regular_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/sad_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/shades_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/teeth_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/thumbs_down.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/thumbs_up.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/tounge_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/smiley/msn/wink_smile.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/images/spacer.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/js/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/js/fckadobeair.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/js/fckeditorcode_gecko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/js/fckeditorcode_ie.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/_translationstatus.txt (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/af.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ar.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/bg.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/bn.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/bs.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ca.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/cs.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/da.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/de.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/el.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/en-au.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/en-ca.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/en-uk.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/en.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/eo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/es.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/et.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/eu.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/fa.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/fi.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/fo.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/fr-ca.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/fr.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/gl.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/gu.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/he.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/hi.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/hr.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/hu.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/is.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/it.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ja.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/km.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ko.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/lt.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/lv.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/mn.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ms.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/nb.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/nl.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/no.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/pl.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/pt-br.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/pt.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ro.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/ru.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/sk.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/sl.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/sr-latn.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/sr.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/sv.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/th.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/tr.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/uk.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/vi.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/zh-cn.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/lang/zh.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/autogrow/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/autogrow/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/bbcode/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/bbcode/_sample/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.config.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/bbcode/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/dragresizetable/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/dragresizetable/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/fck_placeholder.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/de.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/en.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/es.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/fr.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/it.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/lang/pl.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/placeholder/placeholder.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/simplecommands/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/simplecommands/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/tablecommands/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/plugins/tablecommands/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/_fckviewstrips.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/fck_editor.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/sprites.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/default/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/fck_editor.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/sprites.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.bg.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/office2003/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/fck_editor.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/sprites.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/skins/silver/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/wsc/ externals/geeklog-1.6.0b2/public_html/fckeditor/editor/wsc/ciframe.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/wsc/tmpFrameset.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/editor/wsc/w.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckconfig.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckeditor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckeditor.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckeditor_php4.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckeditor_php5.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckpackager.xml (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fckstyles.xml (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/fcktemplates.xml (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/license.txt (contents, props changed) externals/geeklog-1.6.0b2/public_html/fckeditor/myconfig.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/getimage.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/ externals/geeklog-1.6.0b2/public_html/help/advancedsearch.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/cceventsubmission.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/cclinksubmission.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/ccstorysubmission.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/submitevent.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/submitlink.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/help/submitstory.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/ externals/geeklog-1.6.0b2/public_html/images/admin/ externals/geeklog-1.6.0b2/public_html/images/admin/block.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/event.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/link.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/logout.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/plugins.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/poll.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/story.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/topic.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/admin/user.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/articles/ externals/geeklog-1.6.0b2/public_html/images/articles/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/bar.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/button_help.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/ externals/geeklog-1.6.0b2/public_html/images/buttons/cms-geeklog.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/geeklog-badge.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/geekpower2.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/mysql.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/php.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/valid-css.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/buttons/valid-html.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/ externals/geeklog-1.6.0b2/public_html/images/icons/block.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/event.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/feed.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/geeklog.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/group.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/link.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/logout.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/ping.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/plugins.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/poll.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/story.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/themes.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/topic.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/icons/user.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/ externals/geeklog-1.6.0b2/public_html/images/library/File/ externals/geeklog-1.6.0b2/public_html/images/library/File/test.pdf externals/geeklog-1.6.0b2/public_html/images/library/Flash/ externals/geeklog-1.6.0b2/public_html/images/library/Flash/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/ externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/ externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/ai.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/avi.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/bmp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/cs.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/default.icon.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/dll.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/doc.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/exe.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/fla.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/gif.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/htm.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/html.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/jpg.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/js.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/mdb.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/mp3.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/pdf.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/ppt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/rdp.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/swf.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/swt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/txt.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/vsd.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/xls.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/xml.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/icons/zip.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/image1.jpg (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/image2.jpg (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Image/image3.jpg (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/library/Media/ externals/geeklog-1.6.0b2/public_html/images/library/Media/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/mail.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/openid_login_icon.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/print.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/right_arrow.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/speck.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/sysmessage.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/topics/ externals/geeklog-1.6.0b2/public_html/images/topics/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/topics/topic_gl.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/topics/topic_news.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/images/userphotos/ externals/geeklog-1.6.0b2/public_html/images/userphotos/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/ externals/geeklog-1.6.0b2/public_html/javascript/advanced_editor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/common.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/configmanager.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/moveusers.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/profile_editor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/staticpages_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/storyeditor_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/submitcomment_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/javascript/submitstory_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/ externals/geeklog-1.6.0b2/public_html/layout/professional/ externals/geeklog-1.6.0b2/public_html/layout/professional/README (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/block/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/block/blockeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/block/defaultblockeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/block/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/common/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/common/edit_permissions.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/common/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/config/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/config/config_element.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/config/configuration.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/config/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/config/menu_element.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/group/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/group/groupeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/group/groupmembers.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/group/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/field.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/header.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/inline.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/list.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/listitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/searchmenu.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/lists/topmenu.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/mail/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/mail/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/mail/mailform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/moderation/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/moderation/ccitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/moderation/ccrow.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/moderation/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/moderation/moderation.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/plugins/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/plugins/editor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/plugins/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/story/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/story/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/story/storyeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/story/storyeditor_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/syndication/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/syndication/feededitor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/syndication/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/syndication/selecttype.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/topic/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/topic/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/topic/listitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/topic/topiceditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/topic/topiclist.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/autodetectitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/autodetectlist.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/pingbackform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/pingbackitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/pingbacklist.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/pingform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/pingitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/pinglist.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/serviceeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/trackback/trackbackeditor.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/ externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/batchdelete.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/batchdelete_options.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/edituser.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/groupedit.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/admin/user/reminder.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/adminoption.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/adminoption_off.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/advanced_editor_header.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/archivestorybodytext.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/archivestorytext.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/article/ externals/geeklog-1.6.0b2/public_html/layout/professional/article/article.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/article/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/article/printable.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter-config.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter-left.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter-list.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter-message.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter-related.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter-right.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockfooter.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader-config.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader-left.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader-list.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader-message.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader-related.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader-right.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockheader.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/blockservices.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/ externals/geeklog-1.6.0b2/public_html/layout/professional/comment/comment.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/commentbar.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/commentform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/commentform_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/reportcomment.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/startcomment.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/comment/thread.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/featuredstorybodytext.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/featuredstorytext.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/footer.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/functions.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/header.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/ externals/geeklog-1.6.0b2/public_html/layout/professional/images/addchild.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/admin/ externals/geeklog-1.6.0b2/public_html/layout/professional/images/admin/block-left.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/admin/block-right.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/admin/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/bar.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/bararrowdown.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/bararrowup.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/button_help.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/collapse.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/copy.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/deleteitem.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/edit.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/expand.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/external.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/feed.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/header-bg.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icon_info.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/ externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/block.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/configuration.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/database.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/delete_event.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/docs.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/event.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/group.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/logout.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/mail.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/plugins.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/story.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/syndication.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/topic.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/trackback.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/user.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/icons/versioncheck.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/list.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/logo.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/mail.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/person.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/print.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/sendping.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/smallcamera.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/images/sysmessage.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/leftblocks.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/list.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/listitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/ externals/geeklog-1.6.0b2/public_html/layout/professional/lists/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/ externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/item_field.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/item_row.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/list.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/page_limit.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/inline/page_sort.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/ externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/item_field.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/item_row.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/list.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/page_limit.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/lists/table/page_sort.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/loginform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/loginform_openid.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/menuitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/menuitem_last.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/menuitem_none.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/ externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/breadcrumb_link.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/breadcrumbs.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/ externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/button.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/button_over.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/tableftI.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/tableftJ.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/tabrightI.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/images/tabrightJ.gif (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/menuitem.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/navbar/navbar.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/ externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/boxesblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/commentblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/deleteaccount.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/digestblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/displayblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/displayprefs.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/excludeblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/language.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/privacyblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/profile.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/theme.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/username.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/preferences/userphoto.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/print.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/profiles/ externals/geeklog-1.6.0b2/public_html/layout/professional/profiles/contactauthorform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/profiles/contactuserform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/profiles/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/rightblocks.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/ externals/geeklog-1.6.0b2/public_html/layout/professional/search/headingcolumn.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/resultauthdatehits.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/resultcolumn.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/resultrow.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/resultrowenhanced.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/resultsummary.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/resulttitle.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchauthors.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchblock.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchresults.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchresults_heading.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchresults_norows.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/search/searchresults_rows.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/stats/ externals/geeklog-1.6.0b2/public_html/layout/professional/stats/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/stats/itemstatistics.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/stats/singlestat.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/stats/singlesummary.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/stats/sitestatistics.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/storybodytext.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/storytext.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/style.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/submit/ externals/geeklog-1.6.0b2/public_html/layout/professional/submit/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/submit/submitloginrequired.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/submit/submitstory.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/submit/submitstory_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/topcenterblock-span.thtmlx (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/topicoption.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/topicoption_off.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/trackback/ externals/geeklog-1.6.0b2/public_html/layout/professional/trackback/formattedcomment.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/trackback/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/trackback/trackback.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/trackback/trackbackcomment.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/useroption.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/useroption_off.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/ externals/geeklog-1.6.0b2/public_html/layout/professional/users/commentrow.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/getpasswordform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/index.html (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/loginform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/newpassword.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/profile.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/registrationform.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/services.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/layout/professional/users/storyrow.thtml (contents, props changed) externals/geeklog-1.6.0b2/public_html/lib-common.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/links/ externals/geeklog-1.6.0b2/public_html/links/images/ externals/geeklog-1.6.0b2/public_html/links/images/links.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/links/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/links/portal.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/pingback.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/polls/ externals/geeklog-1.6.0b2/public_html/polls/images/ externals/geeklog-1.6.0b2/public_html/polls/images/polls.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/polls/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/polls/polls_editor.js (contents, props changed) externals/geeklog-1.6.0b2/public_html/polls/style.css (contents, props changed) externals/geeklog-1.6.0b2/public_html/profiles.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/robots.txt (contents, props changed) externals/geeklog-1.6.0b2/public_html/search.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/siteconfig.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/staticpages/ externals/geeklog-1.6.0b2/public_html/staticpages/images/ externals/geeklog-1.6.0b2/public_html/staticpages/images/staticpages.png (contents, props changed) externals/geeklog-1.6.0b2/public_html/staticpages/index.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/stats.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/submit.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/switchlang.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/trackback.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/users.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/usersettings.php (contents, props changed) externals/geeklog-1.6.0b2/public_html/webservices/ externals/geeklog-1.6.0b2/public_html/webservices/atom/ externals/geeklog-1.6.0b2/public_html/webservices/atom/index.php (contents, props changed) externals/geeklog-1.6.0b2/readme (contents, props changed) externals/geeklog-1.6.0b2/sql/ externals/geeklog-1.6.0b2/sql/mssql_tableanddata.php (contents, props changed) externals/geeklog-1.6.0b2/sql/mysql_tableanddata.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/ externals/geeklog-1.6.0b2/sql/updates/mssql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mssql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mssql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mssql_1.5.2_to_1.6.0.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.2.5-1_to_1.3.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.10_to_1.3.11.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.11_to_1.4.0.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.1_to_1.3.2.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.2-1_to_1.3.3.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.3_to_1.3.4.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.4_to_1.3.5.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.5_to_1.3.6.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.7_to_1.3.8.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.8_to_1.3.9.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3.9_to_1.3.10.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.3_to_1.3.1.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.4.0_to_1.4.1.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.6.0b2/sql/updates/mysql_1.5.2_to_1.6.0.php (contents, props changed) externals/geeklog-1.6.0b2/system/ externals/geeklog-1.6.0b2/system/classes/ externals/geeklog-1.6.0b2/system/classes/authentication/ externals/geeklog-1.6.0b2/system/classes/authentication/LDAP.auth.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/authentication/LiveJournal.auth.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/authentication/ldap/ externals/geeklog-1.6.0b2/system/classes/authentication/ldap/config.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/calendar.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/config.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/downloader.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/kses.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/listfactory.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/navbar.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/ externals/geeklog-1.6.0b2/system/classes/openid/COPYING externals/geeklog-1.6.0b2/system/classes/openid/LICENSE externals/geeklog-1.6.0b2/system/classes/openid/association.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/consumer.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/httpclient.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/interface.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/oid_parse.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/oid_util.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/server.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openid/trustroot.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/openidhelper.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/plugin.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/sanitize.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/search.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/searchcriteria.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/story.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/syndication/ externals/geeklog-1.6.0b2/system/classes/syndication/atom.feed.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/syndication/feedparserbase.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/syndication/parserfactory.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/syndication/rdf.feed.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/syndication/rss.feed.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/template.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/timer.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/unpacker.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/upload.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/classes/url.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/databases/ externals/geeklog-1.6.0b2/system/databases/mssql.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/databases/mysql.class.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-admin.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-comment.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-custom.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-database.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-mbyte.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-pingback.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-plugins.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-security.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-sessions.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-story.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-syndication.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-trackback.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-user.php (contents, props changed) externals/geeklog-1.6.0b2/system/lib-webservices.php (contents, props changed) externals/geeklog-1.6.0b2/system/memberdetail.thtml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/ externals/geeklog-1.6.0b2/system/pear/Archive/ externals/geeklog-1.6.0b2/system/pear/Archive/Tar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Archive/Zip.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/ externals/geeklog-1.6.0b2/system/pear/Auth/SASL/ externals/geeklog-1.6.0b2/system/pear/Auth/SASL.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/SASL/Anonymous.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/SASL/Common.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/SASL/CramMD5.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/SASL/DigestMD5.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/SASL/Login.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Auth/SASL/Plain.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Console/ externals/geeklog-1.6.0b2/system/pear/Console/Getopt.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Date/ externals/geeklog-1.6.0b2/system/pear/Date.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Date/Calc.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Date/Human.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Date/Span.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Date/TimeZone.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/HTTP/ externals/geeklog-1.6.0b2/system/pear/HTTP/Request/ externals/geeklog-1.6.0b2/system/pear/HTTP/Request.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/HTTP/Request/Listener.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Mail/ externals/geeklog-1.6.0b2/system/pear/Mail.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Mail/RFC822.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Mail/mail.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Mail/null.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Mail/sendmail.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Mail/smtp.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/ externals/geeklog-1.6.0b2/system/pear/Net/DNS/ externals/geeklog-1.6.0b2/system/pear/Net/DNS.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/Header.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/Packet.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/Question.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/ externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/A.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/AAAA.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/CNAME.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/HINFO.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/MX.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/NAPTR.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/NS.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/PTR.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/SOA.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/SRV.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/TSIG.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/RR/TXT.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/DNS/Resolver.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/SMTP.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/Socket.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Net/URL.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/OS/ externals/geeklog-1.6.0b2/system/pear/OS/Guess.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/ externals/geeklog-1.6.0b2/system/pear/PEAR.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Autoloader.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Builder.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/ChannelFile/ externals/geeklog-1.6.0b2/system/pear/PEAR/ChannelFile.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/ChannelFile/Parser.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/ externals/geeklog-1.6.0b2/system/pear/PEAR/Command.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Auth.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Auth.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Build.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Build.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Channels.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Channels.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Common.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Config.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Config.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Install.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Install.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Mirror.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Mirror.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Package.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Package.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Pickle.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Pickle.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Registry.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Registry.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Remote.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Remote.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Test.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Command/Test.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Common.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Config.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Dependency.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Dependency2.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/DependencyDB.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Downloader/ externals/geeklog-1.6.0b2/system/pear/PEAR/Downloader.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Downloader/Package.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/ErrorStack.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Exception.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/FixPHP5PEARWarnings.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Frontend/ externals/geeklog-1.6.0b2/system/pear/PEAR/Frontend.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Frontend/CLI.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/ externals/geeklog-1.6.0b2/system/pear/PEAR/Installer.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/ externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Cfg.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Cfg.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Common.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Data.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Data.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Doc.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Doc.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Ext.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Ext.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Php.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Php.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Script.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Script.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Src.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Src.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Test.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Test.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Www.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Installer/Role/Www.xml (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/ externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/Generator/ externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/Generator/v1.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/Generator/v2.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/Parser/ externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/Parser/v1.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/Parser/v2.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/v1.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/v2/ externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/v2.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/v2/Validator.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/PackageFile/v2/rw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Packager.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/REST/ externals/geeklog-1.6.0b2/system/pear/PEAR/REST.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/REST/10.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/REST/11.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/REST/13.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Registry.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Remote.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/RunTest.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/ externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Common.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Postinstallscript/ externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Postinstallscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Postinstallscript/rw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Replace/ externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Replace.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Replace/rw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Unixeol/ externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Unixeol.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Unixeol/rw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Windowseol/ externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Windowseol.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Task/Windowseol/rw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Validate.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/Validator/ externals/geeklog-1.6.0b2/system/pear/PEAR/Validator/PECL.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/PEAR/XMLParser.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/README (contents, props changed) externals/geeklog-1.6.0b2/system/pear/System.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Default.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Anchor.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Bold.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Break.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Center.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Code.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Colortext.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Deflist.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Embed.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Freelink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Function.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Heading.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Horiz.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Html.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Image.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Include.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Italic.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/List.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Newline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Raw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Revise.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Smiley.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Strong.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Subscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Superscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Table.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Tighten.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Toc.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Tt.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Underline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Url.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Parse/Default/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Anchor.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Bold.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Box.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Break.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Center.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Code.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Colortext.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Deflist.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Embed.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Font.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Freelink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Function.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Heading.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Horiz.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Html.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Image.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Include.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Italic.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/List.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Newline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Page.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Plugin.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Preformatted.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Raw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Revise.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Smiley.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Specialchar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Strong.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Subscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Superscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Table.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Tighten.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Titlebar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Toc.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Tt.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Underline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Url.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Latex/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Anchor.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Bold.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Box.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Break.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Center.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Code.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Colortext.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Deflist.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Embed.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Font.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Freelink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Function.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Heading.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Horiz.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Html.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Image.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Include.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Italic.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/List.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Newline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Page.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Plugin.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Preformatted.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Raw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Revise.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Smiley.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Specialchar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Strong.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Subscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Superscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Table.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Tighten.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Titlebar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Toc.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Tt.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Underline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Url.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Plain/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/ externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Address.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Anchor.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Bold.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Box.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Break.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Center.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Code.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Colortext.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Deflist.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Embed.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Font.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Freelink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Function.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Heading.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Horiz.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Html.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Image.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Include.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Italic.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/List.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Newline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Page.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Plugin.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Preformatted.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Raw.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Revise.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Smiley.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Specialchar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Strong.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Subscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Superscript.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Table.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Tighten.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Titlebar.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Toc.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Tt.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Underline.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Url.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/Text/Wiki/Render/Xhtml/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/XML/ externals/geeklog-1.6.0b2/system/pear/XML/RPC/ externals/geeklog-1.6.0b2/system/pear/XML/RPC.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/XML/RPC/Dump.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/XML/RPC/Server.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/ externals/geeklog-1.6.0b2/system/pear/scripts/pear.bat (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/pear.sh (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/pearcmd.php (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/peardev.bat (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/peardev.sh (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/pecl.bat (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/pecl.sh (contents, props changed) externals/geeklog-1.6.0b2/system/pear/scripts/peclcmd.php (contents, props changed) Log: Importing geeklog-1.6.0b2 under external directory. Added: externals/geeklog-1.6.0b2/INSTALL ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b2/INSTALL Sun Jun 7 03:36:21 2009 @@ -0,0 +1,7 @@ +Installation instructions for Geeklog can be found in the docs directory, +specifically in + + public_html/docs/english/install.html + +That document also includes a section on common installation problems. + Added: externals/geeklog-1.6.0b2/backups/README ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b2/backups/README Sun Jun 7 03:36: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.6.0b2/data/README ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b2/data/README Sun Jun 7 03:36: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.6.0b2/db-config.php ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b2/db-config.php Sun Jun 7 03:36:21 2009 @@ -0,0 +1,24 @@ + Added: externals/geeklog-1.6.0b2/emailgeeklogstories ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b2/emailgeeklogstories Sun Jun 7 03:36:21 2009 @@ -0,0 +1,15 @@ +#!/usr/local/bin/php -q + Added: externals/geeklog-1.6.0b2/language/afrikaans.php ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b2/language/afrikaans.php Sun Jun 7 03:36:21 2009 @@ -0,0 +1,1944 @@ + 'Geskryf deur:', + 2 => 'lees verder', + 3 => 'kommentaar', + 4 => 'Wysig', + 5 => '', + 6 => '', + 7 => '', + 8 => '', + 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 => '', + 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', + 28 => 'Preview Changes', + 29 => 'Submit Changes', + 30 => 'Edited on', + 31 => 'by', + 32 => 'Editing a Comment', + 33 => 'Editing a Comment Submission', + 34 => 'Preview Submission Changes', + 35 => 'Save Changes to Queue', + 36 => 'Notify me of new replies', + 37 => 'New Comment Reply', + 38 => 'A reply has been made to your comment \'%s\'.', + 39 => 'You may view the comment thread at the following address:', + 40 => 'If you wish to receive no further notifications of replies, visit the following link:', + 41 => 'Hello %s,', + 42 => 'Unsubscribe', + 43 => 'Unsubscribe from reply notifications' +); + +############################################################################### +# 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.', + 160 => '(max. %d x %d pixels, %d bytes; %s)', + 161 => 'will be scaled down', + 162 => 'will not be scaled' +); + +############################################################################### +# 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 = ============================================================================== Diff truncated at 200k characters From codesite-noreply @ google.com Sun Jun 7 23:00:27 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 14:00:27 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4MCAtIBskQkBoJE4lMyVfJUMlSBsoQihyMTU3OA==?= =?ISO-2022-JP?B?KRskQiRHJE5ESTJDJDdLOiRsJE4bKEJHTlVtYWtlZmlsZRskQiRHJDkhIxsoQg==?= Message-ID: <000e0cd29bf03a377b046bc28c0d@google.com> Author: tacahi Date: Sun Jun 7 06:59:23 2009 New Revision: 1580 Added: branches/geeklog-new-tree/plugins-jp/mycaljp/GNUmakefile Log: 先のコミット(r1578)での追加し忘れのGNUmakefileです。 Added: branches/geeklog-new-tree/plugins-jp/mycaljp/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/mycaljp/GNUmakefile Sun Jun 7 06:59:23 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= mycaljp + +FILES= README_JP config.php functions.inc history readme_jp.html +DIRS= language slidecalender templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common From codesite-noreply @ google.com Sun Jun 7 23:19:35 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 14:19:35 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4MSAtIOWQjOOBmOOBj+OAgeWFiOOBruOCs+ODnw==?= =?UTF-8?B?44OD44OIKHIxNTc4KeOBp+i/veWKoOOBmeOBueOBjeOBoOOBo+OBn+OAgeWQhOODl+ODqeOCsOOCpA==?= =?UTF-8?B?44Oz55So77+9Li4u?= Message-ID: <000e0cd331dcab7c68046bc2d004@google.com> Author: tacahi Date: Sun Jun 7 07:18:38 2009 New Revision: 1581 Added: branches/geeklog-new-tree/plugins-jp/custommenu/GNUmakefile branches/geeklog-new-tree/plugins-jp/dataproxy/GNUmakefile branches/geeklog-new-tree/plugins-jp/dbman/GNUmakefile branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile branches/geeklog-new-tree/plugins-jp/forum/GNUmakefile branches/geeklog-new-tree/plugins-jp/japanize/GNUmakefile branches/geeklog-new-tree/plugins-jp/nmoxqrblock/GNUmakefile branches/geeklog-new-tree/plugins-jp/nmoxtopicown/GNUmakefile branches/geeklog-new-tree/plugins-jp/sitemap/GNUmakefile branches/geeklog-new-tree/plugins-jp/themedit/GNUmakefile branches/geeklog-new-tree/plugins-jp/tkgmaps/GNUmakefile Log: 同じく、先のコミット(r1578)で追加すべきだった、各プラグイン用のGNUmakefileで す。 Added: branches/geeklog-new-tree/plugins-jp/custommenu/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/custommenu/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,10 @@ +# $Id$ + +PLUGIN= custommenu + +FILES= README_JP config.php functions.inc install_defaults.php \ + readme_jp.html readme_jp_1.5.html +DIRS= bonus language layout sql templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/dataproxy/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/dataproxy/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= dataproxy + +FILES= INSTALL INSTALL_ja config.php dataproxy.php functions.inc +DIRS= drivers language templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/dbman/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/dbman/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,8 @@ +# $Id$ + +PLUGIN= dbman + +FILES= INSTALL INSTALL_ja config.php functions.inc install_defaults.php + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,18 @@ +# $Id$ + +PLUGIN= filemgmt + +FILES= config.php filemgmt.php functions.inc history readme.htm \ + update_20080926.html +DATAPUBDIRS= filemgmt_data/category_snaps filemgmt_data/files/tmp \ + filemgmt_data/snaps/tmp + +install: + @echo "Creating dat directories for filemgmt." + @for d in $(DATAPUBDIRS); do \ + $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(GLPUBDIR)/$$d; \ + $(MKDIR) $(DESTDIR)$(GLPUBDIR)/$$d; \ + done + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/forum/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/forum/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,11 @@ +# $Id$ + +PLUGIN= forum + +FILES= config.php debug.php functions.inc history.txt \ + readme.html readme.jp upgrade.inc v2.6_changes.txt \ + v2.7_changes.txt v2.7.1_changes.txt v2.7.2_changes.txt +DIRS= language sql system templates themefiles + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/japanize/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/japanize/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= japanize + +FILES= functions.inc install_defaults.php readme_ja.txt version.php +DIRS= doc language sql templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/nmoxqrblock/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/nmoxqrblock/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= nmoxqrblock + +FILES= config.php functions.inc readme_ja.txt +DIRS= language templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/nmoxtopicown/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/nmoxtopicown/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= nmoxtopicown + +FILES= config.php functions.inc readme_ja.txt +DIRS= language + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/sitemap/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/sitemap/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= sitemap + +FILES= INSTALL INSTALL_ja config.php functions.inc +DIRS= language templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/themedit/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/themedit/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,9 @@ +# $Id$ + +PLUGIN= themedit + +FILES= INSTALL INSTALL_ja config.php functions.inc install_defaults.php +DIRS= language templates + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common Added: branches/geeklog-new-tree/plugins-jp/tkgmaps/GNUmakefile ============================================================================== --- (empty file) +++ branches/geeklog-new-tree/plugins-jp/tkgmaps/GNUmakefile Sun Jun 7 07:18:38 2009 @@ -0,0 +1,10 @@ +# $Id$ + +PLUGIN= tkgmaps + +FILES= INSTALL README_ja.html config.php \ + function_tkgmaps-admin.php function_tkgmaps.php functions.inc \ + install.html install_ja.html + +include ../../GNUmakefile.plugins +include ../../GNUmakefile.common From codesite-noreply @ google.com Sun Jun 7 23:24:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 14:24:36 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4MiAtIEdOVW1ha2VmaWxlGyRCJE49JEA1JHIbKEI=?= =?ISO-2022-JP?B?GyRCOVQkJCEiMGxETCRqR1tJW01RJE4lPSE8JTkhJiVEJWohPCROOm5ALhsoQg==?= =?ISO-2022-JP?B?GyRCJHIkRxsoQi4uLg==?= Message-ID: <000e0cd151f89d971d046bc2e251@google.com> Author: tacahi Date: Sun Jun 7 07:24:14 2009 New Revision: 1582 Modified: branches/geeklog-new-tree/GNUmakefile branches/geeklog-new-tree/GNUmakefile.common branches/geeklog-new-tree/GNUmakefile.plugins branches/geeklog-new-tree/extended/GNUmakefile Log: GNUmakefileの修正を行い、一通り配布用のソース・ツリーの作成をできるように なった(と思います)。 Modified: branches/geeklog-new-tree/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/GNUmakefile (original) +++ branches/geeklog-new-tree/GNUmakefile Sun Jun 7 07:24:14 2009 @@ -4,7 +4,10 @@ emailgeeklogstories.en readme readme.ja release_jp.php DIRS= backups data language logs plugins sql system -SUBDIR= custom plugins-jp # extended +SUBDIR= custom plugins-jp +ifeq ($(EXTENDED), true) +SUBDIR+= extended +endif GLDESTDIR?= $(GLDIR) Modified: branches/geeklog-new-tree/GNUmakefile.common ============================================================================== --- branches/geeklog-new-tree/GNUmakefile.common (original) +++ branches/geeklog-new-tree/GNUmakefile.common Sun Jun 7 07:24:14 2009 @@ -73,9 +73,9 @@ GL_JPVERSION= 1.0.99 ifneq ($(EXTENDED), true) -GL_RELEASE= $(GLBASE)-$(GL_VERSION)-jp-$(GL_JPVERSION) +GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) else -GL_RELEASE= $(GLBASE)-$(GL_VERSION)-jp-extended-$(GL_JPVERSION) +GL_RELEASE= geeklog-$(GL_VERSION)-jp-extended-$(GL_JPVERSION) endif # @@ -161,7 +161,7 @@ # public_html以下を、公開領域のプラグインを置くディレクトリへのインストール install-pubdir: - @if test public_html; then \ + @if test -d public_html; then \ test -d $(DESTDIR)$(PLUGINPUBDIR) || \ $(MKDIR) $(DESTDIR)$(PLUGINPUBDIR); \ $(VERBOSE) && echo "Copying public_html to $(DESTDIR)$(GLDESTPUBDIR)"; \ @@ -170,8 +170,9 @@ fi ifneq ($(strip $(SUBDIR)),) - install: - @for d in $(SUBDIR); do (cd $$d && $(MAKE) $@); done - + @for d in $(SUBDIR); do \ + echo "Install in $$d"; \ + (cd $$d && $(MAKE) $@); \ + done endif Modified: branches/geeklog-new-tree/GNUmakefile.plugins ============================================================================== --- branches/geeklog-new-tree/GNUmakefile.plugins (original) +++ branches/geeklog-new-tree/GNUmakefile.plugins Sun Jun 7 07:24:14 2009 @@ -58,14 +58,12 @@ # 非公開領域のプラグインを置くディレクトリを作成 make-plugindir: - @if test -d admin; then \ - $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(PLUGINDIR); \ + @$(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(PLUGINDIR); \ $(MKDIR) $(DESTDIR)$(PLUGINDIR); \ - fi # 公開領域のプラグインを置くディレクトリを作成 make-pluginpubdir: - @if test -d admin; then \ + @if test -d public_html; then \ $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(PLUGINPUBDIR); \ $(MKDIR) $(DESTDIR)$(PLUGINPUBDIR); \ fi Modified: branches/geeklog-new-tree/extended/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/extended/GNUmakefile (original) +++ branches/geeklog-new-tree/extended/GNUmakefile Sun Jun 7 07:24:14 2009 @@ -1,11 +1,8 @@ # -ifdef EXTENDED -DIRS= public_html system -endif +DIRS= system +FILES= CHANGES-extended.jp -#GLDESTDIR= $(GLDIR)/system/custom - -install: install-myfiles +install: install-myfiles install-dirs install-pubdir include ../GNUmakefile.common From codesite-noreply @ google.com Sun Jun 7 23:28:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 14:28:37 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4MyAtIBskQjZ1JE4lRyUjJWwlLyVIJWobKEI=?= =?ISO-2022-JP?B?GyRCJEshIjZ1JE4bKEIgaW5kZXguaHRtbCAbJEIkckNWJC8kaCQmJEskNyReJDkhIxsoQg==?= Message-ID: <00163646ccdef33d5c046bc2f0b9@google.com> Author: tacahi Date: Sun Jun 7 07:25:42 2009 New Revision: 1583 Added: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/images/custom/index.html (contents, props changed) Log: 空のディレクトリに、空の index.html を置くようにします。 Added: trunk/geeklog-1-jp-extended/public_html/layout/WAIproCSS/images/custom/index.html ============================================================================== From codesite-noreply @ google.com Sun Jun 7 23:32:37 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 14:32:37 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4NCAtIBskQjZ1JE4lRyUjJWwlLyVIJWobKEI=?= =?ISO-2022-JP?B?IHB1YmxpY19odG1sL2xheW91dC9XQUlwcm9DU1MvaW1hZ2VzL2N1c3RvbSAbJEIkSyEiNnUkThsoQg==?= Message-ID: <0016e64aeb444c192c046bc2ff36@google.com> Author: tacahi Date: Sun Jun 7 07:27:08 2009 New Revision: 1584 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: 空のディレクトリ public_html/layout/WAIproCSS/images/custom に、空の index.html を置いたことを記述しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Sun Jun 7 07:27:08 2009 @@ -2,6 +2,11 @@ 2009-06-07 Takahiro Kambe + * 空のディレクトリ public_html/layout/WAIproCSS/images/custom に、 + 空の index.html を置きました。 + +2009-06-07 Takahiro Kambe + * 空のディレクトリ public_html/layout/mobile/images/droplinemenuと public_html/layout/mobile_3g/images/droplinemenu は不要なので削除 しました。 From codesite-noreply @ google.com Sun Jun 7 23:36:38 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 14:36:38 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4NSAtIHIxNTgz44Gu5Y+W44KK6L6844G/OiA=?= =?UTF-8?B?56m644Gu44OH44Kj44Os44Kv44OI44Oq44Gr44CB56m644GuIGluZGV4Lmh0bWwg44KS572u44GP44KI?= =?UTF-8?B?44GG44Gr77+9Li4u?= Message-ID: <000e0cd32cdca516da046bc30dd2@google.com> Author: tacahi Date: Sun Jun 7 07:29:47 2009 New Revision: 1585 Added: branches/geeklog-new-tree/extended/public_html/layout/WAIproCSS/images/custom/index.html (contents, props changed) Log: r1583の取り込み: 空のディレクトリに、空の index.html を置くようにします。 Added: branches/geeklog-new-tree/extended/public_html/layout/WAIproCSS/images/custom/index.html ============================================================================== From codesite-noreply @ google.com Mon Jun 8 00:01:41 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 15:01:41 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4NiAtIEdlZWtsb2cgMS41LjLjgafliYrpmaQ=?= =?UTF-8?B?44GV44KM44Gm44GE44Gm44CB5pel5pys6Kqe5Z+65pys54mI44Gn44Gv5pei44Gr5YmK6Zmk44GV44KM?= =?UTF-8?B?44Gm44GE77+9Li4u?= Message-ID: <00163646ccde40c31d046bc36724@google.com> Author: tacahi Date: Sun Jun 7 08:00:59 2009 New Revision: 1586 Removed: trunk/geeklog-1-jp-extended/public_html/admin/install/addindex.php Log: Geeklog 1.5.2で削除されていて、日本語基本版では既に削除されているファイルを 削除します。 From codesite-noreply @ google.com Mon Jun 8 00:05:43 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 15:05:43 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4NyAtIHB1YmxpY19odG1sL2FkbWluL2luc3RhbA==?= =?ISO-2022-JP?B?bC9hZGRpbmRleC5waHAgGyRCJE46bz18JHI1LU8/JDckXiQ3JD8hIxsoQg==?= Message-ID: <000e0cd1554ca40f6c046bc37516@google.com> Author: tacahi Date: Sun Jun 7 08:02:35 2009 New Revision: 1587 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: public_html/admin/install/addindex.php の削除を記録しました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Sun Jun 7 08:02:35 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-08 Takahiro Kambe + + * Geeklog 1.5.2のリリースで削除され、日本語基本版でも既に削除されて + いる、public_html/admin/install/addindex.php を削除しました。 + 2009-06-07 Takahiro Kambe * 空のディレクトリ public_html/layout/WAIproCSS/images/custom に、 From codesite-noreply @ google.com Mon Jun 8 00:09:44 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 15:09:44 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4OCAtIHIxNTg2GyRCJEs9PiQkISIbKEJleHRlbmRl?= =?ISO-2022-JP?B?ZC9wdWJsaWNfaHRtbC9hZG1pbi9pbnN0YWxsL2FkZGluZGV4LnBocBskQiRyOm89fCQ3JF4kORsoQg==?= =?ISO-2022-JP?B?GyRCISMbKEI=?= Message-ID: <000e0cd331dc07b9d9046bc38471@google.com> Author: tacahi Date: Sun Jun 7 08:04:55 2009 New Revision: 1588 Removed: branches/geeklog-new-tree/extended/public_html/admin/ Log: r1586に従い、extended/public_html/admin/install/addindex.phpを削除します。 この結果、extended/public_html/admin 以下が空になるため、同ディレクトリ 以下を削除します。 From codesite-noreply @ google.com Mon Jun 8 00:34:53 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 07 Jun 2009 15:34:53 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU4OSAtIBskQjojRnwkTkpROTkkcjUtTz8bKEI=?= =?ISO-2022-JP?B?GyRCJDckXiQ3JD8hIxsoQg==?= Message-ID: <00163646c1e6f6b5bd046bc3dd79@google.com> Author: tacahi Date: Sun Jun 7 08:33:55 2009 New Revision: 1589 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 Jun 7 08:33:55 2009 @@ -1,5 +1,14 @@ $Id$ +2009-06-08 Takahiro Kambe + + * GNUmakefileの追加と修正を行い、一通りの当初目的としていた動作が + できるようになりました。 + + * extended/public_html/admin/install/addindex.php の削除に伴い、 + extended/public_html/admin 以下が空となったため、このディレクトリ + 自体を削除しました。 + 2009-06-07 Takahiro Kambe * r1568, r1569を取り込みました。(不要な空のディレクトリの削除) From codesite-noreply @ google.com Tue Jun 9 22:30:56 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 09 Jun 2009 13:30:56 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5MCAtIBskQk5jJEc7SE1RJDckRiQkJGsbKEI=?= =?ISO-2022-JP?B?GyRCISIbKEJHTlUgbWFrZRskQiROJTMlXiVzJUlMPiRyGyhCZ21ha2UbJEIkKyRpGyhCbWFrZRskQiRLSlE5OSQ3GyhC?= =?ISO-2022-JP?B?GyRCISIbKEI=?= Message-ID: <00151748e88c5aa8db046bea5e18@google.com> Author: tacahi Date: Tue Jun 9 06:30:28 2009 New Revision: 1590 Modified: branches/geeklog-new-tree/README-tree Log: 例で使用している、GNU makeのコマンド名をgmakeからmakeに変更し、 環境によっては異なる名前であることを追記しました。 Modified: branches/geeklog-new-tree/README-tree ============================================================================== Binary files. No diff available. From codesite-noreply @ google.com Fri Jun 12 15:41:58 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 12 Jun 2009 06:41:58 +0000 Subject: [geeklog-jp commit] r1591 - url rewrite Message-ID: <001636163cc7521284046c210161@google.com> Author: tsuchi000 Date: Thu Jun 11 23:40:56 2009 New Revision: 1591 Added: trunk/geeklog-1-jp-extended/plugins/filemgmt/update_20090602.html (contents, props changed) Removed: trunk/geeklog-1-jp-extended/plugins/filemgmt/update_20080926.html Modified: trunk/geeklog-1-jp-extended/plugins/filemgmt/templates/filelisting_record.thtml trunk/geeklog-1-jp-extended/public_html/filemgmt/include/dlformat.php trunk/geeklog-1-jp-extended/public_html/filemgmt/index.php Log: url rewrite r1565 url rewrite (trunk/plugins/filemgmt/ 以下) と同じ更新を trunk/geeklog-1-jp-extended/ 以下へ反映 Modified: trunk/geeklog-1-jp-extended/plugins/filemgmt/templates/filelisting_record.thtml ============================================================================== --- trunk/geeklog-1-jp-extended/plugins/filemgmt/templates/filelisting_record.thtml (original) +++ trunk/geeklog-1-jp-extended/plugins/filemgmt/templates/filelisting_record.thtml Thu Jun 11 23:40:56 2009 @@ -19,19 +19,19 @@ - + {snapshot_icon}{LANG_SCREENSHOT} - - + + - + {LANG_MD_SCREENSHOT_NA} {LANG_VERSION}:  {version}  {LANG_SUBMITDATE}: {datetime}   {LANG_RATING}{rating}{votestring}  @@ -44,7 +44,7 @@ {comment_link} |  {LANG_DOWNLOAD} |   - {LANG_FILELINK} |   + {readmore_link} |  {LANG_RATETHISFILE} |   {LANG_REPORTBROKEN}  | {LANG_EDIT} Added: trunk/geeklog-1-jp-extended/plugins/filemgmt/update_20090602.html ============================================================================== --- (empty file) +++ trunk/geeklog-1-jp-extended/plugins/filemgmt/update_20090602.html Thu Jun 11 23:40:56 2009 @@ -0,0 +1,122 @@ + + + + + + +Geeklog ?T?C?g + +

    WIKI JapanesefilemgmtFiles + +

    + +

    Ver1.5.3 ORIGINAL?Ń_?E?????[?h
    +??{??Ł@??I?X?V??2008/01/29 ??{?????Ń_?E?????[?h +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ?t?@?C???i?t?H???_?j????I?ύX????l
    /language/japanese.php2007/06/161.5.2???ύX???
    /language/japanese_utf-8.php2007/06/161.5.2???ύX???
    /public_htm/include/functions.php2008/01/29date format multilang ?Ή??@by hiroron
    /public_htm/viewcat.php2006/06/17?y?[?W?i?r?Q?[?V????????s?ǏC??1.5.3?ʼn??
    /templates/sortmenu.thtml2006/06/16?^?C?g??????N???b?N????????????????????????????C??1.5.3?ʼn??
    functions.php2008/01/15Wht's New ??????????
    filemgmt.php2007/05/20????l?ύX1.5.2???ύX???
    /sql/filemgmt_sql_install.php2008/01/15?C???X?g?[????????J?e?S?????
    +

    1.5?p???C???@??I?X?V??2009/06/02??{?????Ń_?E?????[?h + +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ?t?@?C???i?t?H???_?j????I?ύX????l
    /admin/index.php2008/09/17CSRF checks
    /admin/install.php2008/09/17CSRF checks
    function.inc2009/06/02include check urlrewrite
    public_html/index.php2009/06/02urlrewrite
    public_html/include/dlformat.php2009/06/02urlrewrite
    template/filelisting_record2009/06/02urlrewrite
    +

    ???Fplugins/filemgmt/filemgmt.php?@(??肪?L??????Ă???t?@?C??)???t?@?C??????????Ă???????A?Ǘ??????X?V???????Ă????????B +

    + + + + + \ No newline at end of file Modified: trunk/geeklog-1-jp-extended/public_html/filemgmt/include/dlformat.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/filemgmt/include/dlformat.php (original) +++ trunk/geeklog-1-jp-extended/public_html/filemgmt/include/dlformat.php Thu Jun 11 23:40:56 2009 @@ -27,7 +27,7 @@ // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------- // - +//@@@@@20090602 update urlrewrite if (basename($GLOBALS['PHP_SELF']) == "dlformat.php") { exit(); @@ -63,21 +63,21 @@ $p->set_var('votestring', $votestring); } else { $p->set_var('rating',$rating); - $p->set_var('votestring', ''); + $p->set_var('votestring', ''); } if ($logourl != '') { $p->set_var('snapshot_icon',''); $p->set_var('snapshot_url',$filemgmt_FileSnapURL . $logourl); $p->set_var('LANG_CLICK2SEE', _MD_CLICK2SEE.$logourl); $p->set_var('show_snapshoticon',''); - $p->set_var('show_snapshoticon_na','none'); + $p->set_var('show_snapshoticon_na','none'); } else { $p->set_var('show_snapshoticon','none'); - $p->set_var('show_snapshoticon_na',''); + $p->set_var('show_snapshoticon_na',''); $p->set_var('snapshot_icon',''); $p->set_var('snapshot_url',''); $p->set_var('LANG_CLICK2SEE',''); -} +} $p->set_var('LANG_MD_SCREENSHOT_NA', _MD_SCREENSHOT_NA); $p->set_var('LANG_VERSION', _MD_VERSION); @@ -92,9 +92,9 @@ $p->set_var('end_dlreport_link',''); } else { $p->set_var('begin_dlreport_link',''); - $p->set_var('end_dlreport_link',''); + $p->set_var('end_dlreport_link',''); } -$p->set_var('download_times',sprintf(_MD_DLTIMES,$hits)); +$p->set_var('download_times',sprintf(_MD_DLTIMES,$hits)); $p->set_var('download_count',$hits); $p->set_var('LANG_FILESIZE',_MD_FILESIZE); $p->set_var('file_size',PrettySize($size)); @@ -114,21 +114,27 @@ $comment_link = '' . _MD_ENTERCOMMENT . ''; } $p->set_var('comment_link',$comment_link); - $p->set_var('show_comments',''); + $p->set_var('show_comments',''); } else { - $p->set_var('show_comments','none'); + $p->set_var('show_comments','none'); } $p->set_var('LANG_DOWNLOAD',_MD_DOWNLOAD); -$p->set_var('LANG_FILELINK',_MD_FILELINK); -$p->set_var('LANG_RATETHISFILE',_MD_RATETHISFILE); +$p->set_var('LANG_FILELINK',_MD_FILELINK); +$p->set_var('LANG_RATETHISFILE',_MD_RATETHISFILE); $p->set_var('LANG_REPORTBROKEN',_MD_REPORTBROKEN); +//@@@@@20090602add----> +$pageurl = COM_buildURL ($_CONF[site_url]. "/filemgmt/index.php?id=".$lid); +$readmore_link=COM_createLink(_MD_FILELINK, $pageurl); +$p->set_var('readmore_link',$readmore_link); +//@@@@@20090602add<---- + if ($FilemgmtAdmin) { $p->set_var('LANG_EDIT', _MD_EDIT); - $p->set_var('show_editlink',''); + $p->set_var('show_editlink',''); } else { - $p->set_var('LANG_EDIT', ''); + $p->set_var('LANG_EDIT', ''); $p->set_var('show_editlink','none'); } Modified: trunk/geeklog-1-jp-extended/public_html/filemgmt/index.php ============================================================================== --- trunk/geeklog-1-jp-extended/public_html/filemgmt/index.php (original) +++ trunk/geeklog-1-jp-extended/public_html/filemgmt/index.php Thu Jun 11 23:40:56 2009 @@ -2,7 +2,7 @@ /* Reminder: always indent with 4 spaces (no tabs). */ // +-------------------------------------------------------------------------+ -// | File Management Plugin for Geeklog - by portalparts www.portalparts.com | +// | File Management Plugin for Geeklog - by portalparts www.portalparts.com | // | File: index.php | // | Main public script to view filemgmt categories and files | // +-------------------------------------------------------------------------+ @@ -31,6 +31,8 @@ // | | // +-------------------------------------------------------------------------+ // +//@@@@@20090602update urlrewrite + require_once("../lib-common.php"); include_once($_CONF[path_html]."filemgmt/include/header.php"); include($_CONF[path_html] ."filemgmt/include/functions.php"); @@ -58,11 +60,16 @@ $mytree->setGroupAccessFilter($_GROUPS); $display = COM_siteHeader('menu'); - $lid = COM_applyFilter($_GET['id'],true); + //@@@@@20090602update urlrewrite ----> + //$lid = COM_applyFilter($_GET['id'],true); + COM_setArgNames(array('id')); + $lid = COM_applyFilter(COM_getArgument('id'),true); + //@@@@@20090602update urlrewrite<----- + if ($lid == 0) { // Check if the script is being called from the commentbar $lid = str_replace('fileid_','',$_POST['id']); } - + $groupsql = filemgmt_buildAccessSql(); $sql = "SELECT COUNT(*) FROM {$_FM_TABLES['filemgmt_filedetail']} a "; @@ -71,24 +78,24 @@ list($fileAccessCnt) = DB_fetchArray( DB_query($sql)); if ($fileAccessCnt > 0 AND DB_count($_FM_TABLES['filemgmt_filedetail'],"lid",$lid ) == 1) { - + $p->set_var('block_header', COM_startBlock("". $LANG_FILEMGMT['plugin_name'] ."")); $p->set_var('block_footer', COM_endBlock()); - + require_once $_CONF['path_system'] . 'lib-comment.php'; - + $sql = "SELECT d.lid, d.cid, d.title, d.url, d.homepage, d.version, d.size, d.logourl, d.submitter, d.status, d.date, "; $sql .= "d.hits, d.rating, d.votes, d.comments, t.description FROM {$_FM_TABLES['filemgmt_filedetail']} d, "; $sql .= "{$_FM_TABLES['filemgmt_filedesc']} t WHERE d.lid='$lid' AND d.lid=t.lid AND status > 0"; - + $result = DB_query($sql); list($lid, $cid, $dtitle, $url, $homepage, $version, $size, $logourl, $submitter, $status, $time, $hits, $rating, $votes, $comments, $description) = DB_fetchARRAY($result); - + $pathstring = ""._MD_MAIN." : "; $nicepath = $mytree->getNicePathFromId($cid, "title", "{$_CONF['site_url']}/filemgmt/viewcat.php"); $pathstring .= $nicepath; $p->set_var('category_path_link',$pathstring); - + $rating = number_format($rating, 2); $dtitle = $myts->makeTboxData4Show($dtitle); $url = $myts->makeTboxData4Show($url); @@ -103,20 +110,19 @@ list ($submitter_name,$submitter_fullname,$photo) = DB_fetchARRAY($result2); $submitter_name = COM_getDisplayName ($submitter, $submitter_name, $submitter_fullname); include($_CONF[path_html] ."/filemgmt/include/dlformat.php"); - $p->set_var('cssid',1); $p->parse ('filelisting_records', 'records'); if (SEC_hasRights('filemgmt.edit')) { $delete_option = true; } else { $delete_option = false; - } + } $p->set_var('comment_records', CMT_userComments( "fileid_{$lid}", $title, 'filemgmt',$_POST['order'],$_POST['mode'],0,1,false,$delete_option)); $p->parse ('output', 'page'); $display .= $p->finish ($p->get_var('output')); } else { - + $p = new Template($_CONF['path'] . 'plugins/filemgmt/templates'); $p->set_file (array ( 'page' => 'filelisting.thtml', @@ -148,7 +154,7 @@ $countsql = DB_query($sql); list($maxrows) = DB_fetchArray($countsql); $numpages = ceil($maxrows / $show); - + $p->set_var('block_header', COM_startBlock(sprintf(_MD_LISTINGHEADING,$maxrows))); $p->set_var('block_footer', COM_endBlock()); $count = 0; @@ -167,7 +173,7 @@ $category_image_link .= ''; $p->set_var('category_link',$category_image_link); } else { - $p->set_var('category_link',' '); + $p->set_var('category_link',' '); } $downloadsWaitingSubmission = getTotalItems($myrow['cid'], 0); @@ -198,7 +204,7 @@ $chcount++; } $p->set_var('subcategories',$subcategories); - $count++; + $count++; if ($count == $numCategoriesPerRow) { $p->set_var('end_of_row',''); $p->parse ('category_records', 'category',true); @@ -207,13 +213,13 @@ } else { $p->set_var('end_of_row',''); $p->parse ('category_records', 'category',true); - $p->set_var('new_table_row',''); + $p->set_var('new_table_row',''); } } } } - - + + $offset = ($page - 1) * $show; $sql = "SELECT d.lid, d.cid, d.title, url, homepage, version, size, platform, submitter, logourl, status, "; @@ -254,7 +260,7 @@ $cssid = ($cssid == 2) ? 1 : 2; } } - + // Print Google-like paging navigation $base_url = $_CONF['site_url'] . '/filemgmt/index.php'; $p->set_var('page_navigation', COM_printPageNavigation($base_url,$page, $numpages)); From codesite-noreply @ google.com Sat Jun 13 01:39:22 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Fri, 12 Jun 2009 16:39:22 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5MiAtIHIxNTkxGyRCJE5KUTk5JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkNyReJDkhIxsoQg==?= Message-ID: <00163630f367c5f414046c2959f6@google.com> Author: tacahi Date: Fri Jun 12 09:38:44 2009 New Revision: 1592 Added: branches/geeklog-new-tree/plugins-jp/filemgmt/update_20090602.html - copied unchanged from r1591, /trunk/geeklog-1-jp-extended/plugins/filemgmt/update_20090602.html Removed: branches/geeklog-new-tree/plugins-jp/filemgmt/update_20080926.html Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/include/dlformat.php (contents, props changed) branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/index.php (contents, props changed) branches/geeklog-new-tree/plugins-jp/filemgmt/templates/filelisting_record.thtml (contents, props changed) Log: r1591の変更をマージします。 Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/include/dlformat.php ============================================================================== --- branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/include/dlformat.php (original) +++ branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/include/dlformat.php Fri Jun 12 09:38:44 2009 @@ -27,7 +27,7 @@ // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------- // - +//@@@@@20090602 update urlrewrite if (basename($GLOBALS['PHP_SELF']) == "dlformat.php") { exit(); @@ -63,21 +63,21 @@ $p->set_var('votestring', $votestring); } else { $p->set_var('rating',$rating); - $p->set_var('votestring', ''); + $p->set_var('votestring', ''); } if ($logourl != '') { $p->set_var('snapshot_icon',''); $p->set_var('snapshot_url',$filemgmt_FileSnapURL . $logourl); $p->set_var('LANG_CLICK2SEE', _MD_CLICK2SEE.$logourl); $p->set_var('show_snapshoticon',''); - $p->set_var('show_snapshoticon_na','none'); + $p->set_var('show_snapshoticon_na','none'); } else { $p->set_var('show_snapshoticon','none'); - $p->set_var('show_snapshoticon_na',''); + $p->set_var('show_snapshoticon_na',''); $p->set_var('snapshot_icon',''); $p->set_var('snapshot_url',''); $p->set_var('LANG_CLICK2SEE',''); -} +} $p->set_var('LANG_MD_SCREENSHOT_NA', _MD_SCREENSHOT_NA); $p->set_var('LANG_VERSION', _MD_VERSION); @@ -92,9 +92,9 @@ $p->set_var('end_dlreport_link',''); } else { $p->set_var('begin_dlreport_link',''); - $p->set_var('end_dlreport_link',''); + $p->set_var('end_dlreport_link',''); } -$p->set_var('download_times',sprintf(_MD_DLTIMES,$hits)); +$p->set_var('download_times',sprintf(_MD_DLTIMES,$hits)); $p->set_var('download_count',$hits); $p->set_var('LANG_FILESIZE',_MD_FILESIZE); $p->set_var('file_size',PrettySize($size)); @@ -114,21 +114,27 @@ $comment_link = '' . _MD_ENTERCOMMENT . ''; } $p->set_var('comment_link',$comment_link); - $p->set_var('show_comments',''); + $p->set_var('show_comments',''); } else { - $p->set_var('show_comments','none'); + $p->set_var('show_comments','none'); } $p->set_var('LANG_DOWNLOAD',_MD_DOWNLOAD); -$p->set_var('LANG_FILELINK',_MD_FILELINK); -$p->set_var('LANG_RATETHISFILE',_MD_RATETHISFILE); +$p->set_var('LANG_FILELINK',_MD_FILELINK); +$p->set_var('LANG_RATETHISFILE',_MD_RATETHISFILE); $p->set_var('LANG_REPORTBROKEN',_MD_REPORTBROKEN); +//@@@@@20090602add----> +$pageurl = COM_buildURL ($_CONF[site_url]. "/filemgmt/index.php?id=".$lid); +$readmore_link=COM_createLink(_MD_FILELINK, $pageurl); +$p->set_var('readmore_link',$readmore_link); +//@@@@@20090602add<---- + if ($FilemgmtAdmin) { $p->set_var('LANG_EDIT', _MD_EDIT); - $p->set_var('show_editlink',''); + $p->set_var('show_editlink',''); } else { - $p->set_var('LANG_EDIT', ''); + $p->set_var('LANG_EDIT', ''); $p->set_var('show_editlink','none'); } Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/index.php ============================================================================== --- branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/index.php (original) +++ branches/geeklog-new-tree/plugins-jp/filemgmt/public_html/index.php Fri Jun 12 09:38:44 2009 @@ -2,7 +2,7 @@ /* Reminder: always indent with 4 spaces (no tabs). */ // +-------------------------------------------------------------------------+ -// | File Management Plugin for Geeklog - by portalparts www.portalparts.com | +// | File Management Plugin for Geeklog - by portalparts www.portalparts.com | // | File: index.php | // | Main public script to view filemgmt categories and files | // +-------------------------------------------------------------------------+ @@ -31,6 +31,8 @@ // | | // +-------------------------------------------------------------------------+ // +//@@@@@20090602update urlrewrite + require_once("../lib-common.php"); include_once($_CONF[path_html]."filemgmt/include/header.php"); include($_CONF[path_html] ."filemgmt/include/functions.php"); @@ -58,11 +60,16 @@ $mytree->setGroupAccessFilter($_GROUPS); $display = COM_siteHeader('menu'); - $lid = COM_applyFilter($_GET['id'],true); + //@@@@@20090602update urlrewrite ----> + //$lid = COM_applyFilter($_GET['id'],true); + COM_setArgNames(array('id')); + $lid = COM_applyFilter(COM_getArgument('id'),true); + //@@@@@20090602update urlrewrite<----- + if ($lid == 0) { // Check if the script is being called from the commentbar $lid = str_replace('fileid_','',$_POST['id']); } - + $groupsql = filemgmt_buildAccessSql(); $sql = "SELECT COUNT(*) FROM {$_FM_TABLES['filemgmt_filedetail']} a "; @@ -71,24 +78,24 @@ list($fileAccessCnt) = DB_fetchArray( DB_query($sql)); if ($fileAccessCnt > 0 AND DB_count($_FM_TABLES['filemgmt_filedetail'],"lid",$lid ) == 1) { - + $p->set_var('block_header', COM_startBlock("". $LANG_FILEMGMT['plugin_name'] ."")); $p->set_var('block_footer', COM_endBlock()); - + require_once $_CONF['path_system'] . 'lib-comment.php'; - + $sql = "SELECT d.lid, d.cid, d.title, d.url, d.homepage, d.version, d.size, d.logourl, d.submitter, d.status, d.date, "; $sql .= "d.hits, d.rating, d.votes, d.comments, t.description FROM {$_FM_TABLES['filemgmt_filedetail']} d, "; $sql .= "{$_FM_TABLES['filemgmt_filedesc']} t WHERE d.lid='$lid' AND d.lid=t.lid AND status > 0"; - + $result = DB_query($sql); list($lid, $cid, $dtitle, $url, $homepage, $version, $size, $logourl, $submitter, $status, $time, $hits, $rating, $votes, $comments, $description) = DB_fetchARRAY($result); - + $pathstring = ""._MD_MAIN." : "; $nicepath = $mytree->getNicePathFromId($cid, "title", "{$_CONF['site_url']}/filemgmt/viewcat.php"); $pathstring .= $nicepath; $p->set_var('category_path_link',$pathstring); - + $rating = number_format($rating, 2); $dtitle = $myts->makeTboxData4Show($dtitle); $url = $myts->makeTboxData4Show($url); @@ -103,20 +110,19 @@ list ($submitter_name,$submitter_fullname,$photo) = DB_fetchARRAY($result2); $submitter_name = COM_getDisplayName ($submitter, $submitter_name, $submitter_fullname); include($_CONF[path_html] ."/filemgmt/include/dlformat.php"); - $p->set_var('cssid',1); $p->parse ('filelisting_records', 'records'); if (SEC_hasRights('filemgmt.edit')) { $delete_option = true; } else { $delete_option = false; - } + } $p->set_var('comment_records', CMT_userComments( "fileid_{$lid}", $title, 'filemgmt',$_POST['order'],$_POST['mode'],0,1,false,$delete_option)); $p->parse ('output', 'page'); $display .= $p->finish ($p->get_var('output')); } else { - + $p = new Template($_CONF['path'] . 'plugins/filemgmt/templates'); $p->set_file (array ( 'page' => 'filelisting.thtml', @@ -148,7 +154,7 @@ $countsql = DB_query($sql); list($maxrows) = DB_fetchArray($countsql); $numpages = ceil($maxrows / $show); - + $p->set_var('block_header', COM_startBlock(sprintf(_MD_LISTINGHEADING,$maxrows))); $p->set_var('block_footer', COM_endBlock()); $count = 0; @@ -167,7 +173,7 @@ $category_image_link .= ''; $p->set_var('category_link',$category_image_link); } else { - $p->set_var('category_link',' '); + $p->set_var('category_link',' '); } $downloadsWaitingSubmission = getTotalItems($myrow['cid'], 0); @@ -198,7 +204,7 @@ $chcount++; } $p->set_var('subcategories',$subcategories); - $count++; + $count++; if ($count == $numCategoriesPerRow) { $p->set_var('end_of_row',''); $p->parse ('category_records', 'category',true); @@ -207,13 +213,13 @@ } else { $p->set_var('end_of_row',''); $p->parse ('category_records', 'category',true); - $p->set_var('new_table_row',''); + $p->set_var('new_table_row',''); } } } } - - + + $offset = ($page - 1) * $show; $sql = "SELECT d.lid, d.cid, d.title, url, homepage, version, size, platform, submitter, logourl, status, "; @@ -254,7 +260,7 @@ $cssid = ($cssid == 2) ? 1 : 2; } } - + // Print Google-like paging navigation $base_url = $_CONF['site_url'] . '/filemgmt/index.php'; $p->set_var('page_navigation', COM_printPageNavigation($base_url,$page, $numpages)); Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/templates/filelisting_record.thtml ============================================================================== --- branches/geeklog-new-tree/plugins-jp/filemgmt/templates/filelisting_record.thtml (original) +++ branches/geeklog-new-tree/plugins-jp/filemgmt/templates/filelisting_record.thtml Fri Jun 12 09:38:44 2009 @@ -19,19 +19,19 @@ - + {snapshot_icon}{LANG_SCREENSHOT} - - + + - + {LANG_MD_SCREENSHOT_NA} {LANG_VERSION}:  {version}  {LANG_SUBMITDATE}: {datetime}   {LANG_RATING}{rating}{votestring}  @@ -44,7 +44,7 @@ {comment_link} |  {LANG_DOWNLOAD} |   - {LANG_FILELINK} |   + {readmore_link} |  {LANG_RATETHISFILE} |   {LANG_REPORTBROKEN}  | {LANG_EDIT} From codesite-noreply @ google.com Mon Jun 15 11:01:10 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 15 Jun 2009 02:01:10 +0000 Subject: [geeklog-jp commit] r1593 - no log message Message-ID: <0016e644cef699e4c3046c596e20@google.com> Author: tsuchi000 Date: Sun Jun 14 18:38:33 2009 New Revision: 1593 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 Sun Jun 14 18:38:33 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-12 Kazuko Tsuchitani + + * ファイル管理プラグイン(filemgmt)の自動タグでURLリライトが動作しない + 不具合を修正。全文表示のリンクをURLリライトに対応させました。 + 2009-06-08 Takahiro Kambe * Geeklog 1.5.2のリリースで削除され、日本語基本版でも既に削除されて @@ -223,7 +228,7 @@ しました。 カレンダでの年月日及び時間の選択が、イベントエディタにおいて初期値と して入力されるようにしました。 - HTMLコードの適正化を実施しました。 + HTMLコードの適正化を実施しました。 2009-02-14 Takahiro Kambe @@ -358,7 +363,7 @@ * WAIproCSSがInternet ExplorerIE6でフッタ部分のページの先頭へ戻る及び validateアイコンが表示されていなかったのを修正しました。 -2009-01-12 Masuko Koeda +2009-01-12 Masuko Koeda * WAIproCSSがWindows Internet Explorer、Opera、Firefox、Google Chromeで 文字サイズ縮小時にレイアウトが崩れていたのを修正しました。 From codesite-noreply @ google.com Mon Jun 15 22:55:34 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 15 Jun 2009 13:55:34 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5NCAtIBskQiVVJSElJCVrTD4kTkpROTkbKEI=?= =?ISO-2022-JP?B?GyRCJCwkIiRDJD8kMyRIJHIbKEJHTlVtYWtlZmlsZRskQiRLSD8xRyQ3JF4kOSEjGyhC?= Message-ID: <0016368e1b118375fe046c636965@google.com> Author: tacahi Date: Mon Jun 15 06:55:14 2009 New Revision: 1594 Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile Log: ファイル名の変更があったことをGNUmakefileに反映します。 Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile (original) +++ branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile Mon Jun 15 06:55:14 2009 @@ -3,7 +3,7 @@ PLUGIN= filemgmt FILES= config.php filemgmt.php functions.inc history readme.htm \ - update_20080926.html + update_20090602.html DATAPUBDIRS= filemgmt_data/category_snaps filemgmt_data/files/tmp \ filemgmt_data/snaps/tmp From codesite-noreply @ google.com Tue Jun 16 01:19:59 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 15 Jun 2009 16:19:59 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5NiAtIEdOVW1ha2VmaWxlGyRCJEskaCRrPWgbKEI=?= =?ISO-2022-JP?B?GyRCTX0kTj0kQDUkcjlUJCQkXiQ3JD8hIxsoQg==?= Message-ID: <0016361e888001d914046c656e8c@google.com> Author: tacahi Date: Mon Jun 15 08:39:35 2009 New Revision: 1596 Modified: branches/geeklog-new-tree/GNUmakefile branches/geeklog-new-tree/GNUmakefile.common branches/geeklog-new-tree/GNUmakefile.plugins branches/geeklog-new-tree/custom/GNUmakefile branches/geeklog-new-tree/plugins-jp/GNUmakefile branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile Log: GNUmakefileによる処理の修正を行いました。 o EXTENDEDは未定義か値がnoの場合は日本語基本版、それ以外の場合は日本語拡張版 となります。 o MAKEPUBDIRS/PUBDIRMODEを定義して、公開領域にデータを置くためのディレクトリ を作成できるようにしました。(これでfilemgmtプラグインのfilemgmt_dataディレ クトリを作成します。) 詳細は、続いてコミットする README-tree に記述を加えました。 Modified: branches/geeklog-new-tree/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/GNUmakefile (original) +++ branches/geeklog-new-tree/GNUmakefile Mon Jun 15 08:39:35 2009 @@ -5,9 +5,7 @@ DIRS= backups data language logs plugins sql system SUBDIR= custom plugins-jp -ifeq ($(EXTENDED), true) -SUBDIR+= extended -endif +ESUBDIR= extended GLDESTDIR?= $(GLDIR) Modified: branches/geeklog-new-tree/GNUmakefile.common ============================================================================== --- branches/geeklog-new-tree/GNUmakefile.common (original) +++ branches/geeklog-new-tree/GNUmakefile.common Mon Jun 15 08:39:35 2009 @@ -20,9 +20,12 @@ # デフォルト: 空 # # EXTENDED -# trueに定義すると日本語拡張版として、インストールするファイルの追加や -# 一部のデフォルトの値を変更します。 -# デフォルト: 未定義 +# 日本語拡張版とする場合に設定します。以下のいずれかの場合は、 +# EXTENDEDを定義していないときと同様に日本語基本版として処理を +# 行います。 +# +# * NOまたはnoを値に指定した場合 +# * マクロ自体が定義されていない場合 # # TOPDIR # インストールの基準とするトップのディレクトリです。 @@ -58,8 +61,15 @@ # DESTDIR?= # empty +EXTENDED?= no +_MAKE_EXTENDED= $(subst N,n,$(subst O,o,$(EXTENDED))) +ifeq ($(_MAKE_EXTENDED),no) +MAKE_EXTENDED= no +else +MAKE_EXTENDED= yes +endif TOPDIR?= /var/tmp -ifneq ($(EXTENDED), true) +ifeq ($(MAKE_EXTENDED), no) GLBASE?= geeklog else GLBASE?= geeklog-extended @@ -67,12 +77,12 @@ GLDIR?= $(TOPDIR)/$(GLBASE) GLPUBDIR?= $(TOPDIR)/$(GLBASE)/public_html -VERBOSE?= $(TRUE) # $(FALSE) +VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 GL_JPVERSION= 1.0.99 -ifneq ($(EXTENDED), true) +ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) else GL_RELEASE= geeklog-$(GL_VERSION)-jp-extended-$(GL_JPVERSION) @@ -81,6 +91,7 @@ # # 使用するコマンドの名前 # +CHMOD?= chmod CMP?= cmp DIRNAME?= dirname FIND?= find @@ -135,6 +146,11 @@ POSTINSTALL?= # empty default GLDESTDIR?= $(GLDIR) GLDESTPUBDIR?= $(GLPUBDIR) + +ifneq ($(MAKE_EXTENDED), no) +FILES+= $(EFILES) +SUBDIR+= $(ESUBDIR) +endif $(DESTDIR)$(GLDESTDIR): $(MKDIR) $(DESTDIR)$(GLDESTDIR) Modified: branches/geeklog-new-tree/GNUmakefile.plugins ============================================================================== --- branches/geeklog-new-tree/GNUmakefile.plugins (original) +++ branches/geeklog-new-tree/GNUmakefile.plugins Mon Jun 15 08:39:35 2009 @@ -13,17 +13,32 @@ # デフォルト: 未定義 # # FILES -# プラグインのディレクトリ直下の、非公開領域のプラグインのディレクトリに -# インストールするファイルを指定します。 +# +# プラグインのディレクトリ直下にあるファイルで、非公開領域のプラグインの +# ディレクトリにインストールする必要があるファイルをスペースで区切って +# 指定します。 # デフォルト: 空 # # DIRS -# プラグインのディレクトリ直下の、非公開領域のプラグインのディレクトリに -# インストールするディレクトリを指定します。 -# DIRSに指定されたディレクトリが存在しない場合は、処理せずに飛ばして -# エラーとしません。 +# プラグインのディレクトリ直下にあるディレクトリで、非公開領域のプラグ +# インのディレクトリにインストールする必要があるディレクトリを指定します。 # デフォルト: language sql templates # +# 指定されたディレクトリが存在しない場合は、単純に無視してエラーとは +# しません。 +# +# MAKEPUBDIRS +# プラグインが、公開領域にデータを置くためのディレクトリが必要と +# する場合に、必要なディレクトリを相対パスで指定します。 +# デフォルト: 空 +# +# PUBDIRMODE +# MAKEPUBDIRSで指定したディレクトリのアクセス権を指定します。 +# 但し、これで設定されるのは、MAKEPUBDIRSで指定した各ディレクトリの +# 最下位のディレクトリだけで、途中のディレクトリはDIRMODEの設定に +# 従います。 +# デフォルト: 0755 +# FILES?= # empty default DIRS?= language sql templates @@ -52,6 +67,8 @@ GLDESTDIR= $(PLUGINDIR) GLDESTPUBDIR= $(PLUGINPUBDIR) +PUBDIRMODE?= 0755 + # # 各ルール # @@ -87,6 +104,16 @@ (cd $(DESTDIR)$(ADMINDIR); $(PAX) -r -pm); \ fi +make-pubdirs: +ifneq ($(strip $(MAKEPUBDIRS)),) + @echo "Creating extra directories under public_html for $(PLUGIN)." + @for d in $(MAKEPUBDIRS); do \ + $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(GLPUBDIR)/$$d; \ + $(MKDIR) $(DESTDIR)$(GLPUBDIR)/$$d; \ + $(CHMOD) $(PUBDIRMODE) $(DESTDIR)$(GLPUBDIR)/$$d; \ + done +endif + install-files: install-myfiles install-dirs install-pubdir install-admin -install: make-dirs install-files +install: make-dirs make-pubdirs install-files Modified: branches/geeklog-new-tree/custom/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/custom/GNUmakefile (original) +++ branches/geeklog-new-tree/custom/GNUmakefile Mon Jun 15 08:39:35 2009 @@ -1,11 +1,12 @@ # +# Basic custom functions for Geeklog Japanese release. FILES= custom_cellular.php custom_mail_jp.php -ifeq ($(EXTENDED), true) -FILES+= custom_getstaticpage.php phpblock_lastarticles.php -FILES+= phpblock_showrights.php phpblock_sitemapmenu.php -FILES+= phpblock_stats.php phpblock_themetester.php -endif + +# Additional custom functions for Geeklog Japanese extended release. +EFILES+= custom_getstaticpage.php phpblock_lastarticles.php +EFILES+= phpblock_showrights.php phpblock_sitemapmenu.php +EFILES+= phpblock_stats.php phpblock_themetester.php GLDESTDIR= $(GLDIR)/system/custom Modified: branches/geeklog-new-tree/plugins-jp/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/plugins-jp/GNUmakefile (original) +++ branches/geeklog-new-tree/plugins-jp/GNUmakefile Mon Jun 15 08:39:35 2009 @@ -1,10 +1,10 @@ # +# Basic plugins for Geeklog Japanese release. SUBDIR= calendarjp japanize -ifeq ($(EXTENDED), true) -SUBDIR+= autotags captcha custommenu dataproxy dbman filemgmt forum -SUBDIR+= mycaljp nmoxqrblock nmoxtopicown sitemap themedit tkgmaps -endif +# Additional plugins for Geeklog Japanese extended release. +ESUBDIR= autotags captcha custommenu dataproxy dbman filemgmt forum +ESUBDIR+= mycaljp nmoxqrblock nmoxtopicown sitemap themedit tkgmaps include ../GNUmakefile.common Modified: branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile (original) +++ branches/geeklog-new-tree/plugins-jp/filemgmt/GNUmakefile Mon Jun 15 08:39:35 2009 @@ -1,18 +1,12 @@ -# $Id$ +# PLUGIN= filemgmt FILES= config.php filemgmt.php functions.inc history readme.htm \ update_20090602.html -DATAPUBDIRS= filemgmt_data/category_snaps filemgmt_data/files/tmp \ +MAKEPUBDIRS= filemgmt_data/category_snaps filemgmt_data/files/tmp \ filemgmt_data/snaps/tmp - -install: - @echo "Creating dat directories for filemgmt." - @for d in $(DATAPUBDIRS); do \ - $(VERBOSE) && echo $(MKDIR) $(DESTDIR)$(GLPUBDIR)/$$d; \ - $(MKDIR) $(DESTDIR)$(GLPUBDIR)/$$d; \ - done +PUBDIRMODE= 0775 include ../../GNUmakefile.plugins include ../../GNUmakefile.common From codesite-noreply @ google.com Tue Jun 16 01:31:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 15 Jun 2009 16:31:25 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5NyAtIFJFQURNRS10cmVlIBskQiRLGyhCR05VbWFrZWZp?= =?ISO-2022-JP?B?bGUbJEIkTiVeJS8lbSRkJWshPCVrJEskRCQkJEY1LT1SJDckXiQ5ISMbKEI=?= Message-ID: <0016e64135dee3a02e046c6596a4@google.com> Author: tacahi Date: Mon Jun 15 08:43:02 2009 New Revision: 1597 Modified: branches/geeklog-new-tree/README-tree (contents, props changed) Log: README-tree にGNUmakefileのマクロやルールについて記述します。 Modified: branches/geeklog-new-tree/README-tree ============================================================================== Binary files. No diff available. From codesite-noreply @ google.com Tue Jun 16 01:40:51 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 15 Jun 2009 16:40:51 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5NSAtIOaXpeacrOiqnuaLoeW8teeJiOOBrkNIQQ==?= =?UTF-8?B?TkdFUy5qcOODleOCoeOCpOODq+OBruWQjeWJjeOCkuOAgeaXpeacrOiqnuWfuuacrOeJiOOBqOWIpQ==?= =?UTF-8?B?44Gu5ZCN77+9Li4u?= Message-ID: <0016361e8890960f5c046c65b825@google.com> Author: tacahi Date: Mon Jun 15 08:33:15 2009 New Revision: 1595 Added: branches/geeklog-new-tree/extended/CHANGES-extended.jp - copied unchanged from r1594, /branches/geeklog-new-tree/extended/CHANGES.jp Removed: branches/geeklog-new-tree/extended/CHANGES.jp Log: 日本語拡張版のCHANGES.jpファイルの名前を、日本語基本版と別の名前に変更しま す。 CHANGESのファイルは、日本語基本版と日本語拡張版で区別せずまとめた方が良いと 思いますが、その時点でCHANGES-extended.jpは残したまま使用しないようにする といった形を取るとよいように思います。 From codesite-noreply @ google.com Sun Jun 21 22:44:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 21 Jun 2009 13:44:36 +0000 Subject: [geeklog-jp commit] r1598 - Importnig geeklog-1.6.0b3 under externals. Message-ID: <001485f547344eb1d1046cdbf50b@google.com> Author: tacahi Date: Sun Jun 21 04:00:44 2009 New Revision: 1598 Added: externals/geeklog-1.6.0b3/ externals/geeklog-1.6.0b3/INSTALL (contents, props changed) externals/geeklog-1.6.0b3/backups/ externals/geeklog-1.6.0b3/backups/README (contents, props changed) externals/geeklog-1.6.0b3/data/ externals/geeklog-1.6.0b3/data/README (contents, props changed) externals/geeklog-1.6.0b3/db-config.php (contents, props changed) externals/geeklog-1.6.0b3/emailgeeklogstories (contents, props changed) externals/geeklog-1.6.0b3/language/ externals/geeklog-1.6.0b3/language/afrikaans.php (contents, props changed) externals/geeklog-1.6.0b3/language/afrikaans_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/bosnian.php (contents, props changed) externals/geeklog-1.6.0b3/language/bosnian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/bulgarian.php (contents, props changed) externals/geeklog-1.6.0b3/language/bulgarian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/catalan.php (contents, props changed) externals/geeklog-1.6.0b3/language/catalan_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/croatian.php (contents, props changed) externals/geeklog-1.6.0b3/language/croatian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/czech.php (contents, props changed) externals/geeklog-1.6.0b3/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/danish.php (contents, props changed) externals/geeklog-1.6.0b3/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b3/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b3/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/finnish.php (contents, props changed) externals/geeklog-1.6.0b3/language/finnish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b3/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/french_france.php (contents, props changed) externals/geeklog-1.6.0b3/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/german.php (contents, props changed) externals/geeklog-1.6.0b3/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b3/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/hellenic.php (contents, props changed) externals/geeklog-1.6.0b3/language/hellenic_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/indonesian.php (contents, props changed) externals/geeklog-1.6.0b3/language/indonesian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/italian.php (contents, props changed) externals/geeklog-1.6.0b3/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/korean.php (contents, props changed) externals/geeklog-1.6.0b3/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/norwegian.php (contents, props changed) externals/geeklog-1.6.0b3/language/norwegian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/polish.php (contents, props changed) externals/geeklog-1.6.0b3/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/portuguese.php (contents, props changed) externals/geeklog-1.6.0b3/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.6.0b3/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/portuguese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/romanian.php (contents, props changed) externals/geeklog-1.6.0b3/language/romanian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/russian.php (contents, props changed) externals/geeklog-1.6.0b3/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/serbian.php (contents, props changed) externals/geeklog-1.6.0b3/language/serbian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/slovak.php (contents, props changed) externals/geeklog-1.6.0b3/language/slovak_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b3/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b3/language/spanish_argentina.php (contents, props changed) externals/geeklog-1.6.0b3/language/spanish_argentina_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/swedish.php (contents, props changed) externals/geeklog-1.6.0b3/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/turkish.php (contents, props changed) externals/geeklog-1.6.0b3/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b3/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b3/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/logs/ externals/geeklog-1.6.0b3/logs/access.log (contents, props changed) externals/geeklog-1.6.0b3/logs/error.log (contents, props changed) externals/geeklog-1.6.0b3/logs/spamx.log (contents, props changed) externals/geeklog-1.6.0b3/plugins/ externals/geeklog-1.6.0b3/plugins/calendar/ externals/geeklog-1.6.0b3/plugins/calendar/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/functions.inc (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/ externals/geeklog-1.6.0b3/plugins/calendar/language/README (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/czech.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/danish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/german.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/korean.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/russian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/sql/ externals/geeklog-1.6.0b3/plugins/calendar/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/ externals/geeklog-1.6.0b3/plugins/calendar/templates/addevent.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/addeventoption.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/addremoveevent.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/admin/ externals/geeklog-1.6.0b3/plugins/calendar/templates/admin/batchdelete.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/admin/eventeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/calendar.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/calendarday.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/calendarevent.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/calendarweek.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/dayview/ externals/geeklog-1.6.0b3/plugins/calendar/templates/dayview/column.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/dayview/dayview.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/dayview/quickaddform.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/dayview/singleevent.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/editpersonalevent.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/eventdetails.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/events.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/mastercalendaroption.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/personalcalendaroption.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/submitevent.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/weekview/ externals/geeklog-1.6.0b3/plugins/calendar/templates/weekview/events.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/calendar/templates/weekview/weekview.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/ externals/geeklog-1.6.0b3/plugins/links/README (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/functions.inc (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/ externals/geeklog-1.6.0b3/plugins/links/language/README (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/czech.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/german.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/korean.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/polish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/russian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/sql/ externals/geeklog-1.6.0b3/plugins/links/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/ externals/geeklog-1.6.0b3/plugins/links/templates/admin/ externals/geeklog-1.6.0b3/plugins/links/templates/admin/categoryeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/admin/categorylist.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/admin/catitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/admin/linkeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/categoryactivecol.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/categorycol.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/categorydropdown.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/categorylinks.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/categorynavigation.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/categoryrow.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/linkdetails.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/links.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/pagenavigation.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/links/templates/submitlink.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/ externals/geeklog-1.6.0b3/plugins/polls/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/functions.inc (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/ externals/geeklog-1.6.0b3/plugins/polls/language/README (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/german.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/korean.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/russian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/sql/ externals/geeklog-1.6.0b3/plugins/polls/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/sql/mssql_updates.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/sql/mysql_updates.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/ externals/geeklog-1.6.0b3/plugins/polls/templates/admin/ externals/geeklog-1.6.0b3/plugins/polls/templates/admin/pollansweroption.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/admin/polleditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/admin/pollquestions.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollanswer.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollcomments.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/polllist.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollquestion.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollquestions.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollresult.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollvotes_bar.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/polls/templates/pollvotes_num.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/ externals/geeklog-1.6.0b3/plugins/spamx/BaseAdmin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/BaseCommand.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/BlackList.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/DeleteComment.Action.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/EditBlackList.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/EditHeader.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/EditIP.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/EditIPofURL.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/Header.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/IP.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/IPofUrl.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/LogView.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/MailAdmin.Action.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/MassDelTrackback.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/MassDelete.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/SLV.Examine.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/SLVbase.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/SLVreport.Action.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/SLVwhitelist.Admin.class.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/functions.inc (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/ externals/geeklog-1.6.0b3/plugins/spamx/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/french_france.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/italian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/russian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/sql/ externals/geeklog-1.6.0b3/plugins/spamx/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/templates/ externals/geeklog-1.6.0b3/plugins/spamx/templates/admin.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/spamx/templates/install.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/ externals/geeklog-1.6.0b3/plugins/staticpages/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/functions.inc (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/ externals/geeklog-1.6.0b3/plugins/staticpages/language/README (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/czech.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/danish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/dutch.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/estonian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/german.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/italian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/korean.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/polish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/spanish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/swedish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/turkish.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/services.inc.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/sql/ externals/geeklog-1.6.0b3/plugins/staticpages/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/templates/ externals/geeklog-1.6.0b3/plugins/staticpages/templates/admin/ externals/geeklog-1.6.0b3/plugins/staticpages/templates/admin/editor.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/templates/admin/editor_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/templates/centerblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/templates/printable.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/templates/spcomments.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/staticpages/templates/staticpage.thtml (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/ externals/geeklog-1.6.0b3/plugins/xmlsitemap/autoinstall.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/functions.inc (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/install_defaults.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/language/ externals/geeklog-1.6.0b3/plugins/xmlsitemap/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/sql/ externals/geeklog-1.6.0b3/plugins/xmlsitemap/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0b3/plugins/xmlsitemap/xmlsitemap.class.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/ externals/geeklog-1.6.0b3/public_html/404.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/ externals/geeklog-1.6.0b3/public_html/admin/auth.inc.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/block.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/configuration.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/database.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/group.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/ externals/geeklog-1.6.0b3/public_html/admin/install/bigdump.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/config-install.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/configinfo.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/help.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/info.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/install-plugins.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/ externals/geeklog-1.6.0b3/public_html/admin/install/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/english.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/german.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/language/polish.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/layout/ externals/geeklog-1.6.0b3/public_html/admin/install/layout/header-bg.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/layout/logo.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/layout/style.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/lib-install.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/lib-upgrade.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/migrate.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/success.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/install/toinnodb.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/mail.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/moderation.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/ externals/geeklog-1.6.0b3/public_html/admin/plugins.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/calendar/ externals/geeklog-1.6.0b3/public_html/admin/plugins/calendar/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/links/ externals/geeklog-1.6.0b3/public_html/admin/plugins/links/category.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/links/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/polls/ externals/geeklog-1.6.0b3/public_html/admin/plugins/polls/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/spamx/ externals/geeklog-1.6.0b3/public_html/admin/plugins/spamx/images/ externals/geeklog-1.6.0b3/public_html/admin/plugins/spamx/images/spamx.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/spamx/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/plugins/staticpages/ externals/geeklog-1.6.0b3/public_html/admin/plugins/staticpages/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/sectest.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/story.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/syndication.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/topic.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/trackback.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/admin/user.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/article.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/backend/ externals/geeklog-1.6.0b3/public_html/backend/geeklog.rss (contents, props changed) externals/geeklog-1.6.0b3/public_html/calendar/ externals/geeklog-1.6.0b3/public_html/calendar/event.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/calendar/images/ externals/geeklog-1.6.0b3/public_html/calendar/images/calendar.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/calendar/images/delete_event.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/calendar/images/delete_event.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/calendar/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/calendar/style.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/comment.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/directory.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/ externals/geeklog-1.6.0b3/public_html/docs/changed-files externals/geeklog-1.6.0b3/public_html/docs/docstyle.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/ externals/geeklog-1.6.0b3/public_html/docs/english/calendar.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/changes.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/config.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/install.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/links.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/polls.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/spamx.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/staticpages.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/support.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/theme.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/themevars.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/english/trackback.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/history externals/geeklog-1.6.0b3/public_html/docs/images/ externals/geeklog-1.6.0b3/public_html/docs/images/de.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/images/fr.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/images/jp.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/images/newlogo.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/images/pl.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/ externals/geeklog-1.6.0b3/public_html/docs/japanese/calendar.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/changes.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/config.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/docstyle.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/history.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/install.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/links.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/plugin.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/polls.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/readme.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/readme.ja.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/spamx.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/staticpages.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/support.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/theme.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/themevars.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/japanese/trackback.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/docs/license externals/geeklog-1.6.0b3/public_html/fckeditor/ externals/geeklog-1.6.0b3/public_html/fckeditor/_documentation.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/_upgrade.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/_whatsnew.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/_whatsnew_history.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckcontextmenu.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdataprocessor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdomrange.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdomrange_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdomrange_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckdomrangeiterator.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckeditingarea.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckelementpath.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckenterkey.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckevents.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckhtmliterator.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckicon.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckiecleanup.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckimagepreloader.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckkeystrokehandler.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckmenublock.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckmenublockpanel.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckmenuitem.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckpanel.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckspecialcombo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckstyle.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbar.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarbutton.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckw3crange.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckxml.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckxml_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/classes/fckxml_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fck_othercommands.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckfitwindow.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckindentcommands.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckjustifycommands.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fcklistcommands.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fcknamedcommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckshowblocks.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fckstylecommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fcktablecommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/fckconstants.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/fckeditorapi.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/fckjscoreextensions.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/fckscriptloader.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fck.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fck_contextmenu.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fck_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fck_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckbrowserinfo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckcodeformatter.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckcommands.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckconfig.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckdebug.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckdebug_empty.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckdialog.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckdocumentprocessor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckdomtools.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcklanguagemanager.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcklisthandler.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcklistslib.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckplugins.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckregexlib.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckselection.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckselection_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckselection_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckstyles.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktablehandler.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktablehandler_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktablehandler_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktoolbaritems.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktoolbarset.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktools.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktools_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fcktools_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckundo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckurlparams.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckxhtml.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckxhtml_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckxhtml_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/_source/internals/fckxhtmlentities.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/behaviors/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/behaviors/disablehandles.htc externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/behaviors/showtableborders.htc externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/fck_editorarea.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/fck_internal.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/fck_showtableborders_gecko.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_address.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_blockquote.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_div.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_h1.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_h2.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_h3.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_h4.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_h5.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_h6.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_p.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/block_pre.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/fck_anchor.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/fck_flashlogo.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/fck_hiddenfield.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/fck_pagebreak.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/css/images/fck_plugin.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/fck_dialog_common.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/fck_dialog_common.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/images/locked.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/images/reset.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/common/images/unlocked.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_about/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_about.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_about/logo_fredck.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_about/sponsors/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_anchor.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_button.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_checkbox.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_colorselector.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_div.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_docprops/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_docprops.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_flash/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_flash.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_flash/fck_flash.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_form.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_hiddenfield.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_image/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_image.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_image/fck_image.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_image/fck_image_preview.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_link/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_link.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_link/fck_link.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_listprop.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_paste.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_radiobutton.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_replace.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_select/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_select.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_select/fck_select.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_smiley.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_source.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_specialchar.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_table.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_tablecell.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_template/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_template.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_template/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_template/images/template1.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_template/images/template2.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_template/images/template3.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_textarea.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dialog/fck_textfield.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dtd/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dtd/fck_dtd_test.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dtd/fck_xhtml10strict.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/dtd/fck_xhtml10transitional.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/fckdebug.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/fckdialog.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/fckeditor.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/fckeditor.original.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/browser.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/browser.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/frmactualfolder.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/frmfolders.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/frmresourceslist.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/frmresourcetype.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/frmupload.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/Folder.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/Folder32.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif0000644 (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/html.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/js.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/png.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/images/spacer.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/js/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/js/common.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/browser/default/js/fckxml.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/basexml.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/commands.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/config.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/connector.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/io.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/phpcompat.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/upload.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/filemanager/connectors/php/util.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/anchor.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/arrow_ltr.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/arrow_rtl.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/angel_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/angry_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/broken_heart.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/cake.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/confused_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/cry_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/devil_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/embaressed_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/envelope.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/heart.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/kiss.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/lightbulb.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/omg_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/regular_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/sad_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/shades_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/teeth_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/thumbs_down.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/thumbs_up.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/tounge_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/smiley/msn/wink_smile.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/images/spacer.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/js/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/js/fckadobeair.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/js/fckeditorcode_gecko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/js/fckeditorcode_ie.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/_translationstatus.txt (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/af.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ar.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/bg.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/bn.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/bs.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ca.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/cs.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/da.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/de.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/el.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/en-au.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/en-ca.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/en-uk.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/en.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/eo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/es.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/et.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/eu.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/fa.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/fi.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/fo.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/fr-ca.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/fr.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/gl.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/gu.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/he.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/hi.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/hr.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/hu.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/is.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/it.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ja.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/km.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ko.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/lt.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/lv.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/mn.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ms.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/nb.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/nl.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/no.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/pl.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/pt-br.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/pt.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ro.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/ru.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/sk.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/sl.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/sr-latn.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/sr.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/sv.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/th.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/tr.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/uk.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/vi.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/zh-cn.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/lang/zh.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/autogrow/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/autogrow/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/bbcode/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/bbcode/_sample/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.config.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/bbcode/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/dragresizetable/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/dragresizetable/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/fck_placeholder.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/de.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/en.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/es.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/fr.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/it.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/lang/pl.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/placeholder/placeholder.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/simplecommands/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/simplecommands/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/tablecommands/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/plugins/tablecommands/fckplugin.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/_fckviewstrips.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/fck_editor.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/sprites.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/default/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/fck_editor.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/sprites.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.bg.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/office2003/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/fck_editor.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/sprites.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/skins/silver/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/wsc/ externals/geeklog-1.6.0b3/public_html/fckeditor/editor/wsc/ciframe.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/wsc/tmpFrameset.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/editor/wsc/w.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckconfig.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckeditor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckeditor.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckeditor_php4.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckeditor_php5.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckpackager.xml (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fckstyles.xml (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/fcktemplates.xml (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/license.txt (contents, props changed) externals/geeklog-1.6.0b3/public_html/fckeditor/myconfig.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/getimage.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/ externals/geeklog-1.6.0b3/public_html/help/advancedsearch.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/cceventsubmission.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/cclinksubmission.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/ccstorysubmission.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/submitevent.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/submitlink.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/help/submitstory.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/ externals/geeklog-1.6.0b3/public_html/images/admin/ externals/geeklog-1.6.0b3/public_html/images/admin/block.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/event.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/link.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/logout.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/plugins.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/poll.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/story.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/topic.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/admin/user.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/articles/ externals/geeklog-1.6.0b3/public_html/images/articles/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/bar.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/button_help.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/ externals/geeklog-1.6.0b3/public_html/images/buttons/cms-geeklog.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/geeklog-badge.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/geekpower2.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/mysql.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/php.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/valid-css.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/buttons/valid-html.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/ externals/geeklog-1.6.0b3/public_html/images/icons/block.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/event.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/feed.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/geeklog.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/group.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/link.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/logout.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/ping.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/plugins.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/poll.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/story.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/themes.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/topic.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/icons/user.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/ externals/geeklog-1.6.0b3/public_html/images/library/File/ externals/geeklog-1.6.0b3/public_html/images/library/File/test.pdf externals/geeklog-1.6.0b3/public_html/images/library/Flash/ externals/geeklog-1.6.0b3/public_html/images/library/Flash/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/ externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/ externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/ai.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/avi.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/bmp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/cs.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/default.icon.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/dll.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/doc.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/exe.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/fla.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/gif.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/htm.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/html.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/jpg.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/js.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/mdb.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/mp3.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/pdf.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/ppt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/rdp.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/swf.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/swt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/txt.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/vsd.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/xls.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/xml.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/icons/zip.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/image1.jpg (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/image2.jpg (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Image/image3.jpg (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/library/Media/ externals/geeklog-1.6.0b3/public_html/images/library/Media/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/mail.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/openid_login_icon.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/print.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/right_arrow.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/speck.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/sysmessage.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/topics/ externals/geeklog-1.6.0b3/public_html/images/topics/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/topics/topic_gl.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/topics/topic_news.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/images/userphotos/ externals/geeklog-1.6.0b3/public_html/images/userphotos/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/ externals/geeklog-1.6.0b3/public_html/javascript/advanced_editor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/common.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/configmanager.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/moveusers.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/profile_editor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/staticpages_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/storyeditor_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/submitcomment_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/javascript/submitstory_fckeditor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/ externals/geeklog-1.6.0b3/public_html/layout/professional/ externals/geeklog-1.6.0b3/public_html/layout/professional/README (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/block/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/block/blockeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/block/defaultblockeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/block/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/common/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/common/edit_permissions.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/common/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/config/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/config/config_element.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/config/configuration.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/config/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/config/menu_element.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/group/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/group/groupeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/group/groupmembers.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/group/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/field.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/header.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/inline.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/list.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/listitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/searchmenu.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/lists/topmenu.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/mail/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/mail/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/mail/mailform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/moderation/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/moderation/ccitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/moderation/ccrow.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/moderation/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/moderation/moderation.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/plugins/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/plugins/editor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/plugins/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/story/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/story/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/story/storyeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/story/storyeditor_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/syndication/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/syndication/feededitor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/syndication/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/syndication/selecttype.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/topic/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/topic/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/topic/listitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/topic/topiceditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/topic/topiclist.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/autodetectitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/autodetectlist.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/pingbackform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/pingbackitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/pingbacklist.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/pingform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/pingitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/pinglist.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/serviceeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/trackback/trackbackeditor.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/ externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/batchdelete.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/batchdelete_options.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/edituser.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/groupedit.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/admin/user/reminder.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/adminoption.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/adminoption_off.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/advanced_editor_header.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/archivestorybodytext.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/archivestorytext.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/article/ externals/geeklog-1.6.0b3/public_html/layout/professional/article/article.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/article/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/article/printable.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter-config.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter-left.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter-list.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter-message.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter-related.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter-right.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockfooter.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader-config.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader-left.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader-list.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader-message.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader-related.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader-right.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockheader.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/blockservices.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/ externals/geeklog-1.6.0b3/public_html/layout/professional/comment/comment.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/commentbar.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/commentform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/commentform_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/reportcomment.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/startcomment.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/comment/thread.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/featuredstorybodytext.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/featuredstorytext.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/footer.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/functions.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/header.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/ externals/geeklog-1.6.0b3/public_html/layout/professional/images/addchild.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/admin/ externals/geeklog-1.6.0b3/public_html/layout/professional/images/admin/block-left.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/admin/block-right.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/admin/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/bar.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/bararrowdown.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/bararrowup.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/button_help.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/collapse.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/copy.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/deleteitem.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/edit.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/expand.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/external.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/feed.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/header-bg.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icon_info.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/ externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/block.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/configuration.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/database.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/delete_event.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/docs.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/event.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/group.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/logout.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/mail.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/plugins.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/story.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/syndication.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/topic.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/trackback.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/user.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/icons/versioncheck.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/list.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/logo.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/mail.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/person.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/print.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/sendping.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/smallcamera.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/images/sysmessage.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/leftblocks.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/list.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/listitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/ externals/geeklog-1.6.0b3/public_html/layout/professional/lists/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/ externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/item_field.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/item_row.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/list.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/page_limit.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/inline/page_sort.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/ externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/item_field.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/item_row.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/list.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/page_limit.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/lists/table/page_sort.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/loginform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/loginform_openid.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/menuitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/menuitem_last.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/menuitem_none.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/ externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/breadcrumb_link.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/breadcrumbs.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/ externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/button.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/button_over.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/tableftI.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/tableftJ.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/tabrightI.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/images/tabrightJ.gif (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/menuitem.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/navbar/navbar.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/ externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/boxesblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/commentblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/deleteaccount.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/digestblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/displayblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/displayprefs.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/excludeblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/language.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/privacyblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/profile.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/theme.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/username.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/preferences/userphoto.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/print.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/profiles/ externals/geeklog-1.6.0b3/public_html/layout/professional/profiles/contactauthorform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/profiles/contactuserform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/profiles/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/rightblocks.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/ externals/geeklog-1.6.0b3/public_html/layout/professional/search/headingcolumn.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/resultauthdatehits.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/resultcolumn.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/resultrow.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/resultrowenhanced.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/resultsummary.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/resulttitle.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchauthors.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchblock.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchresults.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchresults_heading.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchresults_norows.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/search/searchresults_rows.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/stats/ externals/geeklog-1.6.0b3/public_html/layout/professional/stats/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/stats/itemstatistics.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/stats/singlestat.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/stats/singlesummary.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/stats/sitestatistics.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/storybodytext.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/storytext.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/style.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/submit/ externals/geeklog-1.6.0b3/public_html/layout/professional/submit/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/submit/submitloginrequired.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/submit/submitstory.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/submit/submitstory_advanced.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/topcenterblock-span.thtmlx (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/topicoption.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/topicoption_off.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/trackback/ externals/geeklog-1.6.0b3/public_html/layout/professional/trackback/formattedcomment.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/trackback/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/trackback/trackback.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/trackback/trackbackcomment.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/useroption.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/useroption_off.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/ externals/geeklog-1.6.0b3/public_html/layout/professional/users/commentrow.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/getpasswordform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/index.html (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/loginform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/newpassword.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/profile.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/registrationform.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/services.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/layout/professional/users/storyrow.thtml (contents, props changed) externals/geeklog-1.6.0b3/public_html/lib-common.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/links/ externals/geeklog-1.6.0b3/public_html/links/images/ externals/geeklog-1.6.0b3/public_html/links/images/links.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/links/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/links/portal.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/pingback.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/polls/ externals/geeklog-1.6.0b3/public_html/polls/images/ externals/geeklog-1.6.0b3/public_html/polls/images/polls.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/polls/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/polls/polls_editor.js (contents, props changed) externals/geeklog-1.6.0b3/public_html/polls/style.css (contents, props changed) externals/geeklog-1.6.0b3/public_html/profiles.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/robots.txt (contents, props changed) externals/geeklog-1.6.0b3/public_html/search.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/siteconfig.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/staticpages/ externals/geeklog-1.6.0b3/public_html/staticpages/images/ externals/geeklog-1.6.0b3/public_html/staticpages/images/staticpages.png (contents, props changed) externals/geeklog-1.6.0b3/public_html/staticpages/index.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/stats.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/submit.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/switchlang.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/trackback.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/users.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/usersettings.php (contents, props changed) externals/geeklog-1.6.0b3/public_html/webservices/ externals/geeklog-1.6.0b3/public_html/webservices/atom/ externals/geeklog-1.6.0b3/public_html/webservices/atom/index.php (contents, props changed) externals/geeklog-1.6.0b3/readme (contents, props changed) externals/geeklog-1.6.0b3/sql/ externals/geeklog-1.6.0b3/sql/mssql_tableanddata.php (contents, props changed) externals/geeklog-1.6.0b3/sql/mysql_tableanddata.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/ externals/geeklog-1.6.0b3/sql/updates/mssql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mssql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mssql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mssql_1.5.2_to_1.6.0.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.2.5-1_to_1.3.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.10_to_1.3.11.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.11_to_1.4.0.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.1_to_1.3.2.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.2-1_to_1.3.3.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.3_to_1.3.4.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.4_to_1.3.5.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.5_to_1.3.6.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.7_to_1.3.8.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.8_to_1.3.9.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3.9_to_1.3.10.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.3_to_1.3.1.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.4.0_to_1.4.1.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.6.0b3/sql/updates/mysql_1.5.2_to_1.6.0.php (contents, props changed) externals/geeklog-1.6.0b3/system/ externals/geeklog-1.6.0b3/system/classes/ externals/geeklog-1.6.0b3/system/classes/authentication/ externals/geeklog-1.6.0b3/system/classes/authentication/LDAP.auth.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/authentication/LiveJournal.auth.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/authentication/ldap/ externals/geeklog-1.6.0b3/system/classes/authentication/ldap/config.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/calendar.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/config.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/downloader.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/kses.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/listfactory.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/navbar.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/ externals/geeklog-1.6.0b3/system/classes/openid/COPYING externals/geeklog-1.6.0b3/system/classes/openid/LICENSE externals/geeklog-1.6.0b3/system/classes/openid/association.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/consumer.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/httpclient.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/interface.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/oid_parse.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/oid_util.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/server.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openid/trustroot.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/openidhelper.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/plugin.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/sanitize.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/search.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/searchcriteria.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/story.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/syndication/ externals/geeklog-1.6.0b3/system/classes/syndication/atom.feed.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/syndication/feedparserbase.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/syndication/parserfactory.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/syndication/rdf.feed.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/syndication/rss.feed.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/template.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/timer.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/unpacker.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/upload.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/classes/url.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/databases/ externals/geeklog-1.6.0b3/system/databases/mssql.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/databases/mysql.class.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-admin.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-comment.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-custom.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-database.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-mbyte.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-pingback.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-plugins.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-security.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-sessions.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-story.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-syndication.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-trackback.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-user.php (contents, props changed) externals/geeklog-1.6.0b3/system/lib-webservices.php (contents, props changed) externals/geeklog-1.6.0b3/system/memberdetail.thtml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/ externals/geeklog-1.6.0b3/system/pear/Archive/ externals/geeklog-1.6.0b3/system/pear/Archive/Tar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Archive/Zip.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/ externals/geeklog-1.6.0b3/system/pear/Auth/SASL/ externals/geeklog-1.6.0b3/system/pear/Auth/SASL.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/SASL/Anonymous.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/SASL/Common.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/SASL/CramMD5.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/SASL/DigestMD5.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/SASL/Login.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Auth/SASL/Plain.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Console/ externals/geeklog-1.6.0b3/system/pear/Console/Getopt.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Date/ externals/geeklog-1.6.0b3/system/pear/Date.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Date/Calc.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Date/Human.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Date/Span.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Date/TimeZone.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/HTTP/ externals/geeklog-1.6.0b3/system/pear/HTTP/Request/ externals/geeklog-1.6.0b3/system/pear/HTTP/Request.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/HTTP/Request/Listener.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Mail/ externals/geeklog-1.6.0b3/system/pear/Mail.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Mail/RFC822.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Mail/mail.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Mail/null.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Mail/sendmail.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Mail/smtp.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/ externals/geeklog-1.6.0b3/system/pear/Net/DNS/ externals/geeklog-1.6.0b3/system/pear/Net/DNS.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/Header.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/Packet.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/Question.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/ externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/A.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/AAAA.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/CNAME.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/HINFO.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/MX.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/NAPTR.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/NS.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/PTR.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/SOA.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/SRV.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/TSIG.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/RR/TXT.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/DNS/Resolver.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/SMTP.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/Socket.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Net/URL.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/OS/ externals/geeklog-1.6.0b3/system/pear/OS/Guess.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/ externals/geeklog-1.6.0b3/system/pear/PEAR.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Autoloader.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Builder.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/ChannelFile/ externals/geeklog-1.6.0b3/system/pear/PEAR/ChannelFile.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/ChannelFile/Parser.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/ externals/geeklog-1.6.0b3/system/pear/PEAR/Command.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Auth.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Auth.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Build.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Build.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Channels.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Channels.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Common.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Config.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Config.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Install.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Install.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Mirror.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Mirror.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Package.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Package.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Pickle.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Pickle.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Registry.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Registry.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Remote.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Remote.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Test.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Command/Test.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Common.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Config.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Dependency.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Dependency2.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/DependencyDB.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Downloader/ externals/geeklog-1.6.0b3/system/pear/PEAR/Downloader.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Downloader/Package.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/ErrorStack.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Exception.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/FixPHP5PEARWarnings.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Frontend/ externals/geeklog-1.6.0b3/system/pear/PEAR/Frontend.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Frontend/CLI.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/ externals/geeklog-1.6.0b3/system/pear/PEAR/Installer.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/ externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Cfg.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Cfg.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Common.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Data.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Data.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Doc.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Doc.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Ext.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Ext.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Php.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Php.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Script.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Script.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Src.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Src.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Test.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Test.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Www.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Installer/Role/Www.xml (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/ externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/Generator/ externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/Generator/v1.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/Generator/v2.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/Parser/ externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/Parser/v1.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/Parser/v2.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/v1.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/v2/ externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/v2.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/v2/Validator.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/PackageFile/v2/rw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Packager.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/REST/ externals/geeklog-1.6.0b3/system/pear/PEAR/REST.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/REST/10.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/REST/11.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/REST/13.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Registry.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Remote.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/RunTest.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/ externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Common.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Postinstallscript/ externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Postinstallscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Postinstallscript/rw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Replace/ externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Replace.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Replace/rw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Unixeol/ externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Unixeol.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Unixeol/rw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Windowseol/ externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Windowseol.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Task/Windowseol/rw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Validate.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/Validator/ externals/geeklog-1.6.0b3/system/pear/PEAR/Validator/PECL.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/PEAR/XMLParser.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/README (contents, props changed) externals/geeklog-1.6.0b3/system/pear/System.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Default.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Anchor.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Bold.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Break.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Center.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Code.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Colortext.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Deflist.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Embed.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Freelink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Function.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Heading.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Horiz.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Html.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Image.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Include.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Italic.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/List.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Newline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Raw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Revise.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Smiley.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Strong.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Subscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Superscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Table.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Tighten.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Toc.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Tt.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Underline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Url.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Parse/Default/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Anchor.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Bold.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Box.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Break.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Center.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Code.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Colortext.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Deflist.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Embed.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Font.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Freelink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Function.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Heading.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Horiz.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Html.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Image.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Include.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Italic.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/List.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Newline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Page.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Plugin.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Preformatted.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Raw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Revise.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Smiley.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Specialchar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Strong.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Subscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Superscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Table.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Tighten.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Titlebar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Toc.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Tt.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Underline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Url.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Latex/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Anchor.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Bold.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Box.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Break.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Center.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Code.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Colortext.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Deflist.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Embed.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Font.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Freelink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Function.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Heading.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Horiz.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Html.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Image.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Include.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Italic.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/List.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Newline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Page.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Plugin.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Preformatted.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Raw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Revise.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Smiley.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Specialchar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Strong.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Subscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Superscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Table.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Tighten.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Titlebar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Toc.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Tt.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Underline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Url.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Plain/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/ externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Address.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Anchor.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Blockquote.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Bold.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Box.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Break.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Center.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Code.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Colortext.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Deflist.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Delimiter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Embed.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Emphasis.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Font.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Freelink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Function.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Heading.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Horiz.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Html.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Image.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Include.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Interwiki.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Italic.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/List.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Newline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Page.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Paragraph.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Phplookup.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Plugin.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Prefilter.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Preformatted.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Raw.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Revise.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Smiley.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Specialchar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Strong.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Subscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Superscript.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Table.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Tighten.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Titlebar.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Toc.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Tt.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Underline.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Url.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/Text/Wiki/Render/Xhtml/Wikilink.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/XML/ externals/geeklog-1.6.0b3/system/pear/XML/RPC/ externals/geeklog-1.6.0b3/system/pear/XML/RPC.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/XML/RPC/Dump.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/XML/RPC/Server.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/ externals/geeklog-1.6.0b3/system/pear/scripts/pear.bat (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/pear.sh (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/pearcmd.php (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/peardev.bat (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/peardev.sh (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/pecl.bat (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/pecl.sh (contents, props changed) externals/geeklog-1.6.0b3/system/pear/scripts/peclcmd.php (contents, props changed) Log: Importnig geeklog-1.6.0b3 under externals. Added: externals/geeklog-1.6.0b3/INSTALL ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b3/INSTALL Sun Jun 21 04:00:44 2009 @@ -0,0 +1,7 @@ +Installation instructions for Geeklog can be found in the docs directory, +specifically in + + public_html/docs/english/install.html + +That document also includes a section on common installation problems. + Added: externals/geeklog-1.6.0b3/backups/README ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b3/backups/README Sun Jun 21 04:00:44 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.6.0b3/data/README ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b3/data/README Sun Jun 21 04:00:44 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.6.0b3/db-config.php ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b3/db-config.php Sun Jun 21 04:00:44 2009 @@ -0,0 +1,24 @@ + Added: externals/geeklog-1.6.0b3/emailgeeklogstories ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b3/emailgeeklogstories Sun Jun 21 04:00:44 2009 @@ -0,0 +1,15 @@ +#!/usr/local/bin/php -q + Added: externals/geeklog-1.6.0b3/language/afrikaans.php ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0b3/language/afrikaans.php Sun Jun 21 04:00:44 2009 @@ -0,0 +1,1946 @@ + 'Geskryf deur:', + 2 => 'lees verder', + 3 => 'kommentaar', + 4 => 'Wysig', + 5 => '', + 6 => '', + 7 => '', + 8 => '', + 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 => '', + 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', + 28 => 'Preview Changes', + 29 => 'Submit Changes', + 30 => 'Edited on', + 31 => 'by', + 32 => 'Editing a Comment', + 33 => 'Editing a Comment Submission', + 34 => 'Preview Submission Changes', + 35 => 'Save Changes to Queue', + 36 => 'Notify me of new replies', + 37 => 'New Comment Reply', + 38 => 'A reply has been made to your comment \'%s\'.', + 39 => 'You may view the comment thread at the following address:', + 40 => 'If you wish to receive no further notifications of replies, visit the following link:', + 41 => 'Hello %s,', + 42 => 'Unsubscribe', + 43 => 'Unsubscribe from reply notifications' +); + +############################################################################### +# 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' ============================================================================== Diff truncated at 200k characters From codesite-noreply @ google.com Wed Jun 24 00:31:43 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 15:31:43 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwMiAtIGRyb3B0YWJsZXMucGhw44Go44CB44Gd?= =?UTF-8?B?44KM44KS5ZCr44KAdG9vbHPjg4fjgqPjg6zjgq/jg4jjg6rjgavjgaTjgYTjgaboqJjov7DjgpLliqA=?= =?UTF-8?B?44GI44G+77+9Li4u?= Message-ID: <0016368e1c2f16a258046d05b019@google.com> Author: tacahi Date: Tue Jun 23 06:34:22 2009 New Revision: 1602 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp Log: droptables.phpと、それを含むtoolsディレクトリについて記述を加えました。 Modified: trunk/geeklog-1-jp-extended/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp-extended/CHANGES.jp (original) +++ trunk/geeklog-1-jp-extended/CHANGES.jp Tue Jun 23 06:34:22 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-23 Takahiro Kambe + + * 誤って実行すると危険な droptables.phpを削除することとし、その + 結果空となる public_html/admin/install/tools 共々削除しました。 + 2009-06-12 Kazuko Tsuchitani * ファイル管理プラグイン(filemgmt)の自動タグでURLリライトが動作しない From codesite-noreply @ google.com Wed Jun 24 00:35:47 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 15:35:47 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTU5OSAtIGRyb3B0YWJsZXMucGhwGyRCJEhJVE1XGyhC?= =?ISO-2022-JP?B?GyRCJEskSiRrGyhCdG9vbHMbJEIlRyUjJWwlLyVIJWokcjpvPXwkNyReJDkhIxsoQg==?= Message-ID: <00163630f1d7a6452d046d05be2a@google.com> Author: tacahi Date: Tue Jun 23 06:26:38 2009 New Revision: 1599 Removed: trunk/geeklog-1-jp/public_html/admin/install/tools/ Log: droptables.phpと不要になるtoolsディレクトリを削除します。 From codesite-noreply @ google.com Wed Jun 24 01:17:42 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 16:17:42 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwMSAtIGRyb3B0YWJsZXMucGhw44Gu5YmK6Zmk?= =?UTF-8?B?44Go44CB44Gd44Gu57WQ5p6c56m644Gr44Gq44KLdG9vbHPjg4fjgqPjg6zjgq/jg4jjg6rjgpLliYo=?= =?UTF-8?B?6Zmk44GX77+9Li4u?= Message-ID: <0016e644cb288c28f9046d065482@google.com> Author: tacahi Date: Tue Jun 23 06:33:21 2009 New Revision: 1601 Removed: trunk/geeklog-1-jp-extended/public_html/admin/install/tools/ Log: droptables.phpの削除と、その結果空になるtoolsディレクトリを削除します. From codesite-noreply @ google.com Wed Jun 24 01:38:58 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 16:38:58 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwNCAtIHRydW5rGyRCJCskaUg/MUckNSRsGyhC?= =?ISO-2022-JP?B?GyRCJEYkJCRKJCskQyQ/NS09UiRyREk1LSQ3JF4kNyQ/ISMbKEI=?= Message-ID: <0016e644de6894a922046d06a094@google.com> Author: tacahi Date: Tue Jun 23 06:43:03 2009 New Revision: 1604 Modified: branches/geeklog-new-tree/CHANGES.jp branches/geeklog-new-tree/extended/CHANGES-extended.jp Log: trunkから反映されていなかった記述を追記しました。 Modified: branches/geeklog-new-tree/CHANGES.jp ============================================================================== --- branches/geeklog-new-tree/CHANGES.jp (original) +++ branches/geeklog-new-tree/CHANGES.jp Tue Jun 23 06:43:03 2009 @@ -1,5 +1,16 @@ $Id$ +2009-06-23 Takahiro Kambe + + * 誤って実行すると危険な droptables.phpを削除することとし、その + 結果空となる public_html/admin/install/tools 共々削除しました。 + +2009-06-07 Takahiro Kambe + + * 空のディレクトリ public_html/layout/mobile/images/droplinemenu と + public_html/layout/mobile_3g/images/droplinemenu は不要なので削除 + しました。 + 2009-04-30 Takahiro Kambe * geeklog-1.5.2sr4-jp-1.0をリリースします。 Modified: branches/geeklog-new-tree/extended/CHANGES-extended.jp ============================================================================== --- branches/geeklog-new-tree/extended/CHANGES-extended.jp (original) +++ branches/geeklog-new-tree/extended/CHANGES-extended.jp Tue Jun 23 06:43:03 2009 @@ -1,5 +1,31 @@ $Id$ +2009-06-23 Takahiro Kambe + + * 誤って実行すると危険な droptables.phpを削除することとし、その + 結果空となる public_html/admin/install/tools 共々削除しました。 + +2009-06-12 Kazuko Tsuchitani + + * ファイル管理プラグイン(filemgmt)の自動タグでURLリライトが動作しない + 不具合を修正。全文表示のリンクをURLリライトに対応させました。 + +2009-06-08 Takahiro Kambe + + * Geeklog 1.5.2のリリースで削除され、日本語基本版でも既に削除されて + いる、public_html/admin/install/addindex.php を削除しました。 + +2009-06-07 Takahiro Kambe + + * 空のディレクトリ public_html/layout/WAIproCSS/images/custom に、 + 空の index.html を置きました。 + +2009-06-07 Takahiro Kambe + + * 空のディレクトリ public_html/layout/mobile/images/droplinemenuと + public_html/layout/mobile_3g/images/droplinemenu は不要なので削除 + しました。 + 2009-05-25 Masuko Koeda * WAIproCSSのfooter.thtmlの不具合を修正し、 From codesite-noreply @ google.com Wed Jun 24 01:43:08 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 16:43:08 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwMCAtIGRyb3B0YWJsZXMucGhw44Go44CB44Gd?= =?UTF-8?B?44KM44KS5ZCr44KAdG9vbHPjg4fjgqPjg6zjgq/jg4jjg6rjgavjgaTjgYTjgaboqJjov7DjgpLliqA=?= =?UTF-8?B?44GI44G+77+9Li4u?= Message-ID: <0016e644d0a67f1d0f046d06afe4@google.com> Author: tacahi Date: Tue Jun 23 06:30:13 2009 New Revision: 1600 Modified: trunk/geeklog-1-jp/CHANGES.jp Log: droptables.phpと、それを含むtoolsディレクトリについて記述を加えました。 Modified: trunk/geeklog-1-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-1-jp/CHANGES.jp (original) +++ trunk/geeklog-1-jp/CHANGES.jp Tue Jun 23 06:30:13 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-23 Takahiro Kambe + + * 誤って実行すると危険な droptables.phpを削除することとし、その + 結果空となる public_html/admin/install/tools 共々削除しました。 + 2009-06-07 Takahiro Kambe * 空のディレクトリ public_html/layout/mobile/images/droplinemenu と From codesite-noreply @ google.com Wed Jun 24 01:49:19 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 16:49:19 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwNSAtIENIQU5HRVMuanAbJEIkTjk5PzckSBsoQg==?= =?ISO-2022-JP?B?GyRCISIbKEJyMTU5ORskQiRyPGgkajl+JF8kSyREJCQkRjUtPVIkcjJDJCgkXiQ3JD8bKEI=?= =?ISO-2022-JP?B?GyRCISMbKEI=?= Message-ID: <0016e640cdd0a18a4d046d06c553@google.com> Author: tacahi Date: Tue Jun 23 06:44:45 2009 New Revision: 1605 Modified: branches/geeklog-new-tree/CHANGES-new-tree.jp Log: CHANGES.jpの更新と、r1599を取り込みについて記述を加えました。 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 Tue Jun 23 06:44:45 2009 @@ -1,5 +1,12 @@ $Id$ +2009-06-23 Takahiro Kambe + + * r1599を取り込みました。(public_html/admin/install/toolsの削除) + + * trunkのCHANGES.jpに記述されて、反映されていなかった部分を書き + 加えました。 + 2009-06-08 Takahiro Kambe * GNUmakefileの追加と修正を行い、一通りの当初目的としていた動作が From codesite-noreply @ google.com Wed Jun 24 02:13:59 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Tue, 23 Jun 2009 17:13:59 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwMyAtIGRyb3B0YWJsZXMucGhw44Gu5YmK6Zmk?= =?UTF-8?B?44Go44CB44Gd44Gu57WQ5p6c56m644Gr44Gq44KLdG9vbHPjg4fjgqPjg6zjgq/jg4jjg6rjgpLliYo=?= =?UTF-8?B?6Zmk44GX77+9Li4u?= Message-ID: <0016361e891ed80f27046d071d7e@google.com> Author: tacahi Date: Tue Jun 23 06:36:00 2009 New Revision: 1603 Removed: branches/geeklog-new-tree/public_html/admin/install/tools/ Log: droptables.phpの削除と、その結果空になるtoolsディレクトリを削除します. From codesite-noreply @ google.com Sun Jun 28 09:59:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 00:59:23 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwNiAtIBskQkVZITkkTkpROTkkSCRKJGobKEI=?= =?ISO-2022-JP?B?GyRCJF4kOSQsISI0e0I4JWolaiE8JTkkSDlnJG8kOyRrJD8kYSRLGyhCIENIQU5H?= =?ISO-2022-JP?B?RVMuanAuLi4=?= Message-ID: <0016e644cb28942e9d046d5e1559@google.com> Author: tacahi Date: Sat Jun 27 17:28:12 2009 New Revision: 1606 Added: branches/geeklog-new-tree/extended/CHANGES.jp - copied unchanged from r1604, /branches/geeklog-new-tree/extended/CHANGES-extended.jp Removed: branches/geeklog-new-tree/extended/CHANGES-extended.jp Log: 度々の変更となりますが、既存リリースと合わせるために CHANGES.jp に 戻します。 From codesite-noreply @ google.com Sun Jun 28 10:03:25 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 01:03:25 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwNyAtIBskQkVZITkkTkpROTkkSCRKJGobKEI=?= =?ISO-2022-JP?B?GyRCJF4kOSQsISI0e0I4JWolaiE8JTkkSDlnJG8kOyRrJD8kYSRLGyhCIENIQU5H?= =?ISO-2022-JP?B?RVMuanAuLi4=?= Message-ID: <0016e644cb28051ae7046d5e24d7@google.com> Author: tacahi Date: Sat Jun 27 17:29:31 2009 New Revision: 1607 Modified: branches/geeklog-new-tree/extended/GNUmakefile Log: 度々の変更となりますが、既存リリースと合わせるために CHANGES.jp に 戻します。 Modified: branches/geeklog-new-tree/extended/GNUmakefile ============================================================================== --- branches/geeklog-new-tree/extended/GNUmakefile (original) +++ branches/geeklog-new-tree/extended/GNUmakefile Sat Jun 27 17:29:31 2009 @@ -1,7 +1,7 @@ # DIRS= system -FILES= CHANGES-extended.jp +FILES= CHANGES.jp install: install-myfiles install-dirs install-pubdir From codesite-noreply @ google.com Sun Jun 28 20:55:08 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 11:55:08 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwOCAtIGJyYW5jaGVzL2dlZWtsb2ctbmV3LXRyZQ==?= =?UTF-8?B?ZeOCkuOAgeaWsOOBn+OBqumWi+eZuueUqOOBruS9nOalreWgtOaJgOOBqOOBl+OBpnRydW5r44Gr44Kz?= =?UTF-8?B?44OU77+9Li4u?= Message-ID: <0016361e8806bf28d0046d673e03@google.com> Author: tacahi Date: Sun Jun 28 04:37:52 2009 New Revision: 1608 Added: trunk/geeklog-jp/ - copied from r1607, /branches/geeklog-new-tree/ Log: branches/geeklog-new-treeを、新たな開発用の作業場所としてtrunkにコピーしま す。 From codesite-noreply @ google.com Sun Jun 28 21:12:18 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 12:12:18 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYwOSAtIHRydW5rL2dlZWtsb2ctMS1qcC1leHRlbg==?= =?ISO-2022-JP?B?ZGVkL0NIQU5HRVMuanAbJEIkKyRpN2ckMSRGJCQka0ZiTUYkcjJDJCgkXiQ5ISMbKEI=?= Message-ID: <0016e644d5aa1ad5de046d677ce9@google.com> Author: tacahi Date: Sun Jun 28 05:11:30 2009 New Revision: 1609 Modified: trunk/geeklog-jp/extended/CHANGES.jp Log: trunk/geeklog-1-jp-extended/CHANGES.jpから欠けている内容を加えます。 Modified: trunk/geeklog-jp/extended/CHANGES.jp ============================================================================== --- trunk/geeklog-jp/extended/CHANGES.jp (original) +++ trunk/geeklog-jp/extended/CHANGES.jp Sun Jun 28 05:11:30 2009 @@ -102,11 +102,35 @@ * 携帯用テーマの掲示板プラグイン(forum)テンプレートを最新版にしました。 +2009-04-01 Takahiro Kambe + + * geeklog-1.5.2sr1のマージに伴い、日本語バージョンを0.0.99とし + ました。 + +2009-03-31 Tetsuko Komma + + * docs/changes.htmlのsr1部の翻訳と,docs/history.htmlをsr1に + 対応させました。 + 2009-03-31 mystral-kk * ファイル管理(filemgmt)プラグインで、RSSが日付の新しい順に出力されない バグ(Issue #64)に対処しました。 +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(インストール前診断用スクリプト)を追加しました。 + +2009-03-28 mystral-kk + + * Issue#49によりよく対応しました。 + 2009-03-28 Yoshinori Tahara * mycaljpプラグインをバージョン2.0.6に更新しました。 @@ -114,6 +138,10 @@ Geeklog1.5以降で記事のイントロ表示した際に日付が現在の日付になってし まう問題を修正しました。 +2009-03-25 mystral-kk + + * トラックバックの送信に失敗するバグ(Issue #61)を修正しました。 + 2009-03-21 Takahiro Kambe * geeklog-1.5.2-jp-extended-1.0をリリースします。 @@ -205,7 +233,7 @@ しました。 カレンダでの年月日及び時間の選択が、イベントエディタにおいて初期値と して入力されるようにしました。 - HTMLコードの適正化を実施しました。 + HTMLコードの適正化を実施しました。 2009-02-14 Takahiro Kambe @@ -340,7 +368,7 @@ * WAIproCSSがInternet ExplorerIE6でフッタ部分のページの先頭へ戻る及び validateアイコンが表示されていなかったのを修正しました。 -2009-01-12 Masuko Koeda +2009-01-12 Masuko Koeda * WAIproCSSがWindows Internet Explorer、Opera、Firefox、Google Chromeで 文字サイズ縮小時にレイアウトが崩れていたのを修正しました。 From codesite-noreply @ google.com Sun Jun 28 21:16:21 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 12:16:21 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxMCAtIBskQiVWJWklcyVBPCtCTiRONEkbKEI=?= =?ISO-2022-JP?B?GyRCTX0kTkpROTkkcjUtTz8kNyRGJCQkPyVVJSElJCVrJHI6bz18JDckXhsoQg==?= =?ISO-2022-JP?B?GyRCJDkhIxsoQg==?= Message-ID: <0016361e8834a0b9d0046d678a3f@google.com> Author: tacahi Date: Sun Jun 28 05:12:30 2009 New Revision: 1610 Removed: trunk/geeklog-jp/CHANGES-new-tree.jp Log: ブランチ自体の管理の変更を記録していたファイルを削除します。 From codesite-noreply @ google.com Sun Jun 28 23:14:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:14:50 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxMiAtIENIQU5HRVMuanDjgasgR2Vla2xvZyAxLg==?= =?UTF-8?B?NS4yc3I044OZ44O844K544Gu5pel5pys6Kqe54mIMS4x44Gu44Oq44Oq44O844K544KS6KiY6Yyy44GX?= =?UTF-8?B?44G+77+9Li4u?= Message-ID: <0016361e84ac522922046d6932a6@google.com> Author: tacahi Date: Sun Jun 28 06:37:26 2009 New Revision: 1612 Modified: trunk/geeklog-jp/CHANGES.jp trunk/geeklog-jp/extended/CHANGES.jp Log: CHANGES.jpに Geeklog 1.5.2sr4ベースの日本語版1.1のリリースを記録します。 Modified: trunk/geeklog-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-jp/CHANGES.jp (original) +++ trunk/geeklog-jp/CHANGES.jp Sun Jun 28 06:37:26 2009 @@ -1,5 +1,9 @@ $Id$ +2009-06-28 Takahiro Kambe + + * geeklog-1.5.2sr4-jp-1.1をリリースします。 + 2009-06-23 Takahiro Kambe * 誤って実行すると危険な droptables.phpを削除することとし、その Modified: trunk/geeklog-jp/extended/CHANGES.jp ============================================================================== --- trunk/geeklog-jp/extended/CHANGES.jp (original) +++ trunk/geeklog-jp/extended/CHANGES.jp Sun Jun 28 06:37:26 2009 @@ -1,5 +1,9 @@ $Id$ +2009-06-28 Takahiro Kambe + + * geeklog-1.5.2sr4-jp-extended-1.1をリリースします。 + 2009-06-23 Takahiro Kambe * 誤って実行すると危険な droptables.phpを削除することとし、その From codesite-noreply @ google.com Sun Jun 28 23:18:56 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:18:56 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxNSAtIEdlZWtsb2cgMS41LjIbJEJGfEtcOGwbKEI=?= =?ISO-2022-JP?B?GyRCSEckTkpdPGlNUSROJVYlaSVzJUEkciEiGyhCdHJ1bmsvZ2Vla2xvZy1qcBskQiQrJGkbKEI=?= =?ISO-2022-JP?B?GyRCOm5ALiQ3GyhCLi4u?= Message-ID: <001485f91cb2ffa2d2046d694024@google.com> Author: tacahi Date: Sun Jun 28 06:57:36 2009 New Revision: 1615 Added: branches/geeklog-1.5.2-jp/ - copied from r1614, /trunk/geeklog-jp/ Log: Geeklog 1.5.2日本語版の保守用のブランチを、trunk/geeklog-jpから作成します。 From codesite-noreply @ google.com Sun Jun 28 23:23:12 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:23:12 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxNiAtIBskQiQ5JF8kXiQ7JHMhIyU/JTAbKEI=?= =?ISO-2022-JP?B?GyRCJHJJVSQxRD4kOSQ/JGEhIjBsQzY6bz18JDckXiQ5ISMbKEI=?= Message-ID: <001485f54734445da3046d695096@google.com> Author: tacahi Date: Sun Jun 28 07:12:02 2009 New Revision: 1616 Removed: tags/geeklog-1.5.2sr4-jp-1.1/ Log: すみません。タグを付け直すため、一旦削除します。 From codesite-noreply @ google.com Sun Jun 28 23:27:16 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:27:16 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxMSAtIEdlZWtsb2cgMS41LjJzcjQbJEIkTkZ8GyhC?= =?ISO-2022-JP?B?GyRCS1w4bEhHGyhCMS4xGyRCJHIlaiVqITwlOSQ3JF4kOSEjGyhC?= Message-ID: <0016364ed0d0d42217046d695e31@google.com> Author: tacahi Date: Sun Jun 28 06:35:40 2009 New Revision: 1611 Modified: trunk/geeklog-jp/release_jp.php Log: Geeklog 1.5.2sr4の日本語版1.1をリリースします。 Modified: trunk/geeklog-jp/release_jp.php ============================================================================== --- trunk/geeklog-jp/release_jp.php (original) +++ trunk/geeklog-jp/release_jp.php Sun Jun 28 06:35:40 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sun Jun 28 23:31:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:31:17 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxMyAtIHRydW5rL2dlZWtsb2ctanAbJEIkcjg1GyhC?= =?ISO-2022-JP?B?GyRCJEshIhsoQnRhZ3MvZ2Vla2xvZy0xLjUuMnNyNC1qcC0xLjEbJEIkTiU/JTAkcjpuQC4kNyReGyhC?= =?ISO-2022-JP?B?GyRCJDkhIxsoQg==?= Message-ID: <0016e644d5aa313051046d696d82@google.com> Author: tacahi Date: Sun Jun 28 06:41:30 2009 New Revision: 1613 Added: tags/geeklog-1.5.2sr4-jp-1.1/ - copied from r1612, /trunk/geeklog-jp/ Log: trunk/geeklog-jpを元に、tags/geeklog-1.5.2sr4-jp-1.1のタグを作成します。 (本リリースから、リリースに対応するタグは1つとなります。) From codesite-noreply @ google.com Sun Jun 28 23:35:21 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:35:21 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxNyAtIEdlZWtsb2cgMS41LjJzcjTjga7ml6U=?= =?UTF-8?B?5pys6Kqe54mIMS4x44Gu44Oq44Oq44O844K544Gu44Gf44KB44OQ44O844K444On44Oz44KS6Kq/5pW0?= =?UTF-8?B?44GX44G+77+9Li4u?= Message-ID: <001485f54734bc67d5046d697bd9@google.com> Author: tacahi Date: Sun Jun 28 07:14:06 2009 New Revision: 1617 Modified: trunk/geeklog-jp/GNUmakefile.common trunk/geeklog-jp/release_jp.php Log: Geeklog 1.5.2sr4の日本語版1.1のリリースのためバージョンを調整します。 Modified: trunk/geeklog-jp/GNUmakefile.common ============================================================================== --- trunk/geeklog-jp/GNUmakefile.common (original) +++ trunk/geeklog-jp/GNUmakefile.common Sun Jun 28 07:14:06 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.0.99 +GL_JPVERSION= 1.1 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) Modified: trunk/geeklog-jp/release_jp.php ============================================================================== --- trunk/geeklog-jp/release_jp.php (original) +++ trunk/geeklog-jp/release_jp.php Sun Jun 28 07:14:06 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Sun Jun 28 23:46:48 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 14:46:48 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxOCAtIBskQjpGRVkhIhsoQkdlZWtsb2cgMS41LjJzcg==?= =?ISO-2022-JP?B?NBskQiRORnxLXDhsSEcbKEIxLjEbJEIkTiVqJWohPCU5JHI5VCQkJF4kOSEjGyhC?= Message-ID: <00163698966fa64ce9046d69a403@google.com> Author: tacahi Date: Sun Jun 28 07:17:29 2009 New Revision: 1618 Added: tags/geeklog-1.5.2sr4-jp-1.1/ - copied from r1617, /trunk/geeklog-jp/ Log: 再度、Geeklog 1.5.2sr4の日本語版1.1のリリースを行います。 From codesite-noreply @ google.com Mon Jun 29 00:20:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 15:20:50 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxOSAtIOWGjeOBs+OAgUdlZWtsb2cgMS41LjJzcg==?= =?UTF-8?B?NOOBruaXpeacrOiqnueJiDEuMeOCkuODquODquODvOOCueOBruW+jOOBruOBn+OCgeOBruODkOODvA==?= =?UTF-8?B?44K444On77+9Li4u?= Message-ID: <0016e640cdd05b09ac046d6a1e76@google.com> Author: tacahi Date: Sun Jun 28 07:19:09 2009 New Revision: 1619 Modified: trunk/geeklog-jp/GNUmakefile.common trunk/geeklog-jp/release_jp.php Log: 再び、Geeklog 1.5.2sr4の日本語版1.1をリリースの後のためのバージョン番号とし ます。 Modified: trunk/geeklog-jp/GNUmakefile.common ============================================================================== --- trunk/geeklog-jp/GNUmakefile.common (original) +++ trunk/geeklog-jp/GNUmakefile.common Sun Jun 28 07:19:09 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.1 +GL_JPVERSION= 1.1.99 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) Modified: trunk/geeklog-jp/release_jp.php ============================================================================== --- trunk/geeklog-jp/release_jp.php (original) +++ trunk/geeklog-jp/release_jp.php Sun Jun 28 07:19:09 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Mon Jun 29 00:27:57 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 15:27:57 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyMCAtIHRydW5rL2dlZWtsb2ctanAbJEIkTiEiGyhCR2U=?= =?ISO-2022-JP?B?ZWtsb2cgMS41LjJzcjQbJEIkTkZ8S1w4bEhHGyhCMS4xGyRCJHI6RiVqJWohPCU5JEgkPSROGyhC?= =?ISO-2022-JP?B?GyRCOGUkThsoQg==?= Message-ID: <0016368e1c2fd0fca4046d6a3738@google.com> Author: tacahi Date: Sun Jun 28 07:39:37 2009 New Revision: 1620 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common (contents, props changed) branches/geeklog-1.5.2-jp/release_jp.php (props changed) Log: trunk/geeklog-jpの、Geeklog 1.5.2sr4の日本語版1.1を再リリースとその後の 変更をマージします。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile.common (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile.common Sun Jun 28 07:39:37 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.0.99 +GL_JPVERSION= 1.1.99 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) From codesite-noreply @ google.com Mon Jun 29 00:33:09 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 15:33:09 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYxNCAtIEdlZWtsb2cgMS41LjJzcjTjga7ml6U=?= =?UTF-8?B?5pys6Kqe54mIMS4x44KS44Oq44Oq44O844K544Gu5b6M44Gu44CB44OQ44O844K444On44Oz55Wq5Y+3?= =?UTF-8?B?44Go44GX77+9Li4u?= Message-ID: <0016e645ab3067fe7f046d6a4a12@google.com> Author: tacahi Date: Sun Jun 28 06:44:09 2009 New Revision: 1614 Modified: trunk/geeklog-jp/release_jp.php Log: Geeklog 1.5.2sr4の日本語版1.1をリリースの後の、バージョン番号とします。 Modified: trunk/geeklog-jp/release_jp.php ============================================================================== --- trunk/geeklog-jp/release_jp.php (original) +++ trunk/geeklog-jp/release_jp.php Sun Jun 28 06:44:09 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Mon Jun 29 03:59:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 18:59:23 +0000 Subject: [geeklog-jp commit] r1621 - Importing Geeklog 1.6.0rc1 as externals/geeklog-1.6.0rc1. Message-ID: <001485f54734f84038046d6d2bcc@google.com> Author: tacahi Date: Sun Jun 28 10:21:58 2009 New Revision: 1621 Added: externals/geeklog-1.6.0rc1/ externals/geeklog-1.6.0rc1/INSTALL (contents, props changed) externals/geeklog-1.6.0rc1/backups/ externals/geeklog-1.6.0rc1/backups/README (contents, props changed) externals/geeklog-1.6.0rc1/data/ externals/geeklog-1.6.0rc1/data/README (contents, props changed) externals/geeklog-1.6.0rc1/db-config.php (contents, props changed) externals/geeklog-1.6.0rc1/emailgeeklogstories (contents, props changed) externals/geeklog-1.6.0rc1/language/ externals/geeklog-1.6.0rc1/language/afrikaans.php (contents, props changed) externals/geeklog-1.6.0rc1/language/afrikaans_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/bosnian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/bosnian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/bulgarian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/bulgarian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/catalan.php (contents, props changed) externals/geeklog-1.6.0rc1/language/catalan_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/croatian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/croatian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/czech.php (contents, props changed) externals/geeklog-1.6.0rc1/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/danish.php (contents, props changed) externals/geeklog-1.6.0rc1/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/dutch.php (contents, props changed) externals/geeklog-1.6.0rc1/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/estonian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/finnish.php (contents, props changed) externals/geeklog-1.6.0rc1/language/finnish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0rc1/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/french_france.php (contents, props changed) externals/geeklog-1.6.0rc1/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/german.php (contents, props changed) externals/geeklog-1.6.0rc1/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0rc1/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/hellenic.php (contents, props changed) externals/geeklog-1.6.0rc1/language/hellenic_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/indonesian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/indonesian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/italian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/korean.php (contents, props changed) externals/geeklog-1.6.0rc1/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/norwegian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/norwegian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/polish.php (contents, props changed) externals/geeklog-1.6.0rc1/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/portuguese.php (contents, props changed) externals/geeklog-1.6.0rc1/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.6.0rc1/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/portuguese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/romanian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/romanian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/russian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/serbian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/serbian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/slovak.php (contents, props changed) externals/geeklog-1.6.0rc1/language/slovak_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/spanish.php (contents, props changed) externals/geeklog-1.6.0rc1/language/spanish_argentina.php (contents, props changed) externals/geeklog-1.6.0rc1/language/spanish_argentina_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/swedish.php (contents, props changed) externals/geeklog-1.6.0rc1/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/turkish.php (contents, props changed) externals/geeklog-1.6.0rc1/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0rc1/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0rc1/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/logs/ externals/geeklog-1.6.0rc1/logs/access.log (contents, props changed) externals/geeklog-1.6.0rc1/logs/error.log (contents, props changed) externals/geeklog-1.6.0rc1/logs/spamx.log (contents, props changed) externals/geeklog-1.6.0rc1/plugins/ externals/geeklog-1.6.0rc1/plugins/calendar/ externals/geeklog-1.6.0rc1/plugins/calendar/autoinstall.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/functions.inc (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/install_defaults.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/ externals/geeklog-1.6.0rc1/plugins/calendar/language/README (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/czech.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/danish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/dutch.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/estonian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/german.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/korean.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/russian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/spanish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/sql/ externals/geeklog-1.6.0rc1/plugins/calendar/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/ externals/geeklog-1.6.0rc1/plugins/calendar/templates/addevent.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/addeventoption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/addremoveevent.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/admin/ externals/geeklog-1.6.0rc1/plugins/calendar/templates/admin/batchdelete.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/admin/eventeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/calendar.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/calendarday.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/calendarevent.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/calendarweek.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/dayview/ externals/geeklog-1.6.0rc1/plugins/calendar/templates/dayview/column.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/dayview/dayview.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/dayview/quickaddform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/dayview/singleevent.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/editpersonalevent.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/eventdetails.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/events.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/mastercalendaroption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/personalcalendaroption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/submitevent.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/weekview/ externals/geeklog-1.6.0rc1/plugins/calendar/templates/weekview/events.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/calendar/templates/weekview/weekview.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/ externals/geeklog-1.6.0rc1/plugins/links/README (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/autoinstall.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/functions.inc (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/install_defaults.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/ externals/geeklog-1.6.0rc1/plugins/links/language/README (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/czech.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/dutch.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/estonian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/german.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/korean.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/polish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/russian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/spanish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/sql/ externals/geeklog-1.6.0rc1/plugins/links/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/ externals/geeklog-1.6.0rc1/plugins/links/templates/admin/ externals/geeklog-1.6.0rc1/plugins/links/templates/admin/categoryeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/admin/categorylist.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/admin/catitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/admin/linkeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/categoryactivecol.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/categorycol.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/categorydropdown.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/categorylinks.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/categorynavigation.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/categoryrow.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/linkdetails.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/links.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/pagenavigation.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/links/templates/submitlink.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/ externals/geeklog-1.6.0rc1/plugins/polls/autoinstall.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/functions.inc (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/install_defaults.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/ externals/geeklog-1.6.0rc1/plugins/polls/language/README (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/dutch.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/estonian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/german.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/korean.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/russian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/spanish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/sql/ externals/geeklog-1.6.0rc1/plugins/polls/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/sql/mssql_updates.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/sql/mysql_updates.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/ externals/geeklog-1.6.0rc1/plugins/polls/templates/admin/ externals/geeklog-1.6.0rc1/plugins/polls/templates/admin/pollansweroption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/admin/polleditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/admin/pollquestions.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollanswer.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollcomments.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/polllist.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollquestion.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollquestions.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollresult.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollvotes_bar.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/polls/templates/pollvotes_num.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/ externals/geeklog-1.6.0rc1/plugins/spamx/BaseAdmin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/BaseCommand.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/BlackList.Examine.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/DeleteComment.Action.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/EditBlackList.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/EditHeader.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/EditIP.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/EditIPofURL.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/Header.Examine.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/IP.Examine.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/IPofUrl.Examine.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/LogView.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/MailAdmin.Action.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/MassDelTrackback.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/MassDelete.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/SLV.Examine.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/SLVbase.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/SLVreport.Action.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/SLVwhitelist.Admin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/autoinstall.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/functions.inc (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/install_defaults.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/ externals/geeklog-1.6.0rc1/plugins/spamx/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/estonian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/french_france.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/french_france_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/italian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/russian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/russian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/spanish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/sql/ externals/geeklog-1.6.0rc1/plugins/spamx/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/templates/ externals/geeklog-1.6.0rc1/plugins/spamx/templates/admin.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/spamx/templates/install.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/ externals/geeklog-1.6.0rc1/plugins/staticpages/autoinstall.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/functions.inc (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/install_defaults.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/ externals/geeklog-1.6.0rc1/plugins/staticpages/language/README (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/czech.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/czech_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/danish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/danish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/dutch.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/dutch_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/estonian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/estonian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/farsi_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/french_canada.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/french_canada_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/german.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/german_formal.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/german_formal_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/german_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/italian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/italian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/korean.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/korean_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/polish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/polish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/portuguese_brazil.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/portuguese_brazil_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/slovenian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/slovenian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/spanish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/spanish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/swedish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/swedish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/turkish.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/turkish_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/ukrainian.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/ukrainian_koi8-u.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/language/ukrainian_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/services.inc.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/sql/ externals/geeklog-1.6.0rc1/plugins/staticpages/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/templates/ externals/geeklog-1.6.0rc1/plugins/staticpages/templates/admin/ externals/geeklog-1.6.0rc1/plugins/staticpages/templates/admin/editor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/templates/admin/editor_advanced.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/templates/centerblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/templates/printable.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/templates/spcomments.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/staticpages/templates/staticpage.thtml (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/ externals/geeklog-1.6.0rc1/plugins/xmlsitemap/autoinstall.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/functions.inc (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/install_defaults.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/language/ externals/geeklog-1.6.0rc1/plugins/xmlsitemap/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/language/english_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/sql/ externals/geeklog-1.6.0rc1/plugins/xmlsitemap/sql/mssql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/sql/mysql_install.php (contents, props changed) externals/geeklog-1.6.0rc1/plugins/xmlsitemap/xmlsitemap.class.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/ externals/geeklog-1.6.0rc1/public_html/404.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/ externals/geeklog-1.6.0rc1/public_html/admin/auth.inc.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/block.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/configuration.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/database.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/group.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/ externals/geeklog-1.6.0rc1/public_html/admin/install/bigdump.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/config-install.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/configinfo.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/help.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/info.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/install-plugins.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/ externals/geeklog-1.6.0rc1/public_html/admin/install/language/chinese_simplified_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/chinese_traditional_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/english.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/german.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/hebrew_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/japanese_utf-8.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/language/polish.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/layout/ externals/geeklog-1.6.0rc1/public_html/admin/install/layout/header-bg.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/layout/logo.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/layout/style.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/lib-install.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/lib-upgrade.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/migrate.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/success.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/install/toinnodb.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/mail.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/moderation.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/ externals/geeklog-1.6.0rc1/public_html/admin/plugins.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/calendar/ externals/geeklog-1.6.0rc1/public_html/admin/plugins/calendar/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/links/ externals/geeklog-1.6.0rc1/public_html/admin/plugins/links/category.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/links/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/polls/ externals/geeklog-1.6.0rc1/public_html/admin/plugins/polls/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/spamx/ externals/geeklog-1.6.0rc1/public_html/admin/plugins/spamx/images/ externals/geeklog-1.6.0rc1/public_html/admin/plugins/spamx/images/spamx.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/spamx/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/plugins/staticpages/ externals/geeklog-1.6.0rc1/public_html/admin/plugins/staticpages/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/sectest.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/story.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/syndication.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/topic.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/trackback.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/admin/user.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/article.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/backend/ externals/geeklog-1.6.0rc1/public_html/backend/geeklog.rss (contents, props changed) externals/geeklog-1.6.0rc1/public_html/calendar/ externals/geeklog-1.6.0rc1/public_html/calendar/event.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/calendar/images/ externals/geeklog-1.6.0rc1/public_html/calendar/images/calendar.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/calendar/images/delete_event.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/calendar/images/delete_event.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/calendar/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/calendar/style.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/comment.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/directory.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/ externals/geeklog-1.6.0rc1/public_html/docs/changed-files externals/geeklog-1.6.0rc1/public_html/docs/docstyle.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/ externals/geeklog-1.6.0rc1/public_html/docs/english/calendar.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/changes.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/config.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/install.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/links.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/polls.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/spamx.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/staticpages.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/support.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/theme.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/themevars.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/english/trackback.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/history externals/geeklog-1.6.0rc1/public_html/docs/images/ externals/geeklog-1.6.0rc1/public_html/docs/images/de.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/images/fr.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/images/jp.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/images/newlogo.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/images/pl.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/ externals/geeklog-1.6.0rc1/public_html/docs/japanese/calendar.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/changes.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/config.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/docstyle.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/history.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/install.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/links.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/plugin.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/polls.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/readme.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/readme.ja.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/spamx.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/staticpages.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/support.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/theme.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/themevars.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/japanese/trackback.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/docs/license externals/geeklog-1.6.0rc1/public_html/fckeditor/ externals/geeklog-1.6.0rc1/public_html/fckeditor/_documentation.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/_upgrade.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/_whatsnew.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/_whatsnew_history.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckcontextmenu.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdataprocessor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdomrange.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdomrange_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdomrange_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckdomrangeiterator.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckeditingarea.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckelementpath.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckenterkey.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckevents.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckhtmliterator.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckicon.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckiecleanup.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckimagepreloader.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckkeystrokehandler.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckmenublock.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckmenublockpanel.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckmenuitem.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckpanel.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckspecialcombo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckstyle.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbar.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarbutton.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckw3crange.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckxml.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckxml_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/classes/fckxml_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fck_othercommands.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckfitwindow.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckindentcommands.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckjustifycommands.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fcklistcommands.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fcknamedcommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckshowblocks.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fckstylecommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fcktablecommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/fckconstants.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/fckeditorapi.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/fckjscoreextensions.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/fckscriptloader.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fck.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fck_contextmenu.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fck_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fck_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckbrowserinfo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckcodeformatter.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckcommands.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckconfig.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckdebug.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckdebug_empty.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckdialog.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckdocumentprocessor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckdomtools.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcklanguagemanager.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcklisthandler.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcklistslib.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckplugins.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckregexlib.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckselection.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckselection_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckselection_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckstyles.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktablehandler.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktablehandler_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktablehandler_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktoolbaritems.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktoolbarset.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktools.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktools_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fcktools_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckundo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckurlparams.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckxhtml.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckxhtml_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckxhtml_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/_source/internals/fckxhtmlentities.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/behaviors/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/behaviors/disablehandles.htc externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/behaviors/showtableborders.htc externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/fck_editorarea.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/fck_internal.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/fck_showtableborders_gecko.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_address.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_blockquote.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_div.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_h1.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_h2.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_h3.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_h4.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_h5.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_h6.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_p.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/block_pre.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/fck_anchor.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/fck_flashlogo.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/fck_hiddenfield.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/fck_pagebreak.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/css/images/fck_plugin.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/fck_dialog_common.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/fck_dialog_common.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/images/locked.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/images/reset.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/common/images/unlocked.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_about/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_about.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_about/logo_fredck.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_about/sponsors/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_anchor.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_button.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_checkbox.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_colorselector.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_div.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_docprops/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_docprops.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_flash/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_flash.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_flash/fck_flash.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_form.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_hiddenfield.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_image/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_image.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_image/fck_image.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_image/fck_image_preview.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_link/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_link.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_link/fck_link.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_listprop.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_paste.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_radiobutton.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_replace.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_select/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_select.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_select/fck_select.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_smiley.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_source.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_specialchar.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_table.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_tablecell.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_template/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_template.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_template/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_template/images/template1.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_template/images/template2.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_template/images/template3.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_textarea.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dialog/fck_textfield.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dtd/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dtd/fck_dtd_test.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dtd/fck_xhtml10strict.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/dtd/fck_xhtml10transitional.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/fckdebug.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/fckdialog.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/fckeditor.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/fckeditor.original.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/browser.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/browser.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/frmactualfolder.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/frmfolders.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/frmresourceslist.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/frmresourcetype.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/frmupload.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/Folder.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/Folder32.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif0000644 (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/html.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/js.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/png.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/images/spacer.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/js/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/js/common.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/browser/default/js/fckxml.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/basexml.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/commands.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/config.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/connector.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/io.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/phpcompat.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/upload.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/filemanager/connectors/php/util.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/anchor.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/arrow_ltr.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/arrow_rtl.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/angel_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/angry_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/broken_heart.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/cake.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/confused_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/cry_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/devil_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/embaressed_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/envelope.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/heart.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/kiss.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/lightbulb.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/omg_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/regular_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/sad_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/shades_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/teeth_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/thumbs_down.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/thumbs_up.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/tounge_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/smiley/msn/wink_smile.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/images/spacer.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/js/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/js/fckadobeair.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/js/fckeditorcode_gecko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/js/fckeditorcode_ie.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/_translationstatus.txt (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/af.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ar.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/bg.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/bn.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/bs.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ca.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/cs.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/da.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/de.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/el.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/en-au.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/en-ca.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/en-uk.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/en.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/eo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/es.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/et.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/eu.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/fa.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/fi.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/fo.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/fr-ca.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/fr.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/gl.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/gu.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/he.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/hi.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/hr.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/hu.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/is.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/it.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ja.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/km.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ko.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/lt.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/lv.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/mn.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ms.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/nb.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/nl.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/no.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/pl.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/pt-br.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/pt.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ro.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/ru.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/sk.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/sl.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/sr-latn.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/sr.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/sv.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/th.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/tr.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/uk.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/vi.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/zh-cn.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/lang/zh.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/autogrow/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/autogrow/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/bbcode/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/bbcode/_sample/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.config.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/bbcode/_sample/sample.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/bbcode/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/dragresizetable/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/dragresizetable/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/fck_placeholder.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/de.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/en.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/es.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/fr.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/it.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/lang/pl.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/placeholder/placeholder.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/simplecommands/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/simplecommands/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/tablecommands/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/plugins/tablecommands/fckplugin.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/_fckviewstrips.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/fck_editor.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/sprites.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/default/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/fck_editor.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/sprites.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.bg.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/office2003/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/fck_dialog.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/fck_dialog_ie6.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/fck_editor.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/fck_strip.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/dialog.sides.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/dialog.sides.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/sprites.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/sprites.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.collapse.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.end.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.expand.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.separator.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/skins/silver/images/toolbar.start.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/wsc/ externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/wsc/ciframe.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/wsc/tmpFrameset.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/editor/wsc/w.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckconfig.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckeditor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckeditor.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckeditor_php4.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckeditor_php5.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckpackager.xml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fckstyles.xml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/fcktemplates.xml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/license.txt (contents, props changed) externals/geeklog-1.6.0rc1/public_html/fckeditor/myconfig.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/getimage.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/ externals/geeklog-1.6.0rc1/public_html/help/advancedsearch.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/cceventsubmission.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/cclinksubmission.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/ccstorysubmission.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/submitevent.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/submitlink.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/help/submitstory.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/ externals/geeklog-1.6.0rc1/public_html/images/admin/ externals/geeklog-1.6.0rc1/public_html/images/admin/block.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/event.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/link.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/logout.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/plugins.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/poll.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/story.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/topic.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/admin/user.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/articles/ externals/geeklog-1.6.0rc1/public_html/images/articles/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/bar.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/button_help.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/ externals/geeklog-1.6.0rc1/public_html/images/buttons/cms-geeklog.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/geeklog-badge.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/geekpower2.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/mysql.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/php.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/valid-css.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/buttons/valid-html.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/ externals/geeklog-1.6.0rc1/public_html/images/icons/block.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/event.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/feed.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/geeklog.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/group.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/link.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/logout.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/ping.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/plugins.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/poll.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/story.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/themes.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/topic.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/icons/user.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/ externals/geeklog-1.6.0rc1/public_html/images/library/File/ externals/geeklog-1.6.0rc1/public_html/images/library/File/test.pdf externals/geeklog-1.6.0rc1/public_html/images/library/Flash/ externals/geeklog-1.6.0rc1/public_html/images/library/Flash/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/ externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/ externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/ai.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/avi.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/bmp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/cs.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/default.icon.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/dll.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/doc.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/exe.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/fla.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/gif.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/htm.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/html.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/jpg.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/js.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/mdb.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/mp3.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/pdf.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/ppt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/rdp.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/swf.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/swt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/txt.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/vsd.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/xls.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/xml.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/icons/zip.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/image1.jpg (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/image2.jpg (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Image/image3.jpg (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/library/Media/ externals/geeklog-1.6.0rc1/public_html/images/library/Media/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/mail.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/openid_login_icon.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/print.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/right_arrow.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/speck.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/sysmessage.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/topics/ externals/geeklog-1.6.0rc1/public_html/images/topics/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/topics/topic_gl.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/topics/topic_news.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/images/userphotos/ externals/geeklog-1.6.0rc1/public_html/images/userphotos/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/ externals/geeklog-1.6.0rc1/public_html/javascript/advanced_editor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/common.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/configmanager.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/moveusers.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/profile_editor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/staticpages_fckeditor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/storyeditor_fckeditor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/submitcomment_fckeditor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/javascript/submitstory_fckeditor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/ externals/geeklog-1.6.0rc1/public_html/layout/professional/ externals/geeklog-1.6.0rc1/public_html/layout/professional/README (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/block/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/block/blockeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/block/defaultblockeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/block/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/common/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/common/edit_permissions.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/common/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/config/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/config/config_element.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/config/configuration.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/config/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/config/menu_element.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/group/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/group/groupeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/group/groupmembers.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/group/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/field.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/header.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/inline.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/list.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/listitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/searchmenu.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/lists/topmenu.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/mail/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/mail/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/mail/mailform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/moderation/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/moderation/ccitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/moderation/ccrow.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/moderation/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/moderation/moderation.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/plugins/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/plugins/editor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/plugins/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/story/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/story/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/story/storyeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/story/storyeditor_advanced.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/syndication/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/syndication/feededitor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/syndication/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/syndication/selecttype.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/topic/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/topic/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/topic/listitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/topic/topiceditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/topic/topiclist.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/autodetectitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/autodetectlist.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/pingbackform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/pingbackitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/pingbacklist.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/pingform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/pingitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/pinglist.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/serviceeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/trackback/trackbackeditor.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/ externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/batchdelete.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/batchdelete_options.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/edituser.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/groupedit.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/admin/user/reminder.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/adminoption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/adminoption_off.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/advanced_editor_header.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/archivestorybodytext.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/archivestorytext.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/article/ externals/geeklog-1.6.0rc1/public_html/layout/professional/article/article.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/article/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/article/printable.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter-config.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter-left.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter-list.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter-message.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter-related.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter-right.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockfooter.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader-config.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader-left.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader-list.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader-message.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader-related.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader-right.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockheader.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/blockservices.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/ externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/comment.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/commentbar.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/commentform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/commentform_advanced.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/reportcomment.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/startcomment.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/comment/thread.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/featuredstorybodytext.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/featuredstorytext.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/footer.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/functions.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/header.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/ externals/geeklog-1.6.0rc1/public_html/layout/professional/images/addchild.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/admin/ externals/geeklog-1.6.0rc1/public_html/layout/professional/images/admin/block-left.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/admin/block-right.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/admin/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/bar.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/bararrowdown.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/bararrowup.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/button_help.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/collapse.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/copy.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/deleteitem.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/edit.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/expand.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/external.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/feed.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/header-bg.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icon_info.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/ externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/block.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/configuration.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/database.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/delete_event.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/docs.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/event.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/group.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/logout.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/mail.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/plugins.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/story.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/syndication.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/topic.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/trackback.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/user.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/icons/versioncheck.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/list.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/logo.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/mail.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/person.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/print.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/sendping.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/smallcamera.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/images/sysmessage.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/leftblocks.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/list.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/listitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/ externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/ externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/item_field.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/item_row.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/list.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/page_limit.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/inline/page_sort.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/ externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/item_field.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/item_row.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/list.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/page_limit.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/lists/table/page_sort.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/loginform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/loginform_openid.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/menuitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/menuitem_last.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/menuitem_none.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/ externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/breadcrumb_link.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/breadcrumbs.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/ externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/button.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/button_over.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/tableftI.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/tableftJ.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/tabrightI.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/images/tabrightJ.gif (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/menuitem.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/navbar/navbar.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/ externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/boxesblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/commentblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/deleteaccount.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/digestblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/displayblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/displayprefs.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/excludeblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/language.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/privacyblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/profile.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/theme.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/username.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/preferences/userphoto.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/print.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/profiles/ externals/geeklog-1.6.0rc1/public_html/layout/professional/profiles/contactauthorform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/profiles/contactuserform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/profiles/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/rightblocks.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/ externals/geeklog-1.6.0rc1/public_html/layout/professional/search/headingcolumn.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/resultauthdatehits.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/resultcolumn.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/resultrow.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/resultrowenhanced.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/resultsummary.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/resulttitle.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchauthors.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchblock.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchresults.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchresults_heading.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchresults_norows.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/search/searchresults_rows.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/stats/ externals/geeklog-1.6.0rc1/public_html/layout/professional/stats/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/stats/itemstatistics.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/stats/singlestat.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/stats/singlesummary.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/stats/sitestatistics.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/storybodytext.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/storytext.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/style.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/submit/ externals/geeklog-1.6.0rc1/public_html/layout/professional/submit/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/submit/submitloginrequired.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/submit/submitstory.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/submit/submitstory_advanced.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/topcenterblock-span.thtmlx (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/topicoption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/topicoption_off.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/trackback/ externals/geeklog-1.6.0rc1/public_html/layout/professional/trackback/formattedcomment.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/trackback/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/trackback/trackback.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/trackback/trackbackcomment.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/useroption.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/useroption_off.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/ externals/geeklog-1.6.0rc1/public_html/layout/professional/users/commentrow.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/getpasswordform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/index.html (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/loginform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/newpassword.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/profile.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/registrationform.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/services.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/layout/professional/users/storyrow.thtml (contents, props changed) externals/geeklog-1.6.0rc1/public_html/lib-common.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/links/ externals/geeklog-1.6.0rc1/public_html/links/images/ externals/geeklog-1.6.0rc1/public_html/links/images/links.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/links/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/links/portal.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/pingback.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/polls/ externals/geeklog-1.6.0rc1/public_html/polls/images/ externals/geeklog-1.6.0rc1/public_html/polls/images/polls.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/polls/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/polls/polls_editor.js (contents, props changed) externals/geeklog-1.6.0rc1/public_html/polls/style.css (contents, props changed) externals/geeklog-1.6.0rc1/public_html/profiles.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/robots.txt (contents, props changed) externals/geeklog-1.6.0rc1/public_html/search.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/siteconfig.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/staticpages/ externals/geeklog-1.6.0rc1/public_html/staticpages/images/ externals/geeklog-1.6.0rc1/public_html/staticpages/images/staticpages.png (contents, props changed) externals/geeklog-1.6.0rc1/public_html/staticpages/index.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/stats.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/submit.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/switchlang.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/trackback.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/users.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/usersettings.php (contents, props changed) externals/geeklog-1.6.0rc1/public_html/webservices/ externals/geeklog-1.6.0rc1/public_html/webservices/atom/ externals/geeklog-1.6.0rc1/public_html/webservices/atom/index.php (contents, props changed) externals/geeklog-1.6.0rc1/readme (contents, props changed) externals/geeklog-1.6.0rc1/sql/ externals/geeklog-1.6.0rc1/sql/mssql_tableanddata.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/mysql_tableanddata.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/ externals/geeklog-1.6.0rc1/sql/updates/mssql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mssql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mssql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mssql_1.5.2_to_1.6.0.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.2.5-1_to_1.3.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.10_to_1.3.11.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.11_to_1.4.0.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.1_to_1.3.2.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.2-1_to_1.3.3.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.3_to_1.3.4.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.4_to_1.3.5.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.5_to_1.3.6.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.7_to_1.3.8.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.8_to_1.3.9.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3.9_to_1.3.10.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.3_to_1.3.1.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.4.0_to_1.4.1.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.4.1_to_1.5.0.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.5.0_to_1.5.1.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.5.1_to_1.5.2.php (contents, props changed) externals/geeklog-1.6.0rc1/sql/updates/mysql_1.5.2_to_1.6.0.php (contents, props changed) externals/geeklog-1.6.0rc1/system/ externals/geeklog-1.6.0rc1/system/classes/ externals/geeklog-1.6.0rc1/system/classes/authentication/ externals/geeklog-1.6.0rc1/system/classes/authentication/LDAP.auth.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/authentication/LiveJournal.auth.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/authentication/ldap/ externals/geeklog-1.6.0rc1/system/classes/authentication/ldap/config.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/calendar.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/config.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/downloader.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/kses.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/listfactory.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/navbar.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/ externals/geeklog-1.6.0rc1/system/classes/openid/COPYING externals/geeklog-1.6.0rc1/system/classes/openid/LICENSE externals/geeklog-1.6.0rc1/system/classes/openid/association.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/consumer.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/httpclient.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/interface.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/oid_parse.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/oid_util.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/server.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openid/trustroot.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/openidhelper.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/plugin.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/sanitize.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/search.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/searchcriteria.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/story.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/syndication/ externals/geeklog-1.6.0rc1/system/classes/syndication/atom.feed.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/syndication/feedparserbase.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/syndication/parserfactory.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/syndication/rdf.feed.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/syndication/rss.feed.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/template.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/timer.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/unpacker.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/upload.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/classes/url.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/databases/ externals/geeklog-1.6.0rc1/system/databases/mssql.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/databases/mysql.class.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-admin.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-comment.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-custom.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-database.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-mbyte.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-pingback.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-plugins.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-security.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-sessions.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-story.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-syndication.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-trackback.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-user.php (contents, props changed) externals/geeklog-1.6.0rc1/system/lib-webservices.php (contents, props changed) externals/geeklog-1.6.0rc1/system/memberdetail.thtml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/ externals/geeklog-1.6.0rc1/system/pear/Archive/ externals/geeklog-1.6.0rc1/system/pear/Archive/Tar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Archive/Zip.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/ externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/ externals/geeklog-1.6.0rc1/system/pear/Auth/SASL.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/Anonymous.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/Common.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/CramMD5.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/DigestMD5.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/Login.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Auth/SASL/Plain.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Console/ externals/geeklog-1.6.0rc1/system/pear/Console/Getopt.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Date/ externals/geeklog-1.6.0rc1/system/pear/Date.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Date/Calc.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Date/Human.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Date/Span.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Date/TimeZone.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/HTTP/ externals/geeklog-1.6.0rc1/system/pear/HTTP/Request/ externals/geeklog-1.6.0rc1/system/pear/HTTP/Request.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/HTTP/Request/Listener.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Mail/ externals/geeklog-1.6.0rc1/system/pear/Mail.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Mail/RFC822.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Mail/mail.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Mail/null.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Mail/sendmail.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Mail/smtp.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/ externals/geeklog-1.6.0rc1/system/pear/Net/DNS/ externals/geeklog-1.6.0rc1/system/pear/Net/DNS.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/Header.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/Packet.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/Question.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/ externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/A.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/AAAA.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/CNAME.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/HINFO.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/MX.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/NAPTR.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/NS.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/PTR.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/SOA.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/SRV.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/TSIG.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/RR/TXT.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/DNS/Resolver.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/SMTP.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/Socket.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Net/URL.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/OS/ externals/geeklog-1.6.0rc1/system/pear/OS/Guess.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/ externals/geeklog-1.6.0rc1/system/pear/PEAR.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Autoloader.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Builder.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/ChannelFile/ externals/geeklog-1.6.0rc1/system/pear/PEAR/ChannelFile.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/ChannelFile/Parser.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Command.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Auth.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Auth.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Build.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Build.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Channels.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Channels.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Common.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Config.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Config.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Install.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Install.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Mirror.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Mirror.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Package.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Package.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Pickle.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Pickle.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Registry.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Registry.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Remote.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Remote.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Test.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Command/Test.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Common.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Config.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Dependency.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Dependency2.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/DependencyDB.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Downloader/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Downloader.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Downloader/Package.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/ErrorStack.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Exception.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/FixPHP5PEARWarnings.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Frontend/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Frontend.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Frontend/CLI.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Cfg.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Cfg.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Common.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Data.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Data.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Doc.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Doc.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Ext.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Ext.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Php.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Php.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Script.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Script.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Src.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Src.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Test.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Test.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Www.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Installer/Role/Www.xml (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/ externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/Generator/ externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/Generator/v1.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/Generator/v2.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/Parser/ externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/Parser/v1.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/Parser/v2.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/v1.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/v2/ externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/v2.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/v2/Validator.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/PackageFile/v2/rw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Packager.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/REST/ externals/geeklog-1.6.0rc1/system/pear/PEAR/REST.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/REST/10.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/REST/11.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/REST/13.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Registry.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Remote.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/RunTest.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Common.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Postinstallscript/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Postinstallscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Postinstallscript/rw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Replace/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Replace.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Replace/rw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Unixeol/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Unixeol.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Unixeol/rw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Windowseol/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Windowseol.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Task/Windowseol/rw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Validate.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/Validator/ externals/geeklog-1.6.0rc1/system/pear/PEAR/Validator/PECL.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/PEAR/XMLParser.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/README (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/System.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Default.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Anchor.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Blockquote.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Bold.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Break.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Center.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Code.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Colortext.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Deflist.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Delimiter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Embed.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Emphasis.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Freelink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Function.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Heading.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Horiz.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Html.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Image.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Include.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Interwiki.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Italic.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/List.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Newline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Paragraph.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Phplookup.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Prefilter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Raw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Revise.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Smiley.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Strong.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Subscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Superscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Table.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Tighten.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Toc.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Tt.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Underline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Url.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Parse/Default/Wikilink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Anchor.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Blockquote.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Bold.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Box.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Break.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Center.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Code.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Colortext.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Deflist.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Delimiter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Embed.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Emphasis.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Font.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Freelink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Function.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Heading.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Horiz.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Html.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Image.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Include.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Interwiki.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Italic.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/List.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Newline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Page.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Paragraph.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Phplookup.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Plugin.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Prefilter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Preformatted.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Raw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Revise.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Smiley.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Specialchar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Strong.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Subscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Superscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Table.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Tighten.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Titlebar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Toc.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Tt.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Underline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Url.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Latex/Wikilink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Anchor.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Blockquote.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Bold.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Box.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Break.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Center.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Code.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Colortext.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Deflist.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Delimiter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Embed.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Emphasis.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Font.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Freelink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Function.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Heading.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Horiz.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Html.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Image.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Include.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Interwiki.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Italic.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/List.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Newline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Page.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Paragraph.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Phplookup.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Plugin.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Prefilter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Preformatted.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Raw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Revise.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Smiley.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Specialchar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Strong.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Subscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Superscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Table.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Tighten.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Titlebar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Toc.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Tt.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Underline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Url.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Plain/Wikilink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/ externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Address.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Anchor.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Blockquote.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Bold.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Box.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Break.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Center.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Code.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Colortext.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Deflist.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Delimiter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Embed.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Emphasis.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Font.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Freelink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Function.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Heading.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Horiz.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Html.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Image.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Include.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Interwiki.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Italic.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/List.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Newline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Page.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Paragraph.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Phplookup.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Plugin.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Prefilter.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Preformatted.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Raw.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Revise.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Smiley.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Specialchar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Strong.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Subscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Superscript.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Table.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Tighten.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Titlebar.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Toc.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Tt.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Underline.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Url.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/Text/Wiki/Render/Xhtml/Wikilink.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/XML/ externals/geeklog-1.6.0rc1/system/pear/XML/RPC/ externals/geeklog-1.6.0rc1/system/pear/XML/RPC.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/XML/RPC/Dump.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/XML/RPC/Server.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/ externals/geeklog-1.6.0rc1/system/pear/scripts/pear.bat (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/pear.sh (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/pearcmd.php (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/peardev.bat (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/peardev.sh (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/pecl.bat (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/pecl.sh (contents, props changed) externals/geeklog-1.6.0rc1/system/pear/scripts/peclcmd.php (contents, props changed) Log: Importing Geeklog 1.6.0rc1 as externals/geeklog-1.6.0rc1. Added: externals/geeklog-1.6.0rc1/INSTALL ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0rc1/INSTALL Sun Jun 28 10:21:58 2009 @@ -0,0 +1,7 @@ +Installation instructions for Geeklog can be found in the docs directory, +specifically in + + public_html/docs/english/install.html + +That document also includes a section on common installation problems. + Added: externals/geeklog-1.6.0rc1/backups/README ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0rc1/backups/README Sun Jun 28 10:21:58 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.6.0rc1/data/README ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0rc1/data/README Sun Jun 28 10:21:58 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.6.0rc1/db-config.php ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0rc1/db-config.php Sun Jun 28 10:21:58 2009 @@ -0,0 +1,24 @@ + Added: externals/geeklog-1.6.0rc1/emailgeeklogstories ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0rc1/emailgeeklogstories Sun Jun 28 10:21:58 2009 @@ -0,0 +1,15 @@ +#!/usr/local/bin/php -q + Added: externals/geeklog-1.6.0rc1/language/afrikaans.php ============================================================================== --- (empty file) +++ externals/geeklog-1.6.0rc1/language/afrikaans.php Sun Jun 28 10:21:58 2009 @@ -0,0 +1,1946 @@ + 'Geskryf deur:', + 2 => 'lees verder', + 3 => 'kommentaar', + 4 => 'Wysig', + 5 => '', + 6 => '', + 7 => '', + 8 => '', + 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 => '', + 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', + 28 => 'Preview Changes', + 29 => 'Submit Changes', + 30 => 'Edited on', + 31 => 'by', + 32 => 'Editing a Comment', + 33 => 'Editing a Comment Submission', + 34 => 'Preview Submission Changes', + 35 => 'Save Changes to Queue', + 36 => 'Notify me of new replies', + 37 => 'New Comment Reply', + 38 => 'A reply has been made to your comment \'%s\'.', + 39 => 'You may view the comment thread at the following address:', + 40 => 'If you wish to receive no further notifications of replies, visit the following link:', + 41 => 'Hello %s,', + 42 => 'Unsubscribe', + 43 => 'Unsubscribe from reply notifications' +); + +############################################################################### +# 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 Em ============================================================================== Diff truncated at 200k characters From codesite-noreply @ google.com Mon Jun 29 07:43:21 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 22:43:21 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyNyAtIHVwZGF0ZS1yZWxlYXNlLWpwGyRCJE49aBsoQg==?= =?ISO-2022-JP?B?GyRCTX0kLEYwOm4kNyRGJCQkSiQrJEMkPyROJHI9JEA1JDckXiQ5ISMbKEI=?= Message-ID: <0016361e84acf527d7046d704cd1@google.com> Author: tacahi Date: Sun Jun 28 15:37:51 2009 New Revision: 1627 Modified: trunk/geeklog-jp/GNUmakefile Log: update-release-jpの処理が動作していなかったのを修正します。 Modified: trunk/geeklog-jp/GNUmakefile ============================================================================== --- trunk/geeklog-jp/GNUmakefile (original) +++ trunk/geeklog-jp/GNUmakefile Sun Jun 28 15:37:51 2009 @@ -34,7 +34,7 @@ $(ZIP) -qr $(GL_RELEASE).zip $(GL_RELEASE) update-release-jp: - @$(SED) -e '/release_no =/s/"(.*)"/$(GL_JPVERSION)/' release_jp.php \ + @$(SED) -e '/release_no =/s/".*"/"$(GL_JPVERSION)"/' release_jp.php \ > release_jp.php.tmp; \ if ${CMP} -s release_jp.php release_jp.php.tmp; then \ :; \ From codesite-noreply @ google.com Mon Jun 29 07:47:23 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 22:47:23 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyNSAtIHIxNjIyGyRCJE5KUTk5JHI1LU8/GyhC?= =?ISO-2022-JP?B?GyRCJDckXiQ5ISMbKEI=?= Message-ID: <0016e6453ff2594baa046d705bd5@google.com> Author: tacahi Date: Sun Jun 28 15:28:26 2009 New Revision: 1625 Modified: branches/geeklog-1.5.2-jp/CHANGES.jp branches/geeklog-1.5.2-jp/extended/CHANGES.jp Log: r1622の変更を記録します。 Modified: branches/geeklog-1.5.2-jp/CHANGES.jp ============================================================================== --- branches/geeklog-1.5.2-jp/CHANGES.jp (original) +++ branches/geeklog-1.5.2-jp/CHANGES.jp Sun Jun 28 15:28:26 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-29 Takahiro Kambe + + * リリース処理: のファイルの作成にpaxコマンドに代えて、tarコマンドを + 使用するようにしました。 + 2009-06-28 Takahiro Kambe * geeklog-1.5.2sr4-jp-1.1をリリースします。 Modified: branches/geeklog-1.5.2-jp/extended/CHANGES.jp ============================================================================== --- branches/geeklog-1.5.2-jp/extended/CHANGES.jp (original) +++ branches/geeklog-1.5.2-jp/extended/CHANGES.jp Sun Jun 28 15:28:26 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-29 Takahiro Kambe + + * リリース処理: のファイルの作成にpaxコマンドに代えて、tarコマンドを + 使用するようにしました。 + 2009-06-28 Takahiro Kambe * geeklog-1.5.2sr4-jp-extended-1.1をリリースします。 From codesite-noreply @ google.com Mon Jun 29 07:51:24 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 22:51:24 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyOCAtIHVwZGF0ZS1yZWxlYXNlLWpwGyRCJE49aBsoQg==?= =?ISO-2022-JP?B?GyRCTX0kTkpROTkkcjUtTz8kNyEiRD5BMCROSlE5OSROSjg+TyROOG0kahsoQg==?= =?ISO-2022-JP?B?GyRCJHI9JBsoQi4uLg==?= Message-ID: <0016e6409b34c0e3c2046d7069fd@google.com> Author: tacahi Date: Sun Jun 28 15:40:31 2009 New Revision: 1628 Modified: trunk/geeklog-jp/CHANGES.jp Log: update-release-jpの処理の変更を記録し、直前の変更の文章の誤りを修正しまし た。 Modified: trunk/geeklog-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-jp/CHANGES.jp (original) +++ trunk/geeklog-jp/CHANGES.jp Sun Jun 28 15:40:31 2009 @@ -2,8 +2,11 @@ 2009-06-29 Takahiro Kambe - * リリース処理: のファイルの作成にpaxコマンドに代えて、tarコマンドを - 使用するようにしました。 + * リリース処理: release_jp.phpの更新のルールが正しく動作していなかっ + たのを修正しました。 + + * リリース処理: リリースのファイルの作成にpaxコマンドに代えて、tar + コマンドを使用するようにしました。 2009-06-28 Takahiro Kambe From codesite-noreply @ google.com Mon Jun 29 07:55:28 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 22:55:28 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyMiAtIBskQiVqJWohPCU5JE46bkAuJEsbKEI=?= =?ISO-2022-JP?B?cGF4GyRCJTMlXiVzJUkkRxsoQnVzdGFyGyRCN0E8MCRyO1hEaiQ5JGskTiRHJE8kSiQvGyhC?= =?ISO-2022-JP?B?GyRCISIbKEJ0YXIuLi4=?= Message-ID: <0016e644cef64084ac046d7078b2@google.com> Author: tacahi Date: Sun Jun 28 15:18:00 2009 New Revision: 1622 Modified: trunk/geeklog-jp/GNUmakefile trunk/geeklog-jp/GNUmakefile.common Log: リリースの作成にpaxコマンドでustar形式を指定するのではなく、tarコマンドを 使用するようにします。前者は、Windowsのアーカイブ処理のプログラムが対応し きれていないようです。 Modified: trunk/geeklog-jp/GNUmakefile ============================================================================== --- trunk/geeklog-jp/GNUmakefile (original) +++ trunk/geeklog-jp/GNUmakefile Sun Jun 28 15:18:00 2009 @@ -29,7 +29,7 @@ release: pre-release install cd $(TOPDIR); \ $(MV) $(GLBASE) $(GL_RELEASE); \ - $(PAX) -x ustar -w $(GL_RELEASE) | $(GZIP) -9 > $(GL_RELEASE).tar.gz; \ + $(TAR) -c -f - $(GL_RELEASE) | $(GZIP) -9 > $(GL_RELEASE).tar.gz; \ $(RM) -f $(GL_RELEASE).zip; \ $(ZIP) -qr $(GL_RELEASE).zip $(GL_RELEASE) Modified: trunk/geeklog-jp/GNUmakefile.common ============================================================================== --- trunk/geeklog-jp/GNUmakefile.common (original) +++ trunk/geeklog-jp/GNUmakefile.common Sun Jun 28 15:18:00 2009 @@ -101,8 +101,9 @@ MKDIR?= install -d -m $(DIRMODE) MV?= mv PAX?= pax -#RM?= rm +RM?= rm SED?= sed +TAR?= tar TRUE= true FALSE= false From codesite-noreply @ google.com Mon Jun 29 08:31:11 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:31:11 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyOSAtIBskQkZ8S1w4bEhHGyhCMS4yGyRCJEslUCE8GyhC?= =?ISO-2022-JP?B?GyRCJTglZyVzPnBKcyRySlE5OSQ3JF4kNyQ/ISMbKEI=?= Message-ID: <001485f91c00081325046d70f8f6@google.com> Author: tacahi Date: Sun Jun 28 15:43:07 2009 New Revision: 1629 Modified: branches/geeklog-1.5.2-jp/release_jp.php Log: 日本語版1.2にバージョン情報を変更しました。 Modified: branches/geeklog-1.5.2-jp/release_jp.php ============================================================================== --- branches/geeklog-1.5.2-jp/release_jp.php (original) +++ branches/geeklog-1.5.2-jp/release_jp.php Sun Jun 28 15:43:07 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Mon Jun 29 08:35:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:35:17 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyMyAtIBskQiVqJWohPCU5JE46bkAuJE4bKEI=?= =?ISO-2022-JP?B?GyRCSlE5OSRLJEQkJCRGNS1PPyQ3JF4kNyQ/ISMbKEI=?= Message-ID: <0016e6464262a8be02046d710699@google.com> Author: tacahi Date: Sun Jun 28 15:23:16 2009 New Revision: 1623 Modified: trunk/geeklog-jp/CHANGES.jp Log: リリースの作成の変更について記録しました。 Modified: trunk/geeklog-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-jp/CHANGES.jp (original) +++ trunk/geeklog-jp/CHANGES.jp Sun Jun 28 15:23:16 2009 @@ -1,5 +1,10 @@ $Id$ +2009-06-29 Takahiro Kambe + + * リリース処理: のファイルの作成にpaxコマンドに代えて、tarコマンドを + 使用するようにしました。 + 2009-06-28 Takahiro Kambe * geeklog-1.5.2sr4-jp-1.1をリリースします。 From codesite-noreply @ google.com Mon Jun 29 08:38:51 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:38:51 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzMiAtIEdlZWtsb2cgMS41LjJzcjTjg5njg7w=?= =?UTF-8?B?44K544Gu5pel5pys6Kqe54mIMS4y44Gu44Oq44Oq44O844K55b6M44Gu44OQ44O844K444On44Oz44Go?= =?UTF-8?B?44GX44G+77+9Li4u?= Message-ID: <0016e643486a6baa85046d711316@google.com> Author: tacahi Date: Sun Jun 28 15:46:22 2009 New Revision: 1632 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common Log: Geeklog 1.5.2sr4ベースの日本語版1.2のリリース後のバージョンとします。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile.common (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile.common Sun Jun 28 15:46:22 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.2 +GL_JPVERSION= 1.2.99 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) From codesite-noreply @ google.com Mon Jun 29 08:43:06 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:43:06 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzMSAtIHRydW5rL2dlZWtsb2ctanAbJEIkcjg1GyhC?= =?ISO-2022-JP?B?GyRCJEshIhsoQnRhZ3MvZ2Vla2xvZy0xLjUuMnNyNC1qcC0xLjIbJEIkTiU/JTAkcjpuQC4kNyReGyhC?= =?ISO-2022-JP?B?GyRCJDkhIxsoQg==?= Message-ID: <0016e64135dea6f4b4046d712258@google.com> Author: tacahi Date: Sun Jun 28 15:45:45 2009 New Revision: 1631 Added: tags/geeklog-1.5.2sr4-jp-1.2/ - copied from r1630, /trunk/geeklog-jp/ Log: trunk/geeklog-jpを元に、tags/geeklog-1.5.2sr4-jp-1.2のタグを作成します。 From codesite-noreply @ google.com Mon Jun 29 08:47:08 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:47:08 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyNCAtIHIxNjIyGyRCJE5KUTk5JHIlXiE8GyhC?= =?ISO-2022-JP?B?GyRCJTgkNyReJDkbKEI6IBskQiVqJWohPCU5Om5ALiROSn1LISROSlE5OSEjGyhC?= Message-ID: <0016e645400612f0b1046d7131d0@google.com> Author: tacahi Date: Sun Jun 28 15:25:13 2009 New Revision: 1624 Modified: branches/geeklog-1.5.2-jp/GNUmakefile (contents, props changed) branches/geeklog-1.5.2-jp/GNUmakefile.common (contents, props changed) Log: r1622の変更をマージします: リリース作成の方法の変更。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile Sun Jun 28 15:25:13 2009 @@ -29,7 +29,7 @@ release: pre-release install cd $(TOPDIR); \ $(MV) $(GLBASE) $(GL_RELEASE); \ - $(PAX) -x ustar -w $(GL_RELEASE) | $(GZIP) -9 > $(GL_RELEASE).tar.gz; \ + $(TAR) -c -f - $(GL_RELEASE) | $(GZIP) -9 > $(GL_RELEASE).tar.gz; \ $(RM) -f $(GL_RELEASE).zip; \ $(ZIP) -qr $(GL_RELEASE).zip $(GL_RELEASE) Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile.common (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile.common Sun Jun 28 15:25:13 2009 @@ -101,8 +101,9 @@ MKDIR?= install -d -m $(DIRMODE) MV?= mv PAX?= pax -#RM?= rm +RM?= rm SED?= sed +TAR?= tar TRUE= true FALSE= false From codesite-noreply @ google.com Mon Jun 29 08:51:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:51:17 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzMyAtIEdlZWtsb2cgMS41LjJzcjTjg5njg7w=?= =?UTF-8?B?44K544Gu5pel5pys6Kqe54mIMS4y44Gu44Oq44Oq44O844K55b6M44Gu44OQ44O844K444On44Oz44Go?= =?UTF-8?B?44GX44G+77+9Li4u?= Message-ID: <001636b43254df806d046d713f95@google.com> Author: tacahi Date: Sun Jun 28 15:48:42 2009 New Revision: 1633 Modified: trunk/geeklog-jp/GNUmakefile.common Log: Geeklog 1.5.2sr4ベースの日本語版1.2のリリース後のバージョンとします。 Modified: trunk/geeklog-jp/GNUmakefile.common ============================================================================== --- trunk/geeklog-jp/GNUmakefile.common (original) +++ trunk/geeklog-jp/GNUmakefile.common Sun Jun 28 15:48:42 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.1.99 +GL_JPVERSION= 1.2.99 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) From codesite-noreply @ google.com Mon Jun 29 08:55:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Sun, 28 Jun 2009 23:55:17 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYyNiAtIEdMX0pQVkVSU0lPThskQiRyGyhCMS4yGyRCJEgkNxsoQg==?= =?ISO-2022-JP?B?GyRCJF4kOSEjGyhC?= Message-ID: <0016364ed0d03169c1046d714ead@google.com> Author: tacahi Date: Sun Jun 28 15:29:58 2009 New Revision: 1626 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common Log: GL_JPVERSIONを1.2とします。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile.common (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile.common Sun Jun 28 15:29:58 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.1.99 +GL_JPVERSION= 1.2 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) From codesite-noreply @ google.com Mon Jun 29 10:00:50 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 01:00:50 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzMCAtIEdlZWtsb2cgMS41LjJzcjTjg5njg7w=?= =?UTF-8?B?44K544Gu5pel5pys6Kqe54mIMS4y44Gu44Oq44Oq44O844K544Gr6Zai44GZ44KL5aSJ5pu044KS6KiY?= =?UTF-8?B?6Yyy44GX77+9Li4u?= Message-ID: <0016368e20569b2677046d7238ee@google.com> Author: tacahi Date: Sun Jun 28 15:43:50 2009 New Revision: 1630 Modified: branches/geeklog-1.5.2-jp/CHANGES.jp branches/geeklog-1.5.2-jp/extended/CHANGES.jp Log: Geeklog 1.5.2sr4ベースの日本語版1.2のリリースに関する変更を記録します。 Modified: branches/geeklog-1.5.2-jp/CHANGES.jp ============================================================================== --- branches/geeklog-1.5.2-jp/CHANGES.jp (original) +++ branches/geeklog-1.5.2-jp/CHANGES.jp Sun Jun 28 15:43:50 2009 @@ -2,8 +2,13 @@ 2009-06-29 Takahiro Kambe - * リリース処理: のファイルの作成にpaxコマンドに代えて、tarコマンドを - 使用するようにしました。 + * geeklog-1.5.2sr4-jp-1.2をリリースします。 + + * リリース処理: release_jp.phpの更新のルールが正しく動作していなかっ + たのを修正しました。 + + * リリース処理: リリースのファイルの作成にpaxコマンドに代えて、tar + コマンドを使用するようにしました。 2009-06-28 Takahiro Kambe Modified: branches/geeklog-1.5.2-jp/extended/CHANGES.jp ============================================================================== --- branches/geeklog-1.5.2-jp/extended/CHANGES.jp (original) +++ branches/geeklog-1.5.2-jp/extended/CHANGES.jp Sun Jun 28 15:43:50 2009 @@ -2,8 +2,13 @@ 2009-06-29 Takahiro Kambe - * リリース処理: のファイルの作成にpaxコマンドに代えて、tarコマンドを - 使用するようにしました。 + * geeklog-1.5.2sr4-jp-extended-1.2をリリースします。 + + * リリース処理: release_jp.phpの更新のルールが正しく動作していなかっ + たのを修正しました。 + + * リリース処理: リリースのファイルの作成にpaxコマンドに代えて、tar + コマンドを使用するようにしました。 2009-06-28 Takahiro Kambe From codesite-noreply @ google.com Tue Jun 30 01:37:43 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 16:37:43 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzNSAtIEdMX0pQVkVSU0lPThskQiRyGyhCZ2Vla2xvZy0x?= =?ISO-2022-JP?B?LjUuMnNyNC1qcC0xLjIbJEIkTjpGJWolaiE8JTkkTiQ/JGEhIhsoQjEuMhskQiRLTGEkNyReGyhC?= =?ISO-2022-JP?B?GyRCJDkhIxsoQg==?= Message-ID: <0016e640cdd02af3d0046d7f4f7b@google.com> Author: tacahi Date: Mon Jun 29 07:53:21 2009 New Revision: 1635 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common Log: GL_JPVERSIONをgeeklog-1.5.2sr4-jp-1.2の再リリースのため、1.2に戻します。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile.common (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile.common Mon Jun 29 07:53:21 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.2.99 +GL_JPVERSION= 1.2 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) From codesite-noreply @ google.com Tue Jun 30 01:48:12 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 16:48:12 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzNyAtIBskQjpGJFMhIhsoQkdMX0pQVkVSU0lPThskQiRyGyhC?= =?ISO-2022-JP?B?MS4yLjk5GyRCJEgkNyReJDkhIxsoQg==?= Message-ID: <0016368e1e61a6ca9a046d7f74b1@google.com> Author: tacahi Date: Mon Jun 29 09:09:44 2009 New Revision: 1637 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common Log: 再び、GL_JPVERSIONを1.2.99とします。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile.common ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile.common (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile.common Mon Jun 29 09:09:44 2009 @@ -80,7 +80,7 @@ VERBOSE?= $(FALSE) GL_VERSION= 1.5.2sr4 -GL_JPVERSION= 1.2 +GL_JPVERSION= 1.2.99 ifeq ($(MAKE_EXTENDED), no) GL_RELEASE= geeklog-$(GL_VERSION)-jp-$(GL_JPVERSION) From codesite-noreply @ google.com Tue Jun 30 02:06:17 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:06:17 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTY0MCAtIHVwZGF0ZS1yZWxlYXNlLWpwIBskQiRyGyhCIHJl?= =?ISO-2022-JP?B?bGVhc2UgGyRCPEI5VDt+JEs5VCQmJGgkJiRLJDckRiRfJF4kNyQ/ISMbKEI=?= Message-ID: <0016e6409b34520eee046d7fb5b2@google.com> Author: tacahi Date: Mon Jun 29 09:32:08 2009 New Revision: 1640 Modified: trunk/geeklog-jp/GNUmakefile Log: update-release-jp を release 実行時に行うようにしてみました。 Modified: trunk/geeklog-jp/GNUmakefile ============================================================================== --- trunk/geeklog-jp/GNUmakefile (original) +++ trunk/geeklog-jp/GNUmakefile Mon Jun 29 09:32:08 2009 @@ -26,7 +26,7 @@ install: $(PREINSTALL) install-myfiles install-dirs install-pubdir -release: pre-release install +release: pre-release update-release-jp install cd $(TOPDIR); \ $(MV) $(GLBASE) $(GL_RELEASE); \ $(TAR) -c -f - $(GL_RELEASE) | $(GZIP) -9 > $(GL_RELEASE).tar.gz; \ @@ -40,7 +40,8 @@ :; \ else \ ${MV} release_jp.php.tmp release_jp.php; \ + ${RM} release_jp.php.tmp; \ + exit 1; \ fi; \ - ${RM} release_jp.php.tmp include GNUmakefile.common From codesite-noreply @ google.com Tue Jun 30 02:10:36 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:10:36 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTY0MyAtIBskQiVVJSElJCVrJE5KODt6JSgbKEI=?= =?ISO-2022-JP?B?GyRCJXMlMyE8JUclIyVzJTAkchsoQnV0Zi04GyRCJEskNyReJDckPyEjGyhC?= Message-ID: <0016e643486ac8da59046d7fc413@google.com> Author: tacahi Date: Mon Jun 29 09:53:42 2009 New Revision: 1643 Modified: trunk/geeklog-jp/CHANGES.jp (contents, props changed) Log: ファイルの文字エンコーディングをutf-8にしました。 Subversionの svn:keywords 属性を Id に設定しました。 Modified: trunk/geeklog-jp/CHANGES.jp ============================================================================== --- trunk/geeklog-jp/CHANGES.jp (original) +++ trunk/geeklog-jp/CHANGES.jp Mon Jun 29 09:53:42 2009 @@ -2,6 +2,6 @@ 2009-06-30 Takahiro Kambe - * ????: ?????????????????ĥ????????¸????????CHANGE.jp?? - ????????CHANGES-prev.jp????????????????ξ???????CHANGE.jp?? - ???????????????????????????CHANGES.jp????????????????? + * 共通: 従来の日本語通常版と拡張版それぞれに存在していたCHANGE.jpの + ファイルをCHANGES-prev.jpという名前に変更し、両者に共通のCHANGE.jpを + 新たに作成しました。今後は、このCHANGES.jpに変更箇所を記録します。 From codesite-noreply @ google.com Tue Jun 30 02:14:04 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:14:04 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzNiAtIGJyYW5jaGVzL2dlZWtsb2ctMS41LjItag==?= =?ISO-2022-JP?B?cBskQiRyODUkSyEiGyhCdGFncy9nZWVrbG9nLTEuNS4yc3I0LWpwLTEuMhskQiROJT8lMCRyGyhC?= Message-ID: <001636163dab2e3b5e046d7fd1c3@google.com> Author: tacahi Date: Mon Jun 29 07:56:24 2009 New Revision: 1636 Added: tags/geeklog-1.5.2sr4-jp-1.2/ - copied from r1635, /branches/geeklog-1.5.2-jp/ Log: branches/geeklog-1.5.2-jpを元に、tags/geeklog-1.5.2sr4-jp-1.2のタグを 作成します。 From codesite-noreply @ google.com Tue Jun 30 02:18:15 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:18:15 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTY0MSAtIOW+k+adpeOBruaXpeacrOiqnumAmuW4uA==?= =?UTF-8?B?54mI44Go5ouh5by154mI44Gd44KM44Ge44KM44Gr5a2Y5Zyo44GX44Gm44GE44GfQ0hBTkdFLmpw44Gu?= =?UTF-8?B?44OV77+9Li4u?= Message-ID: <00163630f62b1c00f4046d7fe034@google.com> Author: tacahi Date: Mon Jun 29 09:45:37 2009 New Revision: 1641 Added: trunk/geeklog-jp/CHANGES-prev.jp - copied unchanged from r1628, /trunk/geeklog-jp/CHANGES.jp trunk/geeklog-jp/extended/CHANGES-prev.jp - copied unchanged from r1622, /trunk/geeklog-jp/extended/CHANGES.jp Removed: trunk/geeklog-jp/CHANGES.jp trunk/geeklog-jp/extended/CHANGES.jp Modified: trunk/geeklog-jp/GNUmakefile trunk/geeklog-jp/extended/GNUmakefile Log: 従来の日本語通常版と拡張版それぞれに存在していたCHANGE.jpのファイルを CHANGES-prev.jpという名前に変更します。 今後は、新たに両者に共通のCHANGE.jpを作成して変更を記録します。 Modified: trunk/geeklog-jp/GNUmakefile ============================================================================== --- trunk/geeklog-jp/GNUmakefile (original) +++ trunk/geeklog-jp/GNUmakefile Mon Jun 29 09:45:37 2009 @@ -1,7 +1,8 @@ # -FILES= CHANGES.jp INSTALL db-config.php emailgeeklogstories \ - emailgeeklogstories.en readme readme.ja release_jp.php +FILES= CHANGES.jp CHANGES-prev.jp INSTALL db-config.php \ + emailgeeklogstories emailgeeklogstories.en readme readme.ja \ + release_jp.php DIRS= backups data language logs plugins sql system SUBDIR= custom plugins-jp Modified: trunk/geeklog-jp/extended/GNUmakefile ============================================================================== --- trunk/geeklog-jp/extended/GNUmakefile (original) +++ trunk/geeklog-jp/extended/GNUmakefile Mon Jun 29 09:45:37 2009 @@ -1,7 +1,7 @@ # DIRS= system -FILES= CHANGES.jp +FILES= CHANGES-prev.jp install: install-myfiles install-dirs install-pubdir From codesite-noreply @ google.com Tue Jun 30 02:22:32 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:22:32 +0000 Subject: =?UTF-8?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzOCAtIHRydW5rL2dlZWtsb2ctanAvR05VbWFrZQ==?= =?UTF-8?B?ZmlsZeOBruOAgXVwZGF0ZS1yZWxlYXNlLWpw44K/44O844Ky44OD44OI44Gu5L+u5q2j44KS5Y+N5pig?= =?UTF-8?B?44GX77+9Li4u?= Message-ID: <0016361e84ac76e761046d7fef99@google.com> Author: tacahi Date: Mon Jun 29 09:13:26 2009 New Revision: 1638 Modified: branches/geeklog-1.5.2-jp/GNUmakefile Log: trunk/geeklog-jp/GNUmakefileの、update-release-jpターゲットの修正を反映しま す。 Modified: branches/geeklog-1.5.2-jp/GNUmakefile ============================================================================== --- branches/geeklog-1.5.2-jp/GNUmakefile (original) +++ branches/geeklog-1.5.2-jp/GNUmakefile Mon Jun 29 09:13:26 2009 @@ -34,7 +34,7 @@ $(ZIP) -qr $(GL_RELEASE).zip $(GL_RELEASE) update-release-jp: - @$(SED) -e '/release_no =/s/"(.*)"/$(GL_JPVERSION)/' release_jp.php \ + @$(SED) -e '/release_no =/s/".*"/"$(GL_JPVERSION)"/' release_jp.php \ > release_jp.php.tmp; \ if ${CMP} -s release_jp.php release_jp.php.tmp; then \ :; \ From codesite-noreply @ google.com Tue Jun 30 02:26:47 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:26:47 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzNCAtIBskQiU/JTAkTjpuQC4kSzhtJGobKEI=?= =?ISO-2022-JP?B?GyRCJCwkIiRDJD8kPyRhISIwbEM2Om89fCQ3JF4kOSEjGyhC?= Message-ID: <0016e644de5eaefb19046d7ffee4@google.com> Author: tacahi Date: Mon Jun 29 07:51:09 2009 New Revision: 1634 Removed: tags/geeklog-1.5.2sr4-jp-1.2/ Log: タグの作成に誤りがあったため、一旦削除します。 From codesite-noreply @ google.com Tue Jun 30 02:30:18 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:30:18 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTYzOSAtIEdOVW1ha2VmaWxlLmNvbW1vbhskQiRORmIbKEI=?= =?ISO-2022-JP?B?GyRCTUYkSzF+JDgkRjk5PzckNyReJDckPyEjGyhC?= Message-ID: <0016368e1e6133b9ed046d800b05@google.com> Author: tacahi Date: Mon Jun 29 09:15:05 2009 New Revision: 1639 Modified: branches/geeklog-1.5.2-jp/release_jp.php Log: GNUmakefile.commonの内容に応じて更新しました。 Modified: branches/geeklog-1.5.2-jp/release_jp.php ============================================================================== --- branches/geeklog-1.5.2-jp/release_jp.php (original) +++ branches/geeklog-1.5.2-jp/release_jp.php Mon Jun 29 09:15:05 2009 @@ -1,4 +1,4 @@ From codesite-noreply @ google.com Tue Jun 30 02:34:35 2009 From: codesite-noreply @ google.com (codesite-noreply @ google.com) Date: Mon, 29 Jun 2009 17:34:35 +0000 Subject: =?ISO-2022-JP?B?W2dlZWtsb2ctanAgY29tbWl0XSByMTY0MiAtIBskQkZ8S1w4bERMPm9IRyRIM0gbKEI=?= =?ISO-2022-JP?B?GyRCRCVIRyRLNiZETCRLSlE5OSRyNS1PPyQ5JGsbKEJDSEFOR0UuanAbJEIkcjpuQC4kNxsoQg==?= =?ISO-2022-JP?B?GyRCJEYhIhsoQg==?= Message-ID: <001485f547349308aa046d801a9b@google.com> Author: tacahi Date: Mon Jun 29 09:51:52 2009 New Revision: 1642 Added: trunk/geeklog-jp/CHANGES.jp (contents, props changed) Log: 日本語通常版と拡張版に共通に変更を記録するCHANGE.jpを作成して、 CHANGES.jpに関連した変更を記録しました。 Added: trunk/geeklog-jp/CHANGES.jp ============================================================================== --- (empty file) +++ trunk/geeklog-jp/CHANGES.jp Mon Jun 29 09:51:52 2009 @@ -0,0 +1,7 @@ +$Id$ + +2009-06-30 Takahiro Kambe + + * ????: ?????????????????ĥ????????¸????????CHANGE.jp?? + ????????CHANGES-prev.jp????????????????ξ???????CHANGE.jp?? + ???????????????????????????CHANGES.jp?????????????????