User Profile

Collapse

Profile Sidebar

Collapse
samueln12
samueln12
Last Activity: Mar 25 '17, 01:26 PM
Joined: Feb 3 '09
Location: Bangalore
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • samueln12
    started a topic How to read a processing instruction?
    in XML

    How to read a processing instruction?

    Hi ALL,

    I have a processing instruction like <?aid Char="feff" Self="rc_u434fi 2d8fiecins0"?>

    Now i want to read this by XSLT and convert to tags like

    <aid char="feff" self="rc_u434fi 2d8fiecins0">

    How this is possible using XSLT

    Thanks
    Sam
    See more | Go to post

  • samueln12
    started a topic How to repeat the tags using the foreach
    in XML

    How to repeat the tags using the foreach

    I want to repeat the tag according to my cols number

    For eg:
    Code:
    <tgroup cols="5"><thead><row>
    Required out is
    Code:
    <tgroup cols="5">
    <colspec colnum="1" colname="col1"/>
    <colspec colnum="2" colname="col2"/>
    <colspec colnum="3" colname="col3"/>
    <colspec colnum="4"
    ...
    See more | Go to post
    Last edited by Dormilich; Mar 4 '11, 09:39 AM.

  • samueln12
    started a topic Xpath Help
    in XML

    Xpath Help

    Hi ALL,

    I have a XML file in following type

    Code:
    <xml>
    <para type="P">Sample text 1 goes here</para>
    <para>Sample text 2 goes here</para>
    <para>Sample text 3 goes here</para>
    <para type="P">Sample text 4 goes here</para>
    <para>Sample text 5 goes here</para>
    <para>Sample text 6 goes here</para>
    ...
    See more | Go to post
    Last edited by Dormilich; Sep 28 '10, 05:54 AM. Reason: please use [code] [/code] tags when posting code

  • samueln12
    started a topic How to check read only
    in Perl

    How to check read only

    Hi ALL,

    I have a MS 2003 server. All my text files are available in the server.

    I have 5 clients attached to the server.

    Now what i want is

    If any client user opens a text file from the server, other client user should be able to know that this file is already opened.

    How to do this in Perl.

    Note: i want to do this client side

    Thanks
    S...
    See more | Go to post

  • No we are just going to setup the process
    See more | Go to post

    Leave a comment:


  • samueln12
    started a topic To create a microsoft word live workstation

    To create a microsoft word live workstation

    Hi ALL,

    We have a server, in that we have lots of word files, all these files are belonging to several authors.

    Now we want to share these word files from the server to the author to do revision. And update back the revision file to the server.

    Can anyone help me providing sample pages to do this using ASP.net. This is similar like Microsoft Office Live.

    Thanks
    Sam
    See more | Go to post

  • samueln12
    replied to XSLT sort question
    in XML
    Problem Solved

    Hi ALL,

    Thanks for all your support

    I finally fixed by the following method

    <xsl:sort select="transla te(child::inlin e-graphic/@href, 'abcdefghijklmn opqrstuvwxyz-', '00000000000000 0000000000000') " data-type="number"/>

    Thanks
    Sam
    See more | Go to post

    Leave a comment:


  • samueln12
    started a topic XSLT sort question
    in XML

    XSLT sort question

    Hi,

    I have the following content

    Code:
    <inline-graphic href="gkq255i1"/>
    <inline-graphic href="gkq255i2"/>
    <inline-graphic href="gkq255i3"/>
    <inline-graphic href="gkq255i100"/>
    <inline-graphic href="gkq255i10"/>
    <inline-graphic href="gkq255i11"/>
    <inline-graphic href="gkq255i99"/>
    ...
    See more | Go to post
    Last edited by Dormilich; Apr 28 '10, 01:20 PM. Reason: Please use [code] tags when posting code

  • samueln12
    replied to Changing the order of the XML
    in XML
    ok thanks i done this using perl. but i know that using XSLT its very easy....
    See more | Go to post

    Leave a comment:


  • samueln12
    replied to Changing the order of the XML
    in XML
    If citation are not in order e.g. Figure 4 first and Figure 3 next, Figure 4 should placed after figure 3, even though figure 4 citation in first.

    For example, if figure 3 not cited in the text then figure 3 go under figure 2. and Figure 4 place under the Figure 4 paragraph

    I hope this will help u...
    See more | Go to post

    Leave a comment:


  • samueln12
    replied to Changing the order of the XML
    in XML
    That is the client requirement. If any citation missing we have to place after the preceding citation....
    See more | Go to post

    Leave a comment:


  • samueln12
    replied to Changing the order of the XML
    in XML
    XSLT version=2.0
    See more | Go to post

    Leave a comment:


  • samueln12
    started a topic Changing the order of the XML
    in XML

    Changing the order of the XML

    I want to change the order the caption according to their citation present in the text.

    For example:

    Code:
    <book>
    <chapter>
    <title/>
    <p>1 Some text goes here <xref rid="F1">Figure 1</xref></p>
    <p>2 Some text goes here <xref rid="F2">Figure 2</xref></p>
    <p>3 Some text goes here <xref rid="F4">Figure
    ...
    See more | Go to post
    Last edited by Dormilich; Apr 12 '10, 11:44 AM. Reason: Please use [code] tags when posting code

  • samueln12
    replied to windows font folder name
    Great. its works thanks
    See more | Go to post

    Leave a comment:


  • samueln12
    started a topic windows font folder name

    windows font folder name

    Hello,

    I want to get the windows font folder with path.

    Please any one help me

    Thanks
    Sam
    See more | Go to post

  • Sample for your reference:

    Code:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <xsl:stylesheet  version="2.0"
    	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    	xmlns:DBE="http://schemas.microsoft.com/office/word/2003/wordml">
    	<xsl:template match="*">
    		<xsl:copy>
    			<xsl:copy-of select="@*"/>
    ...
    See more | Go to post
    Last edited by Dormilich; Sep 16 '09, 05:32 AM. Reason: Please use [code] tags when posting code

    Leave a comment:


  • How to combine the following-sibling is same element

    Hello Guru's,

    I need a help from u guys, I am working on XSLT and my XML is like this

    Code:
    <text><i>Hello</i><i> world</i>... <i>Here</i> we <i>go</i>... <i>This</i> <i>is</i> for sample</text>
    transform to

    Code:
    <text><i>Hello world</i>... <i>Here</i> we <i>go</i>... <i>This</i>
    ...
    See more | Go to post

  • samueln12
    started a topic XSLT count
    in XML

    XSLT count

    Hi ALL,

    I want to count the character position from the root using Xpath expression and Line number

    For Eg

    Code:
    <book>
    <title>Modern Computers</title>
    <author><fnm>Samuel</fnm><snm>N</snm></author>
    <text>This book deals with </text>
    </book>
    Now i want to count the fnm position from root
    ...
    See more | Go to post
    Last edited by Dormilich; Jul 26 '09, 10:22 AM. Reason: added [code] tags

  • samueln12
    replied to nsgml parser help
    in XML
    i am using NSGMLS.EXE...
    See more | Go to post

    Leave a comment:


  • samueln12
    started a topic nsgml parser help
    in XML

    nsgml parser help

    Hi i want to modify the "xml.dcl" file

    I want to throw the error message for these characters "á" "ó" while doing nsgml parsing. Please any one help me how to modify the xml.dcl...
    See more | Go to post
No activity results to display
Show More
Working...