summaryrefslogtreecommitdiff
path: root/modules/archive/archive.module
Commit message (Collapse)AuthorAge
* - Patch #11875 by Neil Drumm: block module configuration improvements.Dries Buytaert2004-10-31
| | | | | | | | | | The primary goal of this patch is to take the 'custom' and 'path' columns of the block overview page and make them into something understandable. As of Drupal 4.5 'custom' lacked an explanation which wasn't buried in help text and path required dealing with regular expressions. Every block now has a configuration page to control these options. This gives more space to make form controls which do not require a lengthy explanation. This page also gives modules a chance to put their block configuration options in a place that makes sense using new operations in the block hook. The only required changes to modules implementing hook_block() is to be careful about what is returned. Do not return anything if $op is not 'list' or 'view'. Once this change is made, modules will still be compatible with Drupal 4.5. Required changes to core modules are included in this path. An additional optional change to modules is to implement the additional $op options added. 'configure' should return a string containing the configuration form for the block with the appropriate $delta. 'configure save' will come with an additional $edit argument, which will contain the submitted form data for saving. These changes to core modules are also included in this patch.
* - Patch #11935 by Neil Drumm: removed left-over documentation from archive ↵Dries Buytaert2004-10-23
| | | | module.
* - Patch #11388 by pss0ft/Stefan: fixed time offset bug in archive module.Dries Buytaert2004-10-08
|
* - Patch #8179 by JonBob: reintroduced menu caching.Dries Buytaert2004-09-16
|
* #10862: Smarter filter cache wiping.Steven Wittens2004-09-15
|
* - Renamed the 'first day of week' setting to be more consistent with the ↵Dries Buytaert2004-09-12
| | | | other date settings.
* - Patch #10668 by drumm: moved the 'first day of week' settings to the ↵Dries Buytaert2004-09-12
| | | | system module for other modules to reuse. This is considered to be a usability improvement because it simplifies some pages/workflow.
* - Patch #10622 by Adrian: fixes various PostgreSQL related problems.Dries Buytaert2004-09-08
| | | | | | | | | | | | | 1) Menu problems with Postgres (this is a highly critical 1 line fix) 2) Archive module fails with Postgres 3) Postgres setup problems - changes to database.pgsql (although i made these changes myself before finding this patch) 4) Book module fails with Postgres 5) Postgres problems following creation of a new type of user - which is actually about a taxonomy.module bug. 6) Creating accregator_item_table in PostgreSQL 7) Postgres - Polls not displayed on Poll Page 8) Blog module has sql errors with postgres This should not affect MySQL users (hopefully).
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Patch #9543 by JonBob: added node-level access control!Dries Buytaert2004-07-31
|
* - More tab-improvements by JonBob: improved support for the default tabs!Dries Buytaert2004-07-10
|
* - Moving the title.module from core to contrib as discussed on the mailing list.Dries Buytaert2004-07-07
|
* Tabs patch!Dries Buytaert2004-06-18
| | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
* - Code improvements by JonBob. Thanks.Dries Buytaert2004-05-17
|
* - Code improvements by JonBob. Thanks again.Dries Buytaert2004-05-11
|
* - Menu and code improvements by JonBob.Dries Buytaert2004-05-08
|
* - Patch #7581 by bylund: made the archive module's calendar accessible.Dries Buytaert2004-05-05
|
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-04-21
| | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
* - Modified patch by TheLibrarian: add a summary attribute to the calendar.Dries Buytaert2004-03-05
|
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Patch 5592 by Goba: let drupal_map_assoc() rule. :-)Dries Buytaert2004-02-15
| | | | - Renamed CHANGELOG to CHANGELOG.txt for Windows uses.
* - Fixed typo introduced by last archive module patch.Dries Buytaert2004-02-08
|
* - Patch #5613 by Goba: fixed translation issue with archive module and removedDries Buytaert2004-02-08
| | | | some locale module code that is now part of extractor.php.
* - Fixed bug #4989: archive calendar cached too aggressively.Dries Buytaert2004-01-06
|
* - Fixed bug 4832: only list nodes for the specified day. Patch by Goba.Dries Buytaert2003-12-29
|
* - Tidied up some inconsistencies in the code: scripts/code-style.sh is your ↵Dries Buytaert2003-12-28
| | | | friend.
* - Updated the calls to menu() to use MENU_HIDE instead of 1Dries Buytaert2003-12-17
|
* - Removed duplicated code. Reported by Goba.Dries Buytaert2003-11-30
|
* - Committed phase 4 of JonBob's menu system changes.Dries Buytaert2003-11-25
|
* - 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).