Adam Nelson

Results 9 issues of Adam Nelson

http://code.google.com/p/django-pagination is still the official repository and some issues are here, some are there. It would be great to get everything over here so that everybody knows the current status...

On this feed (http://onlinelibrary.wiley.com/rss/journal/10.1111/(ISSN)1365-2486), `` is not parsed for [the `published` key](https://pythonhosted.org/feedparser/reference-entry-published.html). `/rdf:RDF/rdf:item/dcterms:issued` is examined but `/rdf:RDF/rdf:item/dc:date` is not and so this feed does not have a `published` field populated...

When going to [this feed](https://www.unodc.org/unodc/en/feed/publications.xml?ref=fp), the `published` field is populated as the date twice in a row (`u'2016-05-24 14:17:57.02016-05-24 14:17:57.0'`). ``` xml UNODC Publicationshttp://www.unodc.org/unodc/en/feed/publications.xmlUNODC PublicationsWorld wildlife crime report 2016http://www.unodc.org/documents/data-and-analysis/wildlife/World_Wildlife_Crime_Report_2016_final.pdfhttp://www.unodc.org/documents/data-and-analysis/wildlife/World_Wildlife_Crime_Report_2016_final.pdfTue, 24...

``` def makeUrllib2Http(url, user_agent): ``` should be: ``` def makeUrllib2Http(url, timeout, user_agent): ``` And use the timeout in urllib2. This requires Python 2.6 so you could wrap this in a...

When running pip or easy_install (on Mac - but this is platform-neutral), neither can find setup files. I believe setup.py has to be at the top level or you have...

There should be a ModelMixin that models can inherit from that has the basic methods: `has_read_permission`, `has_write_permission`, `has_object_read_permission`, and `has_object_write_permission`. The object versions should return the non-object version return value...

In the tests, unittest2 is imported. unittest2 shouldn't be a required package since users of python 2.7 don't need it. Typical methods of importing unittest2 include: ``` try: # check...

The paging template should use divs and spans in order to be more portable. This is a good example: http://code.google.com/p/django-pagination/source/browse/trunk/pagination/templates/pagination/pagination.html

Please add a PyPI package for this.