summaryrefslogtreecommitdiff
path: root/modules/archive.module
Commit message (Collapse)AuthorAge
...
* - Committed phase 3 of JonBob's menu changes. Adds an API for modules toDries Buytaert2003-11-23
| | | | | define titles and breadcrumbs for their pages, and updates the theme system to display them.
* - Patch by JonBob:Dries Buytaert2003-11-20
| | | | | | | | Phase 2 of the menu system integration project. This unifies the interface used by admin and non-admin pages, and deprecates the _page hook in favor of explicit callbacks from menu(). Breadcrumbs, titles, and help text go away as a result of this patch; they will return in the phase 3 patch, printed by the theme.
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Translation fix: the date in the calendar block could not be translated. ↵Dries Buytaert2003-11-09
| | | | | | | | Patch by Goba. - Translation fix: made the word 'permission' translatable in the system module' help text. Patch by Goba. - Translation fix: the ping module's help text was translated twice. Patch by Goba.
* - Help system improvements: eliminated the _system hook. Patch by Michael.Dries Buytaert2003-10-07
| | | | | | - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
* - Help improvements and translation improvements from Michael. Thanks!Dries Buytaert2003-10-03
|
* - Help system improvements from Michael.Dries Buytaert2003-08-05
|
* - Cache system improvements by Gerhard: removed some left-overs.Dries Buytaert2003-07-23
|
* - Committed a slightly modified version of Slavica's table prefix patch.Dries Buytaert2003-07-10
|
* - Bugfix: added more permissions checks. Patches #60-62 by Al. Should fixDries Buytaert2003-07-01
| | | | bug #2163 and #2164.
* - Bugfix: fixed calendar block caching. Patch by Al. Fixes bug #2131.Dries Buytaert2003-06-30
| | | | | - Improvement: improved the block module documentation. Patch #59 by Gerhard.
* - Reworked the CXX checking; now, _any_ user input will be checkedDries Buytaert2003-06-27
| | | | | | | | | | | | | and the request will be terminated when something suspicious is detected. This will be logged in the watchdog. With help from Marco. - Fixed translation issue in the archive module. Patch by Gerhard. - Removed dead parameter from variable_get(). Patch by Chris Johnson. Fixes bug #2111. - Improved input checking of taxonomy module. Patch by Gerhard. Fixes bug #2112.
* - Bugfix: fixed timezone problem with archive module. Patch by Al.Dries Buytaert2003-06-22
|
* - Bugfix: emit the proper CSS tags for "normal" and "linked" days. Patch #18Dries Buytaert2003-06-16
| | | | by Al. Thanks.
* - Improvement: nicer, slightly larger arrows for the month selection withinDries Buytaert2003-06-15
| | | | the archive calendar. Patch #2 by Al.
* - Fixes CSS for archive calendar so that you can make non-link days paddedDries Buytaert2003-06-08
| | | | | in a sensible fashion. Also removes table width 100% and puts that in css. Patch #48 by Al.
* - Bugfix: if you clicked on an archive date in the calendar block andDries Buytaert2003-06-07
| | | | | then select a new date via the form the block still displays the original click as the "selected" date. Patch by Craig Courtney.
* - Usability improvements: in the calendar, only add a link for days on whichDries Buytaert2003-06-05
| | | | | | new nodes have been posted. Patch by Al. Al: I modified the query slightly - it will check whether 'status = 1'.
* - CSS improvements to the calendar of the archive module. Updated the XtemplateDries Buytaert2003-05-31
| | | | theme and theme Marvin to take advantage of this. Patch by Al. Pretty stuff.
* - More CSS updates and fixes. Patch by Al.Dries Buytaert2003-05-29
|
* - 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 typo. Patch by Al.Dries Buytaert2003-05-25
|
* - 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.
* - Fixed some PHP "notices".Dries Buytaert2003-04-21
|
* - 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.
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Applied David's calendar patch: you can now configure at what day a weekDries Buytaert2003-01-21
| | | | start.
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - 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 HTML typo. Patch by Gerhard.Dries Buytaert2002-10-02
|
* - improved module descriptions.Kjartan Mannes2002-06-08
| | | | | | | - removed admin options for queue and comment module if the modules are not loaded. - nodes are now auto promoted when queue module isn't enabled. - moderation result block is now visible by the node author.
* - 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.
* - Fixed missing translations and missing lm()'s (including the one Marco fixed).Dries Buytaert2002-05-31
|
* - 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.
* - changed block, module and theme config pages to use checkboxes.Kjartan Mannes2002-05-11
| | | | | - coding style clean ups. - fixed taxonomy causing errors.
* - 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. + ...
* - Made the calendar module accept a $date parameter such that youDries Buytaert2002-01-31
can jump directly to a certain date in the archives. Also made the calendar link to itself such that it is self-contained. - Code beautifications: quoted a lot of arrays, removed dead code and simplified a few things. - Replaced the Calendar class by one function "calendar_display": using a class (or class instance, or object) doesn't make sense in the archives' case. - Renamed "calendar.module" to "archive.module". - Fixed a /problem/ with node settings not always being saved like expected. - Reorganized the user menu: renamed a couple of links for clarity and structure. - Fixed a few typos.