Skip to content

Tag Archives: Python

Polywiki: A Key-Value Based Wiki

26-Dec-08

Polywiki is wiki system which holds content in key-value pairs rather than in one large chunk. It then manages each revision as a collection of these pairs. By managing the key-value pairs of an entry individually subsequent commits store only the changed values thus eliminating data duplication. If you’re just looking for the source code, [...]

Using Pygments in Redmine

12-Nov-08

The syntax highlighting engine in Redmine is CodeRay which is vastly underpowered to be used in software as useful as Redmine. The obvious choice (at least for me) for proper syntax highlighting is Pygments, a python library. To change the syntax highlighting engine a few modifications need to be made to both Redmine and to [...]