Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Peter Arrenbrecht
- Thu, 14 May 2009 13:35:46
Show More
mercurial/cmdutil.py
0
+1
-1
@@
-8,7
+8,7
b''
8
from node import hex , nullid , nullrev , short
8
from node import hex , nullid , nullrev , short
9
from i18n import _
9
from i18n import _
10
import os , sys , bisect , stat , errno
10
import os , sys , bisect , stat , errno
11
import mdiff , bdiff , util , templater , templatefilters, patch , error , encoding
11
import mdiff , bdiff , util , templater , patch , error , encoding
12
import match as _match
12
import match as _match
13
13
14
revrangesep = ':'
14
revrangesep = ':'
mercurial/hgweb/hgweb_mod.py
0
+1
-1
@@
-7,7
+7,7
b''
7
# GNU General Public License version 2, incorporated herein by reference.
7
# GNU General Public License version 2, incorporated herein by reference.
8
8
9
import os
9
import os
10
from mercurial import ui , hg , util, hook , error , encoding , templater
10
from mercurial import ui , hg , hook , error , encoding , templater
11
from common import get_mtime , ErrorResponse
11
from common import get_mtime , ErrorResponse
12
from common import HTTP_OK , HTTP_BAD_REQUEST , HTTP_NOT_FOUND , HTTP_SERVER_ERROR
12
from common import HTTP_OK , HTTP_BAD_REQUEST , HTTP_NOT_FOUND , HTTP_SERVER_ERROR
13
from common import HTTP_UNAUTHORIZED , HTTP_METHOD_NOT_ALLOWED
13
from common import HTTP_UNAUTHORIZED , HTTP_METHOD_NOT_ALLOWED
mercurial/hgweb/webcommands.py
0
+1
-1
@@
-12,7
+12,7
b' from mercurial.node import short, hex'
12
from mercurial.util import binary
12
from mercurial.util import binary
13
from common import paritygen , staticfile , get_contact , ErrorResponse
13
from common import paritygen , staticfile , get_contact , ErrorResponse
14
from common import HTTP_OK , HTTP_FORBIDDEN , HTTP_NOT_FOUND
14
from common import HTTP_OK , HTTP_FORBIDDEN , HTTP_NOT_FOUND
15
from mercurial import graphmod , util
15
from mercurial import graphmod
16
16
17
# __all__ is populated with the allowed commands. Be sure to add to it if
17
# __all__ is populated with the allowed commands. Be sure to add to it if
18
# you're adding a new command, or the new command won't work.
18
# you're adding a new command, or the new command won't work.
mercurial/localrepo.py
0
+1
-1
@@
-9,7
+9,7
b' from node import bin, hex, nullid, nullr'
9
from i18n import _
9
from i18n import _
10
import repo , changegroup
10
import repo , changegroup
11
import changelog , dirstate , filelog , manifest , context
11
import changelog , dirstate , filelog , manifest , context
12
import lock , transaction , ui, store , encoding
12
import lock , transaction , store , encoding
13
import util , extensions , hook , error
13
import util , extensions , hook , error
14
import match as match_
14
import match as match_
15
import merge as merge_
15
import merge as merge_
mercurial/lsprofcalltree.py
0
0
-4
@@
-10,10
+10,6
b' This software may be used and distribute'
10
of the GNU General Public License, incorporated herein by reference.
10
of the GNU General Public License, incorporated herein by reference.
11
"""
11
"""
12
12
13
import optparse
14
import os
15
import sys
16
17
def label ( code ):
13
def label ( code ):
18
if isinstance ( code , str ):
14
if isinstance ( code , str ):
19
return '~' + code # built-in functions ('~' sorts at the end)
15
return '~' + code # built-in functions ('~' sorts at the end)
mercurial/manifest.py
0
+1
-1
@@
-6,7
+6,7
b''
6
# GNU General Public License version 2, incorporated herein by reference.
6
# GNU General Public License version 2, incorporated herein by reference.
7
7
8
from i18n import _
8
from i18n import _
9
import mdiff , parsers , util, error , revlog
9
import mdiff , parsers , error , revlog
10
import array , struct
10
import array , struct
11
11
12
class manifestdict ( dict ):
12
class manifestdict ( dict ):
mercurial/templatefilters.py
0
+1
-1
@@
-6,7
+6,7
b''
6
# GNU General Public License version 2, incorporated herein by reference.
6
# GNU General Public License version 2, incorporated herein by reference.
7
7
8
import cgi , re , os , time , urllib , textwrap
8
import cgi , re , os , time , urllib , textwrap
9
import util , templater, encoding
9
import util , encoding
10
10
11
def stringify ( thing ):
11
def stringify ( thing ):
12
'''turn nested template iterator into string.'''
12
'''turn nested template iterator into string.'''
mercurial/util.py
0
+1
-1
@@
-16,7
+16,7
b' hide platform-specific details from the '
16
from i18n import _
16
from i18n import _
17
import error , osutil
17
import error , osutil
18
import cStringIO , errno , re , shutil , sys , tempfile , traceback
18
import cStringIO , errno , re , shutil , sys , tempfile , traceback
19
import os , stat , threading, time , calendar , glob , random
19
import os , stat , time , calendar , glob , random
20
import imp
20
import imp
21
21
22
# Python compatibility
22
# Python compatibility
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