comoblog-commit Mailing List for CoMoblog Mobile Blog Application (Page 32)
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: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 03:06:05
|
Update of /cvsroot/comoblog/comoblog/_install/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv670/_install/templates Modified Files: install.tpl.htm Log Message: Bug: 1280322 - Updated the doco for the GD library requirement Index: install.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/templates/install.tpl.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- install.tpl.htm 2 Sep 2005 01:06:14 -0000 1.2 +++ install.tpl.htm 4 Oct 2005 03:05:57 -0000 1.3 @@ -33,6 +33,7 @@ - img/topics<br /><br /> <i>* you can change permissions with the FTP client you used to upload CoMoblog (find the CHMOD function and set permissions to 777)</i> </li> + <li>if you wish CoMoblog to auto-resize large images you need the GD library compiled into your PHP</li> </ol> </p> @@ -63,4 +64,4 @@ </table> {FILE "templates/footer.tpl.htm"} -<!-- END: main --> \ No newline at end of file +<!-- END: main --> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 03:06:05
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv670/_install Modified Files: comoblog_preferences.xml Log Message: Bug: 1280322 - Updated the doco for the GD library requirement Index: comoblog_preferences.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/comoblog_preferences.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- comoblog_preferences.xml 4 Oct 2005 00:29:15 -0000 1.5 +++ comoblog_preferences.xml 4 Oct 2005 03:05:57 -0000 1.6 @@ -174,7 +174,7 @@ <param name="CFG_IMG_MAX_W" value="400" - description="Max width (in pixels) for post images" + description="Max width (in pixels) for post images (requires GD library)" topic_id="10" encrypt="N" type="text" @@ -187,7 +187,7 @@ <param name="CFG_IMG_MAX_H" value="300" - description="Max height (in pixels) for post images" + description="Max height (in pixels) for post images (requires GD library)" topic_id="10" encrypt="N" type="text" |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 03:06:05
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv670/docs Modified Files: CHANGELOG Log Message: Bug: 1280322 - Updated the doco for the GD library requirement Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- CHANGELOG 4 Oct 2005 00:59:46 -0000 1.7 +++ CHANGELOG 4 Oct 2005 03:05:57 -0000 1.8 @@ -8,6 +8,7 @@ * Disable POP3 APOP authentication by default (1280278) * Background images now displaying (1280325) * Trackback pings now work (1280323) - +* Updated documentation requirements around the GD library (1280322) + ______________________________________________________________________ END OF CHANGELOG FILE |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 01:00:19
|
Update of /cvsroot/comoblog/comoblog In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9215 Modified Files: trackback.php Log Message: Bug: 1280323 - Error storing track-back pings Index: trackback.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/trackback.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- trackback.php 16 Aug 2005 05:49:43 -0000 1.1.1.1 +++ trackback.php 4 Oct 2005 00:59:46 -0000 1.2 @@ -40,9 +40,9 @@ $trackback['trackback_excerpt'] = $_POST['excerpt']; $trackback['trackback_url'] = $_POST['url']; $trackback['trackback_blog_name'] = $_POST['blog_name']; - + $trackback['post_id'] = $post_id; $trackback_id = trackback_ping_add($trackback); - + // send response if (!$trackback_id) { // ko trackback_response('ko','server error: your ping could not be registered. please try again'); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 01:00:18
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9215/docs Modified Files: CHANGELOG Log Message: Bug: 1280323 - Error storing track-back pings Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- CHANGELOG 4 Oct 2005 00:38:47 -0000 1.6 +++ CHANGELOG 4 Oct 2005 00:59:46 -0000 1.7 @@ -7,6 +7,7 @@ * More informational error messages during MYSQL setup (1280250) * Disable POP3 APOP authentication by default (1280278) * Background images now displaying (1280325) +* Trackback pings now work (1280323) ______________________________________________________________________ END OF CHANGELOG FILE |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 00:38:58
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5963 Modified Files: CHANGELOG Added Files: BRANCH Log Message: Changelog update and addition of BRANCH file --- NEW FILE: BRANCH --- +--------------------------------------------------------------------+ | BRANCH DETAILS FILE FOR COMOBLOG | +--------------------------------------------------------------------+ The CoMoblog project is a branch from the Easymoblog project. The original Easymoblog project was developed by Umberto Caldera and can be found at http://www.easymoblog.org All credit for the original project goes to Easymoblog and Umberto. We have taken Easymoblog at version 0.5.1 and branched it into the Comoblog project. This was done due to the stagnation of the development of Easymoblog and the inability for anyone to gain access to the SourceForge project it was being hosted on. We hope that through this branch we will be able to continue the development of this excellent product. ______________________________________________________________________ END OF THANKS FILE Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- CHANGELOG 2 Sep 2005 13:00:47 -0000 1.5 +++ CHANGELOG 4 Oct 2005 00:38:47 -0000 1.6 @@ -6,6 +6,7 @@ * More informational error messages during MYSQL setup (1280250) * Disable POP3 APOP authentication by default (1280278) +* Background images now displaying (1280325) ______________________________________________________________________ END OF CHANGELOG FILE |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 00:29:23
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3896/_install Modified Files: comoblog_preferences.xml Log Message: Bug: 1280325 - Background image not displaying. Rolling of Easymoblog patch provided by Wolfgang Luttner Index: comoblog_preferences.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/comoblog_preferences.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- comoblog_preferences.xml 2 Sep 2005 12:57:38 -0000 1.4 +++ comoblog_preferences.xml 4 Oct 2005 00:29:15 -0000 1.5 @@ -377,7 +377,7 @@ restrict_values="" accept_null="N" editable="Y" - display_order="" + display_order="1" /> <param @@ -481,8 +481,21 @@ restrict_values="" accept_null="Y" editable="Y" - display_order="" + display_order="3" /> + + <param + name="CFG_BG_IMG_REPEAT" + value="repeat" + description="Repeat of background image" + topic_id="14" + encrypt="N" + type="select" + restrict_values="repeat|repeat-x|repeat-y|no-repeat" + accept_null="N" + editable="Y" + display_order="4" + /> <param name="CFG_LOGO_IMG" @@ -520,7 +533,7 @@ restrict_values="4" accept_null="N" editable="Y" - display_order="" + display_order="2" /> <param |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-04 00:29:23
|
Update of /cvsroot/comoblog/comoblog/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3896/css Modified Files: comoblog.css.php Log Message: Bug: 1280325 - Background image not displaying. Rolling of Easymoblog patch provided by Wolfgang Luttner Index: comoblog.css.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/css/comoblog.css.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- comoblog.css.php 2 Sep 2005 02:35:30 -0000 1.2 +++ comoblog.css.php 4 Oct 2005 00:29:13 -0000 1.3 @@ -23,6 +23,8 @@ echo ' body { background: #'.CFG_BODY_BGCOLOR.'; + background-image:url("../img/comoblog/'.CFG_BG_IMG.'"); + background-repeat:'.CFG_BG_IMG_REPEAT.'; } #header { |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 13:00:55
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8146 Modified Files: CHANGELOG Log Message: 1280278: APOP support Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- CHANGELOG 2 Sep 2005 03:41:57 -0000 1.4 +++ CHANGELOG 2 Sep 2005 13:00:47 -0000 1.5 @@ -5,7 +5,7 @@ following additions. * More informational error messages during MYSQL setup (1280250) - +* Disable POP3 APOP authentication by default (1280278) ______________________________________________________________________ END OF CHANGELOG FILE |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 12:58:04
|
Update of /cvsroot/comoblog/comoblog/_install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7359 Modified Files: comoblog_preferences.xml Log Message: DB change for APOP Index: comoblog_preferences.xml =================================================================== RCS file: /cvsroot/comoblog/comoblog/_install/comoblog_preferences.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- comoblog_preferences.xml 2 Sep 2005 01:46:35 -0000 1.3 +++ comoblog_preferences.xml 2 Sep 2005 12:57:38 -0000 1.4 @@ -222,7 +222,20 @@ editable="Y" display_order="0" /> - + + <param + name="CFG_MAIL_APOP" + value="no" + description="POP3 enable APOP protocol" + topic_id="4" + encrypt="M" + type="select" + restrict_values="no|yes" + accept_null="N" + editable="Y" + display_order="4" + /> + <param name="CFG_MAIL_USER" value="" |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 12:54:04
|
Update of /cvsroot/comoblog/comoblog/batch In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6623 Modified Files: comoblog_batch.php Log Message: 1280278: optionally enable apop auth Index: comoblog_batch.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/batch/comoblog_batch.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- comoblog_batch.php 2 Sep 2005 02:35:30 -0000 1.2 +++ comoblog_batch.php 2 Sep 2005 12:53:56 -0000 1.3 @@ -180,8 +180,13 @@ } // pop3 connection and log-in $pop3 =& new Net_POP3(); + + $apop = 0; + if (CFG_MAIL_APOP == "yes") + $apop = 1; + $pop3->connect(CFG_MAIL_POP, 110); - $pop3->login(CFG_MAIL_USER, CFG_MAIL_PW); + $pop3->login(CFG_MAIL_USER, CFG_MAIL_PW, $apop); $howmany_msg = $pop3->numMsg(); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 12:30:53
|
Update of /cvsroot/comoblog/comoblog/docs/upgrades In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2358/upgrades Added Files: easymoblog-0.5.1_to_comoblog-0.1.sql Log Message: Addition of Upgrade Instructions --- NEW FILE: easymoblog-0.5.1_to_comoblog-0.1.sql --- insert into comoblog_preferences (pref_name, pref_value, pref_description, pref_topic_id, pref_encrypt, pref_type, pref_restrict_values, pref_accept_null, pref_editable, pref_display_order, mod_name) VALUES ('CFG_MAIL_APOP', 'no', 'POP3 enable APOP protocol', 4, 'N', 'select', 'no|yes', 'N', 'Y', 4, ''); |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 12:30:53
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2358 Added Files: UPGRADE Log Message: Addition of Upgrade Instructions --- NEW FILE: UPGRADE --- +--------------------------------------------------------------------+ | UPGRADE INSTRUCTIONS FOR COMOBLOG | +--------------------------------------------------------------------+ Wherever possible we will attempt to provide upgrade instructions from previous releases of this software. Upgrades will always be in between single revisions, so if you are upgrading more than one step please follow each upgrade step in order to reach your final destination. Upgrade: Easymoblog 0.5.1 -> Comoblog 0.1 1. Make a backup of your database and comoblog/ folder 2. Extract the new release tar.gz file overtop of your existing /comoblog folder 3. Login to MySql as your comoblog SQL user and run the following script: docs/upgrades/easymoblog-0.5.1_to_comoblog-0.1.sql ______________________________________________________________________ END OF UPGRADE FILE |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 12:29:53
|
Update of /cvsroot/comoblog/comoblog/docs/upgrades In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2076/upgrades Log Message: Directory /cvsroot/comoblog/comoblog/docs/upgrades added to the repository |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 05:45:57
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24595 Modified Files: MODULES Log Message: Modules doco update Index: MODULES =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/MODULES,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- MODULES 2 Sep 2005 02:35:30 -0000 1.3 +++ MODULES 2 Sep 2005 05:45:48 -0000 1.4 @@ -98,9 +98,8 @@ 10) FILTER MODULES: - Starting from CoMoblog 0.5 you can develop special modules, - called "filter modules". These modules act as filters on posts - and/or comments before their values are stored in the database. + These modules act as filters on posts and/or comments before + their values are stored in the database. For example, if you want to make a module to make posts subjects uppercased, you need to create a mod_uppercase_subject module, |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 03:42:06
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15562 Modified Files: CHANGELOG Log Message: Changelog update Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- CHANGELOG 2 Sep 2005 02:35:30 -0000 1.3 +++ CHANGELOG 2 Sep 2005 03:41:57 -0000 1.4 @@ -4,7 +4,7 @@ Initial Release. Based on the Easymoblog 0.5.1 release with the following additions. -* More informational error messages during MYSQL setup (xxxxxxx) +* More informational error messages during MYSQL setup (1280250) ______________________________________________________________________ |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:49:53
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7757/docs Modified Files: THANKS Log Message: Updated Index: THANKS =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/THANKS,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- THANKS 2 Sep 2005 02:35:30 -0000 1.1 +++ THANKS 2 Sep 2005 02:49:45 -0000 1.2 @@ -12,6 +12,12 @@ hope that we can take your original work and continue to see it develop well into the future. +And then, the original EasyMoblog Team + +* Odd Nydren - Beta testing, graphic design, Flash development + +* Giampaolo "Giamas" - EasyMoblog modules development + And then, * Mark Wallis - Project Leader for the CoMoblog project |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:39:58
|
Update of /cvsroot/comoblog/comoblog/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv468 Added Files: comoblogo.gif Removed Files: easymoblogo.gif Log Message: Logo filename change --- NEW FILE: comoblogo.gif --- (This appears to be a binary file; contents omitted.) --- easymoblogo.gif DELETED --- |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:39
|
Update of /cvsroot/comoblog/comoblog/modules/mod_unky In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426/modules/mod_unky Modified Files: readme.txt Log Message: Mass name updates Index: readme.txt =================================================================== RCS file: /cvsroot/comoblog/comoblog/modules/mod_unky/readme.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- readme.txt 2 Sep 2005 01:06:16 -0000 1.2 +++ readme.txt 2 Sep 2005 02:35:30 -0000 1.3 @@ -17,9 +17,9 @@ At Manage Modules you can now activate the modul as usual. -Thanx to Umberto 'ubik' Caldera for the great work with CoMoblog! +Thanx to Umberto 'ubik' Caldera for the great work with EasyMoblog! best regards, Frank aka Mudhenn (http://mud.vienna360.net) -The Images used in the Module are property an (c) by www.unkymoods.com. \ No newline at end of file +The Images used in the Module are property an (c) by www.unkymoods.com. |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:39
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426/docs Modified Files: CHANGELOG INSTALL LICENSE MODULES Added Files: THANKS Removed Files: CONTRIBUTORS Log Message: Mass name updates Index: LICENSE =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- LICENSE 2 Sep 2005 01:06:15 -0000 1.2 +++ LICENSE 2 Sep 2005 02:35:30 -0000 1.3 @@ -1,10 +1,10 @@ +--------------------------------------------------------------------+ -| EASYMOBLOG LICENSE | +| COMOBLOG LICENSE | +--------------------------------------------------------------------+ CoMoblog - an automated and configurable mail2web blog - Copyright (C) 2003 - 2004 Umberto Caldera + Copyright (C) 2005 CoMoblog Development Community This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as --- CONTRIBUTORS DELETED --- Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- CHANGELOG 2 Sep 2005 01:06:15 -0000 1.2 +++ CHANGELOG 2 Sep 2005 02:35:30 -0000 1.3 @@ -1,220 +1,11 @@ -CoMoblog 0.5.1, 2004-05-10 ----------------------------- - -FIXED the following bugs: - -- Thumbnails errors: - - a SQL query error in /post.php was fixed - - a SQL query error in /index.php was fixed - - No more errors if max width or max height are not specified - (thumbnails are not created) - - Default value (300px) is now specified for CFG_IMG_MAX_W - parameter - - thumbnails now work fine on permalink pages - -- Filter inclusion in batch script now use "include" instead of - "include_once" (this allows to execute the filter on more than one - message) - -- Last posts are now correctly shown in home page - -- Added /admin/del_topic.php (the file was missing in the last - CoMoblog package released) - -- Added "error_reporting (E_ALL ^ E_NOTICE);" in /include/config.php - in order to hide PHP notice messages in HTML output - -- Post delete function fixed (comments were not deleted in previous - version) - -- Editing an existing post now doesn't affect the post date - -- A SQL query error in /admin/post_edit.php was fixed - -- The mod_batch plug-in now correctly updates CFG_LAST_BATCH - value (current timestamp) when it is executed - - - - - - - - -CoMoblog 0.5, 2004-04-14 --------------------------- - -- Large images sent with posts are now auto-resized, according to - user 's preferences - -- HTML templates now validate as valid XHTML 1.0 Transitional - Blog pages are more accessible (tested on text-only browsers and - mobile phones) - -- Page layout is now controlled by pure CSS: it is possible to modify - blog appearance by editing only one CSS file. External modules can - now use their own CSS (they are imported by the main style sheet) - -- Topics: it is now possible to click on a topic icon to display all - posts in selected topics - -- Added "add post" function in the Admin Area, in oreder to let users - create new posts filling a simple Web form - -- Added support for "filter modules" (post filters and comment - filters): these plug-ins are executed before storing a post or a - comment in the database, allowing to modify contents according to - the plug-in (see MODULES for details) - -- Admin Area was redesigned to improve usability - -- Added a Flash "Colour picker" in the Admin Area, to help users - choose colours from a user-friendly palette - -- Added a "Font picker" window in the Admin Area, to help users - choose fonts from a user-friendly list - -- Added the CFG_MYSQL_TABPREFIX parameter, in order to allow users to - have two or more blogs using only one database (users can set the - table prefix during installation process) - -- a problem with images sent using Sony Ericsson devices was solved - modifying the mimeDecode Pear library - -- installation files moved to XML (in order to make future development - easier and allow to upgrade to future releases without losing blog - contents and preferences) - -- Javascript bugs in the Admin Area fixed - -- a lot of bug fixes and improvements :) - visit http://comoblog.ubiks.it/comoblog/ for more details - - - - - - - - -CoMoblog 0.4.1, 2004-02-21 +CoMoblog 0.1, 2005-09 ---------------------------- -- batch script and mod_batch debugged (in previous releases there - were problems with pop3 disconnection, so messages were not posted - correctly) - -- added support for Microsoft IIS web server - -- fixed inclusion path in Pear libraries included in CoMoblog - package - -- improvements in the main css - -- minor bugs fixed - - - - - - - - -CoMoblog 0.4 --------------- - -This is a completely new version! Future development starts here! - -Major new features: - -- plug-in supports: it is now possible to add new modules to your - blg, a compete API makes new modules development very easy. - Modules are avaliable in separate download files - -- web based installation: when you start your CoMoblog for the - first time, you will set it up thrugh a web interface (it's no - more necessary to edit files to install CoMoblog) - -- topics support: posts can be categorized in different topics - using keywords in message subject - -- trackback enabled: now your posts can receive trackback pings - -- RSS feed generation: CoMoblog provides RSS feeds (RSS 1.0 and - RSS 2.0) - -- better personalisation: it is now easier to personalize your blog, - and there are many more parameters to configure blog functions, - aspect, texts, security - -- better support for html messages - -- better usability in Admin Area - -- language support - - - - - - - - -CoMoblog 0.3rc2, 2003-10-25 ------------------------------ - -- better anti-spam measures (mail addresses are obscured, but - mailto: links now work thanks to a little javascript) - -- better cleaning of html messages - - - - - - - - -CoMoblog 0.3rc1, 2003-10-09 ------------------------------ - -- added support for html messages (only tested with messages composed - in Mozilla Mail) - -- added support for multiple attached images - -- added security feature: restricion based on From header - -- better batch script (some sort of output for log purpose) - -- mail addresses published on the blog are now obfuscated to prevent - spam bots - - - - - - - - -CoMoblog 0.2, 2003-09-08 --------------------------- - -- many bug fixes :) - - - - - - - - -CoMoblog 0.1, 2003-09-05 --------------------------- - -- initial release (beta) - just forget this release :) +Initial Release. Based on the Easymoblog 0.5.1 release with the +following additions. +* More informational error messages during MYSQL setup (xxxxxxx) ______________________________________________________________________ - END OF CHANGELOG FILE \ No newline at end of file + END OF CHANGELOG FILE Index: MODULES =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/MODULES,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- MODULES 2 Sep 2005 01:06:15 -0000 1.2 +++ MODULES 2 Sep 2005 02:35:30 -0000 1.3 @@ -1,5 +1,5 @@ +--------------------------------------------------------------------+ -| HOW TO DEVELOP NEW MODULES FOR EASYMOBLOG | +| HOW TO DEVELOP NEW MODULES FOR COMOBLOG | +--------------------------------------------------------------------+ @@ -137,4 +137,4 @@ ______________________________________________________________________ - END OF MODULES FILE \ No newline at end of file + END OF MODULES FILE --- NEW FILE: THANKS --- +--------------------------------------------------------------------+ | THANKS FILE FOR COMOBLOG | +--------------------------------------------------------------------+ The CoMoblog Development Community would like to thank the following people. First and foremost, * Umberto Caldera - Thank you so much for Easymoblog. Sorry to see that you have had no time to work on it of late. We hope that we can take your original work and continue to see it develop well into the future. And then, * Mark Wallis - Project Leader for the CoMoblog project And of course, * All the BETA testers who helped us get our first release out and stable. ______________________________________________________________________ END OF THANKS FILE Index: INSTALL =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- INSTALL 2 Sep 2005 01:06:15 -0000 1.2 +++ INSTALL 2 Sep 2005 02:35:30 -0000 1.3 @@ -16,8 +16,6 @@ - PHP >= 4.2 - MySQL >= 3.23 - Please report conflicts with other configurations to: - ubik [at] ubiks [dot] it 2. POP3 MAILBOX @@ -38,7 +36,7 @@ | INSTALLATION | +--------------------------------------------------------------------+ -1. DOWNLOAD EASYMOBLOG +1. DOWNLOAD COMOBLOG You can obtain the latest CoMoblog release from: http://comoblog.sourceforge.net/ @@ -130,7 +128,7 @@ +--------------------------------------------------------------------+ -| RUNNING EASYMOBLOG | +| RUNNING COMOBLOG | +--------------------------------------------------------------------+ Just go to http://<url_of_your_comoblog_site>/ to see your @@ -152,7 +150,7 @@ +--------------------------------------------------------------------+ -| CUSTOMIZING YOUR EASYMOBLOG SITE | +| CUSTOMIZING YOUR COMOBLOG SITE | +--------------------------------------------------------------------+ You can customize your CoMoblog site just editing parameters @@ -180,17 +178,7 @@ -+--------------------------------------------------------------------+ -| CONTACTS | -+--------------------------------------------------------------------+ - - You can contact the author of this software to send your comments, - feature requests ecc. just sending an email to: - - - ubik [at] ubiks [dot] it - - - + +--------------------------------------------------------------------+ | FUTURE RELEASES | @@ -202,14 +190,10 @@ Just go to http://comoblog.sourceforge.net/ and fill in the form with your e-mail address. - You can also visit the "CoMoblog MetaBlog" if you want to be - follow daily CoMoblog development: - http://comoblog.ubiks.it/comoblog/ - ______________________________________________________________________ - END OF INSTALL FILE \ No newline at end of file + END OF INSTALL FILE |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:39
|
Update of /cvsroot/comoblog/comoblog/admin/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426/admin/templates Modified Files: manage_posts.tpl.htm Log Message: Mass name updates Index: manage_posts.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/templates/manage_posts.tpl.htm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- manage_posts.tpl.htm 16 Aug 2005 05:49:45 -0000 1.1.1.1 +++ manage_posts.tpl.htm 2 Sep 2005 02:35:30 -0000 1.2 @@ -30,7 +30,7 @@ <td class="bigger"><br /><b>No posts in your blog</b><br /> </td> </tr> <tr> - <td>If you want to add a new post to your EasyMoblo site, just write an email message to the account you specified during Installation process.<br />Contents of the email message will be published.<br /> </td> + <td>If you want to add a new post to your CoMoblog site, just write an email message to the account you specified during Installation process.<br />Contents of the email message will be published.<br /> </td> </tr> </table> <!-- END: no_posts --> |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:39
|
Update of /cvsroot/comoblog/comoblog/batch In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426/batch Modified Files: comoblog_batch.php Log Message: Mass name updates Index: comoblog_batch.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/batch/comoblog_batch.php,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- comoblog_batch.php 2 Sep 2005 01:34:48 -0000 1.1 +++ comoblog_batch.php 2 Sep 2005 02:35:30 -0000 1.2 @@ -175,7 +175,7 @@ $date = getdate(time()); if ($BATCH_LOG) { echo "------------------------------------------------------------\n"; - echo " EasyMoblog ".CFG_VERSION." batch - ".$date['year']."-".$date['mon']."-".$date['mday']." ".$date['hours'].":".$date['minutes'].":".$date['seconds']."\n"; + echo " CoMoblog ".CFG_VERSION." batch - ".$date['year']."-".$date['mon']."-".$date['mday']." ".$date['hours'].":".$date['minutes'].":".$date['seconds']."\n"; echo "------------------------------------------------------------\n"; } // pop3 connection and log-in |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:38
|
Update of /cvsroot/comoblog/comoblog/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426/include Modified Files: xtemplate.inc.php Log Message: Mass name updates Index: xtemplate.inc.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/include/xtemplate.inc.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- xtemplate.inc.php 2 Sep 2005 01:06:15 -0000 1.2 +++ xtemplate.inc.php 2 Sep 2005 02:35:30 -0000 1.3 @@ -94,7 +94,7 @@ if (CFG_TITLE != '' && CFG_SHOW_TITLE == 'yes') $this->parse('main.title'); if (CFG_LOGO_IMG != '') $this->parse('main.logo'); if (CFG_INTRO_TEXT != '' && ($parse_intro)) $this->parse('main.intro'); - if (CFG_DISPLAY_EASYMOBLOGO == 'yes') $this->parse('main.comoblogo'); + if (CFG_DISPLAY_COMOBLOGO == 'yes') $this->parse('main.comoblogo'); /* end default values ----------------------------------------------------*/ |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:38
|
Update of /cvsroot/comoblog/comoblog/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426/templates Modified Files: header.tpl.htm Log Message: Mass name updates Index: header.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/templates/header.tpl.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- header.tpl.htm 2 Sep 2005 01:06:16 -0000 1.2 +++ header.tpl.htm 2 Sep 2005 02:35:30 -0000 1.3 @@ -4,8 +4,8 @@ <head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1" /> <title>{TITLE}</title> - <meta name="author" content="Umberto Caldera - ubik [at] ubiks [dot] it" /> - <meta name="copyright" content="Copyright (c) 2004 Umberto Caldera " /> + <meta name="author" content="Comoblog Dev Community - http://comoblog.sf.net" /> + <meta name="copyright" content="Copyright (c) 2005 Comoblog Dev Community " /> <meta name="description" content="" /> <meta name="keywords" content="" /> <link rel="stylesheet" type="text/css" href="{SITE_URL}css/comoblog.css.php" /> @@ -16,7 +16,7 @@ <!-- ************************************************************************** - POWERED BY EASYMOBLOG {VERSION} + POWERED BY COMOBLOG {VERSION} http://comoblog.sourceforge.net/ @@ -24,7 +24,7 @@ Contents of this site are generated using CoMoblog, an open source platform for blogs and moblogs. - CoMoblog is (c) Umberto Caldera - ubik [at] ubiks [dot] it + CoMoblog is (c) CoMoblog Development Community - http://comoblog.sf.net CoMoblog is FREE software; you can redistribute it and/or modify it under the terms of the GNU General Public License |
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-09-02 02:35:38
|
Update of /cvsroot/comoblog/comoblog In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29426 Modified Files: README copyright.htm Log Message: Mass name updates Index: README =================================================================== RCS file: /cvsroot/comoblog/comoblog/README,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- README 2 Sep 2005 01:06:14 -0000 1.2 +++ README 2 Sep 2005 02:35:30 -0000 1.3 @@ -11,11 +11,7 @@ - GPL Complete text of the GNU General Public License -- CONTRIBUTE - How you can contribute to CoMoblog project, or just contact - the CoMoblog team - -- CONTRIBUTORS +- THANKS People who contributed to CoMoblog development - MODULES @@ -25,7 +21,8 @@ - CHANGELOG CoMoblog versions change log - +- BRANCH + Details on our branch from the Easymoblog project For further info, please visit @@ -34,4 +31,4 @@ ______________________________________________________________________ - END OF README FILE \ No newline at end of file + END OF README FILE Index: copyright.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/copyright.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- copyright.htm 2 Sep 2005 01:06:14 -0000 1.2 +++ copyright.htm 2 Sep 2005 02:35:30 -0000 1.3 @@ -2,7 +2,7 @@ <html> <head> - <title>CoMoblog - (c) 2003 - 2004 Umberto Caldera</title> + <title>CoMoblog - (c) 2005 CoMoblog Development Community</title> </head> <body bgcolor="#ffffff"> @@ -11,7 +11,7 @@ CoMoblog - an automated mail2web blog -Copyright (C) 2003 - 2004 Umberto Caldera - ubik at ubiks dot it +Copyright (C) 2005 CoMoblog Development Community - http://comoblog.sf.net This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by |