[Radiant] Slug hierarchy?

2007-03-06 Thread Martin Olsson
Hello,
Possibly a stupid question, but here we go:

Can you organize slugs hierarchically? One alpha-slug to rule them  
all? Militant slugs with religious leaders?

No I mean something like this:

Home (/)
- about (/about)
- animals (/animals)
   - about (/animals/about)
- plants (/plants)
   - plants (/plants/about)

When I try to add a child to animals and give it the slug about I  
get a 404 when i go to /animals/about

Do slugs have to be unique?

How can I fix this?

Regards,
Martin Olsson
http://smpl.se





___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] Slug hierarchy?

2007-03-06 Thread Martin Olsson
Yeah,
The pages animals and plants are project blogs, so they'll have  
lots of posts.
/Martin


On 6 mar 2007, at 12.47, Mislav Marohnić wrote:

 On 3/6/07, Martin Olsson [EMAIL PROTECTED] wrote:

 I figured it out and kind of solved it. The problem was that the /
 animals page was an Archive, which meant that the slug became
 2007/3/6/about - which is fine.

 Why is it an Archive? animals/about was much nicer!

 Archive usually makes sense when there are *a lot* of posts (like  
 on a blog).
 ___
 Radiant mailing list
 Post:   Radiant@lists.radiantcms.org
 Search: http://radiantcms.org/mailing-list/search/
 Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant

[Radiant] How to not show Extended in Page

2007-03-06 Thread Per-olof Hermansson
hi

I have set up a Radiant site about Swedish shorthand
(www.stenografi.se).

On some pages I would like the Extended part to show up as a Read
more... link, (which I know how to do), but somehow they show up on the
page.

Is there a way to shut the extended page of, so that the link is used in
stead?

On my site, click on Grunderna to see what I mean.

Per-Olof Hermansson

-- 
Posted via http://www.ruby-forum.com/.
___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


[Radiant] Newbie - How does one learn to use Radiant?

2007-03-06 Thread David Kennedy
I am very excited about someday being able to use your Radiant CMS
system and see you have a very active forum of people asking specific
questions. Are there any tutorial type pages available or a book
published on this topic?
I  would be very grateful for a 'recommended reading list' or pointers
to where I might learn how to produce a site in Radiant.
I am making good progress learning to write Ruby on Rails database web
applications...I just don't see how Rails fits into Radiant?
I am grateful for any hints that you may offer to learn this more.
Thank you,
David
dak AT itracker DOT com

-- 
Posted via http://www.ruby-forum.com/.
___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] Newbie - How does one learn to use Radiant?

2007-03-06 Thread Erik van Oosten
Hi David,

There used to be some great presentations out there. However, all my links
to them are dead.

In particular the following used to be excellent an excellent
presentation: http://blog.brandalism.com/assets/2006/10/4/radiant_cms.pdf
by Nathan Wright.

Perhaps Nathan can place the presentation back somewhere? (He is still on
this list.) I'll also put my copy online this (European) evening. If you
want I can mail it directly.

Regards,
Erik.


 I am very excited about someday being able to use your Radiant CMS
 system and see you have a very active forum of people asking specific
 questions. Are there any tutorial type pages available or a book
 published on this topic?
 I  would be very grateful for a 'recommended reading list' or pointers
 to where I might learn how to produce a site in Radiant.
 I am making good progress learning to write Ruby on Rails database web
 applications...I just don't see how Rails fits into Radiant?
 I am grateful for any hints that you may offer to learn this more.
 Thank you,
 David
 dak AT itracker DOT com



___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] How to not show Extended in Page

2007-03-06 Thread David Minor
On Mar 6, 2007, at 6:21 AM, Per-olof Hermansson wrote:

 hi

 I have set up a Radiant site about Swedish shorthand
 (www.stenografi.se).

 On some pages I would like the Extended part to show up as a Read
 more... link, (which I know how to do), but somehow they show up on  
 the
 page.

 Is there a way to shut the extended page of, so that the link is  
 used in
 stead?


In the stock radiant that you are using, the template is designed to  
show the entire body and extended parts of the page when you are  
viewing that page.  The body part is used on other pages for  
r:children:each blocks.  I think you are asking to have that  
functionality on the page itself.  I'm not sure of how you would  
recall the page again to show the extended portion.  Is there a way  
to pass a value to the url to have it show the extended part?  like / 
slug?extended=true

You could always make the extended content a child of the page and  
then link to that child, but I like the idea of keeping the content  
in the different parts and just showing those as needed.

You could also do it with javascript and hidden divs in your layout.

Hopefully someone else can have a better answer.

dm
___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant


Re: [Radiant] How to not show Extended in Page

2007-03-06 Thread Per-olof Hermansson
David Minor wrote:
 On Mar 6, 2007, at 6:21 AM, Per-olof Hermansson wrote:
 
You could always make the extended content a child of the page and
 then link to that child, but I like the idea of keeping the content
 in the different parts and just showing those as needed.
 
 dm

This is how I have solved it for now, But it would be nice to not having 
to create an additional child and linking explictly to that child.

Thanks for your input.

Per-Olof

-- 
Posted via http://www.ruby-forum.com/.
___
Radiant mailing list
Post:   Radiant@lists.radiantcms.org
Search: http://radiantcms.org/mailing-list/search/
Site:   http://lists.radiantcms.org/mailman/listinfo/radiant