http://chang212.blogspot.tw/

2013年1月7日 星期一

Lab 39 Social Services based on Internet

http://www.yssa.org.tw/
Yssa 青年社會服務協會-致力於輔導年輕人
http://www.newarrivals.org.hk/Common/Reader/Channel/ShowPage.jsp?Cid=1&Pid=1&Version=0&Charset=big5_hkscs&page=0
新福事工協會-致力於輔導外來移民對於當地不熟
http://www.care119.org.tw/
宜蘭縣車禍受難者關懷協會-幫助那些車禍受傷的民眾


Lab 37 Google Analytics



2012年12月17日 星期一

Lab 36 Syndication with RSS 2.0


Lab 35 XML (2)

1. Register and Download Xray, an XML, XSLT editor and processor.


2. Given the 
Listing 1. An XML document representing the results of a soccer tournament
 Listing 2. A basic style sheet for the soccer results

use the XSLT as in the Listing 2 to transform the XML file as in the Listing 1. (archive)






3. View the formatted HTML file.





4. Given the Listing 1. An XML document representing the results of a soccer tournament
Listing 3. A style sheet that computes team standings


compute the team standings in a table.








5. View the formatted HTML file.




Lab 34 XML









XML就是延伸標記語言, 是用來描述資料的一種標記語言. 雖然現在整體的標準還有一點點變數, 但是他對於未來的文件上技術層面的影響是十分令人期待的.XML的全名是Extensible Markup Language, 也就是延伸標記語言. XML和HTML一樣都是一種標記語言, 利用標籤來定義各種屬性.
HTML的使用目的是排版資料, 修改資料的顯示; XML的使用目的則是描述資料. 
甚麼是XSLT(eXtensible Style Language Transformation)?
  • XSLT並不是在顯示XML元素內容, 只是將XML元素轉換成其他文件的格式.
  • 透過XSLT處理器(XSLT Processor)將XML文件依照Template-Driven的轉換Script程式碼來產生轉換結果.
  • XML文件能轉換成一樹狀結構, XSLT就是將一棵XML樹, 套用XSLT轉換成Template Tree, 再修改一些節點的架構, 最後產生另一棵不同架構的樹狀結構.

2012年12月3日 星期一

Lab 31 Programming in DOM





Lab 30 Create Image using DOM

1. Open KompoZer
2. Hand code a javascript that loads an image from Internet based on
the DOM model.
3. Take a look at the sample code that shows how window.onload to load the image.
4. Use a button to load the image. Try how onclick works.