libxml-ruby 0.9.3-x86-mswin32-60 → 0.9.4-x86-mswin32-60
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +9 -0
- data/README +61 -128
- data/doc/css/normal.css +182 -0
- data/doc/img/raze-tiny.png +0 -0
- data/doc/img/red-cube.jpg +0 -0
- data/doc/img/xml-ruby.png +0 -0
- data/doc/index.xml +43 -0
- data/doc/install.xml +77 -0
- data/doc/layout.rhtml +38 -0
- data/doc/layout.xsl +67 -0
- data/doc/license.xml +32 -0
- data/doc/log/changelog.xml +1324 -0
- data/doc/log/changelog.xsl +42 -0
- data/ext/libxml/ruby_xml_document.c +1084 -1057
- data/ext/libxml/ruby_xml_html_parser.c +37 -40
- data/ext/libxml/ruby_xml_input.c +17 -40
- data/ext/libxml/ruby_xml_input.h +2 -2
- data/ext/libxml/ruby_xml_parser.c +151 -151
- data/ext/libxml/ruby_xml_reader.c +910 -893
- data/ext/libxml/ruby_xml_sax_parser.c +174 -174
- data/ext/libxml/ruby_xml_sax_parser.h +12 -12
- data/ext/libxml/ruby_xml_xpointer.h +13 -25
- data/ext/libxml/version.h +2 -2
- data/ext/mingw/libxml_ruby.dll.a +0 -0
- data/ext/mingw/libxml_ruby.so +0 -0
- data/ext/vc/libxml_ruby.vcproj +1 -1
- data/test/model/ruby-lang.html +238 -0
- data/test/tc_html_parser.rb +2 -12
- data/test/tc_reader.rb +87 -87
- metadata +17 -3
- data/test/test.rb +0 -8
@@ -0,0 +1,42 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2
|
+
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
3
|
+
|
4
|
+
<xsl:output cdata-section-elements="script"/>
|
5
|
+
|
6
|
+
<xsl:template match="/">
|
7
|
+
|
8
|
+
<html>
|
9
|
+
<head>
|
10
|
+
<title>Facets Changelog</title>
|
11
|
+
<link REL='SHORTCUT ICON' HREF="img/xml-ruby.png" />
|
12
|
+
<style>
|
13
|
+
td { font-family: monospace; font-size: 8pt; padding: 0px 10px; }
|
14
|
+
</style>
|
15
|
+
</head>
|
16
|
+
<body>
|
17
|
+
<div class="container">
|
18
|
+
<h1>LibXML ChangeLog</h1>
|
19
|
+
<table style="width: 100%;">
|
20
|
+
<xsl:apply-templates />
|
21
|
+
</table>
|
22
|
+
<br/><br/>
|
23
|
+
<div class='copyright'>
|
24
|
+
Copyright © 2001-2006 LibXML-Ruby Development Team<br/>
|
25
|
+
Changelog is pure XML/XSLT.<br/>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</body>
|
29
|
+
</html>
|
30
|
+
|
31
|
+
</xsl:template>
|
32
|
+
|
33
|
+
<xsl:template match="logentry">
|
34
|
+
<tr>
|
35
|
+
<td><b><pre><xsl:value-of select="msg"/></pre></b></td>
|
36
|
+
<td><xsl:value-of select="author"/></td>
|
37
|
+
<td><xsl:value-of select="date"/></td>
|
38
|
+
</tr>
|
39
|
+
</xsl:template>
|
40
|
+
|
41
|
+
</xsl:stylesheet>
|
42
|
+
|