zafu 0.8.3 → 0.8.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.8.4 2011-11-09
2
+
3
+ * Enhancements
4
+ * Fixed saved_dom_id propagation.
5
+
1
6
  == 0.8.3 2011-07-12
2
7
 
3
8
  * Enhancements
data/lib/zafu/info.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Zafu
2
- VERSION = '0.8.3'
2
+ VERSION = '0.8.4'
3
3
  end
4
4
 
@@ -52,6 +52,7 @@ module Zafu
52
52
  def as_main(after_class = nil)
53
53
  klass = after_class ? master_class(after_class) : single_class
54
54
  res = self.class.new("@#{klass.to_s.underscore}", single_class, nil)
55
+ res.propagate_dom_scope! if @dom_scope
55
56
  res.dom_prefix = self.dom_prefix
56
57
  res
57
58
  end
@@ -176,7 +177,7 @@ module Zafu
176
177
  protected
177
178
  # List of scopes defined in ancestry (used to generate dom_id).
178
179
  def dom_scopes
179
- return [@saved_dom_id] if @saved_dom_id
180
+ return [@saved_dom_id] if @dom_scope && @saved_dom_id
180
181
  if @up
181
182
  scopes = @up.dom_scopes
182
183
  if @dom_scope
data/lib/zafu/parser.rb CHANGED
@@ -222,6 +222,7 @@ module Zafu
222
222
  def replace_with(obj)
223
223
  # keep @method (obj's method is always 'with')
224
224
  @blocks = obj.blocks.empty? ? @blocks : obj.blocks
225
+ obj.params.delete(:part)
225
226
  @params.merge!(obj.params)
226
227
  end
227
228
 
@@ -36,12 +36,6 @@ module Zafu
36
36
  end
37
37
 
38
38
  if need_ajax?(each_block)
39
- #node.dom_prefix = dom_name
40
- # We need to build the templates for ajax rendering.
41
- # HACK to avoid changing dom_prefix in drag&drop
42
-
43
- # The bug with wrong prefix between drop inline and ajax result comes from
44
- # here (see selenium test drop1 and drop2).
45
39
  node.dom_prefix = dom_name
46
40
 
47
41
  # 1. Render inline
@@ -317,6 +317,17 @@ class NodeContextTest < Test::Unit::TestCase
317
317
  end
318
318
  end
319
319
  end
320
+
321
+ context 'with a saved dom_id' do
322
+ setup do
323
+ @c.saved_dom_id = '#{ndom_id(@foo)}'
324
+ end
325
+
326
+ should 'not use saved id in scope' do
327
+ # We did not ask for dom_scope to propagate.
328
+ assert_equal '<%= %Q{b_#{var3.zip}} %>', subject.dom_id
329
+ end
330
+ end
320
331
 
321
332
  context 'with ancestors and self as dom_scopes' do
322
333
  setup do
data/zafu.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{zafu}
8
- s.version = "0.8.3"
8
+ s.version = "0.8.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Gaspard Bucher"]
12
- s.date = %q{2011-07-12}
12
+ s.date = %q{2011-07-17}
13
13
  s.description = %q{Provides a powerful templating language based on xhtml for rails}
14
14
  s.email = %q{gaspard@teti.ch}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zafu
3
3
  version: !ruby/object:Gem::Version
4
- hash: 57
4
+ hash: 55
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 8
9
- - 3
10
- version: 0.8.3
9
+ - 4
10
+ version: 0.8.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gaspard Bucher
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-12 00:00:00 +02:00
18
+ date: 2011-07-17 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  requirements: []
151
151
 
152
152
  rubyforge_project:
153
- rubygems_version: 1.6.1
153
+ rubygems_version: 1.6.2
154
154
  signing_key:
155
155
  specification_version: 3
156
156
  summary: Provides a powerful templating language based on xhtml for rails