The R Project SVN R

Rev

Rev 67599 | Rev 67898 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 67599 Rev 67896
Line 1... Line 1...
1
% File src/library/utils/man/URLencode.Rd
1
% File src/library/utils/man/URLencode.Rd
2
% Part of the R package, http://www.R-project.org
2
% Part of the R package, http://www.R-project.org
3
% Copyright 1995-2014 R Core Team
3
% Copyright 1995-2015 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{URLencode}
6
\name{URLencode}
7
\alias{URLencode}
7
\alias{URLencode}
8
\alias{URLdecode}
8
\alias{URLdecode}
Line 21... Line 21...
21
}
21
}
22
\details{
22
\details{
23
  Characters in a URL other than the English alphanumeric characters and
23
  Characters in a URL other than the English alphanumeric characters and
24
  \samp{- _ . ~} should be encoded as \code{\%}
24
  \samp{- _ . ~} should be encoded as \code{\%}
25
  plus a two-digit hexadecimal representation, and any single-byte
25
  plus a two-digit hexadecimal representation, and any single-byte
26
  character can be so encoded. (Multi-byte characters are encoded as
26
  character can be so encoded. (Multi-byte characters are encoded
27
  byte-by-byte.)
27
  byte-by-byte.)
28
 
28
 
29
  In addition, \samp{! $ & ' ( ) * + , ; = : / ? @ # [ ]} are reserved
29
  In addition, \samp{! $ & ' ( ) * + , ; = : / ? @ # [ ]} are reserved
30
  characters, and should be encoded unless used in their reserved sense,
30
  characters, and should be encoded unless used in their reserved sense,
31
  which is scheme specific.  The default in \code{URLencode} is to leave
31
  which is scheme specific.  The default in \code{URLencode} is to leave