Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

Merge with stable

Changeset cf964d4e0a66

Parents 6f968d1438f7

Parents 67b9a44982a6

by Steve Borho

Changes to 5 files · Browse files at cf964d4e0a66 Showing diff from parent 6f968d1438f7 67b9a44982a6 Diff from another changeset...

 
103
104
105
 
106
107
108
 
203
204
205
 
 
 
 
 
 
 
 
 
103
104
105
106
107
108
109
 
204
205
206
207
208
209
210
211
212
213
214
@@ -103,6 +103,7 @@
 ; Extra extensions bundled with TortoiseHg  ;fold =  ;hgcr-gui = +;schemes =    ; To use cleverencode/cleverdecode, you must enable win32text extension  ; @@ -203,3 +204,11 @@
   [keywordmaps]  ; See documentation for examples + +; The schemes extension must be enabled to use one of these shortcuts. +; See http://mercurial.selenic.com/wiki/SchemesExtension +[schemes] +;bb = http://bitbucket.org/ +;bb+ssh = ssh://hg@bitbucket.org/ +;gcode = http://{1}.googlecode.com/hg/ +;py = http://code.python.org/hg/
 
170
171
172
 
 
 
173
174
175
 
170
171
172
173
174
175
176
177
178
@@ -170,6 +170,9 @@
  :guilabel:`User`   Parse the user text as a user / comitter name.   +In 0.9.1, the filter entry was given a combo box which stores the +history of searches made while the dialog was open. Selecting an item +from the drop down list will trigger re-enable that filter.    Revision Graph Details  ----------------------
Show Entire File doc/​source/​conf.py Stacked
(No changes)
 
53
54
55
56
 
57
58
59
 
106
107
108
 
 
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
 
53
54
55
 
56
57
58
59
 
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
@@ -53,7 +53,7 @@
 Hgcr-gui  ========   -CodeReview management tool +`CodeReview <http://bitbucket.org/glimchb/hgcr-gui/wiki/Home>`_ management tool    * This extension allows you to manage reviews for your code in any project you like.  * It helps to keep the review management inside the mercurial. @@ -106,5 +106,45 @@
  [extensions]   hgcr-gui=   +Schemes +=======   +`Schemes <http://mercurial.selenic.com/wiki/SchemesExtension>`_ allows +you to specify shortcuts for parent urls, for example:: + + [schemes] + py = http://code.python.org/hg/ + +After that you can use it like:: + + hg clone py://trunk/ + +Of course, it is possible to supply custom urls for schemes with suffixes:: + + [schemes] + ex = ssh://example.com/hg + ex+http = http://hg.example.com/ + +Additionally there is support for some more complex schemas, for example used +by Google Code:: + + [schemes] + gcode = http://{1}.googlecode.com/hg/ + +The syntax is taken from Mercurial templates, and you have unlimited number of +variables, starting with {1} and continuing with {2}, {3} and so on. This +variables will receive parts of url supplied, splitted by /. Anything not +specified as {part} will be just appended to an url. + +To use the schemes extension, add it to your Mercurial.ini along with +some configuration:: + + [extensions] + schemes = + + [schemes] + bb = http://bitbucket.org/ + bb+ssh = ssh://hg@bitbucket.org/ + +  .. vim: noet ts=4
 
43
44
45
46
 
47
48
49
 
43
44
45
 
46
47
48
49
@@ -43,7 +43,7 @@
  self.set_version(_("(version %s)") % version.version())   if hasattr(self, 'set_wrap_license'):   self.set_wrap_license(True) - self.set_copyright(_("Copyright 2009 TK Soh and others")) + self.set_copyright(_("Copyright 2009 Steve Borho and others"))     thg_logo = paths.get_tortoise_icon('thg_logo_92x50.png')   thg_icon = paths.get_tortoise_icon('thg_logo.ico')