Re: [Radiant] "Shards" extension questions

2007-11-07 Thread Fred Im
Had the same problem, found a snippet of info in a different extensions that depended on shards - In your environment.rb file, located in /config, update the config.extensions such that shards loads first, was around line 33 for me: config.extensions = [ :shards, :all ] Richard Hurt wrote: > I

Re: [Radiant] Can't add page part with Shards installed?

2007-11-07 Thread Marcelo Alvim
Oh, alright. I just tested it with the latest trunk revision of both Shards and Radiant, and it all worked perfectly. Thank you very much, Sean! Marcelo. On 11/7/07, Sean Cribbs <[EMAIL PROTECTED]> wrote: > The "double tabs" issue was a result of a botched patch on my part. The > contents of a

[Radiant] File description patch for page_attachments

2007-11-07 Thread Joel Williams
Hi all, I sent this to the author directly but didn't hear back, so in case anyone's interested, here is is a patch for the page_attachment plugin that adds a 'description' field. It's not currently possible to edit the description without removing the file and adding it again, but that's good enou

Re: [Radiant] File description patch for page_attachments

2007-11-07 Thread Joel Williams
As far as I can tell, the attachment was stripped, so here's the patch inline: Index: app/models/page_attachment_tags.rb === --- app/models/page_attachment_tags.rb (revision 58) +++ app/models/page_attachment_tags.rb (working copy)

Re: [Radiant] How to iterate over all pages?

2007-11-07 Thread Richard Hurt
Erik, Check out the Site Map tutorialon the Radiant Wiki . It shows you how to loop through every page and how to exclude certain pages if needed. Later... Richard On Nov 7, 2007 3:43 PM, Erik van Oosten <[EMAIL PRO

Re: [Radiant] Can't add page part with Shards installed?

2007-11-07 Thread Sean Cribbs
The "double tabs" issue was a result of a botched patch on my part. The contents of admin.js were duplicated. Removal of the extra lines removed the issue. Sean Marcelo Alvim wrote: > Hi, Sean. > > Thanks for all your hard work, I appreciate it. What I found > particularly weird is that I had

Re: [Radiant] Can I use standard Rails plugin?

2007-11-07 Thread Andrea Otto
Daniel Sheppard wrote: > > If you have your javascript in a static file, your webserver > should be doing the compressing with gzip on the fly if it is > configured correctly. The doco you linked explicitely states > that the pluging DOESN'T provide compression, only compaction, > and the it relie

Re: [Radiant] Can't add page part with Shards installed?

2007-11-07 Thread Marcelo Alvim
Hi, Sean. Thanks for all your hard work, I appreciate it. What I found particularly weird is that I had these issues with Radiant edge even without Shards. The "double tabs" problem was very strange. I will also try to look into it, but I'm not sure I'll be able to help much. I'll talk to you guys

[Radiant] How to iterate over all pages?

2007-11-07 Thread Erik van Oosten
Hello, I am searching for a way to keep track of what my inexperienced editors are doing. A feed that shows all changes in the whole site would do I think. However, I do not see a way to iterate over all pages. I tried the aggregation extension, but that requires me to list each and every sect

Re: [Radiant] Rating, hit count & Popularity

2007-11-07 Thread Mohit Sindhwani
Giovanni Intini wrote: > I've laid down the basic structure for a rails plugin > (acts_as_starrable) that does what you need. > > Unfortunately it's not ready yet, so if you have a bit of patience you > can contact me next week and I'll hopefully be more helpful :) > Thanks Giovanni, I have pa

Re: [Radiant] Rating, hit count & Popularity

2007-11-07 Thread Giovanni Intini
I've laid down the basic structure for a rails plugin (acts_as_starrable) that does what you need. Unfortunately it's not ready yet, so if you have a bit of patience you can contact me next week and I'll hopefully be more helpful :) 2007/11/7, Mohit Sindhwani <[EMAIL PROTECTED]>: > Hi! I'm think

[Radiant] Rating, hit count & Popularity

2007-11-07 Thread Mohit Sindhwani
Hi! I'm thinking of adding popularity ratings to the content on my site. Basically, there are 2 metrics that I'm thinking of. The first is the ability to rate the content - and then, find the highest rated articles. The second is to maintain a page hit count and find the most viewed content.

Re: [Radiant] Blogging with Radiant: New Paginated Archive Extension

2007-11-07 Thread richard apodaca
--- Damien McKenna <[EMAIL PROTECTED]> wrote: > On Nov 7, 2007, at 11:02 AM, richard apodaca wrote: > > I've released the Paginated Archive extension: > > Cool! Good work! > > > Paginated archive requires Bruce Williams' > Paginator gem: > > > I'd have figured will_paginate would have been a

Re: [Radiant] Can't add page part with Shards installed?

2007-11-07 Thread Mohit Sindhwani
Marcelo Alvim wrote: > Hi! > > Thanks for your quick response. I did some "researching" here, and > just found out that with my setup (Radiant gem 0.6.3, Ruby 1.8.6 on a > Windows XP machine), if I do a regular "radiant site", then "rake > radiant:freeze:edge" (goes to revision 580), I get a weird

Re: [Radiant] Blogging with Radiant: New Paginated Archive Extension

2007-11-07 Thread Damien McKenna
On Nov 7, 2007, at 11:02 AM, richard apodaca wrote: > I've released the Paginated Archive extension: Cool! Good work! > Paginated archive requires Bruce Williams' Paginator gem: I'd have figured will_paginate would have been a better choice? -- Damien McKenna - Husband, father, geek. [EMAIL

[Radiant] Blogging with Radiant: New Paginated Archive Extension

2007-11-07 Thread richard apodaca
I've released the Paginated Archive extension: http://depth-first.com/articles/2007/11/07/paginated-archives-in-radiant-cms-the-power-of-minimal-but-extendable-systems Paginated Archive is a drop-in replacement for Radiant's own Archive Page and is suitable for large blog-like archives. In other

Re: [Radiant] Can't add page part with Shards installed?

2007-11-07 Thread Sean Cribbs
Sorry for the issues. I updated the core yesterday with Mislav's JS patch but did not get Shards updated. I will do so today. Sean Mohit Sindhwani wrote: > Marcelo Alvim wrote: > >> Hi, guys. >> >> I am currently trying out Radiant, and I have the intention of writing >> an admin extension

Re: [Radiant] Can't add page part with Shards installed?

2007-11-07 Thread Marcelo Alvim
Hi! Thanks for your quick response. I did some "researching" here, and just found out that with my setup (Radiant gem 0.6.3, Ruby 1.8.6 on a Windows XP machine), if I do a regular "radiant site", then "rake radiant:freeze:edge" (goes to revision 580), I get a weird thing when editing a page: all t

Re: [Radiant] Radius tag and send_data method

2007-11-07 Thread Enzo Ferro
Thanks everybody for yours replies. > he will have to save the data in a temp file and then x-send it. Can you give me more hints about using x-sendfile in a radius tag? How can I save the data, that comes from a database query, in a temp file? Greatings Enzo -- Posted via http://www.ruby-for