이수안 데이터 연구실

검색 :
RSS 구독 : 글 / 댓글 / 트랙백 / 글+트랙백

Official Specifications

2008/05/03 13:10, 글쓴이
Site : http://webdeveloper.econsultant.com/off ··· tions%2F

Official specifications links.

  1. RSS 2.0 Specification : at Harvard Law
  2. Cascading Style Sheets - level 1 (CSS1) : at World Wide Web Consortium (W3C)
  3. Cascading Style Sheets - level 2 (CSS2) : at World Wide Web Consortium (W3C)
  4. Cascading Style Sheets, level 2 revision 1. CSS 2.1 Specification : at World Wide Web Consortium (W3C)
  5. Document Object Model (DOM) Level 1 Specification : at World Wide Web Consortium (W3C)
  6. Document Object Model (DOM) Level 2 Specification : at World Wide Web Consortium (W3C)
  7. Document Object Model (DOM) Level 3 Specification : at World Wide Web Consortium (W3C)
  8. HTML 4.01 Specifications : at World Wide Web Consortium (W3C)
  9. ISO-HTML Specification : at Department of Computer Science, Trinity College Dublin, Dublin
  10. Ruby on Rails : at Ruby on Rails
  11. XHTML 1.0 Specifications : at World Wide Web Consortium (W3C)
  12. XML 1.0 : at World Wide Web Consortium (W3C)
  13. W3C Technical Reports and Publications : full list of documents in various stages at World Wide Web Consortium (W3C)

이올린에 북마크하기(0) 이올린에 추천하기(0)
"Web" 카테고리의 다른 글
2008/05/03 13:10 2008/05/03 13:10

맨 위로

Top 119 Cheat Sheets

2008/05/03 13:07, 글쓴이
Site : http://webdeveloper.econsultant.com/

ActionScript

Ajax

2008/05/03 13:07 2008/05/03 13:07

맨 위로

XML Tutorials, References

2008/05/01 12:50, 글쓴이
Site : http://webdeveloper.econsultant.com/

Software tools to create / edit / read XML.

  1. XMLBuddy : supports XML and DTDs. Free version. Paid Pro version : XMLBuddy.
  2. XML Forms Generator : standards-based, data-driven Eclipse plug-in generates forms that adhere to the XForms 1.0 standard : IBM.
  3. XML Generator : to generate XML from any data source : CodeProject.

Tutorials to get started on XML.

  1. A Really, Really, Really Good Introduction to XML : basics of XML at sitepoint
  2. Project Cool: Web Development Basics : XML Tutorials at DevX
  3. Understanding XML : a place to learn about the ins and outs of XML, XSLT, XUL
  4. XML for Absolute Beginner : a short tutorial at PerfectXML
  5. XML Tutorial : basic and advanced tutorial at W3School
  6. XML tutorials : at Tutorialized.com
  7. XML / HTML References : reference lists for XML properties.


이올린에 북마크하기(0) 이올린에 추천하기(0)
"XML" 카테고리의 다른 글
2008/05/01 12:50 2008/05/01 12:50

맨 위로

Processing XML with Java - Elliotte Rusty Harold

2008/03/23 17:09, 글쓴이

http://www.cafeconleche.org/books/xmljava/

Processing XML with Java

Elliotte Rusty Harold

[##_1R|1327038262.jpg|width="240" height="301" alt="?ъ

이올린에 북마크하기(0) 이올린에 추천하기(0)
"XML" 카테고리의 다른 글
2008/03/23 17:09 2008/03/23 17:09

맨 위로

Java DOM Tutorial

http://www.roseindia.net/xml/dom/index.shtml

Java DOM Tutorial

This tutorial is complete guide to DOM processing.

What is DOM?

Document Object Model: DOM is a platform- and language-neutral interface, that provides a standard model of how the objects in an XML object are put together, and a standard interface for accessing and manipulating these objects and their inter-relationships.

The DOM is an interface that exposes an XML document as a tree structure comprised of nodes. The DOM allows you to programmatically navigate the tree and add, change and delete any of its elements.

The DOM programming interface standards are defined by the World Wide Web Consortium (W3C). The W3C site provides a comprehensive reference of the XML DOM.

  1. Creating Blank DOM Document
    This section shows you how to create the blank DOM document.
           

  2. Adding Child Elements to the DOM tree
    This lesson shows you how to create root and child elements in the DOM tree.
       

  3. Getting The XML Root Element
    After reading this section, you will be able to retrieve a  root element from the XML document.  The JAXP (Java APIs for XML Processing) provides a common interface for creating and using xml files using the standard SAX, DOM and XSLTs.
         
  4. To Count XML Element
    In this section, you will learn to count the elements present in a XML file using DOM APIs.
           
  5. To Count The Elements in a XML File
    In this section, you will learn to count the element in XML document using DOM APIs defined in the org.apache.xerces.parsers.DOMParser  package.
           
  6. XML Well-Formed-ness
    In this section, you will learn to check the well-formed-ness  of a XML using the DOM interface. A  well-formed  XML  document must follow the xml syntax rules.

  7. Searching an Element in the given XML Document
    In this you will learn to search an element in the specified XML document using DOM APIs defined in the org.apache.xerces.parsers.DOMParser  package.
           
  8. Create - XML File (Document)
    In this section, you will  learn to create a XML document using the DOM APIs. This XML document uses  1.0 version and UTF-8 encoding.

  9. Regenerating XML  file
    In this section, you will learn to get the  elements and its value using DOM APIs.

  10. XML Error checker and locater (DOM)
    In this section, you will learn to check and locate (line and column number) an error in your XML document using the DOM APIs.  The XML document follows some rules to check its syntax.
       
  11. Getting all XML Elements
    In this section, you will learn to retrieve all elements of the XML file using the DOM APIs. This APIs provides some constructors and methods which helps us to parse the XML file and retrieve all elements.
       
  12. Adding DOCTYPE to a XML File
    In this section, you will learn to add a DOCTYPE to your XML file  using the DOM APIs.
       
  13. Getting Dom Tree Elements and their Corresponding XML Fragments
    In this section, you will learn to get the elements of a DOM tree and their corresponding XML fragments. Each element of dom tree has a node level starting with '0'. Here the DOM tree elements and their corresponding XML fragments are displayed on the console.
     
  14. Cloning a XML Element
    In this section, you will learn to create a clone of a  element in the DOM tree. In general, the cloning means to create a duplicate.
     
  15. Remove Element from XML Document
    In this section, you will learn to remove any element from a given  XML document. Whenever you remove the xml element from the xml document the data are also lost from the xml element.
         
  16. Getting Data from XML File (Document)
    In this section, you will learn to retrieve the data from a XML file. All xml files store the data. You can add and modify the data in the  xml document using the DOM APIs.
     
  17. Storing Data (Retrieved from a XML Document) to a File
    In this section, you will learn to store data (retrieved from the XML document) to a specified file (with  extension '.txt', '.doc', '.xls', '.shtml' etc.) in different formats (text, xml, html etc.).
         
  18. XML Validate DTD
    In this section, you will learn to validate a xml file against a  DTD (Document Type Definition)  using the DOM APIs. A DTD defines the document structure with a list of legal elements and attributes.

XML Tutorials Links
Links of Many XML Tutorials. Here you will find lots of XML Tutorials.


이올린에 북마크하기(0) 이올린에 추천하기(0)
"Java" 카테고리의 다른 글
2008/03/21 00:11 2008/03/21 00:11

맨 위로

Cheat Sheet?

2008/02/02 21:33, 글쓴이
Actionscript

Ajax

2008/02/02 21:33 2008/02/02 21:33

맨 위로

?대

2008/01/04 23:49, 글쓴이

이올린에 북마크하기(0) 이올린에 추천하기(0)
"Flex" 카테고리의 다른 글
2008/01/04 23:49 2008/01/04 23:49

맨 위로

SQL Server 2005?

2007/05/25 15:51, 글쓴이

Shankar Pal, Babu Krishnaswamy, Vasili Zolotov, Leo Giakoumakis _ Microsoft Corporation


?

이올린에 북마크하기(0) 이올린에 추천하기(0)
"MSSQL" 카테고리의 다른 글
2007/05/25 15:51 2007/05/25 15:51

맨 위로

Microsoft SQL Server 2005?

2007/05/25 15:33, 글쓴이

?

이올린에 북마크하기(0) 이올린에 추천하기(0)
"MSSQL" 카테고리의 다른 글
2007/05/25 15:33 2007/05/25 15:33

맨 위로

SQL Server XML 諛

2007/05/22 16:13, 글쓴이
?
이올린에 북마크하기(0) 이올린에 추천하기(0)
"MSSQL" 카테고리의 다른 글
2007/05/22 16:13 2007/05/22 16:13

맨 위로