Sponsored Content
Full Discussion: Whats Behind Your Name?
The Lounge What is on Your Mind? Whats Behind Your Name? Post 75571 by qfwfq on Monday 20th of June 2005 03:36:01 PM
Old 06-20-2005
Mine is from one of my favourite author named Italo Calvino from Italy. QFWFQ is the name of the main character in a book called COSMICOMIC... excellent, you should read it.
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Whats does this mean

Found this piece of code written in ksh. I have no ideas what do the stuff like ${SRF##*\.} do. SUFFIX=${SRF##*\.} if ; then SUFFIX="" fi I have encountered similar expressions in other programs also. Any pointers on where to learn more about these... (1 Reply)
Discussion started by: jyotipg
1 Replies

2. Post Here to Contact Site Administrators and Moderators

Whats the go?

woofie, Your posts are being deleted because your use of profanity. I am close to changing your status to read only. In fact, if you argue with the mods again, I will ban you from these boards. Neo (1 Reply)
Discussion started by: Neo
1 Replies

3. Shell Programming and Scripting

whats the difference between $* and $@

Hi, whats the difference between $* and $@ in command line arguments to a shell scripts (3 Replies)
Discussion started by: pbsrinivas
3 Replies

4. Shell Programming and Scripting

tell me whats wrong in this?

#! /bin/bash head -5 $1 echo "remove $1 ?" read answer if then echo invalid answer elif rm $1 echo "$1 is deleted" elif then echo file is not deleted else echo "invalid answer" fi What i really want this to do is to ask to delete the file or not..it says something wrong... (1 Reply)
Discussion started by: nadman123
1 Replies

5. Shell Programming and Scripting

tell me whats wrong with this

#! /bin/bash USAGE=" | ] if then echo "$USAGE" exit 1 fi while getopts lb: OPTION do case $(OPTION)in a) echo Hi there! exit 2;; b) echo hello o) OARG=$OPTARG;; \?)echo "$USAGE" ;; exit 2;; esac done shift `expr... (1 Reply)
Discussion started by: nadman123
1 Replies

6. Shell Programming and Scripting

whats this NAME=${0##*/}

hi all, i found NAME=${0##*/} in a script. i given this coomand in my unix box(presently in ksh). echo ${0##*/} it returned ksh. the purpose of the above is to return the shell name or more than that. do you have any more information like this, please share with me. one more query... (7 Replies)
Discussion started by: Arunprasad
7 Replies

7. Shell Programming and Scripting

##*_ - whats this?

Hi all, could you please tell me whats this stands ##*_ 0##*/ i knew this alone if some more is there please tell me that also. (3 Replies)
Discussion started by: Arunprasad
3 Replies

8. UNIX for Dummies Questions & Answers

whats wrong with this?

can anyone tell me why this code doesn't work how its supposed to, its the hangman game but it doesn't play how its supposed to #!/bin/bash NoAttempts="0" livesgiven="5" LivesRemain=$livesgiven LettersAttempted="" wordfile=words numwords=0 function menu() { clear cat << menu... (1 Reply)
Discussion started by: ferrycorsten73
1 Replies

9. Homework & Coursework Questions

Whats wrong with the following

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: ls -ld htdocs drwxr-x--- 3 root root 8192 2006-11-19 10:41 htdocs How would a host administrator... (1 Reply)
Discussion started by: Larry_1
1 Replies
XSLT_SET_SAX_HANDLERS(3)						 1						  XSLT_SET_SAX_HANDLERS(3)

xslt_set_sax_handlers - Set the SAX handlers to be called when the XML document gets processed

SYNOPSIS
void xslt_set_sax_handlers (resource $processor, array $handlers) DESCRIPTION
xslt_set_sax_handlers(3) registers the SAX $handlers for the document, given a XSLT $processor resource. Using xslt_set_sax_handlers(3) doesn't look very different than running a SAX parser like xml_parse(3) on the result of an xslt_process(3) transformation. PARAMETERS
o $ processor -The XSLT processor link identifier, created with xslt_create(3). o $handlers -$handlers should be an array in the following format: <?php $handlers = array( "document" => array( "start_doc", "end_doc"), "element" => array( "start_element", "end_element"), "namespace" => array( "start_namespace", "end_namespace"), "comment" => "comment", "pi" => "pi", "character" => "characters" ); ?> Note The given array does not need to contain all of the different sax handler elements (although it can), but it only needs to conform to "handler" => "function" format described above. Each of the individual SAX handler functions are in the format below: o start_doc (resource $processor) o end_doc (resource $processor) o start_element (resource $processor, string $name, array $attributes) o end_element (resource $processor, string $name) o start_namespace (resource $processor, string $prefix, string $uri) o end_namespace (resource $processor, string $prefix) o comment (resource $processor, string $contents) o pi (resource $processor, string $target, string $contents) o characters (resource $processor, string $contents) RETURN VALUES
No value is returned. EXAMPLES
Example #1 xslt_set_sax_handlers(3) Example <?php // From ohlesbeauxjours at yahoo dot fr // Here's a simple example that applies strtoupper() on // the content of every <auteur> tag and then displays the // resulting XML tree: $xml='<?xml version="1.0"?> <books> <book> <title>Mme Bovary</title> <author>Gustave Flaubert</author> </book> <book> <title>Mrs Dalloway</title> <author>Virginia Woolf</author> </book> </books>'; $xsl='<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" encoding="ISO-8859-1" indent="no" omit-xml-declaration="yes"/> <xsl:template match="/"> <xsl:for-each select="books/book"> <livre> <auteur><xsl:value-of select="author/text()"/></auteur> </livre> </xsl:for-each> </xsl:template> </xsl:stylesheet>'; // Handlers : function start_document() { // start reading the document } function end_document() { // end reading the document } function start_element($parser, $name, $attributes) { global $result,$tag; $result .= "<". $name . ">"; $tag = $name; } function end_element($parser, $name) { global $result; $result .= "</" . $name . ">"; } function characters($parser, $data) { global $result,$tag; if ($tag == "auteur" ) { $data = strtoupper($data); } $result .= $data; } // Transformation : $xh = xslt_create(); $handlers = array("document" => array("start_document","end_document"), "element" => array("start_element","end_element"), "character" => "characters"); xslt_set_sax_handlers($xh, $handlers); xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, array("/_xml"=>$xml, "/_xsl"=>$xsl)); xslt_free($xh); ?> You can also use xslt_set_object(3) if you want to implement your handlers in an object. Example #2 Object oriented handler <?php // This is the object oriented version of the previous example class data_sax_handler { var $buffer, $tag, $attrs; var $_xh; function data_sax_handler($xml, $xsl) { // our xslt resource $this->_xh = xslt_create(); xslt_set_object($this->_xs, $this); // configure sax handlers $handlers = array( "document" => array('start_document', 'end_document'), "element" => array('start_element', 'end_element'), "character" => 'characters' ); xslt_set_sax_handlers($this->_xh, $handlers); xslt_process($this->_xh, 'arg:/_xml', 'arg:/_xsl', NULL, array("/_xml"=>$xml, "/_xsl"=>$xsl)); xslt_free($this->_xh); } function start_document() { // start reading the document } function end_document() { // complete reading the document } function start_element($parser, $name, $attributes) { $this->tag = $name; $this->buffer .= "<" . $name . ">"; $this->attrs = $attributes; } function end_element($parser, $name) { $this->tag = ''; $this->buffer .= "</" . $name . ">"; } function characters($parser, $data) { if ($this->tag == 'auteur') { $data = strtoupper($data); } $this->buffer .= $data; } function get_buffer() { return $this->buffer; } } $exec = new data_sax_handler($xml, $xsl); ?> Both examples will output: <livre> <auteur>GUSTAVE FLAUBERT</auteur> </livre> <livre> <auteur>VIRGINIA WOOLF</auteur> </livre> PHP Documentation Group XSLT_SET_SAX_HANDLERS(3)
All times are GMT -4. The time now is 08:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy