Skip to content

Commit

Permalink
Removed additional timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Moore committed Jan 16, 2009
1 parent e20e627 commit e82e250
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions bin/yuidoc_generate.py
Expand Up @@ -284,7 +284,6 @@ def allprop_sort(x, y):
# @TODO add command line option for timestamp
# timestamp = time.time()
timestamp = ""

t.timestamp = timestamp

transferToTemplate(const.REQUIRES, m, t)
Expand Down Expand Up @@ -622,7 +621,10 @@ def allprop_sort(x, y):
# index
log.info("Generating index")
t = Template(file=os.path.join(self.templatepath, "main.tmpl"))
t.timestamp = time.time()
# @TODO add command line option for timestamp
# timestamp = time.time()
timestamp = ""
t.timestamp = timestamp
self.modulename = ""
self.moduletitle = ""
self.classname = ""
Expand All @@ -644,7 +646,10 @@ def allprop_sort(x, y):

# map all classes to the corresponding module for external loaders
t = Template(file=os.path.join(self.templatepath, "classmap.tmpl"))
t.timestamp = time.time()
# @TODO add command line option for timestamp
# timestamp = time.time()
timestamp = ""
t.timestamp = timestamp
pkgMap = {}
keys = self.data[const.CLASS_MAP].keys()
keys.sort()
Expand Down

0 comments on commit e82e250

Please sign in to comment.