Show
Ignore:
Timestamp:
07/24/08 13:52:28 (20 months ago)
Author:
JensDiemer
Message:

blog plugin:

  • add a tag cloud ;)
  • display only tag feeds witched used in a displayed entry
  • tag ordering via django meta class
  • update the templates/CSS
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/plugins_internal/blog/blog_cfg.py

    r1705 r1712  
    8282        help_text=_( 
    8383            "The maximal numbers of tag feeds, displayed together." 
     84        ), 
     85    ) 
     86 
     87    max_cloud_size = forms.FloatField( 
     88        initial = 2.0, 
     89        min_value = 1, 
     90        help_text=_( 
     91            "max font size in the tag cloud (CSS 'em' unit)" 
     92        ), 
     93    ) 
     94    min_cloud_size = forms.FloatField( 
     95        initial = 0.7, 
     96        min_value = 0.1, 
     97        help_text=_( 
     98            "min font size in the tag cloud (CSS 'em' unit)" 
    8499        ), 
    85100    )