Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cgi_url_escape_more(3) [debian man page]

cgi_url_escape_more(3)						     cgi/cgi.h						    cgi_url_escape_more(3)

NAME
cgi_url_escape_more - url escape a string SYNOPSIS
#include <cgi/cgi.h> NEOERR *cgi_url_escape_more (const char *buf, char **esc, const char *other); ARGUMENTS
buf - a 0 terminated string other - a 0 terminated string of characters to escape DESCRIPTION
cgi_url_escape_more will do URL escaping on the passed in string, and return a newly allocated string that is escaped. Characters which are escaped include control characters, %, ?, +, space, =, &, /, and " and any characters in other RETURN VALUE
esc - a newly allocated string SEE ALSO
cgi_debug_init(3), cgi_parse(3), cgi_destroy(3), cgi_js_escape(3), cgi_html_escape_strfunc(3), cgi_register_strfuncs(3), cgi_output(3), parse_rfc2388(3), cgi_url_validate(3), open_upload(3), cgi_cs_init(3), cgi_url_escape_more(3), cgi_html_strip_strfunc(3), cgi_neo_error(3), cgi_redirect(3), cgi_filehandle(3), cgi_register_parse_cb(3), cgi_url_escape(3), cgi_init(3), cgi_redirect_uri(3), cgi_cookie_clear(3), cgi_url_unescape(3), cgi_vredirect(3), cgi_display(3), cgi_html_ws_strip(3), cgi_error(3), cgi_cookie_set(3), cgi_text_html_strfunc(3), cgi_cookie_authority ClearSilver 12 July 2007 cgi_url_escape_more(3)

Check Out this Related Man Page

CSS::DOM::Util(3pm)					User Contributed Perl Documentation				       CSS::DOM::Util(3pm)

NAME
CSS::DOM::Util - Utility functions for dealing with CSS tokens VERSION
Version 0.14 SYNOPSIS
use CSS::DOM::Util ':all'; # or: use CSS::DOM::Util qw[ escape unescape escape_ident unescape_url escape_str unescape_str ]; DESCRIPTION
This module provides utility functions for dealing with CSS tokens. FUNCTIONS
All functions below that take one argument have a "($)" prototype, so they have the same precedence as "closedir" and "delete". escape $string, $chars_to_escape This escapes any characters in $string that occur in $chars_to_escape, which is interpreted as a regular expression. The regexp must consume just one character; otherwise you'll find chars missing from the output. ASCII vertical whitespace (except the vertical tab) is always escaped. Printable non-alphanumeric ASCII characters and the space character are escaped with a single backslash. Other characters are encoded in hexadecimal. "escape" also considers that you might want to include the escaped string in a larger string, so it appends a space if the escaped string ends with a hexadecimal escape with fewer than six digits. unescape $string This turns something like "H65llo" into "Hello" (including quotes). escape_ident $string escape_ident $string, $more_chars_to_escape This escapes $string as a CSS identifier, escaping also any characters matched by $more_chars_to_escape. unescape_url $url_token Returns the URL that the token represents. escape_str $string Returns a CSS string token containing $string (within quotes; characters possibly escaped). unescape_str $string_token Returns the value that a CSS string token represents. SEE ALSO
CSS::DOM perl v5.10.1 2010-12-10 CSS::DOM::Util(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

parsing url string

Hi, I have a url like this:- http://resource.ibab.ac.in/cgi-bin/pubmed_abstract/y.cgi?pmid=+1.10529272+&pmid=+3.8379586 I want to parse the url string.I want to get the values 1.10529272 3.8379586 How do i do that? (5 Replies)
Discussion started by: vanitham
5 Replies

2. UNIX for Dummies Questions & Answers

Simple or maybe not..

Hello, I need to be able to get these to functions together: my $location=url_param("get"); my $url="script.cgi?run="; Something like this: my $new="script.cgi?run=";+url_param("get"); ...but of course something that works Then I want to use: print get $new Hopefully it is... (1 Reply)
Discussion started by: marringi
1 Replies

3. UNIX for Dummies Questions & Answers

how to extend words on a command line ?

within a unix window, how do you setup your session to extend a word, by hitting the "esc" key twice. e.g. ls -la scri (esc key, esc key) thankyou (6 Replies)
Discussion started by: venhart
6 Replies

4. UNIX for Beginners Questions & Answers

File name starts with esc character.

How can I refer to a file named esc[G ? I need to delete it or move it. TIA (5 Replies)
Discussion started by: wbport
5 Replies