Re: [Radiant] FAQ Extension
Jim Gay wrote: On Jun 25, 2009, at 3:30 PM, Merk S wrote: Hi Guys, Before i write this myself, i was wondering if anyone has already worked on or is aware of an existing FAQ extension? Googling has been tough due to 'FAQ' turning up lots of helps/tutorial pages for ruby/radiant. :) thanks!! What do you mean by FAQ extension? Do you intend for visitors to submit questions to the site authors and the admin can answer them and show the details on a page? I don't believe that exists as far as I know. Or are you talking about FAQ's about Radiant? (where the Help extension might be the answer) If you only need something like a question a page, then it's not a bad idea to have just an FAQ index page with each question being a question. Then, at the index page, just collect the questions by doing a r:children:each and show the body of the child page. You could even make each of the questions an "anchor" by giving a name to the div. Search a thread called " Index at top of page" in the archive to see what I mean. Cheers, Mohit. 6/30/2009 | 10:34 AM. ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Re: [Radiant] Trouble with 0.8
On Jun 29, 2009, at 5:31 PM, Alexis Masters wrote: Hello List, I asked my webhost about Radiant 0.8, and the support guy immediately installed it for me. I am relatively new to Radiant, and didn't realize it would mess up my other sites when upgrading to the latest version. That was one problem. But now, when I start a new site on 0.8, the site won't work past the /admin/login page. The error I get in the logs is: Processing Admin::WelcomeController#login (for 98.234.94.139 at 2009-06-29 16:26:03) [GET] Parameters: {"action"=>"login", "controller"=>"admin/welcome"} Rendering template within layouts/application Rendering admin/welcome/login Completed in 64ms (View: 5, DB: 59) | 200 OK [http://"sitename".com/ admin/login] Can anyone explain how to fix this? That doesn't look like an error. Can you provide more of your log? Thanks ~ Alexis A good approach might be to freeze all of your projects on your server to 0.7.1 (or whatever they use) and then upgrade one to 0.8.0 so that you know what steps you'll need to do for the others. -Jim Jim Gay http://www.saturnflyer.com ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
[Radiant] Trouble with 0.8
Hello List, I asked my webhost about Radiant 0.8, and the support guy immediately installed it for me. I am relatively new to Radiant, and didn't realize it would mess up my other sites when upgrading to the latest version. That was one problem. But now, when I start a new site on 0.8, the site won't work past the / admin/login page. The error I get in the logs is: Processing Admin::WelcomeController#login (for 98.234.94.139 at 2009-06-29 16:26:03) [GET] Parameters: {"action"=>"login", "controller"=>"admin/welcome"} Rendering template within layouts/application Rendering admin/welcome/login Completed in 64ms (View: 5, DB: 59) | 200 OK [http://"sitename".com/ admin/login] Can anyone explain how to fix this? Thanks ~ Alexis = Alexis Masters, author & web developer http://www.designbyalexis.com ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Re: [Radiant] Caching in test mode on 0.8.0
Jason, It's necessary for this to be on while in test mode - this allows me to verify the caching feature. If your page should not return 304 Not Modified, be sure to expire it in the past (expires_now), or clear the cache before hitting the page (Radiant::Cache.clear). Sean Jason Garber wrote: I've run out of time to dig deeper today, so I wanted to quickly check with you all if you've experienced any problems with caching happening in Radiant 0.8.0 while using Webrat in cucumber. One of my features is failing because Radiant is returning a 304 Not Modified. At the top of my cucumber env.rb is definitely: # Sets up the Rails environment for Cucumber ENV["RAILS_ENV"] = "test" require File.expand_path(File.dirname(__FILE__) + '/../../../../../config/environment') And the feature passes when not run after the prior one (which loads the same page). Any ideas? Jason P.S. - Chronicle is basically working on 0.8 in the branch. I'll merge back to master once I get this feature working. http://github.com/jgarber/radiant-chronicle-extension/tree/0.8.0 ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
[Radiant] Caching in test mode on 0.8.0
I've run out of time to dig deeper today, so I wanted to quickly check with you all if you've experienced any problems with caching happening in Radiant 0.8.0 while using Webrat in cucumber. One of my features is failing because Radiant is returning a 304 Not Modified. At the top of my cucumber env.rb is definitely: # Sets up the Rails environment for Cucumber ENV["RAILS_ENV"] = "test" require File.expand_path(File.dirname(__FILE__) + '/../../../../../ config/environment') And the feature passes when not run after the prior one (which loads the same page). Any ideas? Jason P.S. - Chronicle is basically working on 0.8 in the branch. I'll merge back to master once I get this feature working. http://github.com/jgarber/radiant-chronicle-extension/tree/0.8.0 ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Re: [Radiant] FAQ Extension
On Jun 25, 2009, at 3:30 PM, Merk S wrote: Hi Guys, Before i write this myself, i was wondering if anyone has already worked on or is aware of an existing FAQ extension? Googling has been tough due to 'FAQ' turning up lots of helps/ tutorial pages for ruby/radiant. :) thanks!! What do you mean by FAQ extension? Do you intend for visitors to submit questions to the site authors and the admin can answer them and show the details on a page? I don't believe that exists as far as I know. Or are you talking about FAQ's about Radiant? (where the Help extension might be the answer) Jim Gay http://www.saturnflyer.com ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
[Radiant] a question for Page part(name) method
Hi, I found that the "part(name)" method of Page model generating many sql query in development env, I'm curious to know why we need to check new_record for Page and its parts? Regards, Quake ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
[Radiant] Updating Page Attachments
We use the Page_Attachments extension for uploading graphics to our website. We are currently using version 0.2 installed quite some time ago through SVN. I can find very detailed instructions for installing the extension via Github, but I am not sure on how to update an existing installation to the current version and would be grateful if someone could point me in the right direction. Thanks Sharon -Original Message- From: radiant-boun...@radiantcms.org [mailto:radiant-boun...@radiantcms.org] On Behalf Of radiant-requ...@radiantcms.org Sent: 26 June 2009 18:00 To: radiant@radiantcms.org Subject: Radiant Digest, Vol 39, Issue 39 Send Radiant mailing list submissions to radiant@radiantcms.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.radiantcms.org/mailman/listinfo/radiant or, via email, send a message with subject or body 'help' to radiant-requ...@radiantcms.org You can reach the person managing the list at radiant-ow...@radiantcms.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Radiant digest..." Today's Topics: 1. FAQ Extension (Merk S) -- Message: 1 Date: Thu, 25 Jun 2009 19:30:48 + From: Merk S Subject: [Radiant] FAQ Extension To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Hi Guys, Before i write this myself, i was wondering if anyone has already worked on or is aware of an existing FAQ extension? Googling has been tough due to 'FAQ' turning up lots of helps/tutorial pages for ruby/radiant. :) thanks!! _ Insert movie times and more without leaving Hotmail(r). http://windowslive.com/Tutorial/Hotmail/QuickAdd?ocid=TXT_TAGLM_WL_HM_Tu torial_QuickAdd_062009 -- ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant End of Radiant Digest, Vol 39, Issue 39 *** This e-mail has been scanned for all viruses by MessageLabs. This e-mail has been scanned for all viruses by MessageLabs. ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
Re: [Radiant] Anyone have SNS extension working correctly in 0.8.0
Daniel, I haven't had the time to migrate the sns extension, because we're moving at the moment and it takes a lot of time and I have no Internet connection at the moment :( There is a migrated fork here: http://github.com/dko/radiant-sns-extension/tree/mastera but I haven't tried it. Michael On Jun 24, 2009, at 10:51 PM, Daniel O'Connell wrote: Does anyone have the sns extension working in 0.8.0? -Daniel ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant