Tue Aug 12 09:50:07 UTC 2008  Alexandre Rossi <alexandre.rossi@gmail.com>
  * fix pygments disaligned linenos and code when using windows fonts (pygments>0.7 only)
{
hunk ./darcsweb.cgi 1327
-	formatter = pygments.formatters.HtmlFormatter(linenos=True,
+
+	pygments_version = map(int, pygments.__version__.split('.'))
+	if pygments_version >= [0, 7]:
+		linenos_method = 'inline'
+	else:
+		linenos_method = True
+	formatter = pygments.formatters.HtmlFormatter(linenos=linenos_method,
hunk ./darcsweb.cgi 1335
+
}