libxml-ruby 0.6.0-x86-mswin32-60

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. data/CHANGES +122 -0
  2. data/LICENSE +23 -0
  3. data/README +144 -0
  4. data/ext/libxml/cbg.c +76 -0
  5. data/ext/libxml/extconf.rb +308 -0
  6. data/ext/libxml/libxml.c +62 -0
  7. data/ext/libxml/ruby_libxml.h +93 -0
  8. data/ext/libxml/ruby_xml_attr.c +405 -0
  9. data/ext/libxml/ruby_xml_attr.h +19 -0
  10. data/ext/libxml/ruby_xml_document.c +1111 -0
  11. data/ext/libxml/ruby_xml_document.h +27 -0
  12. data/ext/libxml/ruby_xml_dtd.c +168 -0
  13. data/ext/libxml/ruby_xml_dtd.h +17 -0
  14. data/ext/libxml/ruby_xml_html_parser.c +449 -0
  15. data/ext/libxml/ruby_xml_html_parser.h +29 -0
  16. data/ext/libxml/ruby_xml_input_cbg.c +158 -0
  17. data/ext/libxml/ruby_xml_input_cbg.h +20 -0
  18. data/ext/libxml/ruby_xml_node.c +2410 -0
  19. data/ext/libxml/ruby_xml_node.h +27 -0
  20. data/ext/libxml/ruby_xml_node_set.c +170 -0
  21. data/ext/libxml/ruby_xml_node_set.h +20 -0
  22. data/ext/libxml/ruby_xml_ns.c +153 -0
  23. data/ext/libxml/ruby_xml_ns.h +21 -0
  24. data/ext/libxml/ruby_xml_parser.c +1425 -0
  25. data/ext/libxml/ruby_xml_parser.h +31 -0
  26. data/ext/libxml/ruby_xml_parser_context.c +750 -0
  27. data/ext/libxml/ruby_xml_parser_context.h +22 -0
  28. data/ext/libxml/ruby_xml_reader.c +900 -0
  29. data/ext/libxml/ruby_xml_reader.h +14 -0
  30. data/ext/libxml/ruby_xml_sax_parser.c +485 -0
  31. data/ext/libxml/ruby_xml_sax_parser.h +56 -0
  32. data/ext/libxml/ruby_xml_schema.c +146 -0
  33. data/ext/libxml/ruby_xml_schema.h +16 -0
  34. data/ext/libxml/ruby_xml_state.c +113 -0
  35. data/ext/libxml/ruby_xml_state.h +12 -0
  36. data/ext/libxml/ruby_xml_tree.c +43 -0
  37. data/ext/libxml/ruby_xml_tree.h +12 -0
  38. data/ext/libxml/ruby_xml_xinclude.c +20 -0
  39. data/ext/libxml/ruby_xml_xinclude.h +13 -0
  40. data/ext/libxml/ruby_xml_xpath.c +243 -0
  41. data/ext/libxml/ruby_xml_xpath.h +23 -0
  42. data/ext/libxml/ruby_xml_xpath_context.c +118 -0
  43. data/ext/libxml/ruby_xml_xpath_context.h +20 -0
  44. data/ext/libxml/ruby_xml_xpath_object.c +293 -0
  45. data/ext/libxml/ruby_xml_xpath_object.h +28 -0
  46. data/ext/libxml/ruby_xml_xpointer.c +100 -0
  47. data/ext/libxml/ruby_xml_xpointer.h +27 -0
  48. data/ext/libxml/ruby_xml_xpointer_context.c +21 -0
  49. data/ext/libxml/ruby_xml_xpointer_context.h +18 -0
  50. data/ext/libxml/sax_parser_callbacks.inc +213 -0
  51. data/ext/libxml/version.h +9 -0
  52. data/lib/libxml.rb +125 -0
  53. data/lib/libxml_ruby.so +0 -0
  54. data/lib/xml/libxml.rb +5 -0
  55. data/mingw/libiconv-2.dll +0 -0
  56. data/mingw/libxml2-2.dll +0 -0
  57. data/mingw/libxml_ruby.so +0 -0
  58. data/mingw/mingw.rake +36 -0
  59. data/test/dtd-test.rb +24 -0
  60. data/test/etc_doc_to_s.rb +19 -0
  61. data/test/ets_copy_bug.rb +21 -0
  62. data/test/ets_copy_bug2.rb +32 -0
  63. data/test/ets_copy_bug3.rb +38 -0
  64. data/test/ets_doc_file.rb +15 -0
  65. data/test/ets_doc_to_s.rb +21 -0
  66. data/test/ets_gpx.rb +26 -0
  67. data/test/ets_node_gc.rb +21 -0
  68. data/test/ets_test.xml +2 -0
  69. data/test/ets_tsr.rb +9 -0
  70. data/test/gc.log +0 -0
  71. data/test/merge_bug.rb +55 -0
  72. data/test/schema-test.rb +74 -0
  73. data/test/tc_well_formed.rb +11 -0
  74. data/test/tc_xml_document.rb +52 -0
  75. data/test/tc_xml_document_write.rb +24 -0
  76. data/test/tc_xml_document_write2.rb +54 -0
  77. data/test/tc_xml_document_write3.rb +96 -0
  78. data/test/tc_xml_html_parser.rb +63 -0
  79. data/test/tc_xml_node.rb +59 -0
  80. data/test/tc_xml_node2.rb +25 -0
  81. data/test/tc_xml_node3.rb +27 -0
  82. data/test/tc_xml_node4.rb +86 -0
  83. data/test/tc_xml_node5.rb +52 -0
  84. data/test/tc_xml_node6.rb +27 -0
  85. data/test/tc_xml_node7.rb +35 -0
  86. data/test/tc_xml_node8.rb +32 -0
  87. data/test/tc_xml_node9.rb +32 -0
  88. data/test/tc_xml_node_copy.rb +40 -0
  89. data/test/tc_xml_node_set.rb +24 -0
  90. data/test/tc_xml_node_set2.rb +37 -0
  91. data/test/tc_xml_node_text.rb +17 -0
  92. data/test/tc_xml_node_xlink.rb +28 -0
  93. data/test/tc_xml_parser.rb +190 -0
  94. data/test/tc_xml_parser2.rb +16 -0
  95. data/test/tc_xml_parser3.rb +23 -0
  96. data/test/tc_xml_parser4.rb +33 -0
  97. data/test/tc_xml_parser5.rb +27 -0
  98. data/test/tc_xml_parser6.rb +23 -0
  99. data/test/tc_xml_parser7.rb +28 -0
  100. data/test/tc_xml_parser8.rb +32 -0
  101. data/test/tc_xml_parser9.rb +11 -0
  102. data/test/tc_xml_parser_context.rb +88 -0
  103. data/test/tc_xml_reader.rb +112 -0
  104. data/test/tc_xml_sax_parser.rb +104 -0
  105. data/test/tc_xml_sax_parser2.rb +51 -0
  106. data/test/tc_xml_xinclude.rb +30 -0
  107. data/test/tc_xml_xpath.rb +38 -0
  108. data/test/tc_xml_xpath2.rb +14 -0
  109. data/test/tc_xml_xpointer.rb +78 -0
  110. data/vc/libxml.sln +20 -0
  111. data/vc/libxml.vcproj +389 -0
  112. data/work/Rakefile +247 -0
  113. data/work/task/make +26 -0
  114. data/work/task/memory +37 -0
  115. data/work/task/rdoc +39 -0
  116. data/work/task/setup +1616 -0
  117. data/work/task/test +29 -0
  118. data/work/test/ets_runner.rb +33 -0
  119. data/work/test/libxml_test.rb +3 -0
  120. data/work/test/runner.rb +0 -0
  121. data/work/test/runner_ets.rb +33 -0
  122. data/work/vc/debug/libxml.exp +0 -0
  123. data/work/vc/debug/libxml.ilk +0 -0
  124. data/work/vc/debug/libxml.lib +0 -0
  125. data/work/vc/debug/libxml.pdb +0 -0
  126. data/work/vc/debug/libxml.so +0 -0
  127. metadata +224 -0
@@ -0,0 +1,51 @@
1
+ require 'libxml'
2
+ require 'test/unit'
3
+
4
+ # TODO this is woefully inadequate
5
+
6
+ class TC_XML_SaxParser2 < Test::Unit::TestCase
7
+ def setup()
8
+ @xp = XML::SaxParser.new
9
+ end
10
+
11
+ def teardown()
12
+ @xp = nil
13
+ end
14
+
15
+ def test_string_without_callbacks
16
+ @xp.string = File.read(File.join(File.dirname(__FILE__), 'model/saxtest.xml'))
17
+ assert_equal true, @xp.parse
18
+ end
19
+
20
+ def test_file_without_callbacks
21
+ @xp.filename = File.join(File.dirname(__FILE__), 'model/saxtest.xml')
22
+ assert_equal true, @xp.parse
23
+ end
24
+
25
+ def test_callbacks_with_string
26
+ @xp.callbacks = TestCaseCallbacks.new
27
+ @xp.string = File.read(File.join(File.dirname(__FILE__), 'model/saxtest.xml'))
28
+ do_test
29
+ end
30
+
31
+ def test_callbacks_with_file
32
+ @xp.callbacks = TestCaseCallbacks.new
33
+ @xp.filename = File.join(File.dirname(__FILE__), 'model/saxtest.xml')
34
+ do_test
35
+ end
36
+
37
+ def do_test
38
+ @xp.parse
39
+
40
+ assert_equal [1], @xp.callbacks.test[:startdoc]
41
+ assert_equal [[2,'test',{'uga'=>'booga','foo'=>'bar'}],[3,'fixnum',{}],[6,'fixnum',{}]],
42
+ @xp.callbacks.test[:startel]
43
+ assert_equal [[4,'one'],[7,'two'],[9,"\n "],[11,"\n "],[13,"\n "],[15,"\n"]],
44
+ @xp.callbacks.test[:chars]
45
+ assert_equal [[10, ' msg ']], @xp.callbacks.test[:comment]
46
+ assert_equal [[12, 'custom', 'foo="bar"']], @xp.callbacks.test[:pinstr]
47
+ assert_equal [[14, 'here it goes']], @xp.callbacks.test[:cdata]
48
+ assert_equal [[5,'fixnum'],[8,'fixnum'],[16,'test']], @xp.callbacks.test[:endel]
49
+ assert_equal [17], @xp.callbacks.test[:enddoc]
50
+ end
51
+ end # TC_XML_Sax_Parser
@@ -0,0 +1,30 @@
1
+ require "libxml"
2
+ require 'test/unit'
3
+
4
+ class TC_XML_XInclude < Test::Unit::TestCase
5
+ def setup()
6
+ @doc = XML::Document.file('model/xinclude.xml')
7
+ assert_instance_of(XML::Document, @doc)
8
+ end
9
+
10
+ def teardown()
11
+ @doc = nil
12
+ end
13
+
14
+ def test_ruby_xml_xinclude()
15
+ xinclude_doc = "<?xml version=\"1.0\"?>\n<document xmlns:xi=\"http://www.w3.org/2001/XInclude\">\n"
16
+ xinclude_doc << " <p>This libxml2 binding has the following project information:\n <code>"
17
+ msg = ''
18
+ File.open('model/rubynet_project') do |f|
19
+ for line in f
20
+ msg << line
21
+ end
22
+ end
23
+ xinclude_doc << msg << "</code></p>\n</document>\n"
24
+
25
+ ret = @doc.xinclude
26
+ assert_equal(1, ret)
27
+ assert_equal(xinclude_doc, @doc.to_s)
28
+ end
29
+ end
30
+
@@ -0,0 +1,38 @@
1
+ require "libxml"
2
+ require "test/unit"
3
+
4
+ class TC_XML_XPath < Test::Unit::TestCase
5
+ def setup()
6
+ xp = XML::Parser.new()
7
+ str = '<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>'
8
+ assert_equal(str, xp.string = str)
9
+ doc = xp.parse
10
+ assert_instance_of(XML::Document, doc)
11
+ @xpt = doc.find('/ruby_array/fixnum')
12
+ assert_instance_of(XML::XPath::Object, @xpt)
13
+ end
14
+
15
+ def teardown()
16
+ @xpt = nil
17
+ end
18
+
19
+ def test_libxml_xpath_set()
20
+ set = @xpt.set
21
+ assert_instance_of(XML::Node::Set, set)
22
+ end
23
+
24
+ def test_ary()
25
+ assert_equal(2,@xpt.length)
26
+ assert_equal("one",@xpt.first.content)
27
+ assert_equal("one",@xpt[0].content)
28
+ assert_equal("two",@xpt[1].content)
29
+ assert_equal("two",@xpt[-1].content)
30
+ assert_equal(nil,@xpt[-3])
31
+ assert_equal(nil,@xpt[2])
32
+
33
+ @xpt.inject(%w(one two).reverse) {|m,v|
34
+ assert_equal(m.pop,v.content)
35
+ m
36
+ }
37
+ end
38
+ end # TC_XML_Document
@@ -0,0 +1,14 @@
1
+ require "libxml"
2
+ require "test/unit"
3
+ require "tempfile"
4
+
5
+ class TC_XML_XPath2 < Test::Unit::TestCase
6
+ def test_custom_xpath_function
7
+ xml = Tempfile.new("xxx")
8
+ xml.puts("<a/>")
9
+ xml.close
10
+
11
+ doc = XML::Document.file(xml.path)
12
+ assert_nil(doc.find("//*[name(.)=normalize_space(' a ')]"))
13
+ end
14
+ end
@@ -0,0 +1,78 @@
1
+ require "libxml"
2
+ require "test/unit"
3
+
4
+ class TC_XML_XPointer < Test::Unit::TestCase
5
+ def setup()
6
+ xp = XML::Parser.new()
7
+ str = '<!DOCTYPE ra [<!ELEMENT ra (foo+)><!ATTLIST ra id ID #IMPLIED><!ELEMENT foo (#PCDATA)><!ATTLIST foo id ID #IMPLIED>]><ra id="start"><foo id="one">one</foo><foo id="two">two</foo><foo id="three">three</foo></ra>'
8
+ assert_equal(str, xp.string = str)
9
+ @doc = xp.parse
10
+ assert_instance_of(XML::Document, @doc)
11
+ @root = @doc.root
12
+ assert_instance_of(XML::Node, @root)
13
+ end
14
+
15
+ def teardown()
16
+ @doc = nil
17
+ @root = nil
18
+ @xptr = nil
19
+ end
20
+
21
+ def test_libxml_xpointer_id()
22
+ @xptr = @root.pointer('xpointer(id("two"))')
23
+ assert_instance_of(XML::XPath::Object, @xptr)
24
+ set = @xptr.set
25
+ assert_instance_of(XML::Node::Set, set)
26
+ for n in set
27
+ # It seems from the spec that the pointer should
28
+ # be the whole node, rather than just the ID attr.
29
+
30
+ # assert_equal('two', n.to_s)
31
+
32
+ assert_instance_of(XML::Node, n)
33
+ assert_equal('two', n['id'])
34
+ end
35
+
36
+ # FIXME: Not sure at all about this kind of range
37
+ if ENV['NOTWORKING']
38
+ @xptr = @root.pointer('xpointer(id("two")) xpointer(id("three"))')
39
+ assert_instance_of(XML::XPath, @xptr)
40
+ assert_instance_of(XML::Node::Set, @xptr.set)
41
+ assert_equal(2, @xptr.set.length)
42
+ for n in @xptr.set
43
+ assert_match(/two|three/, n.to_s)
44
+ end
45
+ end
46
+ end
47
+
48
+ # FIXME: There is a bug in these ranges...
49
+ if ENV['NOTWORKING']
50
+ def test_libxml_xpointer_range()
51
+ nstart = nend = nil
52
+ @xptr = @root.pointer('xpointer(id("one"))').set
53
+ @xptr.each{|n| nstart = n}
54
+ assert_instance_of(XML::Node, nstart)
55
+ @xptr = @root.pointer('xpointer(id("three"))').set
56
+ @xptr.each{|n| nend = n}
57
+ assert_instance_of(XML::Node, nend)
58
+ range = XML::XPointer.range(nstart, nend)
59
+ assert_instance_of(XML::XPath, range)
60
+ assert_instance_of(XML::Node::Set, range.set)
61
+
62
+ for n in range.set
63
+ assert_match(/one|two|three/, n.to_s)
64
+ end
65
+ assert_equal(3, range.set.length)
66
+ end
67
+ end
68
+
69
+ # def test_libxml_xpointer_start_point()
70
+ # @xptr = @root.pointer('xpointer(start-point("one"))')
71
+ # assert_instance_of(XML::XPath, @xptr)
72
+ # set = @xptr.set
73
+ # assert_instance_of(XML::Node::Set, set)
74
+ # for n in set
75
+ # assert_match(/one|two|three/, n.to_s)
76
+ # end
77
+ # end
78
+ end
data/vc/libxml.sln ADDED
@@ -0,0 +1,20 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 9.00
3
+ # Visual Studio 2005
4
+ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libxml", "libxml.vcproj", "{6DCFD1E6-224E-479C-BBD9-B6931DFCD02C}"
5
+ EndProject
6
+ Global
7
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
8
+ Debug|Win32 = Debug|Win32
9
+ Release|Win32 = Release|Win32
10
+ EndGlobalSection
11
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
12
+ {6DCFD1E6-224E-479C-BBD9-B6931DFCD02C}.Debug|Win32.ActiveCfg = Debug|Win32
13
+ {6DCFD1E6-224E-479C-BBD9-B6931DFCD02C}.Debug|Win32.Build.0 = Debug|Win32
14
+ {6DCFD1E6-224E-479C-BBD9-B6931DFCD02C}.Release|Win32.ActiveCfg = Release|Win32
15
+ {6DCFD1E6-224E-479C-BBD9-B6931DFCD02C}.Release|Win32.Build.0 = Release|Win32
16
+ EndGlobalSection
17
+ GlobalSection(SolutionProperties) = preSolution
18
+ HideSolutionNode = FALSE
19
+ EndGlobalSection
20
+ EndGlobal
data/vc/libxml.vcproj ADDED
@@ -0,0 +1,389 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="8.00"
5
+ Name="libxml_ruby"
6
+ ProjectGUID="{0B65CD1D-EEB9-41AE-93BB-75496E504152}"
7
+ RootNamespace="libxml"
8
+ Keyword="Win32Proj"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ </Platforms>
15
+ <ToolFiles>
16
+ </ToolFiles>
17
+ <Configurations>
18
+ <Configuration
19
+ Name="Debug|Win32"
20
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
21
+ IntermediateDirectory="$(ConfigurationName)"
22
+ ConfigurationType="2"
23
+ CharacterSet="1"
24
+ >
25
+ <Tool
26
+ Name="VCPreBuildEventTool"
27
+ />
28
+ <Tool
29
+ Name="VCCustomBuildTool"
30
+ />
31
+ <Tool
32
+ Name="VCXMLDataGeneratorTool"
33
+ />
34
+ <Tool
35
+ Name="VCWebServiceProxyGeneratorTool"
36
+ />
37
+ <Tool
38
+ Name="VCMIDLTool"
39
+ />
40
+ <Tool
41
+ Name="VCCLCompilerTool"
42
+ Optimization="0"
43
+ AdditionalIncludeDirectories="&quot;C:\Development\ruby\lib\ruby\1.8\i386-mswin32&quot;;&quot;C:\Development\msys\src\libxml2-2.6.32\include&quot;;&quot;C:\Development\msys\src\libiconv-1.12\include&quot;"
44
+ PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBXML_EXPORTS"
45
+ MinimalRebuild="true"
46
+ BasicRuntimeChecks="3"
47
+ RuntimeLibrary="3"
48
+ UsePrecompiledHeader="0"
49
+ WarningLevel="3"
50
+ Detect64BitPortabilityProblems="true"
51
+ DebugInformationFormat="4"
52
+ />
53
+ <Tool
54
+ Name="VCManagedResourceCompilerTool"
55
+ />
56
+ <Tool
57
+ Name="VCResourceCompilerTool"
58
+ />
59
+ <Tool
60
+ Name="VCPreLinkEventTool"
61
+ />
62
+ <Tool
63
+ Name="VCLinkerTool"
64
+ AdditionalDependencies="msvcrt-ruby18.lib libxml2.lib"
65
+ OutputFile="C:\Development\ruby\lib\ruby\gems\1.8\gems\libxml-ruby-0.6.0-x86-mswin32-60\lib\libxml.so"
66
+ LinkIncremental="2"
67
+ AdditionalLibraryDirectories="C:\Development\ruby\lib;&quot;C:\Development\msys\src\libxml2-2.6.32\win32\lib&quot;"
68
+ GenerateDebugInformation="true"
69
+ SubSystem="2"
70
+ TargetMachine="1"
71
+ />
72
+ <Tool
73
+ Name="VCALinkTool"
74
+ />
75
+ <Tool
76
+ Name="VCManifestTool"
77
+ />
78
+ <Tool
79
+ Name="VCXDCMakeTool"
80
+ />
81
+ <Tool
82
+ Name="VCBscMakeTool"
83
+ />
84
+ <Tool
85
+ Name="VCFxCopTool"
86
+ />
87
+ <Tool
88
+ Name="VCAppVerifierTool"
89
+ />
90
+ <Tool
91
+ Name="VCWebDeploymentTool"
92
+ />
93
+ <Tool
94
+ Name="VCPostBuildEventTool"
95
+ />
96
+ </Configuration>
97
+ <Configuration
98
+ Name="Release|Win32"
99
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
100
+ IntermediateDirectory="$(ConfigurationName)"
101
+ ConfigurationType="2"
102
+ CharacterSet="1"
103
+ WholeProgramOptimization="1"
104
+ >
105
+ <Tool
106
+ Name="VCPreBuildEventTool"
107
+ />
108
+ <Tool
109
+ Name="VCCustomBuildTool"
110
+ />
111
+ <Tool
112
+ Name="VCXMLDataGeneratorTool"
113
+ />
114
+ <Tool
115
+ Name="VCWebServiceProxyGeneratorTool"
116
+ />
117
+ <Tool
118
+ Name="VCMIDLTool"
119
+ />
120
+ <Tool
121
+ Name="VCCLCompilerTool"
122
+ AdditionalIncludeDirectories="&quot;C:\Development\ruby\lib\ruby\1.8\i386-mswin32&quot;;&quot;C:\Development\msys\src\libxml2-2.6.32\include&quot;;&quot;C:\Development\msys\src\libiconv-1.12\include&quot;"
123
+ PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBXML_EXPORTS"
124
+ RuntimeLibrary="2"
125
+ UsePrecompiledHeader="0"
126
+ WarningLevel="3"
127
+ Detect64BitPortabilityProblems="true"
128
+ DebugInformationFormat="3"
129
+ />
130
+ <Tool
131
+ Name="VCManagedResourceCompilerTool"
132
+ />
133
+ <Tool
134
+ Name="VCResourceCompilerTool"
135
+ />
136
+ <Tool
137
+ Name="VCPreLinkEventTool"
138
+ />
139
+ <Tool
140
+ Name="VCLinkerTool"
141
+ AdditionalDependencies="msvcrt-ruby18.lib libxml2.lib"
142
+ OutputFile="$(OutDir)\$(ProjectName).so"
143
+ LinkIncremental="1"
144
+ AdditionalLibraryDirectories="C:\Development\ruby\lib;&quot;C:\Development\msys\src\libxml2-2.6.32\win32\lib&quot;"
145
+ GenerateDebugInformation="true"
146
+ SubSystem="2"
147
+ OptimizeReferences="2"
148
+ EnableCOMDATFolding="2"
149
+ TargetMachine="1"
150
+ />
151
+ <Tool
152
+ Name="VCALinkTool"
153
+ />
154
+ <Tool
155
+ Name="VCManifestTool"
156
+ />
157
+ <Tool
158
+ Name="VCXDCMakeTool"
159
+ />
160
+ <Tool
161
+ Name="VCBscMakeTool"
162
+ />
163
+ <Tool
164
+ Name="VCFxCopTool"
165
+ />
166
+ <Tool
167
+ Name="VCAppVerifierTool"
168
+ />
169
+ <Tool
170
+ Name="VCWebDeploymentTool"
171
+ />
172
+ <Tool
173
+ Name="VCPostBuildEventTool"
174
+ />
175
+ </Configuration>
176
+ </Configurations>
177
+ <References>
178
+ </References>
179
+ <Files>
180
+ <Filter
181
+ Name="Source Files"
182
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
183
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
184
+ >
185
+ <File
186
+ RelativePath="..\ext\libxml\cbg.c"
187
+ >
188
+ </File>
189
+ <File
190
+ RelativePath="..\ext\libxml\libxml.c"
191
+ >
192
+ </File>
193
+ <File
194
+ RelativePath="..\ext\libxml\ruby_xml_attr.c"
195
+ >
196
+ </File>
197
+ <File
198
+ RelativePath="..\ext\libxml\ruby_xml_document.c"
199
+ >
200
+ </File>
201
+ <File
202
+ RelativePath="..\ext\libxml\ruby_xml_dtd.c"
203
+ >
204
+ </File>
205
+ <File
206
+ RelativePath="..\ext\libxml\ruby_xml_html_parser.c"
207
+ >
208
+ </File>
209
+ <File
210
+ RelativePath="..\ext\libxml\ruby_xml_input_cbg.c"
211
+ >
212
+ </File>
213
+ <File
214
+ RelativePath="..\ext\libxml\ruby_xml_node.c"
215
+ >
216
+ </File>
217
+ <File
218
+ RelativePath="..\ext\libxml\ruby_xml_node_set.c"
219
+ >
220
+ </File>
221
+ <File
222
+ RelativePath="..\ext\libxml\ruby_xml_ns.c"
223
+ >
224
+ </File>
225
+ <File
226
+ RelativePath="..\ext\libxml\ruby_xml_parser.c"
227
+ >
228
+ </File>
229
+ <File
230
+ RelativePath="..\ext\libxml\ruby_xml_parser_context.c"
231
+ >
232
+ </File>
233
+ <File
234
+ RelativePath="..\ext\libxml\ruby_xml_reader.c"
235
+ >
236
+ </File>
237
+ <File
238
+ RelativePath="..\ext\libxml\ruby_xml_sax_parser.c"
239
+ >
240
+ </File>
241
+ <File
242
+ RelativePath="..\ext\libxml\ruby_xml_schema.c"
243
+ >
244
+ </File>
245
+ <File
246
+ RelativePath="..\ext\libxml\ruby_xml_state.c"
247
+ >
248
+ </File>
249
+ <File
250
+ RelativePath="..\ext\libxml\ruby_xml_tree.c"
251
+ >
252
+ </File>
253
+ <File
254
+ RelativePath="..\ext\libxml\ruby_xml_xinclude.c"
255
+ >
256
+ </File>
257
+ <File
258
+ RelativePath="..\ext\libxml\ruby_xml_xpath.c"
259
+ >
260
+ </File>
261
+ <File
262
+ RelativePath="..\ext\libxml\ruby_xml_xpath_context.c"
263
+ >
264
+ </File>
265
+ <File
266
+ RelativePath="..\ext\libxml\ruby_xml_xpath_object.c"
267
+ >
268
+ </File>
269
+ <File
270
+ RelativePath="..\ext\libxml\ruby_xml_xpointer.c"
271
+ >
272
+ </File>
273
+ <File
274
+ RelativePath="..\ext\libxml\ruby_xml_xpointer_context.c"
275
+ >
276
+ </File>
277
+ </Filter>
278
+ <Filter
279
+ Name="Header Files"
280
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
281
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
282
+ >
283
+ <File
284
+ RelativePath="..\ext\libxml\ruby_libxml.h"
285
+ >
286
+ </File>
287
+ <File
288
+ RelativePath="..\ext\libxml\ruby_xml_attr.h"
289
+ >
290
+ </File>
291
+ <File
292
+ RelativePath="..\ext\libxml\ruby_xml_document.h"
293
+ >
294
+ </File>
295
+ <File
296
+ RelativePath="..\ext\libxml\ruby_xml_dtd.h"
297
+ >
298
+ </File>
299
+ <File
300
+ RelativePath="..\ext\libxml\ruby_xml_html_parser.h"
301
+ >
302
+ </File>
303
+ <File
304
+ RelativePath="..\ext\libxml\ruby_xml_input_cbg.h"
305
+ >
306
+ </File>
307
+ <File
308
+ RelativePath="..\ext\libxml\ruby_xml_node.h"
309
+ >
310
+ </File>
311
+ <File
312
+ RelativePath="..\ext\libxml\ruby_xml_node_set.h"
313
+ >
314
+ </File>
315
+ <File
316
+ RelativePath="..\ext\libxml\ruby_xml_ns.h"
317
+ >
318
+ </File>
319
+ <File
320
+ RelativePath="..\ext\libxml\ruby_xml_parser.h"
321
+ >
322
+ </File>
323
+ <File
324
+ RelativePath="..\ext\libxml\ruby_xml_parser_context.h"
325
+ >
326
+ </File>
327
+ <File
328
+ RelativePath="..\ext\libxml\ruby_xml_reader.h"
329
+ >
330
+ </File>
331
+ <File
332
+ RelativePath="..\ext\libxml\ruby_xml_sax_parser.h"
333
+ >
334
+ </File>
335
+ <File
336
+ RelativePath="..\ext\libxml\ruby_xml_schema.h"
337
+ >
338
+ </File>
339
+ <File
340
+ RelativePath="..\ext\libxml\ruby_xml_state.h"
341
+ >
342
+ </File>
343
+ <File
344
+ RelativePath="..\ext\libxml\ruby_xml_tree.h"
345
+ >
346
+ </File>
347
+ <File
348
+ RelativePath="..\ext\libxml\ruby_xml_xinclude.h"
349
+ >
350
+ </File>
351
+ <File
352
+ RelativePath="..\ext\libxml\ruby_xml_xpath.h"
353
+ >
354
+ </File>
355
+ <File
356
+ RelativePath="..\ext\libxml\ruby_xml_xpath_context.h"
357
+ >
358
+ </File>
359
+ <File
360
+ RelativePath="..\ext\libxml\ruby_xml_xpath_object.h"
361
+ >
362
+ </File>
363
+ <File
364
+ RelativePath="..\ext\libxml\ruby_xml_xpointer.h"
365
+ >
366
+ </File>
367
+ <File
368
+ RelativePath="..\ext\libxml\ruby_xml_xpointer_context.h"
369
+ >
370
+ </File>
371
+ <File
372
+ RelativePath="..\ext\libxml\version.h"
373
+ >
374
+ </File>
375
+ </Filter>
376
+ <Filter
377
+ Name="Resource Files"
378
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
379
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
380
+ >
381
+ </Filter>
382
+ <File
383
+ RelativePath=".\ReadMe.txt"
384
+ >
385
+ </File>
386
+ </Files>
387
+ <Globals>
388
+ </Globals>
389
+ </VisualStudioProject>