summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2009-01-04 14:29:42 +0100
committergbrandl <devnull@localhost>2009-01-04 14:29:42 +0100
commit283da4a0c3beac704d79530d1517021831894739 (patch)
tree19fda1926dbe48a71d0354ab608b794b79a61b38 /scripts
parentc7652480e4d44ace027bb0ef83d5a8a12e07feba (diff)
downloadpygments-283da4a0c3beac704d79530d1517021831894739.tar.gz
Remove obsolete scripts.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/count_loc.py48
-rwxr-xr-xscripts/fix_epydoc_markup.py46
2 files changed, 0 insertions, 94 deletions
diff --git a/scripts/count_loc.py b/scripts/count_loc.py
deleted file mode 100644
index 1b638b44..00000000
--- a/scripts/count_loc.py
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-"""
- Source line counter
- ~~~~~~~~~~~~~~~~~~~
-
- Count the lines of code in pocoo, colubrid and jinja.
- Requires an svn checkout.
-
- :copyright: 2006-2007 by Armin Ronacher.
- :license: GNU GPL, see LICENSE for more details.
-"""
-from pocoo.utils.path import Path
-
-def main(root, search):
- LOC = 0
-
- root = Path(root).realpath()
- offset = len(root) + 1
-
- print '+%s+' % ('=' * 78)
- print '| Lines of Code %s |' % (' ' * 62)
- print '+%s+' % ('=' * 78)
-
- for folder in search:
- folder = Path(root).joinpath(folder).realpath()
- for fn in folder.walk():
- if fn.endswith('.py') or fn.endswith('.js'):
- try:
- fp = file(fn)
- lines = sum(1 for l in fp.read().splitlines() if l.strip())
- except:
- print '%-70sskipped' % fn
- else:
- LOC += lines
- print '| %-68s %7d |' % (fn[offset:], lines)
- fp.close()
-
- print '+%s+' % ('-' * 78)
- print '| Total Lines of Code: %55d |' % LOC
- print '+%s+' % ('-' * 78)
-
-if __name__ == '__main__':
- main('../../../', [
- 'pocoo/trunk',
- 'colubrid/trunk',
- 'jinja/trunk'
- ])
diff --git a/scripts/fix_epydoc_markup.py b/scripts/fix_epydoc_markup.py
deleted file mode 100755
index 5c83556e..00000000
--- a/scripts/fix_epydoc_markup.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-"""
- fix_epydoc_tables
- ~~~~~~~~~~~~~~~~~
-
- Fix epydoc "summary" tables.
-
- :copyright: 2006-2007 by Georg Brandl.
- :license: GNU GPL, see LICENSE for more details.
-"""
-
-import sys, os
-from os.path import join
-
-path = sys.argv[1]
-
-for fn in os.listdir(path):
- fn = join(path, fn)
- if not fn.endswith(".html"):
- continue
-
- ll = list(file(fn))
- c = False
- d = False
- n = False
-
- for i, l in enumerate(ll):
- if "<!-- ===" in l:
- d = ("DETAILS" in l)
- continue
- if l.startswith('<table class="summary"') and d:
- ll[i] = '<table class="detsummary"' + l[len('<table class="summary"'):]
- c = True
- continue
- if l.startswith('<table class="navbar"'):
- if not n:
- n = True
- else:
- ll[i] = '<div style="height: 20px">&nbsp;</div>\n' + l
- c = True
-
- if c:
- f = file(fn, "w")
- f.write(''.join(ll))
- f.close()