| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
+ 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.
|
|
|
|
| |
information available on the mailing list.
|
|
|
|
|
| |
+ made it use the new node table scheme
+ added the site's slogan to the ping
|
|
|
|
| |
- fixed some untranslated strings in the user.module.
|
|
|
|
|
|
|
| |
want the blocks to show up on.
- updated the help.
- did some XMLification.
- SQL update script has a new table collumn which needs to be applied.
|
|
|
|
|
|
|
|
|
|
|
| |
variables.
Example: set site_frontpage to "node" and site_frontpage_extra to
"$meta = 'news'" and only nodes with that meta tag will be displayed on
your main page.
This requires some internal knowledge of how the various modules work
and what settings can be passed to <module>_page() functions.
|
|
|
|
| |
easier. Also changed the <? tag to <?php in some cases.
|
|
|
|
| |
easier. Also changed the <? tag to <?php in some cases.
|
|
|
|
| |
just another log in box.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
'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'.
|
|
|
|
|
|
|
| |
tables: I changed all "id"s to "xid"s where "x" is the first letter of
the table name. I also renamed all remaining "userid"s to "uid"s as I
mentioned I would do. Take a look at ./drupal/updates/3.00-to-x.xx.sql
for the MySQL updates.
|
| |
|
| |
|
| |
|
|
|
|
| |
(moderation/comment related)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
- fixed bug in node_page()
- fixed bug in db_result()
- fixed rss glitch
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
in node.module.
|
|
|
|
|
|
|
| |
(There is room for improvement so let's go from these ... and build
on them.)
- Removed some $status's by calls to node_status().
|
| |
|
|
|
|
| |
instead of all recent comments to recent nodes.
|
| |
|
| |
|
|
|
|
|
| |
which will append the session ID to the uri 'foo' when PHP is compiled
with '--enable-transe-sid'.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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)!
|
| |
|
|
|
|
|
|
|
| |
+ 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.
|
| |
|
|
|
|
| |
of comments and nodes.
|
|
|
|
| |
- search.module: made the search categories translatable.
|
|
|
|
| |
(patch by Alex)
|
| |
|
|
|
|
|
|
|
| |
- fixed book.module not generating next/prev links properly
- re-added default node options to the admin page
- fixed a potential bug in node.php. Nodes with same titles were confusing it
at times, should fix the bug reported by Gerhard Killesreiter.
|
|
|
|
|
| |
- made the front page of the system configurable. Now any <node>_page()
can be set as the default page. Default is node_page().
|
|
|
|
| |
node_del() got updated.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
applying a patch. Mea culpa.
(reported by Axel)
- bugfix #2: incorrect deactivation of the delete link in node_links().
(patch by Axel)
- improvement: added confirmation page upon deletion of a node ("Do you
really want to delete this node?"), and removed the old and confusing
"node has to be blocked first".
(patch by Axel)
|
|
|
|
| |
to create a new forum. (patch by Alexander)
|
| |
|
| |
|
| |
|
| |
|