PREVIOUS UP   Technologies Internet et Education, © TECFA
  5. Affichage de simples structures XML

5. Affichage de simples structures XML

5.1 Simples fiches (sans attributs)

Exemple 5-1: Fiches.xml: list sous forme de table

	<!ELEMENT List (Entry+)>
	<!ELEMENT Entry (Title, Creator, Description, Keywords, Location, MetaDocumentAuthor, MainType, SubType, Topic, SubTopic)>
	<!ELEMENT Title (#PCDATA)>
	<!ELEMENT Creator (#PCDATA)>
	<!ELEMENT Description (#PCDATA)>
	<!ELEMENT Keywords (#PCDATA)>
	<!ELEMENT Location (#PCDATA)>
	<!ELEMENT MetaDocumentAuthor (#PCDATA)>
	<!ELEMENT MainType (#PCDATA)>
	<!ELEMENT SubType (#PCDATA)>
	<!ELEMENT Topic (#PCDATA)>
	<!ELEMENT SubTopic (#PCDATA)>

Exemple 5-2: Fiches2.xml : liste à plat avec qq éléments répétitifs

<!ELEMENT Entry (Title, Creator?, Description, Keywords, Location?, MetaDocumentAuthor, MainType, SubType*, Topic, SubTopic*)>
.... sinon les mêmes éléments !

5.2 Simples Servlets XML->DOM->HTML

Exemple 5-3: Affichage d'une structure de table sous forme d'arbre

Exemple 5-4: Affichage d'une structure de quasi-table sous forme d'arbre

Exemple 5-5: Quasi-table sous forme d'abre avec URL et tags variables

Exemple 5-6: Affichage d'une structure de quasi-table sous forme de table

 

 

A FAIRE: Une liste d'idiômes DOM


PREVIOUS UP -- TIE