- 20 Jun, 2001 1 commit
-
-
Dries Buytaert authored
- Added a brand-new access.module which allows you to manage 'roles' (groups) and 'permissions' ... (inspired by Zope's system). + Once installed, click the help-link for more information. + See updates/2.00-to-x.xx.sql for the SQL updates. - Modified loads of code to use our new access.module. The system still has to mature though: new permissions have to be added and existing permissions need stream-lining. Awaiting suggestions. - As a direct result of the new access system, I had to rewrite the way the top-level links in admin.php are rendered and displayed, and xhtml-ified admin.php while I was at it. TODO - Home-brewed modules need updating, home-brewed themes not. (Examples: file.module, trip_link.module) - As soon we *finished* the refactoring of the user system (KJ has been working on this refactoring already) we should consider to embed this role and permission code into account.module ...
-
- 19 Jun, 2001 4 commits
-
-
Dries Buytaert authored
- Fixed small bug in account.php with some usernames not being tolerated.
-
Dries Buytaert authored
- Changed '?meta=' to 'index.php?meta='. Patch by Simone.
-
Dries Buytaert authored
- Fixed small fix in poll.module. Patch submitted by Simone.
-
Dries Buytaert authored
- Made it so that usernames can contain spaces. Like that, people can use their full name as their username.
-
- 18 Jun, 2001 6 commits
-
-
Kjartan Mannes authored
- Modifed form_select() to accept an optional 6th parameter which is appeneded to the select tag. $value can now also be an array. This allows for multiple selects: form_select($header, $name, $values, $options, $help, "multiple=\"true\" size=\"10\""); - Updated account.module to use the extended form_select() functionality.
-
natrak authored
- Modifed form_select() to accept an optional 6th parameter which is appeneded to the select tag. $value can now also be an array. This allows for multiple selects: form_select($header, $name, $values, $options, $help, "multiple=\"true\" size=\"10\""); - Updated account.module to use the extended form_select() functionality.
-
natrak authored
- Moved account_password() and account_validate() to user.inc. - Greatly reduced the number of SQL calls in account_save() when editing an account. Now uses one db_query() call instead of 1 + (2 * # of access granted). - Fixed access not being saved when account was added. - Should now be possible to edit and add accounts. There were certain bugs before that would cause odd errors.
-
Dries Buytaert authored
- Removed the default "Your search yielded no results." message as suggested by Kristjan.
-
Dries Buytaert authored
- block.module: + renamed 'overview' to 'preview' as suggested by Kristjan. - meta.module: + renamed 'verify' to 'preview' to make it consistent with block.module. + fixed comma-bug with attribute list reported by Kristjan. - node.module: + fixed typo: "id$nid" should have been "id=$nid"
-
Dries Buytaert authored
- Removed index.module.
-
- 17 Jun, 2001 3 commits
-
-
Dries Buytaert authored
- Merged "system settings" and "module settings" into one page. IMHO it wasn't a good idea to split them up in first place, and it turned out to be quite hard to decide where to put some variables. Also moved some variables around and even renamed a few variables while doing so. - Added a page_header() and page_footer() to all top-level .php pages.
-
Dries Buytaert authored
Oops, a rather large commit: - Changed meta.module, node.module and index.php to use comma-seperated lists of attributes rather then "foo=a,bar=b" lists. This makes it a a lot easier to use both modules. In addition, error handling can be discarded as it can't be made any simpler, really ... It fits rather nicely in Drupal's design so I'm getting more and more happy with this meta.module (but we are not 100% there yet). - node.module, node.inc: + Improved the node-related admin interface so that navigating back and forth the administrative menus is made both easier and faster. + Removed some redundant database fields from the node table. See 2.00-to-x.xx.sql! + Added 2 news hooks called "node_insert" and "node_update". Just like this is the case with the existing hook "node_delete" these new hooks will automatically get called when a node has been inserted or udpated. Note that this is an optional call-back that only needs to be implemented when required. With the addition of these two hooks, the node mechanism (version 1) is pretty well completed. - watchdog.module: + Fixed bug whit the 'regular messages' query in the watchdog.module. - book.module: + Fixed bug in book.module: the 'parent' was not set properly when updating a book page. + Made it so that older versions of a book page are automatically reactived upon deletion of the most recent version, i.e. when doing a version roll-back. - comment.inc: + Undid Remco's patch to comment.inc; it does not work in some cases. - conf.module: + Fine-tuned some of the options in conf.module a bit. - marvin.theme: + Visual changes to make it look better on Windows browsers. Mind to give some feedback on this? + Fixed 3 HTML typos/bugs. + XHTML-ified the theme at a best effort basis; I didn't carry the XHTML specification with me. + Made use of the theme_slogan variable to display the site's slogan. + As soon we have at least one valid XHTML theme we can wonder on how to integrate other XML namespaces (cfr. MathML story at drop.org). - database.mysql: + Updated database.mysql so that it contains all the latest "database patches".
-
natrak authored
-
- 16 Jun, 2001 1 commit
-
-
natrak authored
the way.
-
- 15 Jun, 2001 11 commits
-
-
natrak authored
-
natrak authored
- Modified comment.inc to use form_*() functions. Might have some side-effects I haven't found yet. Report any problems.
-
natrak authored
- Added a conf option to disable/enable user registrations. - Added a add account feature to account.module. - Moved some functions from account.php to account.module. Todo - Move most (all?) of account.php to account.module.
-
Kjartan Mannes authored
- Added a conf option to disable/enable user registrations. - Added a add account feature to account.module. - Moved some functions from account.php to account.module. Todo - Move most (all?) of account.php to account.module.
-
Dries Buytaert authored
- Changed 'drop' to 'drupal'; a left-over from the old days, I guess.
-
Dries Buytaert authored
- Small visual update to watchdog.module. - Updated CHANGELOG
-
Dries Buytaert authored
- Added very basic 'filters' to the watchdog.module which should make it easier to sort through all the watchdog "noise". I'm sure the current filters will do for 99% of all the Drupal sites though. (Sorry for the awful color scheme, Coney but I can't do any better.)
-
natrak authored
default value instead.
-
natrak authored
-
Dries Buytaert authored
- Made index.php work with new meta.module.
-
Dries Buytaert authored
- Added meta.module, an improved index.module that allows you to 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.
-
- 14 Jun, 2001 3 commits
-
-
Kjartan Mannes authored
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.
-
Dries Buytaert authored
- Integrated calendar.class into calendar.class (just like we did for headline.class 2 or 3 weeks ago).
-
Steven Wittens authored
-
- 13 Jun, 2001 6 commits
-
-
Dries Buytaert authored
- Improved watchdog and submission throttle: removed redundant code, 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.
-
Dries Buytaert authored
- Simplified error handling such as 404 errors.
-
Dries Buytaert authored
- Fixed typo; missing ".
-
Dries Buytaert authored
- Applied Remco's patch: the <LI>-bullets were not valid HTML and did only take up space.
-
Dries Buytaert authored
- Applied Remco's patch, but added a closing </LI>-tag as well.
-
Dries Buytaert authored
- Added missing </TD>. (Patched by Remco.)
-
- 12 Jun, 2001 2 commits
-
-
Steven Wittens authored
-
Kjartan Mannes authored
$this->attributes = $node[attributes]; Makes more sense this way :-)
-
- 11 Jun, 2001 3 commits
-
-
Dries Buytaert authored
- More updates to index.module.
-
Dries Buytaert authored
'=' 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
-
Dries Buytaert authored
- Removed credits file. We can't keep up with this. CVS history and mailing lists for credits. We know who you are ...
-