libxslt-ruby 0.8.0-x86-mswin32-60 → 0.8.2-x86-mswin32-60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +163 -141
- data/Rakefile +129 -0
- data/doc/classes/LibXSLT/XSLT/Stylesheet.html +5 -4
- data/doc/classes/LibXSLT/XSLT/TransformContext.html +6 -0
- data/doc/classes/LibXSLT/XSLT.html +1 -12
- data/doc/classes/LibXSLT/XSLTError.html +20 -0
- data/doc/classes/LibXSLT.html +6 -0
- data/doc/classes/XSLT.html +15 -14
- data/doc/created.rid +1 -1
- data/doc/files/CHANGES.html +24 -3
- data/doc/files/LICENSE.html +2 -2
- data/doc/files/README.html +42 -9
- data/doc/files/ext/libxslt/libxslt_c.html +1 -1
- data/doc/files/ext/libxslt/ruby_xslt_stylesheet_c.html +1 -1
- data/doc/files/ext/libxslt/ruby_xslt_transform_context_c.html +1 -1
- data/doc/files/lib/libxslt/deprecated_rb.html +1 -1
- data/doc/files/lib/libxslt_rb.html +7 -1
- data/doc/files/lib/xslt_rb.html +135 -0
- data/doc/fr_file_index.html +1 -0
- data/ext/libxslt/version.h +2 -2
- data/ext/mingw/Rakefile +42 -0
- data/{vc → ext/vc}/libxslt_ruby.sln +3 -3
- data/{vc → ext/vc}/libxslt_ruby.vcproj +17 -18
- data/lib/libxslt/deprecated.rb +57 -56
- data/lib/libxslt-1.dll +0 -0
- data/lib/libxslt.rb +10 -6
- data/lib/libxslt_ruby.so +0 -0
- data/lib/text.xml +129 -0
- data/lib/xslt.rb +15 -0
- metadata +32 -29
- data/ext/libxslt/extconf.rb +0 -104
- data/mingw/libxslt-1.dll +0 -0
- data/mingw/libxslt_ruby.so +0 -0
data/README
CHANGED
@@ -1,142 +1,164 @@
|
|
1
|
-
= libxslt-ruby
|
2
|
-
|
3
|
-
== Overview
|
4
|
-
|
5
|
-
The libxslt gem provides Ruby language bindings for GNOME's Libxslt
|
6
|
-
toolkit. It is free software, released under the MIT License.
|
7
|
-
|
8
|
-
|
9
|
-
== Requirements
|
10
|
-
|
11
|
-
libxslt-ruby requires Ruby 1.8.4 or higher. It is dependent on
|
12
|
-
the following libraries to function properly:
|
13
|
-
|
14
|
-
* libm (math routines: very standard)
|
15
|
-
* libz (zlib)
|
16
|
-
* libiconv
|
17
|
-
* libxml2
|
18
|
-
* libxslt
|
19
|
-
* libxml-ruby bindings
|
20
|
-
|
21
|
-
If you are running Linux or Unix you'll need a C compiler so the extension
|
22
|
-
can be compiled when it is installed. If you are running Windows, then install the Windows specific RubyGem which
|
23
|
-
includes an already built extension.
|
24
|
-
|
25
|
-
!!!NOTE!!! The libxml-ruby and libxslt-ruby bindings must absolutely, positively,
|
26
|
-
without a doubt share the same libxml2 library. This is because libxslt modifies
|
27
|
-
XML documents created by libxml2. If there are two copies of libxml2 on your
|
28
|
-
system, then when XML documents allocated in copy #1 are manipulated by copy #2,
|
29
|
-
a segmentation fault will occur. So make sure that your system has only one copy of libxml2
|
30
|
-
installed.
|
31
|
-
|
32
|
-
|
33
|
-
== INSTALLATION
|
34
|
-
|
35
|
-
The easiest way to install libxslt-ruby is via Ruby Gems. To install:
|
36
|
-
|
37
|
-
<tt>gem install libxslt-ruby</tt>
|
38
|
-
|
39
|
-
If you are running Windows, make sure to install the Win32 RubyGem which
|
40
|
-
includes an already built binary file. The binary is built against
|
41
|
-
libxml2 version 2.6.32, iconv version 1.
|
42
|
-
Binaries for libxml2 and iconv are provided in the libxml-ruby bindings,
|
43
|
-
while a binary for libxslt is provided in the libxslt-ruby bindings.
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
<
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
1
|
+
= libxslt-ruby
|
2
|
+
|
3
|
+
== Overview
|
4
|
+
|
5
|
+
The libxslt gem provides Ruby language bindings for GNOME's Libxslt
|
6
|
+
toolkit. It is free software, released under the MIT License.
|
7
|
+
|
8
|
+
|
9
|
+
== Requirements
|
10
|
+
|
11
|
+
libxslt-ruby requires Ruby 1.8.4 or higher. It is dependent on
|
12
|
+
the following libraries to function properly:
|
13
|
+
|
14
|
+
* libm (math routines: very standard)
|
15
|
+
* libz (zlib)
|
16
|
+
* libiconv
|
17
|
+
* libxml2
|
18
|
+
* libxslt
|
19
|
+
* libxml-ruby bindings
|
20
|
+
|
21
|
+
If you are running Linux or Unix you'll need a C compiler so the extension
|
22
|
+
can be compiled when it is installed. If you are running Windows, then install the Windows specific RubyGem which
|
23
|
+
includes an already built extension.
|
24
|
+
|
25
|
+
!!!NOTE!!! The libxml-ruby and libxslt-ruby bindings must absolutely, positively,
|
26
|
+
without a doubt share the same libxml2 library. This is because libxslt modifies
|
27
|
+
XML documents created by libxml2. If there are two copies of libxml2 on your
|
28
|
+
system, then when XML documents allocated in copy #1 are manipulated by copy #2,
|
29
|
+
a segmentation fault will occur. So make sure that your system has only one copy of libxml2
|
30
|
+
installed.
|
31
|
+
|
32
|
+
|
33
|
+
== INSTALLATION
|
34
|
+
|
35
|
+
The easiest way to install libxslt-ruby is via Ruby Gems. To install:
|
36
|
+
|
37
|
+
<tt>gem install libxslt-ruby</tt>
|
38
|
+
|
39
|
+
If you are running Windows, make sure to install the Win32 RubyGem which
|
40
|
+
includes an already built binary file. The binary is built against
|
41
|
+
libxml2 version 2.6.32, iconv version 1.11 and libxslt version 1.1.24.
|
42
|
+
Binaries for libxml2 and iconv are provided in the libxml-ruby bindings,
|
43
|
+
while a binary for libxslt is provided in the libxslt-ruby bindings.
|
44
|
+
|
45
|
+
The Windows binaries are biult with MingW. The gem also includes
|
46
|
+
a Microsoft VC++ 2005 solution. If you wish to run a debug version
|
47
|
+
of libxml-ruby on Windows, then it is highly recommended
|
48
|
+
you use VC++.
|
49
|
+
|
50
|
+
|
51
|
+
== USAGE
|
52
|
+
|
53
|
+
For in-depth information about using libxslt-ruby please refer
|
54
|
+
to its online Rdoc documentation.
|
55
|
+
|
56
|
+
All libxslt classes are in the LibXSLT::XSLT module. The simplest
|
57
|
+
way to use libxslt is to require 'xslt'. This will mixin the
|
58
|
+
LibXML and LibXSLT modules into the global namespace, allowing you to
|
59
|
+
write code like this:
|
60
|
+
|
61
|
+
require 'xslt'
|
62
|
+
document = XML::Document.new
|
63
|
+
stylesheett = XSLT::Stylesheet.new(document)
|
64
|
+
|
65
|
+
If you prefer not to add the LibXSLT module to the global namepace, then
|
66
|
+
write your code like this:
|
67
|
+
|
68
|
+
require 'libxslt'
|
69
|
+
|
70
|
+
class MyClass
|
71
|
+
def some_method
|
72
|
+
document = LibXML::XML::Document.new
|
73
|
+
stylesheett = LibXSLT::XSLT::Stylesheet.new(document)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
Given an XML file like:
|
78
|
+
|
79
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
80
|
+
<?xml-stylesheet href="fuzface.xsl" type="text/xsl"?>
|
81
|
+
|
82
|
+
<commentary>
|
83
|
+
<meta>
|
84
|
+
<author>
|
85
|
+
<first_name>Sean</first_name>
|
86
|
+
<last_name>Chittenden</last_name>
|
87
|
+
<email>sean@chittenden.org</email>
|
88
|
+
</author>
|
89
|
+
<version>$Version$</version>
|
90
|
+
<date>$Date: 2008-07-21 20:44:12 -0600 (Mon, 21 Jul 2008) $</date>
|
91
|
+
<id>$Id: README 109 2008-07-22 02:44:12Z cfis $</id> <title>Fuzface...</title>
|
92
|
+
<subtitle>The Internet's a big place and here's some proof...</subtitle>
|
93
|
+
</meta>
|
94
|
+
|
95
|
+
<body>
|
96
|
+
<para>
|
97
|
+
I think it's a tragedy that I'm going to start off my new
|
98
|
+
commentary by talking about facial hair and the Internet.
|
99
|
+
Something about that just screams pathetic, but whatever: it's
|
100
|
+
humor and that's life.
|
101
|
+
</para>
|
102
|
+
</body>
|
103
|
+
</commentary>
|
104
|
+
|
105
|
+
And an XSLT file like this:
|
106
|
+
|
107
|
+
<?xml version="1.0" ?>
|
108
|
+
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
109
|
+
<xsl:template match="/">
|
110
|
+
<xsl:element name="html">
|
111
|
+
<xsl:element name="head">
|
112
|
+
<xsl:element name="title">Ramblings - <xsl:value-of select="commentary/meta/title" /> - <xsl:value-of select="commentary/meta/subtitle" /></xsl:element>
|
113
|
+
</xsl:element>
|
114
|
+
|
115
|
+
<xsl:element name="body">
|
116
|
+
<xsl:element name="h1"><xsl:value-of select="commentary/meta/title" /></xsl:element>
|
117
|
+
<xsl:element name="h3"><xsl:value-of select="commentary/meta/subtitle" /></xsl:element>
|
118
|
+
By: <xsl:value-of select="commentary/meta/author/first_name" /> <xsl:value-of select="commentary/meta/author/last_name" /><xsl:element name="br" />
|
119
|
+
Date: <xsl:value-of select="commentary/meta/date" /><xsl:element name="br" />
|
120
|
+
|
121
|
+
<xsl:for-each select="./commentary/body">
|
122
|
+
<xsl:apply-templates />
|
123
|
+
</xsl:for-each>
|
124
|
+
|
125
|
+
</xsl:element>
|
126
|
+
</xsl:element>
|
127
|
+
</xsl:template>
|
128
|
+
|
129
|
+
<xsl:template match="para">
|
130
|
+
<xsl:element name="p">
|
131
|
+
<xsl:value-of select="." />
|
132
|
+
</xsl:element>
|
133
|
+
</xsl:template>
|
134
|
+
</xsl:stylesheet>
|
135
|
+
|
136
|
+
We can easily transform the XML with the following ruby code:
|
137
|
+
|
138
|
+
require 'xslt'
|
139
|
+
|
140
|
+
# Create a new XSL Transform
|
141
|
+
stylesheet_doc = XML::Document.file('files/fuzface.xsl')
|
142
|
+
stylesheet = LibXSLT::Stylesheet.new(stylesheet_doc)
|
143
|
+
|
144
|
+
# Transform a xml document
|
145
|
+
xml_doc = XML::Document.file('files/fuzface.xml')
|
146
|
+
result = stylesheet.apply(xml_doc)
|
147
|
+
|
148
|
+
You can then print, save or manipulate the returned document.
|
149
|
+
|
150
|
+
== License
|
151
|
+
|
152
|
+
See LICENSE for license information.
|
153
|
+
|
154
|
+
== DOCUMENTATION
|
155
|
+
|
156
|
+
RDoc comments are included - run 'rake doc' to generate documentation.
|
157
|
+
You can find the latest documentation at:
|
158
|
+
|
159
|
+
* http://libxsl.rubyforge.org/
|
160
|
+
|
161
|
+
== MORE INFORMATION
|
162
|
+
|
163
|
+
For more information please refer to the documentation. If you have any
|
142
164
|
questions, please send email to libxml-devel@rubyforge.org.
|
data/Rakefile
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'date'
|
3
|
+
require 'rake/gempackagetask'
|
4
|
+
require 'rake/rdoctask'
|
5
|
+
require 'rake/testtask'
|
6
|
+
require 'date'
|
7
|
+
|
8
|
+
# ------- Default Package ----------
|
9
|
+
FILES = FileList[
|
10
|
+
'Rakefile',
|
11
|
+
'README',
|
12
|
+
'LICENSE',
|
13
|
+
'setup.rb',
|
14
|
+
'doc/**/*',
|
15
|
+
'lib/**/*',
|
16
|
+
'ext/libxslt/*.h',
|
17
|
+
'ext/libxslt/*.c',
|
18
|
+
'ext/mingw/Rakefile',
|
19
|
+
'ext/vc/*.sln',
|
20
|
+
'ext/vc/*.vcproj',
|
21
|
+
'tests/**/*'
|
22
|
+
]
|
23
|
+
|
24
|
+
# Default GEM Specification
|
25
|
+
default_spec = Gem::Specification.new do |spec|
|
26
|
+
spec.name = "libxslt-ruby"
|
27
|
+
|
28
|
+
spec.homepage = "http://libxslt.rubyforge.org/"
|
29
|
+
spec.summary = "Ruby libxslt bindings"
|
30
|
+
spec.description = <<-EOF
|
31
|
+
The Libxslt-Ruby project provides Ruby language bindings for the GNOME
|
32
|
+
XSLT C library. It is free software, released under the MIT License.
|
33
|
+
EOF
|
34
|
+
|
35
|
+
# Determine the current version of the software
|
36
|
+
spec.version =
|
37
|
+
if File.read('ext/libxslt/version.h') =~ /\s*RUBY_LIBXSLT_VERSION\s*['"](\d.+)['"]/
|
38
|
+
CURRENT_VERSION = $1
|
39
|
+
else
|
40
|
+
CURRENT_VERSION = "0.0.0"
|
41
|
+
end
|
42
|
+
|
43
|
+
spec.author = "Charlie Savage"
|
44
|
+
spec.email = "libxml-devel@rubyforge.org"
|
45
|
+
spec.add_dependency('libxml-ruby','>=0.8.2')
|
46
|
+
spec.platform = Gem::Platform::RUBY
|
47
|
+
spec.require_paths = ["lib", "ext/libxslt"]
|
48
|
+
|
49
|
+
spec.bindir = "bin"
|
50
|
+
spec.extensions = ["ext/libxslt/extconf.rb"]
|
51
|
+
spec.files = FILES.to_a
|
52
|
+
spec.test_files = Dir.glob("test/tc_*.rb")
|
53
|
+
|
54
|
+
spec.required_ruby_version = '>= 1.8.4'
|
55
|
+
spec.date = DateTime.now
|
56
|
+
spec.rubyforge_project = 'libxslt-ruby'
|
57
|
+
|
58
|
+
spec.has_rdoc = true
|
59
|
+
end
|
60
|
+
|
61
|
+
# Rake task to build the default package
|
62
|
+
Rake::GemPackageTask.new(default_spec) do |pkg|
|
63
|
+
pkg.package_dir = 'admin/pkg'
|
64
|
+
pkg.need_tar = true
|
65
|
+
pkg.need_zip = true
|
66
|
+
end
|
67
|
+
|
68
|
+
# ------- Windows Package ----------
|
69
|
+
binaries = (FileList['ext/mingw/*.so',
|
70
|
+
'ext/mingw/*.dll'])
|
71
|
+
|
72
|
+
# Windows specification
|
73
|
+
win_spec = default_spec.clone
|
74
|
+
win_spec.extensions = []
|
75
|
+
win_spec.platform = Gem::Platform::CURRENT
|
76
|
+
win_spec.files += binaries.map {|binaryname| "lib/#{File.basename(binaryname)}"}
|
77
|
+
|
78
|
+
desc "Create Windows Gem"
|
79
|
+
task :create_win32_gem do
|
80
|
+
# Copy the win32 extension built by MingW - easier to install
|
81
|
+
# since there are no dependencies of msvcr80.dll
|
82
|
+
current_dir = File.expand_path(File.dirname(__FILE__))
|
83
|
+
|
84
|
+
binaries.each do |binaryname|
|
85
|
+
target = File.join(current_dir, 'lib', File.basename(binaryname))
|
86
|
+
cp(binaryname, target)
|
87
|
+
end
|
88
|
+
|
89
|
+
# Create the gem, then move it to pkg
|
90
|
+
Gem::Builder.new(win_spec).build
|
91
|
+
gem_file = "#{win_spec.name}-#{win_spec.version}-#{win_spec.platform}.gem"
|
92
|
+
mv(gem_file, "admin/pkg/#{gem_file}")
|
93
|
+
|
94
|
+
# Remove win extension from top level directory
|
95
|
+
binaries.each do |binaryname|
|
96
|
+
target = File.join(current_dir, 'lib', File.basename(binaryname))
|
97
|
+
rm(target)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
# --------- RDoc Documentation ------
|
102
|
+
desc "Generate rdoc documentation"
|
103
|
+
Rake::RDocTask.new("rdoc") do |rdoc|
|
104
|
+
rdoc.rdoc_dir = 'doc'
|
105
|
+
rdoc.title = "libxml-xslt"
|
106
|
+
# Show source inline with line numbers
|
107
|
+
rdoc.options << "--inline-source" << "--line-numbers"
|
108
|
+
# Make the readme file the start page for the generated html
|
109
|
+
rdoc.options << '--main' << 'README'
|
110
|
+
rdoc.rdoc_files.include('doc/*.rdoc',
|
111
|
+
'ext/**/*.c',
|
112
|
+
'lib/**/*.rb',
|
113
|
+
'CHANGES',
|
114
|
+
'README',
|
115
|
+
'LICENSE')
|
116
|
+
end
|
117
|
+
|
118
|
+
task :package => :rdoc
|
119
|
+
task :package => :create_win32_gem
|
120
|
+
task :default => :package
|
121
|
+
|
122
|
+
Rake::TestTask.new do |t|
|
123
|
+
t.libs << "test"
|
124
|
+
t.libs << "ext"
|
125
|
+
end
|
126
|
+
|
127
|
+
if not RUBY_PLATFORM.match(/mswin32/i)
|
128
|
+
Rake::Task[:test].prerequisites << :extensions
|
129
|
+
end
|
@@ -130,10 +130,11 @@ href="Stylesheet.html#M000002">XSLT::Stylesheet#apply</a>
|
|
130
130
|
|
131
131
|
<div class="method-description">
|
132
132
|
<p>
|
133
|
-
Creates a
|
134
|
-
|
135
|
-
|
136
|
-
and use it
|
133
|
+
Creates a <a href="Stylesheet.html#M000001">new</a> <a
|
134
|
+
href="../XSLT.html">XSLT</a> stylesheet based on the specified document.
|
135
|
+
For memory management reasons, a copy of the specified document will be
|
136
|
+
made, so its best to create a single copy of a stylesheet and use it
|
137
|
+
multiple times.
|
137
138
|
</p>
|
138
139
|
<pre>
|
139
140
|
stylesheet_doc = XML::Document.file('stylesheet_file')
|
@@ -74,19 +74,8 @@
|
|
74
74
|
|
75
75
|
<div id="description">
|
76
76
|
<p>
|
77
|
-
|
78
|
-
toolkit. It is free software, released under the MIT License.
|
77
|
+
:nodoc:
|
79
78
|
</p>
|
80
|
-
<p>
|
81
|
-
Using the bindings is straightforward:
|
82
|
-
</p>
|
83
|
-
<pre>
|
84
|
-
stylesheet_doc = XML::Document.file('stylesheet_file')
|
85
|
-
stylesheet = XSLT::Stylesheet.new(stylesheet_doc)
|
86
|
-
|
87
|
-
xml_doc = XML::Document.file('xml_file')
|
88
|
-
result = stylesheet.apply(xml_doc)
|
89
|
-
</pre>
|
90
79
|
|
91
80
|
</div>
|
92
81
|
|
@@ -78,6 +78,26 @@
|
|
78
78
|
|
79
79
|
<div id="contextContent">
|
80
80
|
|
81
|
+
<div id="description">
|
82
|
+
<p>
|
83
|
+
Document-class: <a href="XSLT.html">LibXSLT::XSLT</a>
|
84
|
+
</p>
|
85
|
+
<p>
|
86
|
+
The libxslt gem provides Ruby language bindings for GNOME‘s Libxslt
|
87
|
+
toolkit. It is free software, released under the MIT License.
|
88
|
+
</p>
|
89
|
+
<p>
|
90
|
+
Using the bindings is straightforward:
|
91
|
+
</p>
|
92
|
+
<pre>
|
93
|
+
stylesheet_doc = XML::Document.file('stylesheet_file')
|
94
|
+
stylesheet = XSLT::Stylesheet.new(stylesheet_doc)
|
95
|
+
|
96
|
+
xml_doc = XML::Document.file('xml_file')
|
97
|
+
result = stylesheet.apply(xml_doc)
|
98
|
+
</pre>
|
99
|
+
|
100
|
+
</div>
|
81
101
|
|
82
102
|
|
83
103
|
</div>
|
data/doc/classes/LibXSLT.html
CHANGED
data/doc/classes/XSLT.html
CHANGED
@@ -58,10 +58,6 @@
|
|
58
58
|
<a href="../files/ext/libxslt/libxslt_c.html">
|
59
59
|
ext/libxslt/libxslt.c
|
60
60
|
</a>
|
61
|
-
<br />
|
62
|
-
<a href="../files/lib/libxslt_rb.html">
|
63
|
-
lib/libxslt.rb
|
64
|
-
</a>
|
65
61
|
<br />
|
66
62
|
</td>
|
67
63
|
</tr>
|
@@ -78,10 +74,22 @@
|
|
78
74
|
|
79
75
|
<div id="description">
|
80
76
|
<p>
|
81
|
-
|
82
|
-
|
83
|
-
|
77
|
+
Document-class: <a href="LibXSLT/XSLT.html">LibXSLT::XSLT</a>
|
78
|
+
</p>
|
79
|
+
<p>
|
80
|
+
The libxslt gem provides Ruby language bindings for GNOME‘s Libxslt
|
81
|
+
toolkit. It is free software, released under the MIT License.
|
82
|
+
</p>
|
83
|
+
<p>
|
84
|
+
Using the bindings is straightforward:
|
84
85
|
</p>
|
86
|
+
<pre>
|
87
|
+
stylesheet_doc = XML::Document.file('stylesheet_file')
|
88
|
+
stylesheet = XSLT::Stylesheet.new(stylesheet_doc)
|
89
|
+
|
90
|
+
xml_doc = XML::Document.file('xml_file')
|
91
|
+
result = stylesheet.apply(xml_doc)
|
92
|
+
</pre>
|
85
93
|
|
86
94
|
</div>
|
87
95
|
|
@@ -93,13 +101,6 @@ of use.
|
|
93
101
|
|
94
102
|
|
95
103
|
<!-- if includes -->
|
96
|
-
<div id="includes">
|
97
|
-
<h3 class="section-bar">Included Modules</h3>
|
98
|
-
|
99
|
-
<div id="includes-list">
|
100
|
-
<span class="include-name"><a href="LibXSLT/XSLT.html">LibXSLT::XSLT</a></span>
|
101
|
-
</div>
|
102
|
-
</div>
|
103
104
|
|
104
105
|
<div id="section">
|
105
106
|
|
data/doc/created.rid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Mon, 21 Jul 2008 22:26:50 -0600
|
data/doc/files/CHANGES.html
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Mon Jul 21 22:26:27 -0600 2008</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -69,7 +69,28 @@
|
|
69
69
|
<div id="contextContent">
|
70
70
|
|
71
71
|
<div id="description">
|
72
|
-
<h2>0.8.
|
72
|
+
<h2>0.8.2 / 2008-07-21 Charlie Savage</h2>
|
73
|
+
<ul>
|
74
|
+
<li>To use <a href="../classes/LibXSLT.html">LibXSLT</a> you can either require
|
75
|
+
‘xslt’ or require ‘libxslt’. The differences is
|
76
|
+
that require ‘xslt’ mixes the LibXML and LIBXSLT modules into
|
77
|
+
the global namespace, thereby allowing you to write code such as:
|
78
|
+
|
79
|
+
<pre>
|
80
|
+
stylesheet = XSLT::Stylesheet.new(XML::Document.new). Note that
|
81
|
+
</pre>
|
82
|
+
<p>
|
83
|
+
this is different from 0.8.0 release and may require updating your code.
|
84
|
+
</p>
|
85
|
+
</li>
|
86
|
+
<li>Support for libxml-ruby 0.8.2
|
87
|
+
|
88
|
+
</li>
|
89
|
+
<li>Improved Windows support - libxslt-ruby should now work out of the box.
|
90
|
+
|
91
|
+
</li>
|
92
|
+
</ul>
|
93
|
+
<h2>0.8.0 / 2008-07-10 Charlie Savage</h2>
|
73
94
|
<ul>
|
74
95
|
<li>Fix memory errors when reusing a stylehseet
|
75
96
|
|
@@ -111,7 +132,7 @@
|
|
111
132
|
|
112
133
|
</li>
|
113
134
|
<li>New libxslt.rb ruby wrapper, so programs can simply say require
|
114
|
-
‘
|
135
|
+
‘xslt‘
|
115
136
|
|
116
137
|
</li>
|
117
138
|
</ul>
|
data/doc/files/LICENSE.html
CHANGED
@@ -56,7 +56,7 @@
|
|
56
56
|
</tr>
|
57
57
|
<tr class="top-aligned-row">
|
58
58
|
<td><strong>Last Update:</strong></td>
|
59
|
-
<td>
|
59
|
+
<td>Sat Jul 19 17:20:44 -0600 2008</td>
|
60
60
|
</tr>
|
61
61
|
</table>
|
62
62
|
</div>
|
@@ -73,7 +73,7 @@
|
|
73
73
|
# $Id: LICENSE 33 2007-08-29 18:18:15Z transami $
|
74
74
|
</p>
|
75
75
|
<p>
|
76
|
-
Copyright
|
76
|
+
Copyright (c) 2002-2006 Sean Chittenden <sean@chittenden.org> and
|
77
77
|
contributors
|
78
78
|
</p>
|
79
79
|
<p>
|