Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Kaele7

    Proxy Authentication in a University setting with a gaming application

    I've been searching long and hard for a solution to this. I'm at the University of Michigan and they have a proxy set up that all outgoing internet connections have to bypass. Each connection requires a separate authentication. I'm trying to play Lord of the Rings Online. It's got built in...
  2. Kaele7

    Javascript issues with XSL transformations

    I've a unique problem that I'm not finding anything about almost anywhere. I have a personal career portfolio website I'm setting up at http://www.lucas.petherbridge.org/ and I'm using an all XML design layout. I've found quite a few issues with javascript and XSL transformation and I can't get...
  3. Kaele7

    Query or param passing with Javascript

    So far what I've got are a few <xsl:if> statements dividing up the sections on the page. What I'm still trying to figure out is how to pass a query string from a javascript variable into a form that the xsl can recognize. Two options are passing a paramater, or changing an xml node. I've tried...
  4. Kaele7

    Query or param passing with Javascript

    Hello, I've got a bit of a problem and have been searching for hours for a solution. Basically I have a unique layout for a blog section of my website that is purely XML/XSL. I have a for-each loop that prints out all the blog entries from an external xml file, what I'm trying to do is make a...
  5. Kaele7

    Format of external XML files

    Nevermind. I figured it out, but for those who are interested in knowing how, putting this: <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> at the top of your xsl file will allow any externally called xml templates to...
  6. Kaele7

    Format of external XML files

    Hello. I'm currently working on a portfolio site where the large text portions are taken from external xml files. I've seen examples of simple xml templates such as: <?xml version="1.0" encoding="UTF-8"?> <div class="intro"> <h1>Heading</h1> <b>Hello world</b> </div> can be imported with...

Part and Inventory Search

Back
Top