Re: [Radiant] Re: Using Devise as an authentication solution for end users with Radiant - updated

2010-11-08 Thread Enrico Teotti
Hi, thanks a lot for your post. Did you have to run: ruby script/generate devise_views or did you manage to add the views to the load path? Without those views inside the extension I am getting a "Template is missing" when I submit the forgot password for example. Ta, enrico

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Jim Gay
I'm about to announce a re-release of featured_pages, but that's not what you want here. I'm not sure why you have a 'contact us' page under articles, but you might have your reasons. Using featured_pages would require a lot of manual labor. What you want is for it to be automatic. Just use the

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Rachel Soma
Either make sure that only pages you want pulled in are under the url you're pointing at (why is your contact us page under /articles ?) or look into featured pages https://github.com/saturnflyer/radiant-featured_pages-extension to select particular pages for display only. -- Rachel On Tue, Nov 9

Re: [Radiant] Pull articles from multiple sources

2010-11-08 Thread Jordon Bedwell
On 11/08/2010 06:58 PM, john muhl wrote: > On Mon, Nov 8, 2010 at 6:49 PM, Jordon Bedwell wrote: >> Is there a way to pull archives from multiple urls, something like: > > ... > > check the in page tag reference for more aggregate tags > > (if you're on 0.8 install the radiant/aggregation exten

Re: [Radiant] Pull articles from multiple sources

2010-11-08 Thread john muhl
On Mon, Nov 8, 2010 at 6:49 PM, Jordon Bedwell wrote: > Is there a way to pull archives from multiple urls, something like: ... check the in page tag reference for more aggregate tags (if you're on 0.8 install the radiant/aggregation extension)

[Radiant] Pull articles from multiple sources

2010-11-08 Thread Jordon Bedwell
Is there a way to pull archives from multiple urls, something like: by:

[Radiant] Digg alike extension?

2010-11-08 Thread ReK2GnuLinux
is there any extension to have articles/post with voting? like digg or similar? Thanks

[Radiant] Re: trouble running rake for custom extension

2010-11-08 Thread Guilherme Costa
Tobi, This line did the trick here: gem install rspec -v=1.3 It will install the version 1.3 of RSpec, the one needed by the "spec/rake/spectask"! Regards, Guilherme Costa -- Posted via http://www.ruby-forum.com/.

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Obi
Sweet, thanks Rachel, I'll definitely check out that extension. So far I've gotten the following code to do what I want: Read this article What would I need to add to this so that Radiant only pulls pages that have excerpts (to stop it pulling things lik

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Rachel Soma
Use a page part and call that if you want to choose the excerpt or you can use truncate https://github.com/saturnflyer/radiant-truncate-extension to take the first X characters from the article and, well, truncate them. -- Rachel On Tue, Nov 9, 2010 at 9:19 AM, Obi wrote: > Thanks Joel, I had n

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Joel Oliveira
You should probably look at some documentation. For starters: https://github.com/radiant/radiant/wiki/Radius-Tags http://radiantcms.org/blog/archives/2006/05/11/tag-primer/ And my example was based on the assumption you had a page part for all your articles/posts called "excerpt". If you don't

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Obi
Thanks Joel, I had no idea that was in there! The code you sent me provides a list of links, is there anyway to format it so that it shows a small excerpt for each link, and keeps the site formatting styles (header1,2 etc.)? Basically so it would look like this: http://img163.imageshack.us/img

Re: [Radiant] Displaying Recent Articles

2010-11-08 Thread Joel Oliveira
It's built in. This is off the top of my head so I'm not 100% sure that will work. But it's close. On Mon, Nov 8, 2010 at 3:28 PM, Obi wrote: > Does anyone know of an extension that will allow me to automatically > display recent articles with a title and a small

[Radiant] Displaying Recent Articles

2010-11-08 Thread Obi
Does anyone know of an extension that will allow me to automatically display recent articles with a title and a small excerpt?

[Radiant] Re: Javascript issus driving me nuts!

2010-11-08 Thread Jeff Casimir
, I see this: > > http://img.skitch.com/20101108-g75cc923u2kpxh37fk7k1d7tru.png > > Whatever script is supposed to hide upper details interface and > overlay the tabs isn't working.  Here's the javascript error: > > http://img.skitch.com/20101108-xrtbj6gr443wuju9tfn2t2cfk9.png >

[Radiant] Javascript issus driving me nuts!

2010-11-08 Thread Jeff Casimir
Hey all, I'm struggling with a Javascript issue. I'm running vendored Radiant edge and when I view the page form, I see this: http://img.skitch.com/20101108-g75cc923u2kpxh37fk7k1d7tru.png Whatever script is supposed to hide upper details interface and overlay the tabs isn't w

[Radiant] Library and PaperClipped

2010-11-08 Thread Anthony Bouch
Have been trying to get a gallery to work with Radiant. I've tried the 'Galleries' extension - but could see no way to add images from the asset list to the gallery. Am also now looking at the Library extension and their fork of Paperclipped - but after trying to run the rake development db:migra

[Radiant] Re: Radiant and Refinery

2010-11-08 Thread Anthony Bouch
Sorry that should have been Refinery... On Nov 8, 8:15 pm, Anthony Bouch wrote: > Hi all - new to Radiant and have been experimenting with the main site > and extensions. > > Am I imagining things or does Refinary look a lot like Radiant? Is > Refinary a fork of Radiant? > > Was just curious to k

[Radiant] Radiant and Refinery

2010-11-08 Thread Anthony Bouch
Hi all - new to Radiant and have been experimenting with the main site and extensions. Am I imagining things or does Refinary look a lot like Radiant? Is Refinary a fork of Radiant? Was just curious to know what the status of Radiant was - it looks great and I'd like to use it for our site. Is t

[Radiant] Test/unit-ing an extension

2010-11-08 Thread Arthur Gunn
Hi, I'm using radiant 0.8.1 and trying to write some tests for an extension of mine within a big project. I'm just writing with test/unit and have some very simple stuff in place. When it comes to running the tests though I can't figure out how. I've tried the following commands: rake t

[Radiant] Re: trouble running rake for custom extension

2010-11-08 Thread Guilherme Costa
Tobi, Check the rspec version you are running. I have rspec2, and the issue remains! Apparently spec/rake/spectask is from 1.3! Regards, Guilherme -- Posted via http://www.ruby-forum.com/.