The R Project SVN R

Rev

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

Rev 47237 Rev 47259
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-2007 R Core Development Team
3
% Copyright 1995-2008 R Core Development Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{URLencode}
6
\name{URLencode}
-
 
7
\Rdversion{1.1}
7
\alias{URLencode}
8
\alias{URLencode}
8
\alias{URLdecode}
9
\alias{URLdecode}
9
\title{Encode or Decode a (partial) URL}
10
\title{Encode or Decode a (partial) URL}
10
\description{
11
\description{
11
  Functions to encode or decode characters in URLs.
12
  Functions to encode or decode characters in URLs.
Line 19... Line 20...
19
  \item{reserved}{should reserved characters be encoded?  See
20
  \item{reserved}{should reserved characters be encoded?  See
20
    \sQuote{Details}.}
21
    \sQuote{Details}.}
21
}
22
}
22
\details{
23
\details{
23
  Characters in a URL other than the English alphanumeric characters and
24
  Characters in a URL other than the English alphanumeric characters and
24
  \samp{\$ - \_ . + ! * ' ( ) ,} should be encoded as \code{\%}
25
  \samp{$ - _ . + ! * ' ( ) ,} should be encoded as \code{\%}
25
  plus a two-digit hexadecimal representation, and any single-byte
26
  plus a two-digit hexadecimal representation, and any single-byte
26
  character can be so encoded. (Multi-byte characters are encoded as
27
  character can be so encoded. (Multi-byte characters are encoded as
27
  byte-by-byte.)
28
  byte-by-byte.)
28
 
29
 
29
  In addition, \samp{; / ? : @ = &} are reserved characters, and should
30
  In addition, \samp{; / ? : @ = &} are reserved characters, and should