~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr_man.py

Marked which parts of file is owned by Hans

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
3
 
# Copyright (C) 2005 by Hans Ulrich Niedermann
4
 
# Portions Copyright (C) 2005 by Canonical Ltd
 
3
# Marked portions Copyright (C) 2005 by Hans Ulrich Niedermann
 
4
# Unmarked portions (C) 2005 Canonical Ltd.
5
5
 
6
6
# This program is free software; you can redistribute it and/or modify
7
7
# it under the terms of the GNU General Public License as published by
17
17
# along with this program; if not, write to the Free Software
18
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
19
 
20
 
#<<< code taken from bzr (C) Canonical
21
 
 
22
20
import os, sys
23
 
 
24
21
import bzrlib, bzrlib.help
25
 
 
26
 
#>>> code taken from bzr (C) Canonical
27
 
 
28
 
#<<< code by HUN
29
 
 
 
22
#<<< Begin (C) Hans Ulrich Niedermann
30
23
import time
31
24
import re
32
25
 
33
 
 
34
26
def man_escape(string):
35
27
    result = string.replace("\\","\\\\")
36
28
    result = result.replace("`","\\`")
137
129
.\\\" Generation time: %(timestamp)s
138
130
.\\\"
139
131
"""
 
132
#<<< End (C) Hans Ulrich Niedermann
140
133
 
141
 
# The DESCRIPTION text was taken from http://www.bazaar-ng.org/
142
 
# and is thus (C) Canonical
143
134
man_head = """\
144
135
.TH bzr 1 "%(datestamp)s" "%(version)s" "bazaar-ng"
145
136
.SH "NAME"
219
210
.BR http://bazaar.canonical.com/BzrDocumentation
220
211
"""
221
212
 
 
213
#<<< Begin (C) Hans Ulrich Niedermann
222
214
def main():
223
215
    t = time.time()
224
216
    tt = time.gmtime(t)
256
248
 
257
249
if __name__ == '__main__':
258
250
    main()
259
 
 
260
 
 
261
 
#>>> code by HUN
 
251
#<<< End (C) Hans Ulrich Niedermann