!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/doc/libxslt-1.0.27/html/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     libxslt-variables.html (28.45 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
variables

variables

Name

variables -- 

Synopsis



#define     XSLT_REGISTER_VARIABLE_LOOKUP   (ctxt)
int         xsltEvalGlobalVariables         (xsltTransformContextPtr ctxt);
int         xsltEvalUserParams              (xsltTransformContextPtr ctxt,
                                             const char **params);
int         xsltQuoteUserParams             (xsltTransformContextPtr ctxt,
                                             const char **params);
int         xsltEvalOneUserParam            (xsltTransformContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *value);
int         xsltQuoteOneUserParam           (xsltTransformContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *value);
void        xsltParseGlobalVariable         (xsltStylesheetPtr style,
                                             xmlNodePtr cur);
void        xsltParseGlobalParam            (xsltStylesheetPtr style,
                                             xmlNodePtr cur);
void        xsltParseStylesheetVariable     (xsltTransformContextPtr ctxt,
                                             xmlNodePtr cur);
void        xsltParseStylesheetParam        (xsltTransformContextPtr ctxt,
                                             xmlNodePtr cur);
xsltStackElemPtr xsltParseStylesheetCallerParam
                                            (xsltTransformContextPtr ctxt,
                                             xmlNodePtr cur);
int         xsltAddStackElemList            (xsltTransformContextPtr ctxt,
                                             xsltStackElemPtr elems);
void        xsltFreeGlobalVariables         (xsltTransformContextPtr ctxt);
xmlXPathObjectPtr xsltVariableLookup        (xsltTransformContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
xmlXPathObjectPtr xsltXPathVariableLookup   (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Description

Details

XSLT_REGISTER_VARIABLE_LOOKUP()

#define     XSLT_REGISTER_VARIABLE_LOOKUP(ctxt)

Registering macro, not general purpose at all but used in different modules.

ctxt : 


xsltEvalGlobalVariables ()

int         xsltEvalGlobalVariables         (xsltTransformContextPtr ctxt);

Evaluate the global variables of a stylesheet. This need to be done on parsed stylesheets before starting to apply transformations

ctxt : the XSLT transformation context
Returns :0 in case of success, -1 in case of error


xsltEvalUserParams ()

int         xsltEvalUserParams              (xsltTransformContextPtr ctxt,
                                             const char **params);

ctxt: the XSLT transformation context params: a NULL terminated array of parameters name/value tuples

Evaluate the global variables of a stylesheet. This needs to be done on parsed stylesheets before starting to apply transformations. Each of the parameters is evaluated as an XPath expression and stored in the global variables/parameter hash table. If you want your parameter used literally, use xsltQuoteUserParams.

ctxt : 
params : 
Returns :0 in case of success, -1 in case of error


xsltQuoteUserParams ()

int         xsltQuoteUserParams             (xsltTransformContextPtr ctxt,
                                             const char **params);

ctxt: the XSLT transformation context params: a NULL terminated arry of parameters names/values tuples

Similar to xsltEvalUserParams, but the values are treated literally and are * *not* evaluated as XPath expressions. This should be done on parsed stylesheets before starting to apply transformations.

ctxt : 
params : 
Returns :0 in case of success, -1 in case of error.


xsltEvalOneUserParam ()

int         xsltEvalOneUserParam            (xsltTransformContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *value);

This is normally called from xsltEvalUserParams to process a single parameter from a list of parameters. The value is evaluated as an XPath expression and the result is stored in the context's global variable/parameter hash table.

To have a parameter treated literally (not as an XPath expression) use xsltQuoteUserParams (or xsltQuoteOneUserParam). For more details see description of xsltProcessOneUserParamInternal.

ctxt : the XSLT transformation context
name : a null terminated string giving the name of the parameter
value : a null terminated string giving the XPath expression to be evaluated
Returns :0 in case of success, -1 in case of error.


xsltQuoteOneUserParam ()

int         xsltQuoteOneUserParam           (xsltTransformContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *value);

This is normally called from xsltQuoteUserParams to process a single parameter from a list of parameters. The value is stored in the context's global variable/parameter hash table.

ctxt : the XSLT transformation context
name : a null terminated string giving the name of the parameter
value : a null terminated string giving the parameter value
Returns :0 in case of success, -1 in case of error.


xsltParseGlobalVariable ()

void        xsltParseGlobalVariable         (xsltStylesheetPtr style,
                                             xmlNodePtr cur);

parse an XSLT transformation variable declaration and record its value.

style : the XSLT stylesheet
cur : the "variable" element


xsltParseGlobalParam ()

void        xsltParseGlobalParam            (xsltStylesheetPtr style,
                                             xmlNodePtr cur);

parse an XSLT transformation param declaration and record its value.

style : the XSLT stylesheet
cur : the "param" element


xsltParseStylesheetVariable ()

void        xsltParseStylesheetVariable     (xsltTransformContextPtr ctxt,
                                             xmlNodePtr cur);

parse an XSLT transformation variable declaration and record its value.

ctxt : the XSLT transformation context
cur : the "variable" element


xsltParseStylesheetParam ()

void        xsltParseStylesheetParam        (xsltTransformContextPtr ctxt,
                                             xmlNodePtr cur);

parse an XSLT transformation param declaration and record its value.

ctxt : the XSLT transformation context
cur : the "param" element


xsltParseStylesheetCallerParam ()

xsltStackElemPtr xsltParseStylesheetCallerParam
                                            (xsltTransformContextPtr ctxt,
                                             xmlNodePtr cur);

parse an XSLT transformation param declaration, compute its value but doesn't record it.

ctxt : the XSLT transformation context
cur : the "param" element
Returns :the new xsltStackElemPtr or NULL


xsltAddStackElemList ()

int         xsltAddStackElemList            (xsltTransformContextPtr ctxt,
                                             xsltStackElemPtr elems);

add the new element list at this level of the stack.

ctxt : xn XSLT transformation context
elems : a stack element list
Returns :0 in case of success, -1 in case of failure.


xsltFreeGlobalVariables ()

void        xsltFreeGlobalVariables         (xsltTransformContextPtr ctxt);

Free up the data associated to the global variables its value.

ctxt : the XSLT transformation context


xsltVariableLookup ()

xmlXPathObjectPtr xsltVariableLookup        (xsltTransformContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Search in the Variable array of the context for the given variable value.

ctxt : the XSLT transformation context
name : the variable name
ns_uri : the variable namespace URI
Returns :the value or NULL if not found


xsltXPathVariableLookup ()

xmlXPathObjectPtr xsltXPathVariableLookup   (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

This is the entry point when a varibale is needed by the XPath interpretor.

ctxt : a void * but the the XSLT transformation context actually
name : the variable name
ns_uri : the variable namespace URI
Returns :the value or NULL if not found


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0098 ]--