middleman-xmlvalidator 0.0.2 → 0.0.3
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/.gitignore +2 -0
- data/lib/.DS_Store +0 -0
- data/lib/middleman/.DS_Store +0 -0
- data/lib/middleman/xmlvalidator/version.rb +2 -1
- data/lib/middleman/xmlvalidator.rb +0 -1
- data/lib/schema/.DS_Store +0 -0
- data/lib/schema/BingSiteAuth.xsd +9 -0
- data/lib/schema/RSSSchema.xsd +500 -0
- data/lib/schema/Sitemap2.xsd +116 -0
- data/lib/schema/Sitemap3.xsd +76 -0
- data/lib/schema/XMLSchema.xsd +1778 -0
- data/lib/schema/crossdomain.xsd +18 -0
- data/middleman-xmlvalidator.gemspec +1 -1
- metadata +10 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
3
|
+
<xs:element name="cross-domain-policy">
|
|
4
|
+
<xs:complexType>
|
|
5
|
+
<xs:sequence>
|
|
6
|
+
<xs:element name="site-control">
|
|
7
|
+
<xs:complexType>
|
|
8
|
+
<xs:simpleContent>
|
|
9
|
+
<xs:extension base="xs:string">
|
|
10
|
+
<xs:attribute type="xs:string" name="permitted-cross-domain-policies"/>
|
|
11
|
+
</xs:extension>
|
|
12
|
+
</xs:simpleContent>
|
|
13
|
+
</xs:complexType>
|
|
14
|
+
</xs:element>
|
|
15
|
+
</xs:sequence>
|
|
16
|
+
</xs:complexType>
|
|
17
|
+
</xs:element>
|
|
18
|
+
</xs:schema>
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
require 'middleman/xmlvalidator/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
|
-
gem.name =
|
|
7
|
+
gem.name = Middleman::Xmlvalidator::PACKAGE
|
|
8
8
|
gem.version = Middleman::Xmlvalidator::VERSION
|
|
9
9
|
gem.authors = ["briananders"]
|
|
10
10
|
gem.email = ["anders.brian@icloud.com"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: middleman-xmlvalidator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -88,8 +88,17 @@ files:
|
|
|
88
88
|
- LICENSE.txt
|
|
89
89
|
- README.md
|
|
90
90
|
- Rakefile
|
|
91
|
+
- lib/.DS_Store
|
|
92
|
+
- lib/middleman/.DS_Store
|
|
91
93
|
- lib/middleman/xmlvalidator.rb
|
|
92
94
|
- lib/middleman/xmlvalidator/version.rb
|
|
95
|
+
- lib/schema/.DS_Store
|
|
96
|
+
- lib/schema/BingSiteAuth.xsd
|
|
97
|
+
- lib/schema/RSSSchema.xsd
|
|
98
|
+
- lib/schema/Sitemap2.xsd
|
|
99
|
+
- lib/schema/Sitemap3.xsd
|
|
100
|
+
- lib/schema/XMLSchema.xsd
|
|
101
|
+
- lib/schema/crossdomain.xsd
|
|
93
102
|
- middleman-xmlvalidator.gemspec
|
|
94
103
|
homepage: ''
|
|
95
104
|
licenses:
|