Down.html.sax 782 B

12345678910111213141516171819202122232425262728293031323334353637
  1. SAX.setDocumentLocator()
  2. SAX.startDocument()
  3. SAX.startElement(html)
  4. SAX.ignorableWhitespace(
  5. , 1)
  6. SAX.startElement(head)
  7. SAX.ignorableWhitespace(
  8. , 3)
  9. SAX.startElement(title)
  10. SAX.characters(This service is temporary down, 30)
  11. SAX.endElement(title)
  12. SAX.ignorableWhitespace(
  13. , 1)
  14. SAX.endElement(head)
  15. SAX.ignorableWhitespace(
  16. , 2)
  17. SAX.startElement(body, bgcolor='#FFFFFF')
  18. SAX.characters(
  19. , 1)
  20. SAX.startElement(h1, align='center')
  21. SAX.characters(Sorry, this service is tempora, 37)
  22. SAX.endElement(h1)
  23. SAX.characters(
  24. We are doing our best to get , 48)
  25. SAX.startElement(p)
  26. SAX.characters(The W3C system administrators, 29)
  27. SAX.endElement(p)
  28. SAX.characters(
  29. , 1)
  30. SAX.endElement(body)
  31. SAX.ignorableWhitespace(
  32. , 1)
  33. SAX.endElement(html)
  34. SAX.ignorableWhitespace(
  35. , 1)
  36. SAX.endDocument()