Greetings,
I actually have rethought this and am looking for a way to make the feed selectable by the user.
I have 180 feed strings ready that search jobs in our area based on industry. I was able to modify the xml code of the module itself to provide me a drop list by which to set the feed from the back end.
Here is what I did, I took this section of code from the module:
| Code: |
<param name="rssurl" type="textarea" cols="50" rows="5" default="" label="RSS URLs" description="Enter the URLs of the RSS/RDF feed (delimited by line feed)" />
|
and replaced it with this code: (only 2 options for testing)
| Code: |
<param name="rssurl" type="list" default="" label="RSS Options" description="">
<option value="http://pipes.yahoo.com/pipes/pipe.run?_id=1bea7cf39f71aa56348c02dc4b34a002&_render=rss&edtKeywords=Accounting&edtLocation=Akron%2C+oh&edtRadius=15">Accounting</option>
<option value="http://pipes.yahoo.com/pipes/pipe.run?_id=1bea7cf39f71aa56348c02dc4b34a002&_render=rss&edtKeywords=Admin+-+Clerical&edtLocation=Akron%2C+oh&edtRadius=15">Admin - Clerical</option>
</param>
|
This allows me to choose the feed from the back but I still need over 100 copies of the module. I would like a way to choose the feed the module uses from the user side by drop list.
I think If I could present the user with a drop list that sets the rssurl parameter then loads the page with the module on it I could reduce the slowdown.
We have such an unemployment problem in this area and a lot of those seeking work are not the most web savy so I am trying to offer this as an easy to use option without overloading my site with copies of the same module.