summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Fixed a syntax error.natrak2001-06-15
|
* - Made index.php work with new meta.module.Dries Buytaert2001-06-15
|
* - Added meta.module, an improved index.module that allows you toDries Buytaert2001-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | associate different collections - think "combobox" here - with different content types, all hardcoded references to "section" have been removed and the admin-friendliness of the meta admin section has been slightly improved. I'll keep working on it during the weekend - if time allows me to. Moreover, I'll focus on the usability/user-friendlines of the meta admin section as well as graceful input-checking, and error-handling. Requires an SQL update, see updates/2.00-to-x.xx.sql! Index.module will be removed, or meta.module will be renamed as soon we can ditch one of them. For now, having both coexist is not going to harm your setup and is useful to make a comparison and / or to migrate from index.module to meta.module. Index.module is de-coupled form the rest of the system so you will have to use meta.module after having upgraded. You have been warned. - Updated CHANGELOG.
* - Fixed a export bug. You can now export books by usingKjartan Mannes2001-06-14
| | | | | | http://site/export.php?book&node_id The export feature should be expanded to allow titles to be used, and made more flexible. Will look more at this during the weekend.
* - Integrated calendar.class into calendar.class (just like we did forDries Buytaert2001-06-14
| | | | headline.class 2 or 3 weeks ago).
* - Replaced um...flashy... nodelisting colors with something a bit more neutral.Steven Wittens2001-06-14
|
* - Improved watchdog and submission throttle: removed redundant code,Dries Buytaert2001-06-13
| | | | | | | | streamlined the existing code, added new watchdog type called "httpd" for Apache errors. The latter should make it easier to add watchdog filters later on. - Clarified some watchdog messages.
* - Simplified error handling such as 404 errors.Dries Buytaert2001-06-13
|
* - Fixed typo; missing ".Dries Buytaert2001-06-13
|
* - Applied Remco's patch:Dries Buytaert2001-06-13
| | | | the <LI>-bullets were not valid HTML and did only take up space.
* - Applied Remco's patch, but added a closing </LI>-tag as well.Dries Buytaert2001-06-13
|
* - Added missing </TD>.Dries Buytaert2001-06-13
| | | | (Patched by Remco.)
* - Fixed "administer" not being locale'd. (req. by Gerhard)Steven Wittens2001-06-12
|
* - changed $this->timestamp = $node[attributes]; toKjartan Mannes2001-06-12
| | | | | $this->attributes = $node[attributes]; Makes more sense this way :-)
* - More updates to index.module.Dries Buytaert2001-06-11
|
* - Changed field_set(), field_get() and field_merge() to use ',' andDries Buytaert2001-06-11
| | | | | | | | | | | | | | | | | | | | '=' instead of ';' and ':'. It is considered to be more readable. --> A _first_ step towards and improved index.module. Stay tuned for more. + Important: If you update from CVS - apply the queries in 2.00-to-x.xx.sql! - Changed all 'attribute' to 'attributes'. + Important: If you update from CVS - apply the queries in 2.00-to-x.xx.sql! + Important: This might require to ieni-wieni small update to your custom themes and/or node-related modules: - themes: node_index($node->attribute) -> node_index($node) - node modules: attribute -> attributes
* - Removed credits file. We can't keep up with this. CVS history andDries Buytaert2001-06-11
| | | | mailing lists for credits. We know who you are ...
* Changesnatrak2001-06-11
| | | | | | | | | | | | | - fixed the trailing | in some cases. - removed theme_morelinks(). - added node_links(). - simplified BaseTheme->links(). - updated themes. Notes - the new links system is taking form, but concider it beta. There might still be some major changes ahead so I suggest waiting a little longer before modifying your theme to take advantage of it.
* ChangesKjartan Mannes2001-06-11
| | | | | | | | | | | | | - fixed the trailing | in some cases. - removed theme_morelinks(). - added node_links(). - simplified BaseTheme->links(). - updated themes. Notes - the new links system is taking form, but concider it beta. There might still be some major changes ahead so I suggest waiting a little longer before modifying your theme to take advantage of it.
* This a rather large commit that needs a lot of fine-tuning. If youDries Buytaert2001-06-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | update, you'll break your site as you need switching from structure to index.module: so this can be considered an intermediate commit. If you upgrade, and you are welcome to, just create a collection called "section" (for now) and assign your nodes some attributes in the described format. Feedback and bugreports are welcomed. Questions will be answered. CHANGES: - comment system: + when replying to a node (rather then to a comment), that node is displayed above the reply form. + when replying to a comment (rather then to a node), that comment is displayd above the reply form. - removed structure.inc, removed structure.module. - node.inc: + added 2 new node functions called 'node_attribute_edit()' and 'node_attribute_save()' used to 'hook in' any indexing system including your home-brewed stuff if you'd want to. Currently, index.module is the facto default index system. See story.module for usage. - book.module, story.module, poll.module, page.module, forum.module: + added preview functionality to administration section (via node module). + removed all references to structure.inc (category, topic). - moderate.module: + removed all references to structure.inc (category, topic). - book.module, story.module, page.module, forum.module: + increased the sizes of some textareas. - submit.php: + removed all references to structure.inc (category, topic). - marvin.theme: + removed dead code: function story() was depricated. - unconed.theme: + removed hardcoded references to drop.org. - marvin.theme, unconed.theme, jeroen.theme, yaroon.theme, example.theme: + removed all references to structure.inc (category, topic). TODO: - file.module, trip_link.module: + update preview functionality: see story.module for example. + remove references to 'cid' and 'tid', use 'attribute' instead: see story.module for example. - extend and build upon index.module as well as making it configurable
* Changesnatrak2001-06-10
| | | | | | | | | | | | | | | - created a BaseTheme class in theme.inc. - added links($links = array(), $status = 0, $node = 0) to BaseTheme. - modified all themes to extend from BaseTheme. - modiefied theme_link() to take advantage of $theme->links(). - theme_morelink() does not require a $theme argument. Todo - add the other standard variables and functions to BaseTheme. - some themes could use some more modifications. Weird - marvin.theme still has a story() function.
* ChangesKjartan Mannes2001-06-10
| | | | | | | | | | | | | | | - created a BaseTheme class in theme.inc. - added links($links = array(), $status = 0, $node = 0) to BaseTheme. - modified all themes to extend from BaseTheme. - modiefied theme_link() to take advantage of $theme->links(). - theme_morelink() does not require a $theme argument. Todo - add the other standard variables and functions to BaseTheme. - some themes could use some more modifications. Weird - marvin.theme still has a story() function.
* Typo: "oparations".Steven Wittens2001-06-10
|
* - page.module:Dries Buytaert2001-06-10
| | | | | | | + we no longer wrap the output in a $theme->box(). If you want it in a box, just use $theme->box(). + increased the sizes of the main "body"-form to make editing larger pages easier.
* - Added $theme->foreground and $theme->background vars to provide some ↵Steven Wittens2001-06-09
| | | | | | general usable colors outside of a theme. - Updated poll.module to use the new $theme color variables
* no messageKjartan Mannes2001-06-09
|
* - Added a 'remove items' feature to reset a feed.Dries Buytaert2001-06-09
| | | | | | | | | | - Slightly improved the parsing algorithm; in some cases, were tags have attributes, things went wrong. We ignore attributes for now as we don't do anything with those. Example: <item rdf:about="http://foo.com"></item> ^^^^^^^^^^^^^^^^^^^^^^^^^
* TypoeSteven Wittens2001-06-08
|
* - Added "dirty" support for theming the poll-bars... uses $theme->pollfill ↵Steven Wittens2001-06-08
| | | | and $theme->pollempty for now.
* - Revised the 'track sitename' feature: it should be more accurate now.Dries Buytaert2001-06-08
|
* - Revised the 'track sitename' feature: it should be more accurate now.Dries Buytaert2001-06-08
|
* - Fixed inconsistent behavior of 'node_save()' and simplified theDries Buytaert2001-06-07
| | | | | | | | | | | | | algorithm a bit. --> Needs testing! I improved this last night and only got around to testing this rather briefly/quickly. It was to late already. ;-) (This is part of a larger set of changes I'm slowly working on which I will feed to CVS in steps after more testing.) - Added 2 new node functions called 'node_attribute_edit()' and 'node_attribute_save()' used to 'hook in' any indexing system including your home-brewed stuff if you'd want to.
* - Node filters: renamed 'Strip link tags' to 'Enable link tags'.Dries Buytaert2001-06-07
| | | | (Suggestion by Remco.)
* - Fixed problem with account.module listings.Dries Buytaert2001-06-07
| | | | (Reported by Remco.)
* - Fixed block showing queued polls. Now only shows active, posted polls.Steven Wittens2001-06-07
| | | | | - Fixed votes being reset to zero when updating a poll - Fixed that weird crashing bug on the poll form (Natrak)
* - Updated the $themes array to include all the themes.Kjartan Mannes2001-06-07
|
* - Fixed bug in node_search of node.module.Dries Buytaert2001-06-07
|
* - Fixed typoSteven Wittens2001-06-06
| | | | - Changed dries_at_drop.org into an UnConeD-Magically-Anti-Spam-Formatted-Email-Address(tm)
* - Updated CHANGELOGDries Buytaert2001-06-06
|
* - Increased the maximum length of the 'link'-textfield.Dries Buytaert2001-06-06
|
* - Added 'help structure' for node.module. We still need documentationDries Buytaert2001-06-06
| | | | | | for nodes ... anyone maybe? - Improved help.module.
* - Typo: 'timstamp' should have been 'timestamp'.Dries Buytaert2001-06-06
|
* - Fixed bug in cron function of import.module: headlines did not expireDries Buytaert2001-06-06
| | | | properly.
* Missing trailing space in the "[ extra@user.info | http://extra.user.info/ ↵Steven Wittens2001-06-06
| | | | ]" for comments.
* Bugfix: there was still a "read more" link in the full view.Steven Wittens2001-06-06
|
* - Update for new node formatSteven Wittens2001-06-06
| | | | | - Added "read more" link for the block-version of a poll - Added mini-docs :)
* - Improved db_fetch_array() to return an associative array only:Dries Buytaert2001-06-06
| | | | passing around arrays should be less expensive.
* - Fixed permission problem in node.module.Dries Buytaert2001-06-06
| | | | | Kristjan: this should fix the problem you reported on the mailing-list. We aim at providing a better solution in the long though.
* - Fixed bug in 'attribute editor'.Dries Buytaert2001-06-05
|
* - Improved node_query such that an 'illegal offset' is less likekely toDries Buytaert2001-06-05
| | | | happen.