html-pipeline-linuxfr 0.14.6 → 0.14.7
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.
- checksums.yaml +4 -4
- data/lib/html/pipeline/sanitization_filter.rb +4 -3
- data/lib/html/pipeline/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e03e08f71b43a511947b76526ca6642972e015fa
|
|
4
|
+
data.tar.gz: a9cbb228118f99199524d3d6e1b96dad7eb13aa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6bf92ad08f1b8aaf02dd2b49bf02dc00b273d32e1ac0af4026574aaef9bee408173fd56f8e578ffa73af1e0812fe890bc7452b5bb48683da733200e7ad6b1687
|
|
7
|
+
data.tar.gz: 90590c8ac84bc5d8f1305bbde3fe6631424e6c860c4475bbbaf7d39a61a38e65ee73a2a3720f1734a1662257dcb7cfa52554d432231ffcb739b53d94812d9793
|
|
@@ -26,8 +26,8 @@ module HTML
|
|
|
26
26
|
:output => :xhtml,
|
|
27
27
|
:elements => %w(a abbr b blockquote br cite code dd del dfn div dl dt em
|
|
28
28
|
h1 h2 h3 h4 h5 h6 hr i img ins kbd li mark meter ol p pre
|
|
29
|
-
q s samp small span strong sub sup table tbody td
|
|
30
|
-
th thead tr time ul var video wbr),
|
|
29
|
+
q s samp small source span strong sub sup table tbody td
|
|
30
|
+
tfooter th thead tr time ul var video wbr),
|
|
31
31
|
:remove_contents => ['script'],
|
|
32
32
|
:attributes => {
|
|
33
33
|
:all => ['data-after', 'data-id', 'id', 'title', 'class'],
|
|
@@ -35,8 +35,9 @@ module HTML
|
|
|
35
35
|
'blockquote' => ['cite'],
|
|
36
36
|
'img' => ['alt', 'height', 'src', 'width'],
|
|
37
37
|
'q' => ['cite'],
|
|
38
|
+
'source' => ['src', 'type', 'media'],
|
|
38
39
|
'time' => ['datetime'],
|
|
39
|
-
'video' => ['src']
|
|
40
|
+
'video' => ['src', 'controls']
|
|
40
41
|
},
|
|
41
42
|
:protocols => {
|
|
42
43
|
'a' => {'href' => ['ftp', 'http', 'https', 'irc', 'mailto', 'xmpp', :relative]},
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-pipeline-linuxfr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Tomayko
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-
|
|
13
|
+
date: 2013-09-16 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: nokogiri
|
|
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
157
157
|
version: '0'
|
|
158
158
|
requirements: []
|
|
159
159
|
rubyforge_project:
|
|
160
|
-
rubygems_version: 2.0
|
|
160
|
+
rubygems_version: 2.1.0
|
|
161
161
|
signing_key:
|
|
162
162
|
specification_version: 4
|
|
163
163
|
summary: Helpers for processing content through a chain of filters
|