trac-wiki 0.3.28 → 0.3.29

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f21ccb2404abbee4ec47d4ae14dd5e3b03867548
4
- data.tar.gz: 141ef30bca74cb1fc4b9709303ad03688ff1a3e5
3
+ metadata.gz: d9b5ec9f3bc16fa6f4d396574df290fcec619af0
4
+ data.tar.gz: e1d703758466837f1fad8770696982f7d6c8667a
5
5
  SHA512:
6
- metadata.gz: b9ef238c93f522c32cb7d715b312ad6237ea4f16b8fc3703fe0d24801c15252cc020cf93815bb66a5ea3a292d18abdac4c095974779568870392ffc64e62d9f6
7
- data.tar.gz: ce11cc8587b2c29da0ef00f06375bb60601a98d6329a170a7e6d79c2705379a36fd5729eaf84f2d5477eb4ed6793491cd92b792c3a4c36cd44c2c2b0921bfee5
6
+ metadata.gz: 2209fd84630c345578bc32e9d7ca8557b9f0abb89f5d26b603ad6f836c14defebba6eea592eeac742472050c4a284752539d55cc87efbfcd8fc3fd3034e68ebb
7
+ data.tar.gz: f0ac26537e613f37456886b88e6d2e5901a01bb8b0ff691df619134b63a56d606c36a7d35b62ea1e243539df79def9b901f414c9c17379e000a461db33e11327
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trac-wiki (0.3.27)
4
+ trac-wiki (0.3.28)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -160,6 +160,7 @@ module TracWiki
160
160
  :td => [:colspan, :rowspan, :style],
161
161
  :th => [:colspan, :rowspan, :style],
162
162
  :ol => [:type ],
163
+ :label => [:for],
163
164
  :_all => [:class, :title, :id, :style],
164
165
  }
165
166
 
@@ -1,3 +1,3 @@
1
1
  module TracWiki
2
- VERSION = '0.3.28'
2
+ VERSION = '0.3.29'
3
3
  end
data/test/parser_test.rb CHANGED
@@ -1252,6 +1252,9 @@ eos
1252
1252
  tc "<div class=\"AHOJ\">TEST</div>\n", "{{!set ahoj|AHOJ}}<div class=\"{{$ahoj}}\">TEST</div></p>\n", allow_html: true
1253
1253
  tc "<div class=\"**AHOJ**\">TEST</div>\n", "{{!set ahoj|AHOJ}}<div class=\"**{{$ahoj}}**\">TEST</div></p>\n", allow_html: true
1254
1254
  end
1255
+ it 'should parse label' do
1256
+ tc "<p><label class=\"xxx\" for=\"ble\">AHOJ</label></p>\n", "<label class=\"xxx\" for=\"ble\">AHOJ</label>\n", allow_html: true
1257
+ end
1255
1258
  it 'should parse at_callback ' do
1256
1259
  tc "<p>WUF</p>\n", "{{$MEOW|meow}}\n"
1257
1260
  tc "<p>meow</p>\n", "{{$UNKVAR|meow}}\n"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trac-wiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.28
4
+ version: 0.3.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vitas Stradal