##// END OF EJS Templates
Merge with BOS
Merge with BOS

File last commit:

r1202:71111d79 default
r1259:f7556778 merge default
Show More
changelog.py
53 lines | 1.9 KiB | text/x-python | PythonLexer
mpm@selenic.com
changelog: adjust imports, comment
r1095 # changelog.py - changelog class for mercurial
mpm@selenic.com
Break apart hg.py...
r1089 #
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
mpm@selenic.com
changelog: adjust imports, comment
r1095 import os, time
mpm@selenic.com
Break apart hg.py...
r1089 from revlog import *
class changelog(revlog):
def __init__(self, opener):
revlog.__init__(self, opener, "00changelog.i", "00changelog.d")
def extract(self, text):
if not text:
return (nullid, "", "0", [], "")
last = text.index("\n\n")
desc = text[last + 2:]
l = text[:last].splitlines()
manifest = bin(l[0])
user = l[1]
date = l[2]
if " " not in date:
date += " 0" # some tools used -d without a timezone
files = l[3:]
return (manifest, user, date, files, desc)
def read(self, node):
return self.extract(self.revision(node))
def add(self, manifest, list, desc, transaction, p1=None, p2=None,
user=None, date=None):
Bryan O'Sullivan
Validate user input of dates when adding a changelog entry.
r1195 if date:
Bryan O'Sullivan
Make date/timezone validation in changelog.add more robust. Add test.
r1196 # validate explicit (probably user-specified) date and
Bryan O'Sullivan
Date validation must check for 32-bit width. Don't use assert to check.
r1197 # time zone offset. values must fit in signed 32 bits for
# current 32-bit linux runtimes.
Bryan O'Sullivan
Commit date validation: more stringent checks, more useful error messages.
r1202 try:
when, offset = map(int, date.split(' '))
except ValueError:
raise ValueError('invalid date: %r' % date)
Bryan O'Sullivan
Date validation must check for 32-bit width. Don't use assert to check.
r1197 if abs(when) > 0x7fffffff:
raise ValueError('date exceeds 32 bits: %d' % when)
if abs(offset) >= 43200:
raise ValueError('impossible time zone offset: %d' % offset)
Bryan O'Sullivan
Validate user input of dates when adding a changelog entry.
r1195 else:
mpm@selenic.com
Break apart hg.py...
r1089 if time.daylight: offset = time.altzone
else: offset = time.timezone
date = "%d %d" % (time.time(), offset)
list.sort()
l = [hex(manifest), user, date] + list + ["", desc]
text = "\n".join(l)
return self.addrevision(text, transaction, self.count(), p1, p2)