aboutsummaryrefslogtreecommitdiff
path: root/utils.py
Commit message (Collapse)AuthorAge
...
* Attached the GPL v3 notice to the start of each source file.cedricbonhomme2010-09-29
|
* Added more comments. Cleaner code.cedricbonhomme2010-09-22
|
* Unescape HTML entities.cedricbonhomme2010-09-19
|
* Minor bugfix in topwords() function.cedricbonhomme2010-09-17
|
* Articles are now stored in the Python blist high performance data-structure. ↵cedricbonhomme2010-09-08
| | | | if blist module not present, simple lists are used.
* Added history page with a tag clouds.cedricbonhomme2010-09-03
|
* Added detect_url_errors() function.cedricbonhomme2010-09-02
|
* Release 1.8. It is now easier to install pyAggr3g470r. No more need to set ↵cedricbonhomme2010-08-25
| | | | any path in the configuration file.
* Configuration file improvement (no need to set the path in the configuration ↵cedricbonhomme2010-08-25
| | | | file).
* Release 1.6. It is now possible to automatically add a feed (with the URL of ↵cedricbonhomme2010-07-08
| | | | the site), delete an article,delete a feed with all its articles and to delete all articles from the database. There is also some nice improvements to the side of performance (management page, tag clouds generation), tested with more than 3000 articles. Furthermore, a better HTML export of all the articles of the database. You can also export the articles in raw text. And finally some minor bugfix.
* Lot of performance improvementscedricbonhomme2010-07-07
|
* Faster top_words function.cedricbonhomme2010-07-06
|
* Regular expression improvement.cedricbonhomme2010-07-06
|
* Use of most_common() method of collections.Counter() object (new in Python 2.7)cedricbonhomme2010-07-05
|
* Use of collections.Counter() (new in Python 2.7) object instead of defaultDict.cedricbonhomme2010-07-05
|
* Better regular expression to remove HTML tags, special caracters and ↵cedricbonhomme2010-07-05
| | | | consecutive white spaces.
* Removed useless __future__ importcedricbonhomme2010-07-05
|
* Stupid bug fix.cedricbonhomme2010-07-05
|
* Case-insensitive sorting.cedricbonhomme2010-07-05
|
* Now pyAggr3g470r only works with Python 2.7. OrderedDict are used in order ↵cedricbonhomme2010-07-05
| | | | to sort the feeds alphabetically in a simple way.
* Improvements, exception management.cedricbonhomme2010-07-03
|
* Bug fix line 234 of utils.py. append() replaced by extend() when searching ↵cedricbonhomme2010-06-16
| | | | for RSS/ATOM feeds.
* Faster and safer code.cedricbonhomme2010-06-11
|
* Release 1.4. It is now possible to remove all articles of a given feed from ↵cedricbonhomme2010-06-10
| | | | the SQLite base via the management page. You can also add a feed just with the URL of the web page. The URL of the feed is obtained by parsing the web page with the module BeautifulSoup.
* It is now possible to remove all articles of a given feed from the SQLite ↵cedricbonhomme2010-06-10
| | | | base via the management page.
* Remove a feed from the file feed.lst. Some improvements.cedricbonhomme2010-06-10
|
* Little bug fix when the link of the feed in the tag 'link' don't contains ↵cedricbonhomme2010-06-09
| | | | the domain.
* It is now possible to add a feed just with the URL of the web page via the ↵cedricbonhomme2010-06-09
| | | | management page. The URL of the feed is obtained by parsing the web page with the module BeautifulSoup. There is therefore no need to edit the file feed.lst by hand.
* Release 1.2. Added tag cloud, minor bug fix, CSS improvements.cedricbonhomme2010-04-29
|
* Minor bug fix and some improvements.cedricbonhomme2010-04-29
|
* New regular expression to remove special characters (for instance ’).cedricbonhomme2010-04-28
|
* Removed useless import.cedricbonhomme2010-04-28
|
* Added tag cloud. Some improvements.cedricbonhomme2010-04-28
|
* Minor enhancement.cedricbonhomme2010-04-16
|
* Added tags cloud.cedricbonhomme2010-04-16
|
* Release 1.1. Added links for favorites articles on the main page.cedricbonhomme2010-04-15
|
* Mark or unmark an article as favorites.cedricbonhomme2010-04-15
|
* Release 1.0. Mail notification. A lot of improvements and some bug fix.cedricbonhomme2010-03-23
|
* Minor improvements for the e-mail notification.cedricbonhomme2010-03-23
|
* Bug fix: when the database do not exists at first launch.cedricbonhomme2010-03-23
|
* Added: email notification of new articles.cedricbonhomme2010-03-22
|
* Bug fix: bad identifiant of feed.cedricbonhomme2010-03-10
|
* Improvement of the security (test URLs,etc.). Added mutex.cedricbonhomme2010-03-10
|
* Improvement. Faster display of some pages (using oice.langdet module).cedricbonhomme2010-03-08
|
* Improvements. Test if oice.langdet and pylab modules are present.cedricbonhomme2010-03-07
|
* Added a link to the page of the GPL v3 license.cedricbonhomme2010-03-06
|
* Remplaced sha256 by sha1.cedricbonhomme2010-03-06
|
* Improvements of the detection of wrords (faster).cedricbonhomme2010-03-01
|
* Enhancement of the language detection.cedricbonhomme2010-02-28
|
* pyAggr3g470r can now detect the language of an article thanks to the module ↵cedricbonhomme2010-02-28
| | | | oice.langdet.
bgstack15