- 12 Feb, 2005 1 commit
-
-
Dries authored
- permissions menu link updates in a number of modules help - anchor link fix in distributed auth help - "my account" link fix in user help - spelling correction in tracker.module help - I also changed 'admin/access/perms' to 'admin/access/permissions'.
-
- 06 Feb, 2005 1 commit
-
- 30 Jan, 2005 1 commit
-
-
Dries authored
-
- 29 Jan, 2005 1 commit
-
-
Dries authored
-
- 23 Jan, 2005 1 commit
-
- 19 Jan, 2005 1 commit
-
- 17 Jan, 2005 1 commit
-
-
Steven Wittens authored
-
- 16 Jan, 2005 1 commit
-
- 09 Jan, 2005 1 commit
-
-
Dries authored
We added a 'severity' column to watchdog(): watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link); * Specify a severity in case you are reporting a warning or error. * The $link-parameter is now the fourth parameter instead of the third. TODO: document this in the upgrade guide.
-
- 22 Dec, 2004 1 commit
-
-
Dries authored
-
- 18 Dec, 2004 1 commit
-
-
Dries authored
- Bugfix: the book module incorrectly assumed that there is an active revision if n.moderate = 0. We can (and need) to rewrite this when the revision changes hit core. In essence, we need an efficient query to retrieve the 'last puslished revision that is not in the moderation queue'.
-
- 15 Dec, 2004 1 commit
-
-
Dries authored
* Less logic in theme code. * Encourages use of the menu system. * Easier to find where a title or breadcrumb comes from in other people's code because there are less places to look. Look in menu and then grep for the appropriate set function. Looking for calls to theme_page() is hard because there are too many of them. * Very slightly more efficient.
-
- 11 Dec, 2004 1 commit
-
-
Dries authored
- Removed some cruft: left-over xxx_help_page() functions.
-
- 24 Nov, 2004 1 commit
-
- 23 Nov, 2004 1 commit
-
-
Dries authored
-
- 21 Nov, 2004 1 commit
-
-
Dries authored
- Patch 13180 by chx: renamed check_query() to db_escape_string() and implemtented it properly per database backend. Read the manual for pg_escape_string: "Use of this function is recommended instead of addslashes()." Or read sqlite_escape_string: "addslashes() should NOT be used to quote your strings for SQLite queries; it will lead to strange results when retrieving your data."
-
- 15 Nov, 2004 2 commits
-
- 04 Nov, 2004 1 commit
-
-
Dries authored
- Patch #10632 by Gerhard: the book permissions in today's cvs are not consistent with the rest of Drupal. We have a "maintain books" and a "edit own book pages" permission. All other modules have a "create foo" permission. Thus the existing "maintain books" permission should be renamed to "create book pages" and a new "maintain books" permission should be introduced that allows editors to update book pages they haven't created themselves even without having "administer nodes" permission.
-
- 31 Oct, 2004 1 commit
-
-
Dries authored
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.
-
- 23 Oct, 2004 2 commits
-
-
Dries authored
TODO: + Update Doxygen hook list (if required). + Document this in the developer's upgrade section.
-
Dries authored
- Patch #11947 by puregin: ensured that a book node's weight is captured when the book node lists returned by book_location() and book_location_down() are generated. This information is required when selecting next page candidates in book_next(). Note that book_location_down() was missing an explicit field b.weight in the SQL SELECT statement, but this value would usually be supplied implicitly because it is used to ORDER the result.
-
- 19 Oct, 2004 1 commit
-
- 15 Oct, 2004 1 commit
-
- 14 Oct, 2004 2 commits
-
-
Steven Wittens authored
- 10 Oct, 2004 1 commit
-
-
Dries authored
- Code improvement: removed some redundant code from the book module.
-
- 09 Oct, 2004 1 commit
-
-
Dries authored
+ Made error strings in blog.module consistent. + Explained a bit better what the RSD setting is for in the blog module. + Removed the notes about PHP content from block module and book module, since everything is handled via the input formats now.
-
- 08 Oct, 2004 1 commit
-
-
Dries authored
- Reintroduced the book outline feature: non-book pages now have an outline-tab on their node page, given you have permission to maintain books. Using the outline-tab, nodes can be added to a book's hierarchy. Also added some context sensitive help and fixed some quotes.
-
- 29 Sep, 2004 2 commits
- 28 Sep, 2004 1 commit
-
-
Steven Wittens authored
Modified version of #10230: Put placement of filter format selector in a module's hands, and move it below the relevant textarea.
-
- 24 Sep, 2004 1 commit
-
-
Dries authored
-
- 16 Sep, 2004 1 commit
-
- 08 Sep, 2004 1 commit
-
-
Dries authored
- Patch #10622 by Adrian: fixes various PostgreSQL related problems. 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).
-
- 07 Sep, 2004 1 commit
-
- 24 Aug, 2004 1 commit
-
-
Steven Wittens authored
-
- 21 Aug, 2004 3 commits
-
-
Dries authored
-
Dries authored
module consistent with the other node modules.
-
Dries authored
- Patch by JonBob: for consistency and readability, add brief descriptions 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.
-