Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

A set of utilities for creating robust pagination tools throughout a django application. Screencast: History2008-10-24: Version 1.0 Released

5.0
 
  0 reviews  |  6 users  |  308 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

A Django application for integrating a Flash based mp3 audioplayer into templates using a custom template tag. It uses the flashplayer from http://www.1pixelout.net/code/audio-player-wordpress-plugin and can be easily customized by template parameters. More information can be found at http://pyjax.net/blog/1/2007/06/27/django-flash-audioplayer/

0
 
  0 reviews  |  0 users  |  85 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

django-rstify - A restructured text filter for django templatesdjango-rstify is a set of template filters to provide easy conversion from restructured text to HTML. Besides this basic functionality this application allows you to highlight sourcecode snippets inside your text using the pygments ... [More] library. Note: Django already provides a simple restructured text filter. If you don't need the extras in this application, I recommend to use the core version. DownloadThe main repository of this app is located on Github. You can easily checkout the latest version using git: git clone git://github.com/bartTC/django-rstify.git or download this app as a .tar.gz file. See Links on the right side for download links. How to use it in templatesTo convert a restructured text from an object to HTML simply apply the rstify filter on it: {% load rstify_tags %} {{ entry.content|rstify }}If you want to convert inline content, use the filter templatetag around: {% load rstify_tags %} {% filter rstify %} This is some *restructured text*. {% endfilter %}How to use it in sourcecodeApplying this filter inside your code is easy: >>> from rstify import rstify >>> >>> print rstify('This is *restructured text*.') This is restructured text. Initial Header LevelBy default the initial heading in your restructured text becomes a in HTML: >>> header = ''' ... ================ ... This is a Header ... ================ ... ''' >>> print rstify(header) This is a Header You can override this by setting the initial_header_level to an integer from 1 to 6: >>> print rstify(header, initial_header_level=3) This is a Header In your template just set this as the first option of the rstify filter: {{ entry.content|rstify:"3" }}Syntax Highlightingdjango-rstify provides syntax highlighting using the pygments library. To highlight parts of your restructured text, simply put it in a sourcecode directive: Here is some text. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer porttitor nulla sed dui. Aenean lorem mi, tincidunt et, porttitor nec, condimentum venenatis, felis. Maecenas ornare blandit leo. .. sourcecode:: python def foo(bar): return bar*2 Continue with text. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer porttitor nulla sed dui. Aenean lorem mi, tincidunt et, porttitor nec, condimentum venenatis, felis. Maecenas ornare blandit leo.Pygments provides a bunch of highlighters (also called lexer), just replace python with a lexer of your choice. Here is a complete set of available lexers. Read pygments styles how to colorize the output using css. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Super simple template tags for Django forms.

0
 
  0 reviews  |  0 users  |  37 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.