http://github.com/raulriera/SplashCMS/commit/aa9508b5a3a430a6ea251c068d70696c5df11484
Clarke
http://github.com/raulriera/SplashCMS/commit/aa9508b5a3a430a6ea251c068d70696
c5df11484
To unsubscribe from this group, send email to
splashcms+unsubscribegooglegroups.com or reply to this email with the words
"REMOVE ME" as the subject.
http://github.com/raulriera/SplashCMS/commit/e73c7f397b9d4a787e0440d0154f41c61fa86720
You can check out all this code in my "bleeding edge SplashCMS" at
splashcms.hipervinculo.net/admin/ the login info is the default one
On Mar 20, 9:59 am, "Clarke Bishop" <cbis...@resultantsys.com> wrote:
> Looks interesting. I'll try to look into this some more the next time I'm in
> Splash!
>
> Clarke
>
>
>
> -----Original Message-----
> From: spla...@googlegroups.com [mailto:spla...@googlegroups.com] On
>
> Behalf Of raulriera
> Sent: Saturday, March 20, 2010 12:52 AM
> To: Splash CMS
> Subject: [splashcms] Small new feature
>
> This is something I could use for those "archive" like pages... I
> think it can be improved... thoughts? (there are some other nice
> commits there as well)
>
> http://github.com/raulriera/SplashCMS/commit/aa9508b5a3a430a6ea251c06...
http://github.com/raulriera/SplashCMS/commits/master
On Mar 23, 2:26 am, raulriera <rierar...@gmail.com> wrote:
> More features... what do you guys think of this implementation? Should
> I apply it to Snippets as well... I believe it can be improved and
> "reused"
>
> http://github.com/raulriera/SplashCMS/commit/e73c7f397b9d4a787e0440d0...
The only thing I would question and I will have to think on this some today is the change you made to the content tag and passing a page into it.. Im not sure how this is a good thing. of course I will admit its 8am and I havent had coffee yet ;)
Can you give me an example of where/how this would be used?
- Russ
I need to hacked it to do this
<s:find slug="artistas">
<s:children-each where="title LIKE 'N%'">
<cfset thisChild = request.tags.currentChild>
<cfoutput>
<div class="grid_12 alpha">
<s:content part="body" page="#thisChild#" />
</div>
<div class="grid_12 omega">
<h2>#thisChild.title#</h2>
<s:content part="extended" page="#thisChild#" />
</div>
</cfoutput>
</s:children-each>
In the <s:content> I didnt have the current child, so I needed to pass
it along... probably there is a less verbose (CFlike) way of doing
this though...