Topic: Asylum XML tutorials Scavenger Hunt! (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=10943" title="Pages that link to Topic: Asylum XML tutorials Scavenger Hunt! (Page 1 of 1)" rel="nofollow" >Topic: Asylum XML tutorials Scavenger Hunt! <span class="small">(Page 1 of 1)</span>\

 
Maskkkk
Paranoid (IV) Inmate

From: Willaimsport, PA, US of A the hole in the Ozone
Insane since: Mar 2002

posted posted 03-25-2003 02:34

Since XML seems to be an area that the Asylum seems to be really lacking in....
I've added the following topics to the Asylum FAQ...

?XML with ASP.NET
-Manual Modification of XML Documents with ASP.NET
-Transforming XML with ASP.NET (XSL)


?XML with Javascript
-Transforming XML with Javascript (XSL)
-Manual Modification of XML documents with Javascript


?XML with JSP
-Manual Modification of XML Documents with JSP
-Transforming XML with JSP(XSL)


?XML with PHP
-Manual Modification of XML Documents with JSP
-Transforming XML with PHP(XSL)


Now take note that only a few of them are filled in with links to tutorials about what they are specifing. So if anybody finds tutorials on any of the stuff I just added, be sure to add them to the FAQ. I laid out the organization for this part of the FAQ, now all I need is content.

Note, if you do find a good tutorial, and add it to the FAQ post that you did here!


Thank you,




- Face the Present
- AIM: MASKKKK

[This message has been edited by Maskkkk (edited 03-25-2003).]

[This message has been edited by Maskkkk (edited 03-25-2003).]

[This message has been edited by Maskkkk (edited 03-25-2003).]

Slime
Lunatic (VI) Mad Scientist

From: Massachusetts, USA
Insane since: Mar 2000

posted posted 03-25-2003 02:38

Well, I recently wrote this little article ( http://www.slimeland.com/content/articles/jsenhance/ ) that explains how to use JavaScript to modify web pages, but the majority of it is actually about JavaScript's (ECMAScript's) implementation of the DOM, which is how it would modify an XML document.

How JavaScript *accesses* an outside XML document, I don't personally know.

Maskkkk
Paranoid (IV) Inmate

From: Willaimsport, PA, US of A the hole in the Ozone
Insane since: Mar 2002

posted posted 03-25-2003 02:46

Look at this code Slime....
Is that what you mean?

I think your tutorial would go good in the FAQhere, what do you think?

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<script languag="javascript">
// Load XML
var xml = new ActiveXObject("Microsoft.XMLDOM") // Create instance of Microsoft XML parser
xml.async = false;
xml.load("cdcatalog.xml") // Load XML file into memory

// Load the XSL
var xsl = new ActiveXObject("Microsoft.XMLDOM") // Create instance of Microsoft XML parser
xsl.async = false;
xsl.load("xsl.xsl"); // Load XSL file into memory

// Transform
document.write(xml.transformNode(xsl)); // Transform the file and write it into our document

</script>
</body>
</html>

[This message has been edited by Maskkkk (edited 03-25-2003).]

[This message has been edited by Maskkkk (edited 03-25-2003).]

[This message has been edited by Maskkkk (edited 03-25-2003).]

Maskkkk
Paranoid (IV) Inmate

From: Willaimsport, PA, US of A the hole in the Ozone
Insane since: Mar 2002

posted posted 03-25-2003 16:30

Anybody find any yet?

*BUMP!

DL-44
Maniac (V) Inmate

From: under the bed
Insane since: Feb 2000

posted posted 03-25-2003 18:24

A bump a few hours later? And 3 threads on the same subject?

The excitement and interest in contributing is great mask, but you don't need to go nuts telling everyone else to jump onyour bandwagon.

Plenty of people contirbute to the FAQ on a regular basis...



[This message has been edited by DL-44 (edited 03-25-2003).]

Maskkkk
Paranoid (IV) Inmate

From: Willaimsport, PA, US of A the hole in the Ozone
Insane since: Mar 2002

posted posted 03-26-2003 05:27

Sorry man it was getting low on the list I just figured it would get lost in the shuffle... like way down on the list



- Face the Present
- AIM: MASKKKK



Post Reply
 
Your User Name:
Your Password:
Login Options:
 
Your Text:
Loading...
Options:


« BackwardsOnwards »

Show Forum Drop Down Menu