summaryrefslogtreecommitdiff
path: root/modules/blog
Commit message (Collapse)AuthorAge
...
* - 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.
* - Applied Natrak's module improvements.Dries Buytaert2002-01-30
|
* - Added some more explanations.Dries Buytaert2002-01-12
|
* - Added about 50 title tags.Dries Buytaert2002-01-07
|
* - Fixed 2 small typos in a form field description.Dries Buytaert2002-01-05
|
* - Added "x new comments" feature. Requires a SQL update.Dries Buytaert2001-12-31
| | | | - Tidied up some comment related code in node.module.
* - Fixed the links in one of the feeds.Dries Buytaert2001-12-09
|
* - Fixed a few feed glitched reported by Mark.Dries Buytaert2001-12-09
| | | | - Dropped a few database tables that where no longer needed.
* - Added a "queue for moderation"-toggle to a node's admin form andDries Buytaert2001-12-09
| | | | updated the node modules to support this.
* - re-enabled the teasersDries Buytaert2001-12-08
|
* - re-enabled the teasersDries Buytaert2001-12-08
|
* - node system:Dries Buytaert2001-12-08
| | | | | | | | + made a small change in the node overview page in the admin section such that it lists both new and updated pages by default. + reworked the filter-mechanism: it is not 100% finished yet but it sure is taking shape.
* - book.module:Dries Buytaert2001-12-06
| | | | | | | | | | | | | | | | | | | + Added (1) support for "PHP pages" (dynamic pages), and (2) made it possible to link other node types into the book's tree/outline. It works just fine, yet the only (obvious) downside of (2) is that the navigation tree/links gets "interrupted" when you view non-book pages in the book. [SQL update required, see update.php] + Tidied up the book table. [SQL update required, see update.php] - various updates: + Fine-tuned the new node system. + Updated the inline/code documentation. + Improved teaser handling of all node types. + Made several small usability improvements to the node admin pages.
* - Fixed a glitch in the news feeds.Dries Buytaert2001-11-28
|
* - fixed pass by reference errors. PHP only allows declaration of &$vars, notKjartan Mannes2001-11-26
| | | | | passing them that way. For more info: http://no.php.net/manual/en/language.references.pass.php
* - Tuned the blog updating logic:Dries Buytaert2001-11-24
| | | | | | | | | | | Updating your own blog entry will demote it (if promoted), and will queue it in the moderation queue for promotion. If a node administrator updates his own blog entry through the blog update mechanism that regular users use, then he will be treated as a regular user and his blog entry will be demoted. But when an administrator updates blog entries through the admin pages, they will not be changed unless explicitly specified.
* - Removed the limit on the blog searches (patch by Natrak). For now itDries Buytaert2001-11-18
| | | | | fixes some annoying issueus but this will need more work in future as it doesn't really scale too well.
* - fixed bug with minimum teaser/blog/story sizeDries Buytaert2001-11-18
|
* Experimental change:Dries Buytaert2001-11-17
| | | | - Blog entries get queued in the moderation queue for promotion.
* - A couple of new node updatesDries Buytaert2001-11-12
|
* - node modules:Dries Buytaert2001-11-12
| | | | | | | | | | + made some improvements to the node access checks - queue module: + form()-ified the queue module and added some extra information or guidelines + added a few missing translations + ...
* Fixed typo/language errors in blog description (was this written at 3am by ↵Steven Wittens2001-11-10
| | | | any chance? :)
* - node system:Dries Buytaert2001-11-07
| | | | | | | | | | | | + Added the "delete node"-link: apparently it got lost during the last commit. Odd. + Changed "Edit node" to "Edit <node_name>" on the 'edit node'-page of the admin section. (There a 4 "Node"s that still need to be removed though.) + Updated the initial submission page (the old submit.php) to include some descriptions.
* - Made the node forms support "help texts": it is not possible to configureDries Buytaert2001-11-03
| | | | | | | | | | | | | | | | | | | | | | | Drupal to display submission guidelines, or any other kind of explanation such as "NO TEST POSTS", for example. - Added node versioning: it is possible to create revisions, to view old revisions and to roll-back to older revisions. You'll need to apply a SQL update. I'm going to work on the book module now, so I might be changing a few things to enable collaborative, moderated revisions - but feel free to send some first feedback, if you like. - Added some configuration options which can be used to set the minimum number of words a blog/story should consist of. Hopefully this will be usefull to stop the (almost empty) test blogs. - Various improvements: + Fine-tuned new node permission system. + Fine-tuned the functions in node.inc. + Fine-tuned some forms. + XHTML-ified some code.
* - Added error handling support to the <node>_form hook.Dries Buytaert2001-11-01
|
* - Another batch of updates/improvements:Dries Buytaert2001-11-01
| | | | | | | | | | | | | | | + introduced basic node permissions ("create", "delete", "update" and "view") at the node level: it's up to the "<$node->type>_module" to hide gory details (if any). + made the "blog it"-feature in the blog and import module work with the new node system, in specific with the new centralized forms. + made it possible to update blogs. + made the page module work with the new node system. + various smaller improvements.
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - added the CVS keyword $Id$ to all files to make future version trackingKjartan Mannes2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - Removed a node's link ID (lid) as discussed on the mailing list. SeeDries Buytaert2001-10-16
| | | | | | | | | | | | | | 'updates/3.00-to.x.xx.mysql' for the required MySQL updates. - Renamed some "author" fields to "uid" fields for sake of consistency. - Fixed the coding style of some PHP files. - Fixed the moderation queue (fairly untested though). - Re-introduced the temporary SQL table in _node_get(). - Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'.
* - Fixed the remaining SQL problems when running MySQL in ANSI mode.Dries Buytaert2001-10-13
| | | | (moderation/comment related)
* - PEAR-ification of Drupal by claw: you can now host Drupal on a wideDries Buytaert2001-10-09
| | | | | | | range of databases including MySQL, PostgreSQL, MSSQL, and others. For additional information and an 'how to upgrade', check the mails sent to the mailing list.
* - small improvement to the "user blogs" blockDries Buytaert2001-09-30
|
* - 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)!
* - comment.inc:Dries Buytaert2001-09-28
| | | | | | | + when replying to a comment, the author's name was displayd as being 'anonymous'. - blog.module: + fixed the URLs of the links in the "latest blogs"-block.
* - a batch of updates, including some experimental changes to the moderationDries Buytaert2001-09-27
| | | | of comments and nodes.
* - removed some death code that is no longer needed due to the factDries Buytaert2001-09-25
| | | | node_del() got updated.
* - Fixed translation bugs (reported by Alexander Schwartz)Dries Buytaert2001-09-24
|
* - improved the search system by making it context sensitiveDries Buytaert2001-09-16
|
* - Added the new user module!Dries Buytaert2001-09-16
|
* - Fixed a HTML typo in the blocks: the <a href="">-tags where not closed.Dries Buytaert2001-09-09
|
* - Added missing urlencode()'s as reported by Jared.Dries Buytaert2001-08-23
|
* - blog.module:Dries Buytaert2001-08-15
| | | | | + fix small glitch with blog not being displayed immediatly after posting
* - Added some 'header("Content-Type: text/xml")' as suggested by Julian.Dries Buytaert2001-08-14
|
* - Changed the authentication and login scheme as discussed on the mailingDries Buytaert2001-08-11
| | | | | | list. - Fixed the export function in book.module (patch my Julian). - Fixed the comment alignment (comments got truncated).
* - Small updates: see mailing-list for details.Dries Buytaert2001-08-06
|
* - various updatesDries Buytaert2001-08-05
|
* blog.moduleKjartan Mannes2001-07-31
| | | | - fixed the $date typo.
* - blog.module:Dries Buytaert2001-07-17
| | | | + missing ', 1' parameter to check_output()
* - Various updates, mostly related to our RDF/RSS backend.Dries Buytaert2001-07-15
|
* - Various updates, mostly related to our RDF/RSS backend.Dries Buytaert2001-07-15
|