Tagged Questions
2
votes
3answers
137 views
Producing an view of a text's revision history in Python
I have two versions of a piece of text and I want to produce an HTML view of its revision similar to what Google Docs or Stack Overflow displays. I need to do this in Python. I don't know what this ...
3
votes
2answers
151 views
delta-dictionary/dictionary with revision awareness in python?
I am looking to create a dictionary with 'roll-back' capabilities in python. The dictionary would start with a revision number of 0, and the revision would be bumped up only by explicit method call. I ...
12
votes
4answers
3k views
Generating and applying diffs in python
Is there an 'out-of-the-box' way in python to generate a list of differences between two texts, and then applying this diff to one file to obtain the other, later?
I want to keep the revision ...
11
votes
7answers
10k views
Getting SVN revision number into a program automatically
I have a python project under SVN, and I'm wanting to display the version number when it is run. Is there any way of doing this (such as automatically running a short script on commit which could ...
21
votes
5answers
8k views
Mercurial scripting with python
I am trying to get the mercurial revision number/id (it's a hash not a number) programmatically in python.
The reason is that I want to add it to the css/js files on our website like so:
<link ...