Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - adding missing $bacground/$foreground variables. | Kjartan Mannes | 2002-06-12 |
| | |||
* | - adds missing navigation to feed and bundle view. | Kjartan Mannes | 2002-06-12 |
| | | | | - adds missing links. | ||
* | - default theme added to theme options + some clean up. | Kjartan Mannes | 2002-06-10 |
| | | | | | | - title of "blog it" item is used as default node title. - added link to news feed admin pages on import_page. - "blog it" link only shows when the blog module is available. | ||
* | - changing php_register_globals to register_globals which is the correct ↵ | Kjartan Mannes | 2002-06-10 |
| | | | | setting. | ||
* | - fixing outgoing mails and added some documentation. | Kjartan Mannes | 2002-06-09 |
| | |||
* | - more documentation updates by Scott. | Kjartan Mannes | 2002-06-09 |
| | |||
* | - Changed a " drupal " into " Drupal ". | Dries Buytaert | 2002-06-09 |
| | |||
* | - Documentation update: "%s/ drupal / Drupal /cg". In documentation we | Dries Buytaert | 2002-06-09 |
| | | | | prefer "Drupal" instead of "drupal". | ||
* | - Documentation updates: made it more consistent with the rest of Drupal. | Dries Buytaert | 2002-06-09 |
| | |||
* | - Updated the book module documentation a bit. | Dries Buytaert | 2002-06-09 |
| | |||
* | - Bugfix: the comment module has a help function but it wasn't linked to. | Dries Buytaert | 2002-06-09 |
| | |||
* | - fixing the moderation result block so both author and voters can see it. | Kjartan Mannes | 2002-06-09 |
| | |||
* | - Mentioned the various documentation updates. | Dries Buytaert | 2002-06-09 |
| | |||
* | - applying Scott's patch. | Kjartan Mannes | 2002-06-09 |
| | | | | - removing the need to enable weblogs ping so it matches locale and bloggerapi. | ||
* | - Updated the poll documentation. Patch by Scott. | Dries Buytaert | 2002-06-09 |
| | |||
* | - Made a small cosmetic change to the modules admin page. | Dries Buytaert | 2002-06-09 |
| | |||
* | - Some small editorial changes to the user module. | Dries Buytaert | 2002-06-09 |
| | |||
* | - Included Moshe's *excellent* user module documentation. | Dries Buytaert | 2002-06-09 |
| | | | | | NOTE: I remove the gravity stuff as this optional and already documented in rating.module. | ||
* | - improved module descriptions. | Kjartan Mannes | 2002-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. | ||
* | - Bugfix: we now keep a per-node $date cache in comment_is_new(). Suggested | Dries Buytaert | 2002-06-08 |
| | | | | by Natrak. | ||
* | - Removed non-existing theme from both update.php and database.mysql. Patch | Dries Buytaert | 2002-06-08 |
| | | | | by Marco. | ||
* | - Bugfix: clicking "help" on the "site configuration" didn't show any help. | Dries Buytaert | 2002-06-08 |
| | |||
* | - Extended the blog module documentation with input from the Drupal | Dries Buytaert | 2002-06-08 |
| | | | | | handbook. The documentation is not particulary exciting/good but it is better than what it used to be. | ||
* | - Removed the redundant "enable/disable" setting from the Blogger API module. | Dries Buytaert | 2002-06-08 |
| | | | | | | - Revised the documentation: fixed about 5 typos, removed the bit about downloading the module from the Drupal contributions repository, updated the installation guidelines, etc. | ||
* | - More documentation updates. Added "Requires crontab" message to the | Dries Buytaert | 2002-06-08 |
| | | | | settings that require crontab, make some things more consistent, etc. | ||
* | - Clarified the help texts a bit. | Dries Buytaert | 2002-06-08 |
| | |||
* | - Removed the redundant option to enable or disable the locale module. | Dries Buytaert | 2002-06-08 |
| | |||
* | - Small detail in the help. | Dries Buytaert | 2002-06-08 |
| | |||
* | - Changed some "default NULL"s to "default NOT NULL"s as this only works on | Dries Buytaert | 2002-06-06 |
| | | | | | | | | | | | | | | | | | | recent MySQL versions. I included the diffs for review. update.php: - update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno in + update_sql("CREATE TABLE search_index (word varchar(50) default NOT NULL, ln database.mysql: - word varchar(50) default NULL, - lno int(10) unsigned default NULL, - type varchar(16) default NULL, - count int(10) unsigned default NULL, + word varchar(50) NOT NULL, + lno int(10) unsigned NOT NULL, + type varchar(16) default NULL, + count int(10) unsigned default NULL, | ||
* | - The Drupal module is no longer required. | Dries Buytaert | 2002-06-06 |
| | |||
* | Some small corrections to the system descriptions (as discussed in mailinglist) | Steven Wittens | 2002-06-04 |
| | |||
* | Poll.module improvements: | Steven Wittens | 2002-06-04 |
| | | | | | | - Added links to see poll results when you haven't voted yet (and to go back). - Cleaned up code and moved large sections into separate functions for cleaner code - Cleaned up the way of distinguishing between multiple polls on one page (now it just uses the nid) | ||
* | - changed a db_queryd to db_query. | Kjartan Mannes | 2002-06-02 |
| | |||
* | Theme update: | Steven Wittens | 2002-06-01 |
| | | | | Got rid of the drop.org logo's in the themes and replaced them with the Drupal logo. | ||
* | - adding descriptions to modules (thanks Joe + Scott). | Kjartan Mannes | 2002-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. | ||
* | Poll.module: | Steven Wittens | 2002-06-01 |
| | | | | - Added timestamp (created) sorting to polls page. | ||
* | UnConeD.theme | Steven Wittens | 2002-06-01 |
| | | | | Removed 'nowrap' from box titles | ||
* | Poll.module: | Steven Wittens | 2002-06-01 |
| | | | | Added a page showing a list of older polls. | ||
* | Fixed unmoderated polls already showing up in the side-block. | Steven Wittens | 2002-06-01 |
| | |||
* | - Added missing translations and the like. | Dries Buytaert | 2002-05-31 |
| | |||
* | - Fixed missing translations and missing lm()'s (including the one Marco fixed). | Dries Buytaert | 2002-05-31 |
| | |||
* | - Added missing translations (including the one Marco spotted). | Dries Buytaert | 2002-05-31 |
| | |||
* | - fixing who is online block. | Kjartan Mannes | 2002-05-31 |
| | |||
* | - Fixed but #197: "Shouldn't going to index.php?or=xxx show all content | Dries Buytaert | 2002-05-30 |
| | | | | | for the term rather than only promoted content?". Reported by Barry, fixed by Revar's patch. | ||
* | - Fixed a drupal_goto() as identified by Marco. | Dries Buytaert | 2002-05-29 |
| | |||
* | - modified the user blocks to use the same layout and trim long usernames to | Kjartan Mannes | 2002-05-29 |
| | | | | keep the blocks from ruining theme layouts. | ||
* | - added missing access check for links | Kjartan Mannes | 2002-05-29 |
| | |||
* | - cleaning up the access checks in node.module. | Kjartan Mannes | 2002-05-29 |
| | | | | - reverting a taxonomy patch that added $context checking to node/comments. | ||
* | - fixing perma links and link to all blogs by user. | Kjartan Mannes | 2002-05-29 |
| | | | | - added access checks to blog block. | ||
* | - Change to use the proper db_query syntax. Patch by Marco. | Dries Buytaert | 2002-05-26 |
| |