summaryrefslogtreecommitdiff
path: root/modules/cloud.module
Commit message (Collapse)AuthorAge
* - Fixed typo in cloud module documentation. Bug report #3379.Dries Buytaert2003-09-30
|
* - More translation fixes for the menu items. Patch by Gabor.Dries Buytaert2003-09-28
|
* - Committed the admin menu integration patch. Thanks Adrian, Stefan and others.Dries Buytaert2003-09-26
|
* - Committed a partial administration page integration patch.Dries Buytaert2003-09-19
|
* - Rewrote handling of forum icons and added default icons made by StevenDries Buytaert2003-08-16
| | | | | | | | | | | | Wittens. - Renamed some column titles in the forum module as per Moshe's suggestion. - Introduced a 'more-link' class to position the 'more' links. Removed hard-coded markup from the modules. - Fixed bug in import module: the theme functions called a non-existing function.
* - Help system improvements from Michael.Dries Buytaert2003-08-05
|
* - Committed a slightly modified version of Slavica's table prefix patch.Dries Buytaert2003-07-10
|
* - Improvements: XHTML-ifications. Patch by GmbH.Dries Buytaert2003-06-15
|
* - Bugfix: better charset support for non-ISO-8859-1 languages. Patch ↵Dries Buytaert2003-06-05
| | | | | | | | | | | | | | | | | | 0029.charset.fixes.patch by Al. Could East Asia test this please. - Bugfix: made the "moderate" field behave. Patch 0030.queue.module.help.and.settings.form.patch by Al. - Documentation: revised a large part of the help texts / documentation! Al's 0024.* patches. - Documentation: added a glossary to the help module. Patch 0025.help.module.glossary.patch by Al and Michael. - Usability: first step towards unifying the terminology used in the cloud module. Patch by 0028.site.cloud.rationalize.name.patch Al. - Usability + CSS improvements: revamped the node form and removed all tables. Patch 0027.node.form.rewrite.patch by Al. - CSS improvements: patch 0026.admin.css.small.improvement.patch by Al. - Updated the MAINTAINERS file.
* - Fixed critical bug #1788: cloud module pings too much. Modified patch byDries Buytaert2003-06-01
| | | | | | Kjartan. This update requires some database changes so make sure to run update.php.
* - Al's CSS patches. This commit improves the themability of some coreDries Buytaert2003-05-29
| | | | | | components such as lists, form items, removes an ugly hack from the archive module and should fix the poll problem (although it doesn't Opera/Konqueror).
* - Michael Frankowski's excellent help text improvements!Dries Buytaert2003-05-29
|
* - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski.Dries Buytaert2003-05-13
| | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script.
* - Applied Michael Caerwyn's "%s -> %d" patch.Dries Buytaert2003-05-07
| | | | - Changed all occurences of '%d' to %d as suggested on the mailing list.
* - Fixed some PHP "notices".Dries Buytaert2003-04-21
|
* - Fixed some SQL query directives.Dries Buytaert2003-03-29
|
* - All LIMIT queries must go through the pager or through db_query_range().Dries Buytaert2003-03-16
| | | | | | | | | | | | | | | The syntax for db_query_range() was enhanced so it matches db_query(). So you may pass extra arguments of the SQL statement which are checked via check_query() and then substituted into the SQL statement. After these optional arguments, you always pass $from and $count parameters which define your range. Most often, the $from is 0 and the count is the max number of records you want returned. Patch by Moshe. - The pager_query() function for PEAR was enhanced so that it adds proper GROUP BY statement counting the number of records to be paged. Patch by James Arthur. - MSSQL database scheme by Moshe.
* - New menu houskeeping. Prototyped by Zbynek.Dries Buytaert2003-02-20
| | | | | | | | | | | | | | | | The following modules need updating: * glossary module * feed module (Breyten's version) * mailhandler module * notify module * project module * smileys module * admin module * style module * taxonomy_dhtml module To avoid unexpected problems menu_add() is deprecated (it will print an error message when used) and menu() should be used instead.
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - Applied Ori's format_plural() patch; see mailing list for details.Dries Buytaert2003-01-21
| | | | NOTE: some modules in the contributions repository might need to be updated.
* - Corrected the documentation.Dries Buytaert2003-01-21
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - Fixed small braino in the cloud module table.Dries Buytaert2002-12-30
|
* - Usability improvement: made the cloud module table use the new tableDries Buytaert2002-12-29
| | | | | | | | rendering functions. - Usability improvement: a couple of strings could not be translated. - Bugfix: removed redundant links.
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Committed Marco's block rewrite:Dries Buytaert2002-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | + Blocks are not longer called if not rendered: major performance improvement. + Fixed some bugs (preview option was broken, path option was broken). + Removed "ascii"-type blocks. + Added permission to for "PHP blocks" + ... NOTES: + You'll want to run "update.php": ALTER TABLE blocks DROP remove; ALTER TABLE blocks DROP name; + You'll want to update your custom modules as well as the modules in the contrib repository. Block function should now read: function *_block($op = "list", $delta = 0) { if ($op == "list") { return array of block infos } else { return subject and content of $delta block } }
* - Fixed an HTML entity. Patch by Remco.Dries Buytaert2002-10-09
|
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
* - xhtml errorsKjartan Mannes2002-05-15
| | | | - improper link attributes.
* - more coding style fixes.Kjartan Mannes2002-05-13
|
* - applied Stevens link patch.Kjartan Mannes2002-05-12
| | | | | | - fixed block permissions. - fixed user admin page errors: http://www.drupal.org/node.php?id=173. - cleaned up common.inc a bit: removed format_info, path_img, field_merge.
* - bug fixes:Kjartan Mannes2002-04-22
| | | | | | | | | | * fixed mails not being parsed properly. * tracker now shows user name when you view your own recent comments. * link to submission queue now points to the right place. * fixed jabber module. * theme is now activated when changed. - applied Gerhards coding style patch.
* - Applied Marco's big patch, including contributions from Moshe:Dries Buytaert2002-04-20
| | | | | | | | | | | | | | | | | | | | | | + Changed the db_query() API. + Wrapped all links in l(), lm(), la(), ..., drupal_url() functions. + XHTML-ified some HTML. + Wrapped a lot of text in the administrative pages in a t() function. + Replaced all $REQUEST_URI/$PATH_INFOs by request_uri(). + Small bugfixes (eg. bug in book_export_html() and clean-ups (eg. RSS code). + Fixed some bugs in the taxonomy module (eg. tree making bug), added new functionality (eg. new APIs for use by other modules), included Moshe's taxonomy extensions, and some documentation udpates. + ...
* - removing robots.txt and cvs.moduleKjartan Mannes2002-04-12
| | | | - commiting patch to cloud.module from Remco.
* - Made the cloud module a lot more configurable: both the update intervalDries Buytaert2002-04-08
| | | | and the number of bytes required for an update, can be changed now.
* - Updated some of the descriptions.Dries Buytaert2002-01-11
|
* - Small documentation updateDries Buytaert2002-01-05
|
* - Made updating "old" feeds a bit more fine grained.Dries Buytaert2002-01-05
|
* - cloud.module:Dries Buytaert2001-12-08
| | | | | | + made the cloud module export some documentation - thanks Joe! + XHTML-ified the emitted HTML code and quotes array indeces to be compliant with our coding standards.
* - tiny visual changeDries Buytaert2001-11-30
|
* - Added error handling support to the <node>_form hook.Dries Buytaert2001-11-01
|
* - added the CVS keyword $Id$ to all files to make future version trackingnatrak2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - fixed small glitch in node_del()Dries Buytaert2001-09-28
| | | | | | | | | | | | | | | | | | | | | - fixed small glitch in comment_del() - changed the API of the form() function. The first parameter, the "action"-attribute in the <form>-tag has been made optional. By default, it will be set to "$REQUEST_URI". Why? Because in 98% of the cases we would do: global $REQUEST_URI; $form = form($REQUEST_URI, $form_content); while we can do: $form = form($form_content); now. Update your modules (and sorry for the inconvenience)!
* - Fixed 2 typos in the user module. Thanks Axel and Remco.Dries Buytaert2001-09-18
| | | | | - Applied (modified versions of) Alexander's patches on the development branch.
* - various updatesDries Buytaert2001-08-05
|
* - added fclose()Dries Buytaert2001-08-05
|
* - cloud.module:Dries Buytaert2001-08-05
| | | | + small bugfix
* - various improvements and small additionsDries Buytaert2001-08-04
|
* - import.module:Dries Buytaert2001-08-03
| | | | | | | | | | | + applied Julian's fputs() patch + fixed typo - cloud.module: + applied Julian's fputs() patch - comment.module: + applied Julian's "delete" patch
* cloud.modulenatrak2001-07-30
| | | | | | | - fixed the maxlengths as reported by Lars Gregori. import.module - modified the titles as suggsted by Julian Bond.