Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Nicolas Dumazet
- Sat, 31 Jul 2010 02:41:58
Show More
doc/runrst
0
+8
-3
@@
-13,9
+13,14
b' where WRITER is the name of a Docutils w'
13
"""
13
"""
14
14
15
import sys
15
import sys
16
from docutils.parsers.rst import roles
16
try:
17
from docutils.core import publish_cmdline
17
from docutils.parsers.rst import roles
18
from docutils import nodes, utils
18
from docutils.core import publish_cmdline
19
from docutils import nodes, utils
20
except ImportError:
21
sys.stderr.write("abort: couldn't generate documentation: docutils "
22
"module is missing\n")
23
sys.exit(-1)
19
24
20
def role_hg(name, rawtext, text, lineno, inliner,
25
def role_hg(name, rawtext, text, lineno, inliner,
21
options={}, content=[]):
26
options={}, content=[]):
hgext/mq.py
0
+1
-1
@@
-1713,7
+1713,7
b' class queue(object):'
1713
else :
1713
else :
1714
text = url . open ( self . ui , filename ) . read ()
1714
text = url . open ( self . ui , filename ) . read ()
1715
except ( OSError , IOError ):
1715
except ( OSError , IOError ):
1716
raise util . Abort ( _ ( "unable to read %s " ) % filename )
1716
raise util . Abort ( _ ( "unable to read file %s " ) % filename )
1717
if not patchname :
1717
if not patchname :
1718
patchname = normname ( os . path . basename ( filename ))
1718
patchname = normname ( os . path . basename ( filename ))
1719
self . check_reserved_name ( patchname )
1719
self . check_reserved_name ( patchname )
mercurial/dispatch.py
0
+1
-1
@@
-395,7
+395,7
b' def _dispatch(ui, args):'
395
try :
395
try :
396
wd = os . getcwd ()
396
wd = os . getcwd ()
397
except OSError , e :
397
except OSError , e :
398
raise util . Abort ( _ ( "error getting current working directory: %s " ) %
398
raise util . Abort ( _ ( "error getting current working directory: %s " ) %
399
e . strerror )
399
e . strerror )
400
path = cmdutil . findrepo ( wd ) or ""
400
path = cmdutil . findrepo ( wd ) or ""
401
if not path :
401
if not path :
tests/test-mq-qimport-fail-cleanup.out
0
+1
-1
@@
-4,7
+4,7
b' adding a'
4
4
5
#qimport valid patch followed by invalid patch
5
#qimport valid patch followed by invalid patch
6
adding b.patch to series file
6
adding b.patch to series file
7
abort: unable to read fakepatch
7
abort: unable to read file f akepatch
8
8
9
#valid patches before fail added to series
9
#valid patches before fail added to series
10
b.patch
10
b.patch
tests/test-mq-qimport.out
0
+1
-1
@@
-1,5
+1,5
b''
1
% qimport non-existing-file
1
% qimport non-existing-file
2
abort: unable to read non-existing-file
2
abort: unable to read file non-existing-file
3
% import email
3
% import email
4
adding email to series file
4
adding email to series file
5
applying email
5
applying email
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages