Re: [Radiant] wiki vandalism

2010-02-16 Thread Jeffrey Jones
Why not just revert it? Verison 111 looks relatively clean. You can revert on github right? michael starke wrote: I just started the splitting, and checked some 5 pages to be spam or not. I marked them as spam? and moved the ones i identified as valid radiant ones to the top one (i used

Re: [Radiant] Simple graphical charts

2009-07-12 Thread Jeffrey Jones
It isn't built into Radiant and as far as I know making an extension to do so beyond a very VERY basic level would not be trivial. You would have to create a wrapper to gruff or one of the other charting plugins. Doable but not done yet (as far as I know) Jeff Mamed Mamedov wrote: Hi all!

Re: [Radiant] Major error with Google_Maps extension

2009-05-15 Thread Jeffrey Jones
This has been fixed in tag 1.3.1 N. Turnage wrote: 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

Re: [Radiant] Using absolute urls

2009-04-14 Thread Jeffrey Jones
Yup, also getting this error 0.7.1. Bit of a showstopper as far as the comments extension goes. A - vaguely works- workaround is to take the user back to the page the comment was posted from. They won't see their comment or get any hint that it is awaiting approval but at least the site

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

2009-04-03 Thread Jeffrey Jones
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. Jeff N. Turnage wrote: I would like to upgrade a project to 0.71 and I cannot find any info that the following extensions

[Radiant] Radiant Gallery Extension image Import failure.

2009-03-14 Thread Jeffrey Jones
Hoi all, I am trying to get pilu's radiant gallery (git edge )extension working on my Radiant(0.7.1) install but the import feature is failing. I have ImageMagick installed and the RMagick gem installed and am trying to import a directory of jpg images. The problem appears to be in the

[Radiant] HTML4 Love

2009-03-03 Thread Jeffrey Jones
Ahoihoi all. Having a site that is written in HTML 4.01 strict I am coming across numerous problems in core and in various extensions that are hard-coded to output self closing tags a la XHTML, meta /br /img / etc etc. Now it is relatively easy enough to dive into the source code and remove

[Radiant] Radiant Gallery Extension.

2009-03-02 Thread Jeffrey Jones
Hoi all Anyone successfully using the radiant gallery extension with 0.7.1? If so whose github repository are you pulling from? Cheers Jeff ___ Radiant mailing list Post: Radiant@radiantcms.org Search: http://radiantcms.org/mailing-list/search/

[Radiant] Re: Stop radius tags being parsed.

2009-02-28 Thread Jeffrey Jones
Hi all Is there a quick and simple way to stop radius tags being parsed and converted? I want to include some radius code in a code sample using the recent coderay extension but cannot figure out a way to stop the tags being parsed and converted. Tried using lt; for the brackets but they

Re: [Radiant] Multiple Sites with seperate users

2009-02-14 Thread Jeffrey Jones
There is an extension for the first part, running sites separately: http://ext.radiantcms.org/extensions/3-multi-site Not sure on its compatibility with radiant 0.7 nor running two separate sites while sharing content. Jeff Mr Magpie wrote: I've decided to develop my next CMS type site in

[Radiant] [ANN] Google maps Extension 1.0

2009-02-14 Thread Jeffrey Jones
Howdy all, The Radiant google_maps extension is now good to go. The the basics have been finished. You can create a Google Map. Add Markers and add content to a single info window using your favourite filter and Radius tags. - What? An extension that allows you to create, modify and embed

[Radiant] Adding extension db migrations to the spec:extensions task db:loading process.

2009-02-05 Thread Jeffrey Jones
Hi all, I am currently adding rspec tests to my extension (Better late than never eh) but am having trouble with the rake spec:extensions task. The reason being that my extension cannot find the tables because they haven't been created by the rake spec:extensions task because it uses: **

[Radiant] Extension UI - Opinions requested.

2009-01-31 Thread Jeffrey Jones
Howdy all. I am currently making an extension to embed Google Maps into radiant. It is coming along nicely but now I have a question about the UI (Never my strong point) and what you lot would think is better. * Currently the index page lists all the Google Maps currently setup (Name, Desc,

Re: [Radiant] Extension UI - Opinions requested.

2009-01-31 Thread Jeffrey Jones
of the parent. I am thinking I should mimic the core radiant pages page but I am not sure how tricky that will be Jeff Sean Cribbs wrote: Have screenshots? That might help us get a better picture of what you mean. Sean Jeffrey Jones wrote: Howdy all. I am currently making an extension

Re: [Radiant] Bad Gateway Error

2009-01-31 Thread Jeffrey Jones
Sounds like the radiant app is running on mongrel and apache is proxying to it. It also sounds like the mongrel process (which Radiant uses) has stopped running. You will have to check that the mongrel process is running by SSHing into your account and seeing if it is running using ps. If it

[Radiant] Paperclipped with more complex image manipulation

2009-01-25 Thread Jeffrey Jones
Howdy all. Is it possible for Paperclipped to do more complicated image manipulation? For example I want to create (using the ImageMagick command line arguments) nav=110x108! AND nav_inactive= 110x108! -fill black -colorize 50% Has anyone tried to do this? I tried putting all that in quotes

[Radiant] Coding an extension...help with model.

2009-01-19 Thread Jeffrey Jones
Howdy all. I am creating an extension to make google maps in radiant easier but have come across an issue I cannot get my head around. I have my GoogleMap model. class GoogleMap ActiveRecord::Base before_validation :create_point attr_accessor :latitude, :longitude private def

Re: [Radiant] Re: Re: Use sub folder url with share_layouts

2009-01-04 Thread Jeffrey Jones
You are missing the mysql development headers. Depending on your distribution they come in various packages. Something along the lines of mysql-devel or something like that Jeff Vincent Pérès wrote: Hello, I found new stuff linked (I hope) to my bug with share_layouts. In the rails page

Re: [Radiant] Phantom code when Radiant is deployed

2008-12-29 Thread Jeffrey Jones
Sounds like it could be a difference in RedCloth versions. Are they the same on both machines? Jeff Jon Hope wrote: I've just prepared a whole site using the Radiant CMS and I'm happy with how it looks etc but when I deploy it to my server there are little bits of code appearing that

[SOLVED] Re: [Radiant] Paperclipped + flash video files.

2008-10-21 Thread Jeffrey Jones
add the mime-type in windows. Cheers Jeff Jeffrey Jones wrote: Hoi all. Has anyone managed to upload flash video files using the paperclipped extension? I added video/x-flv to the allowed mime types but the FLVs are still getting rejected as not allowed. Thanks Jeff

Re: [Radiant] slug inside url_matches [SOLVED]

2008-10-17 Thread Jeffrey Jones
Thank you all, ancestor_or_self works nicely. Jeff Sean Cribbs wrote: An alternative is r:unless_self or r:unless_ancestor_or_self, which will do close to what you want. Sean Jeffrey Jones wrote: Hoi all, Does anyone know how I could get the following working? ul class=sidemenu id

[Radiant] slug inside url_matches

2008-10-16 Thread Jeffrey Jones
Hoi all, Does anyone know how I could get the following working? ul class=sidemenu id=r:slug/ r:unless_url matches=r:slug/ ignore_case=true style=display: none;/r:unless_url Basically, if the page's slug is in the url somewhere I want the css style display to be none. I have tried with

[Radiant] if_status tag

2008-10-12 Thread Jeffrey Jones
Howdy all, I found a link on google regarding the addition of the r:status tag. http://209.85.175.104/search?q=cache:0W0Pp72tSwkJ:dev.radiantcms.org/ticket/598+%3Cr:if_status+/%3Ehl=enct=clnkcd=1 One of the comments asks for r:if_status and r:unless_status tags to be added as well. It doesn't

Re: [Radiant] if_status tag

2008-10-12 Thread Jeffrey Jones
will be visible on the live site. Sean Jeffrey Jones wrote: Howdy all, I found a link on google regarding the addition of the r:status tag. http://209.85.175.104/search?q=cache:0W0Pp72tSwkJ:dev.radiantcms.org/ticket/598+%3Cr:if_status+/%3Ehl=enct=clnkcd=1 One of the comments asks for r:if_status

[Radiant] Re: Error after upgrading to 0.6.9

2008-08-18 Thread Jeffrey Jones
Hi all, I recently upgraded to 0.6.9 gem. Ran the migrations and update scripts. Everything works except the page admin page which displays the following: Pages `index_sitemap_column_headers' default partial not found! As this is a radiant error there is nothing in the logs that can help.

Re: [Radiant] Re: Error after upgrading to 0.6.9

2008-08-18 Thread Jeffrey Jones
Many thanks Sean That did it, I thought shards was an integral part of radiant which is why I didn't think to remove it. Jeff Sean Cribbs wrote: Jeff, Do you have the 'shards' extension installed? If so, remove it and you should be fine. Sean Jeffrey Jones wrote: Hi all, I recently