public
Description: Radiant is a no-fluff, open source content management system designed for small teams.
Homepage: http://radiantcms.org/
Clone URL: git://github.com/radiant/radiant.git
Fix broken specs and update history.
seancribbs (author)
Wed Jul 23 06:36:11 -0700 2008
commit  0c62543835fdcd2cbabd1a1f96b215207d3545e8
tree    09ad8644c52b07b8a90aadf8174ec675dc5e6467
parent  cae8e0357b880b3d1db770637a3d16738e5153be
...
1
2
3
 
4
5
6
...
1
2
3
4
5
6
7
0
@@ -1,6 +1,7 @@
0
 == Change Log
0
 
0
 === Edge
0
+* Add <r:unless_ancestor_or_self> and <r:unless_self> tags. [Tim Gossett]
0
 * Add specific installation modes for gzip and bzip2 compression. [Sean Cribbs]
0
 * Added extension installation scripts. [Sean Cribbs]
0
 * Added find attr to r:if_content and r:unless_content to expand based on
...
5
6
7
 
8
9
10
...
5
6
7
8
9
10
11
0
@@ -5,6 +5,7 @@ The following people have submitted changes which have been applied to the
0
 core:
0
 
0
 === Edge
0
+* Tim Gossett
0
 * John Muhl
0
 * Josh French
0
 * Jim Gay
...
769
770
771
772
 
773
774
775
776
 
777
778
779
...
789
790
791
792
 
793
794
795
796
 
797
798
799
...
769
770
771
 
772
773
774
775
 
776
777
778
779
...
789
790
791
 
792
793
794
795
 
796
797
798
799
0
@@ -769,11 +769,11 @@ describe "Standard Tags" do
0
   
0
   describe "<r:unless_ancestor_or_self>" do
0
     it "should render the tag's content when the current page is not an ancestor of tag.locals.page" do
0
- page(:radius).should render(%{<r:find url="/"><r:unless_ancestor_or_self>true</r:unless_ancestor_or_self></r:find>}).as('true')
0
+ page(:radius).should render(%{<r:find url="/"><r:unless_ancestor_or_self>true</r:unless_ancestor_or_self></r:find>}).as('')
0
     end
0
 
0
     it "should not render the tag's content when current page is an ancestor of tag.locals.page" do
0
- page(:parent).should render(%{<r:find url="/radius"><r:unless_ancestor_or_self>true</r:unless_ancestor_or_self></r:find>}).as('')
0
+ page(:parent).should render(%{<r:find url="/radius"><r:unless_ancestor_or_self>true</r:unless_ancestor_or_self></r:find>}).as('true')
0
     end
0
   end
0
 
0
@@ -789,11 +789,11 @@ describe "Standard Tags" do
0
   
0
   describe "<r:unless_self>" do
0
     it "should render the tag's content when the current page is not the same as the local contextual page" do
0
- page(:home).should render(%{<r:find url="/"><r:unless_self>true</r:unless_self></r:find>}).as('true')
0
+ page(:home).should render(%{<r:find url="/"><r:unless_self>true</r:unless_self></r:find>}).as('')
0
     end
0
 
0
     it "should not render the tag's content when the current page is the same as the local contextual page" do
0
- page(:radius).should render(%{<r:find url="/"><r:unles_self>true</r:unless_self></r:find>}).as('')
0
+ page(:radius).should render(%{<r:find url="/"><r:unless_self>true</r:unless_self></r:find>}).as('true')
0
     end
0
   end
0
 

Comments

    No one has commented yet.