david / biologeek (http://biologeek.com/)

Source code of biologeek.com weblog under WTFPL.

Clone this repository (size: 252.7 KB): HTTPS / SSH
$ hg clone http://code.welldev.org/biologeek
filename size last modified message
gallery_base.html 1.3 KB 12 months ago End of lenses' collection.
gallery_detail.html 1.1 KB 13 months ago Give my media feeds some love, more cooliris features
gallery_list.html 1.5 KB 13 months ago Give my media feeds some love, more cooliris features
photo_detail.html 1.7 KB 18 months ago Photos still in progress
photo_login.html 1.9 KB 18 months ago Photos still in progress

README

Documentation for Biologeek
===========================

Installation
------------

Create your own ``settings.py`` file.


Commands
--------

Useful ones:

    * ``crawlfeeds``: if you use the contextual app, this command crawl
      registered feeds. Perfect for a cron.
    * ``ikflush``: flush ImageKit cache and regenerate thumbnails, see
      dedicated documentation for this app.


Patches
-------

For now, you need to apply this 2-lines patch in order to use a custom form 
with comments' contrib app (part of #8630 ticket)::

    Index: django/contrib/comments/__init__.py
    ===================================================================
    --- django/contrib/comments/__init__.py     (revision 9846)
    +++ django/contrib/comments/__init__.py     (working copy)
    @@ -43,6 +43,8 @@
         return Comment
     
     def get_form():
    +    if get_comment_app_name() != __name__ and hasattr(get_comment_app(), "get_form"): 
    +        return get_comment_app().get_form()
         from django.contrib.comments.forms import CommentForm
         return CommentForm