|
2354.
|
|
|
Bazaar allows locations to be specified in multiple ways, either:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:4
|
|
2355.
|
|
|
* Fully qualified URLs
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:6
|
|
2356.
|
|
|
* File system paths, relative or absolute
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:8
|
|
2357.
|
|
|
Internally bzr treats all locations as URLs. For any file system paths 
that are specified it will automatically determine the appropriate URL 
representation, and escape special characters where necessary.
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:10
|
|
2358.
|
|
|
There are a few characters which have special meaning in URLs and need careful 
handling to avoid ambiguities. Characters can be escaped with a % and a hex 
value in URLs. Any non-ASCII characters in a file path will automatically be 
urlencoded when the path is converted to a URL.
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:14
|
|
2359.
|
|
|
URLs represent non-ASCII characters in an encoding defined by the server, but 
usually UTF-8. The % escapes should be of the UTF-8 bytes. Bazaar tries to be 
generous in what it accepts as a URL and to print them in a way that 
will be readable.
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:19
|
|
2360.
|
|
|
For example, if you have a directory named '/tmp/%2False' these are all valid 
ways of accessing the content (0x2F, or 47, is the ASCII code for forward slash)::
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:24
|
|
2361.
|
|
|
cd /tmp
bzr log /tmp/%2False
bzr log %2False
bzr log file:///tmp/%252False
bzr log file://localhost/tmp/%252False
bzr log file:%252False
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:27
|
|
2362.
|
|
|
These are valid but do not refer to the same file::
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:34
|
|
2363.
|
|
|
bzr log file:///tmp/%2False (refers to a file called /tmp/\/alse)
bzr log %252False (refers to a file called /tmp/%252False)
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
en/help_topics/url-special-chars.txt:36
|