##// END OF EJS Templates
Merge with MPM
Josef "Jeff" Sipek -
r980:5197fb9d merge default
parent child Browse files
Show More
@@ -203,6 +203,8 b' incoming [source]::'
203
203
204 Currently only local repositories are supported.
204 Currently only local repositories are supported.
205
205
206 aliases: in
207
206 init [dest]::
208 init [dest]::
207 Initialize a new repository in the given directory. If the given
209 Initialize a new repository in the given directory. If the given
208 directory does not exist, it is created.
210 directory does not exist, it is created.
@@ -262,6 +264,8 b' outgoing [dest]::'
262 default push repo. These are the changesets that would be pushed
264 default push repo. These are the changesets that would be pushed
263 if a push was requested.
265 if a push was requested.
264
266
267 aliases: out
268
265 parents::
269 parents::
266 Print the working directory's parent revisions.
270 Print the working directory's parent revisions.
267
271
@@ -1312,7 +1312,7 b' table = {'
1312 [('p', 'strip', 1, 'path strip'),
1312 [('p', 'strip', 1, 'path strip'),
1313 ('b', 'base', "", 'base path')],
1313 ('b', 'base', "", 'base path')],
1314 "hg import [-p NUM] [-b BASE] PATCH..."),
1314 "hg import [-p NUM] [-b BASE] PATCH..."),
1315 "incoming": (incoming, [], 'hg incoming [SOURCE]'),
1315 "incoming|in": (incoming, [], 'hg incoming [SOURCE]'),
1316 "^init": (init, [], 'hg init [DEST]'),
1316 "^init": (init, [], 'hg init [DEST]'),
1317 "locate":
1317 "locate":
1318 (locate,
1318 (locate,
@@ -1328,7 +1328,7 b' table = {'
1328 ('p', 'patch', None, 'show patch')],
1328 ('p', 'patch', None, 'show patch')],
1329 'hg log [-r REV1 [-r REV2]] [-p] [FILE]'),
1329 'hg log [-r REV1 [-r REV2]] [-p] [FILE]'),
1330 "manifest": (manifest, [], 'hg manifest [REV]'),
1330 "manifest": (manifest, [], 'hg manifest [REV]'),
1331 "outgoing": (outgoing, [], 'hg outgoing [DEST]'),
1331 "outgoing|out": (outgoing, [], 'hg outgoing [DEST]'),
1332 "parents": (parents, [], 'hg parents [REV]'),
1332 "parents": (parents, [], 'hg parents [REV]'),
1333 "paths": (paths, [], 'hg paths [NAME]'),
1333 "paths": (paths, [], 'hg paths [NAME]'),
1334 "^pull":
1334 "^pull":
@@ -558,7 +558,7 b' class hgweb:'
558 yield {"parity": parity,
558 yield {"parity": parity,
559 "path": os.path.join(path, f),
559 "path": os.path.join(path, f),
560 "manifest": mnode,
560 "manifest": mnode,
561 "basename": f[:-1]}
561 "basename": f[:-1]}
562 parity = 1 - parity
562 parity = 1 - parity
563
563
564 yield self.t("manifest",
564 yield self.t("manifest",
@@ -738,7 +738,6 b' def create_server(path, name, templates,'
738 if not address:
738 if not address:
739 address = u.config("web", "address", "")
739 address = u.config("web", "address", "")
740 if not port:
740 if not port:
741 print port
742 port = int(u.config("web", "port", 8000))
741 port = int(u.config("web", "port", 8000))
743 if not use_ipv6:
742 if not use_ipv6:
744 use_ipv6 = u.configbool("web", "ipv6")
743 use_ipv6 = u.configbool("web", "ipv6")
General Comments 0
You need to be logged in to leave comments. Login now