summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/pyblosxom-plugins/files/hardcodedates.py')
-rw-r--r--www-apps/pyblosxom-plugins/files/hardcodedates.py67
1 files changed, 0 insertions, 67 deletions
diff --git a/www-apps/pyblosxom-plugins/files/hardcodedates.py b/www-apps/pyblosxom-plugins/files/hardcodedates.py
deleted file mode 100644
index 559421f..0000000
--- a/www-apps/pyblosxom-plugins/files/hardcodedates.py
+++ /dev/null
@@ -1,67 +0,0 @@
-"""
-This allows the user to create a file "timestamps" in their datadir,
-that will override the timestamp of any given blog entry. Each line
-in this file should be of the form "YYYY-MM-DD-hh-mm file-name".
-Then for any entry that one of these lines exist the system will use
-that timestamp instead of the actual files modification time.
-
-Note: the filename is relative to your data-dir.
-Example of a line for the file /var/data-dir/school/abc.txt
- where the datadir is "/var/data-dir/" and the date is Aug 9, 2004.
-
-2004-08-09-00-00 school/abc.txt
-
-Hacked on by Michael Olson <http://www.mwolson.org/>.
-"""
-__author__ = 'Nathan Kent Bullock'
-__homepage__ = 'http://bullock.moo.com/nathan/'
-__email__ = 'nathan_kent_bullock -at- yahoo.ca'
-__version__ = '1.2'
-
-from Pyblosxom import tools
-import os, re, time, sys
-
-FILETIME = re.compile('^([0-9]{4})-([0-1][0-9])-([0-3][0-9])(-([0-2][0-9])-([0-5][0-9]))? +(.*)$')
-
-all_timestamps = None
-
-def get_all_timestamps(datadir):
- f = open(datadir + "/timestamps")
- t = []
- while True:
- str = f.readline()
- if str == "": break
- m = FILETIME.search(str.strip())
- if m:
- year = int(m.group(1))
- mo = int(m.group(2))
- day = int(m.group(3))
- if m.group(4):
- hr = int(m.group(5))
- minute = int(m.group(6))
- else:
- hr = 0
- minute = 0
- mtime = time.mktime((year,mo,day,hr,minute,0,0,0,-1))
-
- t.append( (datadir + "/" + m.group(7) + ".txt", mtime) )
-
- f.close()
- return t
-
-def cb_filestat(args):
- global all_timestamps
-
- filename = args["filename"]
- stattuple = args["mtime"]
-
- for fname,mtime in all_timestamps:
- if fname == filename:
- args["mtime"] = tuple(list(stattuple[:8]) + [mtime] + list(stattuple[9:]))
- break
-
- return args
-
-def cb_start(args):
- global all_timestamps
- all_timestamps = get_all_timestamps(args["request"].getConfiguration()['datadir'])