/* TODO (- todo, + done, ? not needed/to be changed): */
+ Add storing of original author's name for each node - Drupal doesn't allow user 'aliases' :(
+ Change login code to use user_load directly, so it will be no longer needed to put username and password into this file
+ Use node_delete() instead of copy of it's code - since we use login code now, workaround for user accesss checking is no longer needed :)
+ In aggregator2_parse_feed() there's code which strips tags from all aggregated data - change it so format used for feed can be applied also to item, and so it will be configurable by administrator
+ In aggregator2_parse_feed() change how feed is copied to node (instead of copying fields manually just use $node = $feed, and then remove/overwrite specific fields)
+ In aggregator2-item editing form - add select field with feed id, so it's possible to add items alone?
+ In aggregator2_link() show link to source site when viewing aggregator2-feed? Or maybe add filter function which adds image+link to description ($node->body)?
? Allow admin to set which user will be "author" of added nodes from the GUI
+ Remove theme_aggregator2_feed - it's no longer used, but left for example (for me ;) how default feed should be themed
- Write good/proper help page and descriptions/other texts
+ From aggregator2_settings form remove aggregator2_summary_age and aggregator2_summary_items - they're no longer used (aggregator2 no longer uses own theme functions)
+ Remove workaround for l() problem from aggregator2_link(), when it will be no more needed
- Between check for existing item and saving new item ther may be race condition. If two or more refresh items are run at the same time (for example cron is running and some user calls "refresh items" manually) there may be duplicated items created! Should we use variable similar to "cron is running" thing for each feed (or store such value with each feed)?
