Re: [Radiant] Customizing Radiant's command line behaviour

2009-01-30 Thread N. Turnage
Adam van den Hoven wrote: The thread on what standard plugins do people use as well the Oops I deleted the contest2 content thread got me thinking that it would be great if someone wrote a tutorial to the effect of, How to customize your Radiant command. Usually I start 90% of my radiant

Re: [Radiant] Basecamp

2009-01-30 Thread N. Turnage
Sean Cribbs wrote: Purely coincidence. The tab metaphor is pretty powerful and ubiquitous. Have you seen http://github.com/radiant/radiant-prototype ? I just took a look at this. I cannot wait to start using it. Thanks to everyone working on the updates. ~Nate

Re: [Radiant] if_content not working as expected

2009-02-03 Thread N. Turnage
Jim Gay wrote: In retrospect, the if_content should be called if_part, since that's what it means. if_content doesn't check for contents in the part (or whether or not the part is blank) it checks if the part exists Ah, I see. Would it make sense if a feature was added to it so that you

Re: [Radiant] if_content not working as expected

2009-02-03 Thread N. Turnage
Sean Cribbs wrote: With templates, the part is there even if empty. You probably need a tag that checks whether the contents of the part is blank. Andrew vonderLuft has some tags that he intended to submit to core that do just that - I'll poke him about it. Thanks. Are there any current

[Radiant] Re: Additional templates extension strangeness

2009-02-03 Thread N. Turnage
Thanks for the page status pulldown on the updates though. ;^) ~Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant

[Radiant] if_content not working as expected

2009-02-03 Thread N. Turnage
Hey all. I am using the templates extension and I have 'address1' and 'address2' fields in a template used to hold information about a number of institutions. When I use r:children:each to iterate over the fields for each institution, some or which do not have any content in the address2

[Radiant] Templates extension explosion - Please help

2009-02-05 Thread N. Turnage
I installed the templates extension on my project on my laptop, but when I deployed the updated project and migrated the templates extension things went horribly wrong. First, the rake was aborted on the 4th migration with an error that the position column had already been created (not

Re: [Radiant] Templates extension explosion - Please help

2009-02-05 Thread N. Turnage
Jim Gay wrote: Mysql::Error: Duplicate column name 'position': ALTER TABLE `templates` ADD `position` int(11) It would appear that the templates table already has a position field before the migrations are run. Is it possible that you're working with a database that has some of the structure

Re: [Radiant] Templates extension explosion solved, Now I want to reinstall cleanly

2009-02-06 Thread N. Turnage
Jim Gay wrote: Take a look at what your log says cd log tail -900 producton.log - that will show the last 900 lines. If you need more or less, change the number. Or you can do tail -f production.log - that will display the log as the requests come in, so do that and then hit the admin page in

Re: [Radiant] [ANN] Radiant 0.7.0 Intaglio Release

2009-02-07 Thread N. Turnage
Sean Cribbs wrote: Looks like it's time for another release of Radiant: http://radiantcms.org/download/ Frickin' sweet! I can't wait to try it. ~Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] Templates extension and the schema

2009-02-07 Thread N. Turnage
Jim Gay wrote: Radiant should update the schema.rb file But it doesn't. This is the content of my schema.rb file: ... # This file is auto-generated from the current state of the database. Instead of editing this file, # please use the migrations feature of ActiveRecord to incrementally

[Radiant] So what doesn't work with 0.7?

2009-02-09 Thread N. Turnage
Since this question is going to be asked a number of times as people begin to move their sites to v0.7 I thought I would begin the thread. What extensions are known not to work with v0.7? ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] Unistall extensions

2009-02-09 Thread N. Turnage
Chaim Kirby wrote: I am having trouble with the copy_move extension under 0.6.9. I now know that I need to use an older version of the extension. How do I go about uninstalling the extension that I have currently installed so I can switch to the correct version? You don't have to remove

Re: [Radiant] Unistall extensions

2009-02-09 Thread N. Turnage
Chaim Kirby wrote: If I were to phrase the question more generically: How does one remove an extension they are no longer interested in having installed? Is there a process to do it? As a note, I have been using the git clone _extension_ into vendor/extensions, migrate, update extension

Re: [Radiant] tags extension - dropdown

2009-02-09 Thread N. Turnage
Steven Southard wrote: Is there any way to break tags up so It can be made into a dropdown? I imagine it would be something like this: r:find url=/something/ select r:children:each option value=r:slug /r:title //option /r:children:each /select /r:find // Nate

Re: [Radiant] Unistall extensions

2009-02-09 Thread N. Turnage
Sean Cribbs wrote: Two things - 1) You can typically use `script/extension uninstall extension_name` to uninstall an extension - although it may need to be on the registry. I have never done it that way, so I didn't want to recommend it. But, thanks for the alternative method. 2) In 0.7, the

Re: [Radiant] So what doesn't work with 0.7?

2009-02-09 Thread N. Turnage
Mohit Sindhwani wrote: N. Turnage wrote: Since this question is going to be asked a number of times as people begin to move their sites to v0.7 I thought I would begin the thread. What extensions are known not to work with v0.7? Could we make this a page on the wiki instead? May I request

Re: [Radiant] So what doesn't work with 0.7?

2009-02-10 Thread N. Turnage
Philip Hallstrom wrote: Why not make the field available on ext.radiantcms.org? When you edit an extension it asks for the highest version the extension works with. But I don't see that info displayed on the listing/detail page itself. Just the edit form. That page already lists the github

[Radiant] Counting pages in an archived month - how?

2009-02-16 Thread N. Turnage
Hey guys, Is there any way to count how many pages are archived per month for a given parent? What I have is this: r:if_url matches=^/blog-posts/ div id=archives class=sidebar_section h5Posts By Month/h5 ul r:find url=/blog-posts/ r:children:each order=desc r:headerlia href=r:date

[Radiant] Search extension question

2009-02-24 Thread N. Turnage
Hey guys, How do I set up a search field in my template that will take one to the search page and return results? My Rails-fu has gotten really rusty since going 100% Radiant and I cannot remember how to do it. Thanks, Nate ___ Radiant mailing

[Radiant] Question about search extension and site caching

2009-02-24 Thread N. Turnage
I am using the search extension and I have posted my site to my dev server. The project is managed with git. I cap deployed to the server, then dumped my local db and imported it into the online server. Now the search term that I had last tested the search extension with is showing up in the

[Radiant] Re: Question about search extension and site caching

2009-02-24 Thread N. Turnage
N. Turnage wrote: I am using the search extension and I have posted my site to my dev server... You know, some days it just isn't worth getting out of bed. I found that I had set a default value for the text field, and that's why it was always showing up. There is nothing more to see here

[Radiant] Trouble grepping regex for if_url

2009-02-25 Thread N. Turnage
Hey guys, I am trying to set up an if_url rule that creates an h1 headline of the page title if the page or the page's parent is /destinations/. What I have is this: r:if_url matches=^/destinations/.+ h1r:title //h1 /r:if_url The problem with this is that, while I get the page title on

Re: [Radiant] [ANN] Paperclipped Extension improvements

2009-03-16 Thread N. Turnage
Istvan Hoka wrote: Hi everyone! We have made some changes to Paperclipped we thought you might like: * r:assets:each enhanced with limit, offset, order, by, extension filtering; * r:if_assets and r:unless_assets tags for conditional rendering; * r:assets:width and r:assets:height via

[Radiant] Page_attachment image title as attachment:link title

2009-03-16 Thread N. Turnage
Hey all, Trying to get the image title to render as the link title attribute but title=r:title / is rendering out as title=lt;r:title /gt; in the following snippet: notextile r:attachment:each limit=2 offset=1 order=asc div class=galleryThumb r:attachment:link rel=facebox-cap title=r:title

Re: [Radiant] Page_attachment image title as attachment:link title

2009-03-18 Thread N. Turnage
Istvan Hoka wrote: You are getting this because Radius does not expand tags inside tag attributes. To get around this you could use the radiant-extensions extension (not a good name, I know) [http://github.com/Aissac/radiant-extensions-extension] which, among other things, hacks Radius to

Re: [Radiant] Anyone know if these extensions have been updated for 0.7?

2009-04-03 Thread N. Turnage
Jeffrey Jones wrote: Hoi all Comments extension definitely works. i am using it on a 0.7.1 site. For the others, check out their github repos. The commit comments usually give a big clue. N. Turnage wrote: comments search share_layouts I had done a cursory examination of the commits

Re: [Radiant] Anyone know if these extensions have been updated for 0.7?

2009-04-03 Thread N. Turnage
Jason Garber wrote: I just used share_layouts on a 0.7.1 project. I tried using comments at one point but got fed up and just used Disqus. I don't remember if it was compatibility or just too much complexity for me. Awesome, then if search works I'm golden. ~Nate

[Radiant] Anybody tried Disqus?

2009-04-04 Thread N. Turnage
Hey all, Has anybody here ever tried using Disqus for a Radiant project, or any project for that matter? If so, what were your thoughts about it? Thanks, Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] Hosting 0.7.1 site w/ Papperclipped

2009-04-08 Thread N. Turnage
Brian Gernhardt wrote: I'm working on a website for a client and I'm attempting to find a decent host for them. I'm building the site locally right now, using Radiant 0.7.1, Paperclipped, and Styles 'n' Scripts. I've looked around but it's far too easy to find piles of negative feedback

Re: [Radiant] uninitialized constant Admin::PageController -- SOLVED

2009-04-08 Thread N. Turnage
Pat Allan wrote: Hi Nate Looks like the page_attachments extension is the cause (and it's now PagesController - plural, not singular). Has the extension been updated for 0.7.0+? Thanks. After a little more research I figured out that I needed to update my extensions before migrating the

[Radiant] 500 Internal server errors with Radiant 0.7.1 and SNS

2009-04-08 Thread N. Turnage
I am running into the same problems with SNS that were mentioned here: http://www.ruby-forum.com/topic/176102 And just like the original person having problems, the info here was not the fix for it: http://www.nabble.com/SnS-Extension---500-Error-td21486070.html This is the error: Status:

Re: [Radiant] 500 Internal server errors with Radiant 0.7.1 and SNS

2009-04-09 Thread N. Turnage
Sean Cribbs wrote: A while back Chris asked me to fork SnS into the radiant account, which I did, but I haven't had time to fix it. Anyone who writes and submits a good patch or set of patches will get commit bits. I really wish I was that person, but sadly I am not. My skillz don't trend

[Radiant] Git questions regarding submodules... and updating them

2009-04-09 Thread N. Turnage
I've cloned (I think I should have pulled it instead) my main project from my repo, created a branch and have been updating that branch to 0.7.1. My extensions are set up as submodules, and work beautifully, but the tag showing which version of the extensions I am using shows the original

[Radiant] Which Settings extension is the one to use?

2009-04-09 Thread N. Turnage
http://github.com/Squeegy/radiant-settings/network Curious about which of the Settings forks is usable for Radiant 0.7.1. Anybody know? ~Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] Volunteers Needed! Radiant Wiki Migration

2009-04-09 Thread N. Turnage
Ollivier Robert wrote: Why not using Redmine (redmine.org) it is also Rails based, has its own forums/wiki/repository managements and a nice interface? I've been using it for http://dev.keltia.net/ with great success (while www.keltia.net is radiant). It looks like some of the projects

Re: [Radiant] Which Settings extension is the one to use?

2009-04-09 Thread N. Turnage
Brian Gernhardt wrote: I'm using Squeegy's and it seems to be working fine. Thanks. It now works for me as well. ~Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/ Site:

[Radiant] Re: ActionController::RedirectBackError during redirect_to with Comments extension

2009-04-09 Thread N. Turnage
N. Turnage wrote: When I try and approve, unapprove or destroy a comment I get the following error: *ActionController::RedirectBackError in Admin/commentsController#destroy* No HTTP_REFERER was set in the request to this action, so redirect_to :back could not be called successfully

[Radiant] Re: ActionController::RedirectBackError during redirect_to with Comments extension

2009-04-09 Thread N. Turnage
N. Turnage wrote: Just found some more info about this. Apparently FireFox, my browser of choice (and the only anyone should use ;^), has an option to disable referrers. This article suggests another option for handling the redirect. http://blog.edendevelopment.co.uk/2009/04/02/redirect_to

Re: [Radiant] Re: ActionController::RedirectBackError during redirect_to with Comments extension

2009-04-09 Thread N. Turnage
Pat Allan wrote: Nate, not that I want to rain on your parade, but I *think* IE cannot be relied upon to send the referrer back to the server (depending on settings/versions/who-knows-what it may think it's a security risk). It's been a while since I looked into it, though. When I'm

[Radiant] Something I noticed about Textile in 0.7.1

2009-04-09 Thread N. Turnage
During the upgrade to 0.7.1 from 0.6.9 (seriously, could we add another couple more decimal places?) is that Textile is handled a bit differently. It used to be that You could pile on the textile'd page parts and snippets on top of one another inside of a page that had Textile set and it would

Re: [Radiant] Something I noticed about Textile in 0.7.1

2009-04-10 Thread N. Turnage
Jason Garber wrote: Nate, I didn't really follow you. Can you have another go at it? Sure. It was late when I posted. When I upgraded to 0.7.1 I noticed that I was getting extra line breaks (br) between lines, even though the exact same stylesheet was used and nothing else in the conten had

Re: [Radiant] Git questions regarding submodules... and updating them

2009-04-11 Thread N. Turnage
to grok this. But I still have a few questions for pushing back to the repo on my server. See below. On Apr 9, 2009, at 2:50 PM, N. Turnage wrote: Submodules are useful, but are also a little bit bleeding edge. They are not widely used, and as such, sometimes have odd problems. If you

Re: [Radiant] Git questions regarding submodules... and updating them

2009-04-12 Thread N. Turnage
Sean Cribbs wrote: Assuming your remote is named origin, it's easy to push your local branch up: git push origin radiant07 That was the missing piece of the puzzle. Thanks. ~Nate ___ Radiant mailing list Post: Radiant@radiantcms.org Search:

Re: [Radiant] How do I get published date fields back on admin pages?

2009-04-14 Thread N. Turnage
Michael Kessler wrote: Did you mean the page.edit.published_date? Radiant setting that is mentioned here http://wiki.github.com/radiant/radiant/additional-configuration-options I don't know how I missed that. Normally I just google what I need. I forgot about the new wiki on github. Thanks.

[Radiant] Radiant and regexp

2009-04-14 Thread N. Turnage
Is there any good reference to the way that Radiant uses regular expressions for page links? For example, this kind of thing: r:if_url matches=^/.+ I don't know how deep /.+ will work, etc. ~Nate ___ Radiant mailing list Post:

Re: [Radiant] filters on layouts

2009-04-16 Thread N. Turnage
Mohit Sindhwani wrote: Steven Southard wrote: Why aren't filters available on layouts? That I would like! Have you tried using templates? Since I started using them I don't build a site without templates anymore. ~Nate ___ Radiant mailing

[Radiant] Recreating thumbnails with page_attachments extension: Is it possible?

2009-04-18 Thread N. Turnage
Hey all, In my environment file I have added a couple of extra sizes for the page_attachments to size my images to when saving and I was wondering if there is a way to recreate thumbnails of my images in the db like paperclipped does. Anyone know of a way to do this without having to re-add

Re: [Radiant] RailsConf BoF

2009-04-21 Thread N. Turnage
Keith Bingman wrote: I am definitely interested in a BoF session. I think Eugene ( who is working on the internationalization and doing the Russian translation) is coming too, so the i18n project would be a great topic. Dang, I'm jealous. There is no way I can get to RailsConf. Anybody

[Radiant] Big Thanks for Ray

2009-05-07 Thread N. Turnage
I just want to thank everyone involved in putting Ray together. It really is amazing. I don't have to install my submodules by hand anymore. You guys rock: * John Muhl * Michael Kessler * Arik Jones * Benny Degezelle ~Nate ___ Radiant mailing

[Radiant] Nasty SystemStackError when going back to admin/pages

2009-05-07 Thread N. Turnage
I am running into a very annoying stack level too deep error when I try and go back to the admin page list from any other section of the admin site. I looks like it has something to do with the Paperclipped extension's included version of will_paginate, but I am not sure how what to do about

[Radiant] Major error with Google_Maps extension

2009-05-11 Thread N. Turnage
Wherever I have placed a map on a page, I get this error: *undefined method `attr' for {name=markerInfo}:Hash* It doesn't matter what I put in the marker text box on a map marker, it always gives me this error. This happened when I updated the google_maps extension. I am guessing the cac6eba

Re: [Radiant] 500 Internal server errors with Radiant 0.7.1 and SNS

2009-05-11 Thread N. Turnage
Rafael Souza wrote: I was with the same problem with sns (the main project) and the solution was install the fork of netzpirat. http://github.com/netzpirat/radiant-sns-extension/tree/master The original project (of SwankInnovations) is good only for radiant 6.9. Hope this works to you too.

[Radiant] Is there an extension for rotating or random images?

2009-05-13 Thread N. Turnage
I could have sworn that I had seen an extension that would either load a random image or rotate images banner-style, but I cannot find it. I need to to be able to set a random background image for a div each time the page is loaded/re-loaded. Does anybody know what I am talking about? I

Re: [Radiant] Is there an extension for rotating or random images?

2009-05-13 Thread N. Turnage
Joel Oliveira wrote: I know I'll come off as the guy who turns to the javascript hammer every time he needs a tool to fix a problem -BUT, that'd be a 3 or 4 line implementation with some JS. Or is that out of the question for your purposes? I thought there was something more Radiant

Re: [Radiant] Is there an extension for rotating or random images?

2009-05-13 Thread N. Turnage
Sean Cribbs wrote: Actually, it sounds like John Muhl's solution will work best for you - you could even keep it tucked away in a snippet. div style=background-image:r:snippet name=banner /.../div That worked like a charm! Thanks, Sean John. I hadn't even thought about using a snippet in

Re: [Radiant] Templates Extension: Important Update

2009-05-13 Thread N. Turnage
Andrew vonderLuft wrote: To anyone using Templates extension with Radiant 0.7 or greater: We discovered an issue today which could cause the creation of a child page with a nil parent_id. The scenario is when you create a new child page with a given template, and then change the template

Re: [Radiant] Problem with Extensions

2009-05-14 Thread N. Turnage
Emanuel Vinzent wrote: Hello all, i have a problem with installing Extensions, the error-message Could not load extension from file: drag-order_extension. #NameError: wrong constant name Drag-orderExtension rake aborted! You have a nil object when you didn't expect it! You might have expected

Re: [Radiant] Problem with Extensions

2009-05-14 Thread N. Turnage
Mohit Sindhwani wrote: Emanuel Vinzent wrote: thank's! with the underscores in the directiories will should be work ;-) With the advent of git, we need a FAQ that explains how to rename extension directories after the extension is cloned to vendor/extensions. I guess there's a clean way

Re: [Radiant] Templates Extension: Important Update

2009-05-14 Thread N. Turnage
Andrew vonderLuft wrote: To anyone using Templates extension with Radiant 0.7 or greater: We discovered an issue today which could cause the creation of a child page with a nil parent_id. The scenario is when you create a new child page with a given template, and then change the template

Re: [Radiant] Templates Extension: Important Update

2009-05-14 Thread N. Turnage
Andrew vonderLuft wrote: I would try this: $ rake radiant:extensions:templates:migrate VERSION=8 $ rake radiant:extensions:templates:migrate This will roll you back to migration 8, and then re-migrate 9 and 10. migration 9 will create the boolean part_type which you appear to be missing.

[Radiant] Templates extension - Two things

2009-05-18 Thread N. Turnage
I have a but report and a suggestion for the Templates extension. Bug report: When you change a template (parts or structure) in any way the pages that are based on the template don't get updated with the changes. For each page that uses that template must be opened and resaved before any of

Re: [Radiant] Templates extension - Two things

2009-05-18 Thread N. Turnage
Mohit Sindhwani wrote: N. Turnage wrote: I have a but report and a suggestion for the Templates extension. Bug report: When you change a template (parts or structure) in any way the pages that are based on the template don't get updated with the changes. For each page that uses that template

[Radiant] How can I uninstall Database_Mailer extension?

2009-05-20 Thread N. Turnage
When you migrate the extension into existence, it takes fields from the environment for use in migrations. Like others here I had to migrate it twice to get passed the Mysql::Error: BLOB/TEXT column 'message'... error message. For some reason it just stopped working on my production server

Re: [Radiant] How can I uninstall Database_Mailer extension?

2009-05-20 Thread N. Turnage
Charlie Robbins wrote: rake production radiant:extensions:database_mailer:migrate VERSION=0 that should git 'er done for ya. That's when I get the undefined method `set_schema_version' for #Class:0xb7f7fb4 error. I know how extensions normally work, that's why I asked the process for

[Radiant] Anyone else having trouble with database_mailer not working with 0.7.1?

2009-05-21 Thread N. Turnage
I am having trouble getting the emails sent with the mailer extension to be logged by the database_mailer extension. The emails get sent out, but they aren't saved. Does anybody have this working in 0.7.1? If so, could you point me to the site where you have it working properly? Thanks,

Re: [Radiant] Anyone else having trouble with database_mailer not working with 0.7.1?

2009-05-21 Thread N. Turnage
Cristi Duma wrote: Hi.. I updated the DB_mailer extension to 0.7.1 a few weeks ago, and it works well for me. Do you get any errors? Did you delete the save_to_database: false line in the mailer page part. I never had the save_to_database: false line in my mailer part. Could I somehow force it

Re: [Radiant] Anyone else having trouble with database_mailer not working with 0.7.1?

2009-05-21 Thread N. Turnage
Cristi Duma wrote: This is the problem.. that save_to_database: false. There's no need to put it on true, it's true by default, so just delete that line in the mailer part for the email forms you don't want to log in DB_mailer. What I said was that line was never in my mailer part. ~N

Re: [Radiant] Anyone else having trouble with database_mailer not working with 0.7.1?

2009-05-21 Thread N. Turnage
Cristi Duma wrote: oh, I got it the other way around... well, i'm sure that if you follow the instructions on the blog or the readme on github it will work. Everything is working except that the submitted information just isn't getting into the form_datas table. I just don't know what else to

Re: [Radiant] Getting NoMethodError with Templates extension

2009-05-24 Thread N. Turnage
Sean Cribbs wrote: Nate, I suspect those are installed as submodules. Inside the extension, run this: git submodule init git submodule update I believe Andrew was working on switching it over to use Admin::ResourceController, so make_resourceful wouldn't be needed any more. Watch for

Re: [Radiant] Page Attachments

2009-05-24 Thread N. Turnage
Mohit Sindhwani wrote: Next on my list is PageAttachments - so, I installed attachment_fu and then, I cloned the recent page_attachments from git. I applied the migration and did the update and restarted the server. I was able to add an attachment and then another. But the third one

[Radiant] At my wit's end with Mailer -- (see Mailer.valid_config?)

2009-05-25 Thread N. Turnage
I have set up Mailer on 3 different websites and the first two worked right out of the box, but the third is not working even though it's set up no different than the others. No matter what I push or pull on, I still get the (see Mailer.valid_config?) error when I try and view the 'Contact'

Re: [Radiant] At my wit's end with Mailer -- (see Mailer.valid_config?) SOLVED: incompatible with Twitter extension

2009-05-25 Thread N. Turnage
john muhl wrote: maybe trying putting the subject in quotes, the spaces might be choking it up ... subject: Thank You ... I tried a number of space, no space, quotes, no quotes combinations; I pared my layout down to almost nothing; finally I started disabling extensions and found out

Re: [Radiant] At my wit's end with Mailer -- (see Mailer.valid_config?) SOLVED: incompatible with Twitter extension

2009-05-25 Thread N. Turnage
Charlie Robbins wrote: Nate, You should thinkg about posting that information to the Wiki of either the Mailer or Twitter extension. This is exactly the type of information that we were discussing at the NYC Radiant Meetup last Thursday. Which Twitter extension in particular did it not work

Re: [Radiant] At my wit's end with Mailer -- (see Mailer.valid_config?) SOLVED: incompatible with Twitter extension

2009-05-25 Thread N. Turnage
Jim Gay wrote: On May 25, 2009, at 9:05 PM, N. Turnage wrote: I had both the Twitter and Twitter_Tags extensions loaded, but it was the Twitter extension that was causing problems. That's a good idea to post it to the wiki. I have two weeks to hit a major deadline (aren't we all), but after

[Radiant] How can I use Mailer form on every page?

2009-05-27 Thread N. Turnage
Hey guys, I have built a contact form with Mailer and I would like to use it in my template so that it is at the bottom of every page. It is working on the contact page itself, but on any other page I get the Mailer config is not valid error. The ReadMe for Mailer says that you can use it in

Re: [Radiant] How can I use Mailer form on every page?

2009-05-27 Thread N. Turnage
Mohit Sindhwani wrote: N. Turnage wrote: Hey guys, I have built a contact form with Mailer and I would like to use it in my template so that it is at the bottom of every page. It is working on the contact page itself, but on any other page I get the Mailer config is not valid error

Re: [Radiant] How can I use Mailer form on every page?

2009-05-27 Thread N. Turnage
Cristi Duma wrote: I did this on a site some time ago. It was an older version of radiant and mailer extension but it should work for you. I created a snippet which I used then on every page. The trick is to post the contact form to a page that has mailer part. Like this form

Re: [Radiant] Problem installing tags extension

2009-05-28 Thread N. Turnage
Rafael Souza wrote: I am getting this when do 'rake radiant:extensions:tags:install': ** Invoke radiant:extensions:tags:install (first_time) ** Invoke environment (first_time) ** Execute environment rake aborted! uninitialized constant ApplicationController I have already copied the

Re: [Radiant] Paperclipped extension and new pages

2009-05-29 Thread N. Turnage
Steven Southard wrote: I think it's just the way it works. If the page doesn't exist yet it could be problematic to associate an asset with it. Save and continue and assets are fully functional. I agree. The page needs an id before attachments can be assigned to it. Press 'Save and Continue'

[Radiant] Request to all extension writers/maintainers

2009-06-01 Thread N. Turnage
With the imminent release of 0.8 I would like to request that when anyone is updating their extensions to work with the new version of Radiant that they tag the latest latest version that works with 0.7 as 0.7 and that the first update for 0.8 is tagged 0.8 as well. This will help in

[Radiant] Is there an if-else tag in Radiant?

2009-06-04 Thread N. Turnage
What I would like to do is specify a default part of a page that would have a default banner, but I would like to override that on some of my pages. It would be great if something like this worked: r:if_content part=topBanner r:content part=topBanner / r:else_content img

[Radiant] Problems getting Reorder extension migrated

2009-06-10 Thread N. Turnage
I tried using Ray to install the reorder extension and it was getting errors on the migration. So I reenabled it, checked out tag 0.7.1, tried to migrate it myself and I am getting this from the trace: http://pastie.org/507927 It can't find a controller because a controller doesn't exist. I

[Radiant] Re: Problems getting Reorder extension migrated

2009-06-10 Thread N. Turnage
N. Turnage wrote: I tried using Ray to install the reorder extension and it was getting errors on the migration. So I reenabled it, checked out tag 0.7.1, tried to migrate it myself and I am getting this from the trace: http://pastie.org/507927 It can't find a controller because a controller

Re: [Radiant] Rails 2.3 Templates WAS: Radiant 0.8.0 Asterism Release

2009-06-15 Thread N. Turnage
Adam van den hoven wrote: I'm wondering if: 1. anyone else sees value in pursuing templates as a generalized mechanism to more easily bootstrap radiant sites (ala radiant -t http://www.example.com/my_cool_theme.rad NewSite) or installing and uninstalling extensions I think that

Re: [Radiant] Newsletter extension

2009-06-15 Thread N. Turnage
Mauricio Dulce wrote: you know any extension compatible with 0.7x, which serves to collect email addresses (newsletter) I found only one, but this is not compatible with version 0.5 if not can someone help me Use Mailer for your form and Database_Mailer to collect those submissions.

Re: [Radiant] Newsletter extension

2009-06-15 Thread N. Turnage
Mauricio Dulce wrote: I have run mailer _extension, i can't install other extension whit the same name or this is possible You have to have Mailer extension installed first, then Database_Mailer. D_M was made to work with Mailer. ~N ___ Radiant