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 strongm 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. fuli42

    Browser-based authoring (in XML)

    Thank you Petey! I've just came back from the Computer school's Library where I've picked up an O'Reilly's Java servlet programming handbook. I guess it's not the latest edition, but at my level it's quite good. Thanks again, Fuli
  2. fuli42

    Browser-based authoring (in XML)

    Hello! My question is very general, so rather than a specific answer, I would appreciate even some pointers (websites, tutorials, books, etc.) I would create a simple one field form. The author would write his notes in it, when submitted, the data is added to an XML database. (Then a XSL...
  3. fuli42

    If Xalan's redirect does not work, see this:

    Hello! I've wasted two days figuring out what's wrong, so: If you are trying to use Xalan's redirect extension, and you get a Java error message that the required class is not found, is because you are probably using one of the more recent Java distributions. They come packed with an earlier...
  4. fuli42

    Server side XSLT transforms (Java)

    Hello! I am building a weblog for a friend. My plan is that he would input his logs in a form, then when hits the submit button, the data would be added to an XML file (that holds the content for his site), along with the date (using a simple Java function). Then with the same go, another XSLT...
  5. fuli42

    unordered lists for horizontal menus? (CSS)

    THankx, Petey, Yes, in fact I followed the same link to arrive to the one I've posted above ;)
  6. fuli42

    XSL and namespace

    Thanx Uura! So, doeas this mean that I am required to use prefixes? I've just added an xmlns to the root element of the XML file, with no prefix: <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-2&quot;?> <zh xmlns=&quot;http://www.zold-hid.hu/xml/namespace&quot...
  7. fuli42

    XSL and namespace

    Hi! I'm new to XML and XSL so... I'm using Xalan -Java to the transformations. If the root element (the topmost) contains a namespace declaration in the XML file, the XSLT just returns all of the text from the XML file. If I remove the namespace declaration, then I can use simple <template...
  8. fuli42

    unordered lists for horizontal menus? (CSS)

    Hi! Sorry, my post might have been unnecessary... I1ve found the answer: If you are interested in how the above task can be accomplished, here's the link: http://www.alistapart.com/stories/practicalcss/ somewhere at the bottom. Happy coding, Balint
  9. fuli42

    unordered lists for horizontal menus? (CSS)

    Hi! I am building an XHTML site. In respect to the XML philosophy, I think one should organise the navigation menus in a way that it represents some sort of strucutre in the code. So: <ul> <li><a href=&quot;link1.html&quot;>Menu1</a></li> <li>a href=&quot;link2.html&quot;>Menu2</a></li> </ul>...
  10. fuli42

    XML for website: Schema or DTD?

    Thanks! I wrote the validation file using xsd, though it needed a couple of turns with the SQC before I got it all right... Balint
  11. fuli42

    XML for websites: Filling XML databases

    Hello! This is indeed a very good solution! It is very simple and easy to create. The downside is, that it's not always as simple as filling out forms. For example I don't know how many paragraphs, and subparagraphs an article will contain, thus I can't work with a fixed number of form fields...
  12. fuli42

    XML for websites: Filling XML databases

    Thanks for the support, I1ll check your suggestions... Cheers, Balint
  13. fuli42

    XML for website: Schema or DTD?

    Thanks Chiph! I wasn't sure if XSD worked with XSL. I've read somewhere that some functions wouldn't work in XSLT if you're using XSD (IDs for example). If I'm doing XSL transorfmation to output XHTML can I still use XSD? I have a book that explains both DTD, and XSD so neither of them should...
  14. fuli42

    XML for websites: Filling XML databases

    Thanx Cian! This would be perfect, because this way the content of the site could be updated from anywhere. So far, I can't program in Perl or PHP so... Thanks again Balint
  15. fuli42

    XML for websites: Filling XML databases

    THank you Scott! I was thinking of a simpler solution. The XML file, with its own DTD is finished, now what remains is that new content has to be added. I could do it with Notepad, and add the apropriate tags myself. But for those who will write the articles it would be too complicated. They...
  16. fuli42

    XML for website: Schema or DTD?

    Thank you! I'll use DTD, since the data in the XML file will be entered by humans (not IT professionals), and I have to make sure they enter it correctly. Thanks again Bálint
  17. fuli42

    XML for websites: Filling XML databases

    Hello! I have another question concerninng my XML, XHTML site: Once I have the XML database, XSLT running, how can the XML database filled up, with very little computer skills? I thought I would create an MS Word template, so that whoever writes the articles, he/she only has to &quot;mark...
  18. fuli42

    XML for website: Schema or DTD?

    Hello! I am building a site using XML and XSLT to generate XHTML code. The question is should I use DTD instead of XML Schema for validation? XML Schema is more advanced, but as far as i know XSLT parser can't use them. Is this a problem for the transoformation? Thank you all, Balint
  19. fuli42

    document.all vs. getelementbyID

    Thanks for the info. So if i understood it right, you can safely replace document.all with document.getElementById, and be forward-compatible. There are now very few people who are still using IE4. For NN4, i will still continue to condition my scripts. Sundemon: Thanks for the script! I've...
  20. fuli42

    document.all vs. getelementbyID

    Formely I've been using document.layers (NN4) and document.all (IE) for browser conditioning. On Mozilla (no more layers), some of my scripts are not working. How should I do the transition form document.all to getelementbyID, what are the differences, support? Any sites recommended? Thanks...

Part and Inventory Search

Back
Top