comoblog-commit Mailing List for CoMoblog Mobile Blog Application (Page 22)
Status: Inactive
Brought to you by:
markwallis
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(49) |
Oct
(127) |
Nov
(211) |
Dec
(56) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(51) |
Feb
(128) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
(2) |
Aug
(24) |
Sep
|
Oct
(151) |
Nov
(9) |
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
(17) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: iamdecal <iam...@us...> - 2005-11-28 10:17:13
|
Update of /cvsroot/comoblog/modules/mod_prevnext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9125/mod_prevnext Log Message: Directory /cvsroot/comoblog/modules/mod_prevnext added to the repository |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 04:39:06
|
Update of /cvsroot/comoblog/modules/mod_postbydate/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034/templates/sidebar Modified Files: mod_postbydate.tpl.htm Log Message: Fix for post linking method in mod_postbydate. Supports both IIS and non-IIS installs now Index: mod_postbydate.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbydate/templates/sidebar/mod_postbydate.tpl.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbydate.tpl.htm 27 Nov 2005 19:58:47 -0000 1.1 +++ mod_postbydate.tpl.htm 28 Nov 2005 04:38:58 -0000 1.2 @@ -3,7 +3,7 @@ <ul>{CFG_POSTBYDATE_TOPLINE} <!-- BEGIN: item --> <li> - <a href="index.php?/{ITEM.posturl}"><strong>{ITEM.monthword} {ITEM.year} ({ITEM.postcount} Posts)</strong></a><br /> + <a href="{ITEM.url}"><strong>{ITEM.monthword} {ITEM.year} ({ITEM.postcount} Posts)</strong></a><br /> </li> <!-- END: item --> </ul> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 04:39:06
|
Update of /cvsroot/comoblog/modules/mod_postbydate/templates/top In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034/templates/top Modified Files: mod_postbydate.tpl.htm Log Message: Fix for post linking method in mod_postbydate. Supports both IIS and non-IIS installs now Index: mod_postbydate.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbydate/templates/top/mod_postbydate.tpl.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbydate.tpl.htm 27 Nov 2005 19:58:47 -0000 1.1 +++ mod_postbydate.tpl.htm 28 Nov 2005 04:38:58 -0000 1.2 @@ -2,7 +2,7 @@ <select name="mod_postbydate" class="topbar_selector" onchange="if(this.value!='nolink') location=this.value;"> <option value="nolink">{CFG_POSTBYDATE_TOPLINE}</option> <!-- BEGIN: item --> - <option value="index.php?/{ITEM.posturl}">{ITEM.monthword} {ITEM.year} ({ITEM.postcount} Posts)</option> + <option value="{ITEM.url}">{ITEM.monthword} {ITEM.year} ({ITEM.postcount} Posts)</option> <!-- END: item --> </select> -<!-- END: main --> \ No newline at end of file +<!-- END: main --> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 04:39:06
|
Update of /cvsroot/comoblog/modules/mod_postbydate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16034 Modified Files: mod_postbydate.php Log Message: Fix for post linking method in mod_postbydate. Supports both IIS and non-IIS installs now Index: mod_postbydate.php =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbydate/mod_postbydate.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbydate.php 27 Nov 2005 19:58:46 -0000 1.1 +++ mod_postbydate.php 28 Nov 2005 04:38:58 -0000 1.2 @@ -9,15 +9,22 @@ if ($postbydate_items) { $mod_postbydate_tpl = new XTemplate (CFG_BASE_PATH.'/modules/mod_postbydate/templates/'.$mod_pos.'/mod_postbydate.tpl.htm'); -if (CFG_POSTBYDATE_TOPLINE) - $mod_postbydate_tpl->assign('CFG_POSTBYDATE_TOPLINE', CFG_POSTBYDATE_TOPLINE ); + if (CFG_POSTBYDATE_TOPLINE) + $mod_postbydate_tpl->assign('CFG_POSTBYDATE_TOPLINE', CFG_POSTBYDATE_TOPLINE ); + if (CFG_USE_PATH_INFO == 'no') + $iisbug = '?'; + else + $iisbug = ''; for ($c = 0; $c < count($postbydate_items); $c++) { if ($c % 2) $tpl->assign('BGCOLOR', '#ffffff'); else $tpl->assign('BGCOLOR', '#efefef'); + + $post_date = $postbydate_items[$c]['posturl']; + $postbydate_items[$c]['url'] = CFG_SITE_URL.'index.php'.$iisbug.'/'.$post_date; $mod_postbydate_tpl->assign('ITEM', $postbydate_items[$c]); $mod_postbydate_tpl->parse('main.item'); @@ -28,4 +35,4 @@ } else $mod_contents = ''; -?> \ No newline at end of file +?> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 04:04:42
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10591/templates/sidebar Modified Files: mod_postbytitle.tpl.htm Log Message: Fix for post linking method in mod_postbytitle. Supports both IIS and non-IIS installs now Index: mod_postbytitle.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbytitle/templates/sidebar/mod_postbytitle.tpl.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbytitle.tpl.htm 27 Nov 2005 21:10:07 -0000 1.1 +++ mod_postbytitle.tpl.htm 28 Nov 2005 04:04:34 -0000 1.2 @@ -3,7 +3,7 @@ <ul>{CFG_POSTBYTITLE_TOPLINE} <!-- BEGIN: item --> <li> - <a href="post.php?/{ITEM.post_id}">{ITEM.post_mail_subject}</a> + <a href="{ITEM.url}">{ITEM.post_mail_subject}</a> </li> <!-- END: item --> </ul> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 04:04:42
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates/top In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10591/templates/top Modified Files: mod_postbytitle.tpl.htm Log Message: Fix for post linking method in mod_postbytitle. Supports both IIS and non-IIS installs now Index: mod_postbytitle.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbytitle/templates/top/mod_postbytitle.tpl.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbytitle.tpl.htm 27 Nov 2005 21:10:08 -0000 1.1 +++ mod_postbytitle.tpl.htm 28 Nov 2005 04:04:34 -0000 1.2 @@ -2,7 +2,7 @@ <select name="mod_postbytitle" class="topbar_selector" onchange="if(this.value!='nolink') location=this.value;"> <option value="nolink">{CFG_POSTBYTITLE_TOPLINE} </option> <!-- BEGIN: item --> - <option {ITEM.is_selected} value="post.php?/{ITEM.post_id}">{ITEM.post_mail_subject}</option> + <option {ITEM.is_selected} value="{ITEM.url}">{ITEM.post_mail_subject}</option> <!-- END: item --> </select> -<!-- END: main --> \ No newline at end of file +<!-- END: main --> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 04:04:42
|
Update of /cvsroot/comoblog/modules/mod_postbytitle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10591 Modified Files: mod_postbytitle.php Log Message: Fix for post linking method in mod_postbytitle. Supports both IIS and non-IIS installs now Index: mod_postbytitle.php =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbytitle/mod_postbytitle.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbytitle.php 27 Nov 2005 21:10:07 -0000 1.1 +++ mod_postbytitle.php 28 Nov 2005 04:04:34 -0000 1.2 @@ -10,16 +10,22 @@ $mod_postbytitle_tpl = new XTemplate (CFG_BASE_PATH.'/modules/mod_postbytitle/templates/'.$mod_pos.'/mod_postbytitle.tpl.htm'); -if (CFG_POSTBYTITLE_TOPLINE) - $mod_postbytitle_tpl->assign('CFG_POSTBYTITLE_TOPLINE', CFG_POSTBYTITLE_TOPLINE ); - + if (CFG_POSTBYTITLE_TOPLINE) + $mod_postbytitle_tpl->assign('CFG_POSTBYTITLE_TOPLINE', CFG_POSTBYTITLE_TOPLINE ); + if (CFG_USE_PATH_INFO == 'no') + $iisbug = '?'; + else + $iisbug = ''; + for ($c = 0; $c < count($postbytitle_items); $c++) { if ($c % 2) $tpl->assign('BGCOLOR', '#ffffff'); else $tpl->assign('BGCOLOR', '#efefef'); - + + $post_id = $postbytitle_items[$c]['post_id']; + $postbytitle_items[$c]['url'] = CFG_SITE_URL.'post.php'.$iisbug.'/'.$post_id; $mod_postbytitle_tpl->assign('ITEM', $postbytitle_items[$c]); $mod_postbytitle_tpl->parse('main.item'); } @@ -29,4 +35,4 @@ } else $mod_contents = ''; -?> \ No newline at end of file +?> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 00:09:48
|
Update of /cvsroot/comoblog/modules/mod_postbydate/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31120 Modified Files: mod_postbydate.xml Log Message: We currently are not escaping quotes correctly - so removing them from description of mod_postbydate for the time being Index: mod_postbydate.xml =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbydate/install/mod_postbydate.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mod_postbydate.xml 27 Nov 2005 23:59:55 -0000 1.2 +++ mod_postbydate.xml 28 Nov 2005 00:09:37 -0000 1.3 @@ -5,7 +5,7 @@ <description>This module builds a select box or list of posts by month, clicking on a link in it takes you to the first date with posts in that month, Its all working for me, but feel free to provide feed back. (and thanks to all of you whole helped test it, it now supports any language via the admin area, see the welsh sql file in the root of this module if your updating -Oh and it really needs its own icon I suppose - but I'm not good at that, I'm open to suggestions </description> +Oh and it really needs its own icon I suppose - but Im not good at that, Im open to suggestions </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> <version>1.0</version> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 00:02:04
|
Update of /cvsroot/comoblog/modules/mod_pingomatic/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28667 Modified Files: mod_pingomatic.xml Log Message: Update of version number for mod_pingomatic - to keep inline with standard Index: mod_pingomatic.xml =================================================================== RCS file: /cvsroot/comoblog/modules/mod_pingomatic/install/mod_pingomatic.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_pingomatic.xml 27 Nov 2005 19:47:10 -0000 1.1 +++ mod_pingomatic.xml 28 Nov 2005 00:01:56 -0000 1.2 @@ -10,7 +10,7 @@ <allowed_pos>not_visible</allowed_pos> <filter_posts>Y</filter_posts> <filter_comments>N</filter_comments> - <version>1</version> + <version>1.0</version> <minimum_supported>1.0</minimum_supported> <certified>1.0</certified> <author>iamdecal (iam...@gm...)</author> @@ -23,4 +23,4 @@ accept_null="N" value="put url here" /> -</module> \ No newline at end of file +</module> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-28 00:00:08
|
Update of /cvsroot/comoblog/modules/mod_postbydate/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27817 Modified Files: mod_postbydate.xml Log Message: Update of version number for mod_postbydate - to keep inline with standard Index: mod_postbydate.xml =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbydate/install/mod_postbydate.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbydate.xml 27 Nov 2005 19:58:47 -0000 1.1 +++ mod_postbydate.xml 27 Nov 2005 23:59:55 -0000 1.2 @@ -8,7 +8,7 @@ Oh and it really needs its own icon I suppose - but I'm not good at that, I'm open to suggestions </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> - <version>1</version> + <version>1.0</version> <minimum_supported>1.0</minimum_supported> <certified>1.0</certified> <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> @@ -176,4 +176,4 @@ /> -</module> \ No newline at end of file +</module> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-27 23:57:56
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27368 Modified Files: mod_postbytitle.xml Log Message: Update of version number for mod_postbytitle - to keep inline with standard Index: mod_postbytitle.xml =================================================================== RCS file: /cvsroot/comoblog/modules/mod_postbytitle/install/mod_postbytitle.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_postbytitle.xml 27 Nov 2005 21:10:07 -0000 1.1 +++ mod_postbytitle.xml 27 Nov 2005 23:57:43 -0000 1.2 @@ -11,10 +11,10 @@ </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> - <version>1</version> - <minimum_supported>1.0</minimum_supported> - <certified>1.0</certified> - <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> + <version>1.0</version> + <minimum_supported>1.0</minimum_supported> + <certified>1.0</certified> + <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> <date>2004-10-15</date> @@ -30,4 +30,4 @@ /> -</module> \ No newline at end of file +</module> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-27 23:54:38
|
Update of /cvsroot/comoblog/modules/mod_randomthumb/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26881 Modified Files: mod_randomthumb.xml Log Message: Update of version number for mod_randomthumb - to keep inline with standard Index: mod_randomthumb.xml =================================================================== RCS file: /cvsroot/comoblog/modules/mod_randomthumb/install/mod_randomthumb.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mod_randomthumb.xml 27 Nov 2005 19:31:21 -0000 1.1 +++ mod_randomthumb.xml 27 Nov 2005 23:54:30 -0000 1.2 @@ -10,8 +10,8 @@ displays a random post image and links to that post </description> <allowed_pos>sidebar</allowed_pos> - <version>1</version> - <minimum_supported>1.0</minimum_supported> + <version>1.0</version> + <minimum_supported>1.0</minimum_supported> <certified> 1.0 </certified> @@ -129,4 +129,4 @@ /> -</module> \ No newline at end of file +</module> |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:10:19
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24295/mod_postbytitle/install Added Files: mod_postbytitle.xml Log Message: initial add, just to make sure ive got the hang of it. mod_postbytitle,builds a select box or list of posts by title clicking on a link in it takes you to the post --- NEW FILE: mod_postbytitle.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <name> mod_postbytitle </name> <description> builds a select box or list of posts by title in descending date order </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> <version>1</version> <minimum_supported>1.0</minimum_supported> <certified>1.0</certified> <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> <date>2004-10-15</date> <param name="CFG_POSTBYTITLE_TOPLINE" description="The Top line of text in the drop down or header of the list item" type="text" accept_null="N" encrypt="N" restricted_values="" editable="Y" value="Posts By Title" /> </module> |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:10:18
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24295/mod_postbytitle/img Added Files: mod_postbytitle.gif mod_postbytitle_big.gif Log Message: initial add, just to make sure ive got the hang of it. mod_postbytitle,builds a select box or list of posts by title clicking on a link in it takes you to the post --- NEW FILE: mod_postbytitle_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mod_postbytitle.gif --- (This appears to be a binary file; contents omitted.) |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:10:18
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24295/mod_postbytitle/include Added Files: mod_postbytitle.inc.php Log Message: initial add, just to make sure ive got the hang of it. mod_postbytitle,builds a select box or list of posts by title clicking on a link in it takes you to the post --- NEW FILE: mod_postbytitle.inc.php --- <?php function mod_postbytitle_list () { $post_id = ''; if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] != '/') $post_id = substr($_SERVER['PATH_INFO'],1,strlen($_SERVER['PATH_INFO'])-1); # echo $post_id; $query = "select * from ".CFG_MYSQL_TABPREFIX."posts order by post_mail_date desc "; $res = mysql_query($query); if (!$res || !mysql_num_rows($res)) return (false); $items = array(); while ($row = mysql_fetch_assoc($res)) { $row['is_selected'] =""; if ($row['post_id'] == $post_id){ $row['is_selected'] ="SELECTED";} #echo $row['post_id'] ." - " . $row['is_selected'] . "<br>"; $items[] = $row; } return ($items); } ?> |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:10:18
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24295/mod_postbytitle/templates/sidebar Added Files: mod_postbytitle.tpl.htm Log Message: initial add, just to make sure ive got the hang of it. mod_postbytitle,builds a select box or list of posts by title clicking on a link in it takes you to the post --- NEW FILE: mod_postbytitle.tpl.htm --- <!-- BEGIN: main --> <div id="mod_postbytitle"> <ul>{CFG_POSTBYTITLE_TOPLINE} <!-- BEGIN: item --> <li> <a href="post.php?/{ITEM.post_id}">{ITEM.post_mail_subject}</a> </li> <!-- END: item --> </ul> </div> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:10:16
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates/top In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24295/mod_postbytitle/templates/top Added Files: mod_postbytitle.tpl.htm Log Message: initial add, just to make sure ive got the hang of it. mod_postbytitle,builds a select box or list of posts by title clicking on a link in it takes you to the post --- NEW FILE: mod_postbytitle.tpl.htm --- <!-- BEGIN: main --> <select name="mod_postbytitle" class="topbar_selector" onchange="if(this.value!='nolink') location=this.value;"> <option value="nolink">{CFG_POSTBYTITLE_TOPLINE} </option> <!-- BEGIN: item --> <option {ITEM.is_selected} value="post.php?/{ITEM.post_id}">{ITEM.post_mail_subject}</option> <!-- END: item --> </select> <!-- END: main --> |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:10:15
|
Update of /cvsroot/comoblog/modules/mod_postbytitle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24295/mod_postbytitle Added Files: index.php mod_postbytitle.php Log Message: initial add, just to make sure ive got the hang of it. mod_postbytitle,builds a select box or list of posts by title clicking on a link in it takes you to the post --- NEW FILE: mod_postbytitle.php --- <?php if (in_array('mod_postbytitle', $SIDEBAR_MODULES)) $mod_pos = 'sidebar'; else $mod_pos = 'top'; require_once (CFG_BASE_PATH.'/modules/mod_postbytitle/include/mod_postbytitle.inc.php'); $postbytitle_items = mod_postbytitle_list(); if ($postbytitle_items) { $mod_postbytitle_tpl = new XTemplate (CFG_BASE_PATH.'/modules/mod_postbytitle/templates/'.$mod_pos.'/mod_postbytitle.tpl.htm'); if (CFG_POSTBYTITLE_TOPLINE) $mod_postbytitle_tpl->assign('CFG_POSTBYTITLE_TOPLINE', CFG_POSTBYTITLE_TOPLINE ); for ($c = 0; $c < count($postbytitle_items); $c++) { if ($c % 2) $tpl->assign('BGCOLOR', '#ffffff'); else $tpl->assign('BGCOLOR', '#efefef'); $mod_postbytitle_tpl->assign('ITEM', $postbytitle_items[$c]); $mod_postbytitle_tpl->parse('main.item'); } $mod_postbytitle_tpl->parse('main'); $mod_contents = $mod_postbytitle_tpl->text("main"); } else $mod_contents = ''; ?> --- NEW FILE: index.php --- |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:09:03
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates/sidebar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24088/sidebar Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle/templates/sidebar added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:09:03
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates/top In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24088/top Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle/templates/top added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:07:22
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23806/include Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle/include added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:07:22
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23806/install Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle/install added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:07:22
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23806/img Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle/img added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:07:22
|
Update of /cvsroot/comoblog/modules/mod_postbytitle/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23806/templates Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle/templates added to the repository |
|
From: iamdecal <iam...@us...> - 2005-11-27 21:07:03
|
Update of /cvsroot/comoblog/modules/mod_postbytitle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23749/mod_postbytitle Log Message: Directory /cvsroot/comoblog/modules/mod_postbytitle added to the repository |