Modules to do ____
Sykoi - September 4, 2008 - 17:22
I just got most of my site converted to Drupal, however there are a few features I need help with that I'm not sure Drupal has natively. I've looked through the module section however the sheer number of modules makes it very difficult fo find exactly what I need.
- An RSS parser that posts the items as posts/blog posts/something similar.
- Wordpress-like url rewriting. (Category/article name or category/id-article_name)
- Some way to make the main page show an article, in full, rather than just a snippet. Right now I'm using "default front page" but it only shows a snippet and links to the article. I'd rather it show the entire article without the link and without forwarding to the article.
- Show latest (blog) posts in a block?
Thanks in advance.

An RSS parser that posts the
An RSS parser that posts the items as posts/blog posts/something similar.
Leech module or similar. Been a while since I did this, maybe leech is dead or better module has taken its place. Maybe there is a Simplepie based module that could do this also.
Wordpress-like url rewriting. (Category/article name or category/id-article_name).
Pathauto module.
Some way to make the main page show an article, in full, rather than just a snippet. Right now I'm using "default front page" but it only shows a snippet and links to the article. I'd rather it show the entire article without the link and without forwarding to the article.
Views module.
Show latest (blog) posts in a block?
Blog module has a block that does this out of the box(?), else use Views.
You might try
You might try http://drupalmodules.com, it's the same modules as listed here but the search interface is a bit more user friendly.
In any case, here's some info:
There's some built in rss capability at admin/content/rss-publishing. For more control of rss feeds you can use the views and contemplate modules.
EDIT: i just realized after reading the other reply that i read this wrong. See the feedapi module.
Built-in to core-- simply enable the "path" optional core module. If you'd like to automate the creation of the aliases based on tokens, use the pathauto module.
What exactly have you entered at "default front page"? When i specify a node there (ie node/1) i get the entire node including comments.
I can't remember if there's one that's part of core, if you don't see anything you want at
admin/build/block, you can create blocks of all kinds of node listings with the views module.
===
"Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime." -- Lao Tzu
"God helps those who help themselves." -- Benjamin Franklin
"Search is your best friend." -- Worldfallz
Thanks.One more question...
Thanks.
One more question... I'm new to Drupal, but is there a way to automatically generate links for all items in a category, inside of a node (Say a page, for instance), or a module to do so?
Edit: Just tried to set 'default front page' in 'site information' again, and it keeps reseting back to 'node'. I'm trying to make it 'node/4'
by default, you will have a
by default, you will have a list of links belonging to a category at htt://mysite.com/taxonomy/term/x where "x" is the id of the term. For more options for creatings lists of nodes you can use the http://drupal.org.project/views module. To actually place a view in a node you can use http://drupal.org/project/insert_view or http://drupal.org/project/viewfield.
===
"Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime." -- Lao Tzu
"God helps those who help themselves." -- Benjamin Franklin
"Search is your best friend." -- Worldfallz
Thanks but what about the
Thanks but what about the front page issue?