To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

Simple XML is a variation of XML containing only elements. All attributes are converted into elements. Not having attributes or other xml elements such as the XML declaration / DTDs allows the use of simple and fast parsers. This format is also compatible with mainstream XML parsers.

YouTube Encyclopedic

  • 1/3
    Views:
    316 998
    229 728
    77 926
  • [HD] How to write a simple XML document: Tutorial
  • How to Create Simple XML Document
  • Beginner PHP Tutorial - 105 - Reading a Simple XML File: Part 1

Transcription

Structure

For example:

  <Agenda>
    <type>gardening</type>
    <Activity>
      <type>Watering</type>
      <golf-course>
        <time>6:00</time> 
      </golf-course>
      <yard>
        <time>7:00</time>
      </yard>
    </Activity>
    <Activity> 
      <type>cooking</type>
      <lunch> 
        <time>12:00</time>
      </lunch>
    </Activity>
  </Agenda>

would represent:

  <?xml version="1.0" encoding="UTF-8"?>
  <Agenda type="gardening">
    <Activity type="Watering">
      <golf-course time="6:00"/>
      <yard time="7:00"/>
    </Activity>
    <Activity type="cooking">
      <lunch time="12:00"/>
    </Activity>
  </Agenda>

Validation

Simple XML uses a simple XPath list for validation. The XML snippet above for example, would be represented by:

 /Agenda/type|(Activity/type|(*/time))

or a bit more human readable as:

 /Agenda/type
 /Agenda/Activity/type
 /Agenda/Activity/*/time

This allows the XML to be processed as a stream (without creating an object model in memory) with fast validation.

References

  1. http://www.w3.org/XML/simple-XML.html
This page was last edited on 25 July 2020, at 10:08
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.