This forum is for less technical discussions about the Drupal project, not for support questions.

Version 4.6.4 come and gone?

Greetings,

I caught an announcement of version 6.4.4, downloaded it and upgraded from 6.4.3. Now the announcement is gone and download link points back to 6.4.3. What happened there? Did 6.4.4 have some major issues?

BTW looks like forum still doesn't work in 6.4.4. If that's the case then it's downright sad.

Regards.

Kabbalah Grupo

Textos
Biblioteca
Membros
Contate-nos

why can't drupal forums be more like phpbb and vbulletin?

After looking at all the different possibilities for integrating phpbb with drupal, I gave up because none of them were as tight as I wanted (for good reason -- phpbb assumes a lot about its users table -- it would take a lot of hacking to get it to accept drupal's users table as a substitute). So I just switched to using drupal's forums. One of the things that I sorely missed was being able to assign moderators to the forums.

Here's a patch that creates another node.module role "toggle nodes sticky". Users with that role can toggle the "sticky at top of lists" flag on nodes, which in forums, makes items show up at the top of forum topic listings, similar to the "announcement" or "sticky" functionality in common BB software.


Index: modules/node.module
===================================================================
--- modules/node.module (revision 5662)
+++ modules/node.module (working copy)
@@ -580,7 +584,7 @@
* Implementation of hook_perm().
*/
function node_perm() {
- return array('administer nodes', 'access content');
+ return array('administer nodes', 'access content', 'toggle nodes sticky');
}

/**
@@ -1614,6 +1618,7 @@
* Node author information
*/

+ $sticky_form_element = array('#type' => 'checkbox', '#title' =>t('Sticky at top of lists'), '#default_value' => in_array('sticky', $node_options));
if (user_access('administer nodes')) {

Seen the Rest -- Back to the Best

I did a weekend excursion into other open-source content management systems and eventually concluded you can't get better than Drupal. I tried WordPress and while it was extremely user-friendly, the wealth of options available in Drupal made me look elsewhere: so I tried Joomla. Joomla is fantastic from an editor's point of view, if you have a web designer on staff. I spent days tweaking a template, but within two minutes I had a Drupal template even an editor could handle. Joomla also feels 'small' and closed in. Drupal feels like big sky country.

Posting code examples

How do I go about posting extended code examples? They always get nuked by a filter which I assume is protecting against cross site scripting attacks.

If I post minimal html or php code (a line or 2) between code tags it works fine. If I want to post an extended chunk of code it gets nuked. It's a bit frustating to spend several minutes making a post and then have it killed by the server's filter. I understand why the filter is there though. So is there something I can do post longet code examples?

how to use blogger api with drupal

I was just reading performancing.com's review of drupal and it says "Blogger, MetaWeblog and MovableType APIs are supported." I'd like to know about how to use the blogger api. Can anyone tell me how to do it--i've never used an api (I don't think), but I'm somewhat familiar with drupal. any info would be appreciated. Thanks!

Pages

Subscribe with RSS Subscribe to RSS - General discussion