similar to: cannonical open source rails apps?

Displaying 20 results from an estimated 7000 matches similar to: "cannonical open source rails apps?"

2006 May 01
17
Radiant CMS
I am pleased to announce that Radiant CMS is now publically available from the Subversion repository at: http://radiantcms.org/ What is Radiant? ---------------- Radiant is a no-fluff, open source content management system designed for small teams. It is similar to Textpattern or MovableType, but is a general purpose content management system (not a blogging engine). Radiant features:
2006 Aug 10
1
Radiant CMS 0.5.1 - Gemdust
I am pleased to announce the release of Radiant 0.5.1 Gemdust: http://radiantcms.org/download/ This is primarily a security update. A critical security vulnerability has been discovered in Rails 1.1.5. It is therefore highly recommended that you upgrade immediately. Apart from the Rails 1.1.5 upgrade, this release includes a number of small enhancements. From the change log: WHAT IS
2006 Mar 07
13
hosting multiple rails apps in one webroot?
It''s actually REALLY easy with lighttpd on linux. Two apps... Myserver.com/code/ => /apps/code/ Myserver.com/test/ +> /apps/test/ Each application needs this in the environment.rb /apps/code/config/environment.rb ActionController::AbstractRequest.relative_url_root = "/code" /apps/test/config/environment.rb ActionController::AbstractRequest.relative_url_root
2006 Jul 04
11
Any CMS for Ruby on Rails..
Well i want to make a photography community site on the lines of www.gfxartist.com , www.terminus1525.ca, www.phirebrush.com Where the community votes for every subbmission from a artist and can comment (like a forum).. Now gfxartist has used probably SMARTY,php,and their own CMS. terminus used Drupal,Gallery 2.Some one tells me that this combo is heavy on resources and slows down sites.
2008 Jul 27
1
Radiant CMS 0.6.8 "Incise" Release
Looks like it''s time for another release of Radiant: http://radiantcms.org/download/ Radiant 0.6.8 "Incise" adds a number of new features that enhance support for extensions and completes the project''s move to github. Of special note are: * Extension installer/uninstaller scripts (script/extension) and a global ''extension registry'' at
2007 Mar 24
3
Patch for superredcloth to enable textile table headers
SuperRedCloth v1.160 and svn rev 163 don''t work the textile commands that specify table headers instead of table data. Here''s a simple test: require ''superredcloth'' w = "|_. a|_. b|_. c|\n|1|2|3|" h = SuperRedCloth.new(w).to_html puts h <table> <tr> <td>_. a</td>
2008 May 30
2
Any good Rails example app created with RSpec and Rspec on Rails?
Hi, I''m pretty new to RSpec. I''ve been browsing http://opensourcerails.com to find a good app built using RSpec (and RSpec on Rails). Does anybody have a recommendation? I wanna see example of mocks/stubs, associated models and integrated_view. -T
2007 Jun 28
7
new to rails... suitable for what I wanna do?
Hi, I have created and now maintain the website ratsdeville.com (http:// ratsdeville.com/index_e.html for english) for my brother. He creates more and more content for it each week and I''m seriously feeling the pain now archiving everything manually and making sure that links works once items are archived (which I lost control of). Like you can see, it is basically a news site about art
2007 Jan 31
7
GET request works via curl, crashes from Java
[That subject line is of course a severe truncation!] I''ve got a REST request that works fine from curl but causes a mongrel error when executed from a Java program. This all worked with fine with rails 1.1.6 and webrick. I''m trying to update the app to rails 1.2.1 (I need working around_filters). I''m running in development mode with mongrel 1.01 running on macosx
2008 Jan 15
32
A challenge from a CMS implementer
Hey guys RoR evangelists keep telling us that they have the #1 framework for developing webapps. OK, but show us something that works and is useful to many people out there. I could be wrong, but it doesn''t seem as if there is anything that qualifies, as yet? So I''ve got a little challenge for you: come up with a decent plugin WYSIWYG visual editor for CMS. There are several
2006 Mar 28
0
Capistrano: can''t get remote connection to work
I can''t get rake remote:exec ACTION=setup to complete successfully. I suspect there is a problem in authentication. The problem however isn''t RSA authentication, see earlier message: subj: Capistrano: remote setup fails, using RSA authentication I renamed my .ssh dir on the remote server and am now connecting via ssh-password authentication. I can connect via ssh w/o
2007 Mar 21
0
using ''_.'' to indicate table headers doesn''t work in SRC v1.160
I''m using" superredcloth (1.160) Using ''_.'' to indicate table headers doesn''t work: $ irb irb(main):001:0> require ''superredcloth'' => true irb(main):005:0> SuperRedCloth.new("|_. name |_. age |_. sex |\n| joan | 24 | f |\n| archie | 29 | m |\n| bella | 45 | f |\n").to_html =>
2006 Nov 26
7
mongrel & apache on Win32
I am thinking about migrating a Java based Web Application to Ruby & Rails. Before I start the work I need more information about the runtime environment. I am forced to use Windows 2003 Server and I need SSL. My Java Web Apps all run on Apache 2.x with any of the many J2EE App Servers (Tomcat, Geronimo, etc...) an Windows without any problems. From reading the mongrel web-site I
2006 May 12
21
Drupal vs. Ruby on Rails
Hello all, Maybe the $subj is a little bit weird (i.e. apples vs oranges) but it is a situation i am facing at the moment: We are developing a small web site which will be mostly a CMS (more or less) and my colleagues is arguing for drupal, and i am for RoR. Maybe i can formulate the question in a different way: when to use a CMS (not necessarily drupal but e.g. Radiant CMS) and when to use Ruby
2006 Mar 22
9
render partial from withit mail template
Hi, I''m trying to include a partial in an email template but it throws me this: undefined method `controller_path'' for SupportMailer:Class Extracted source (around line #12): 11: 12: <%= render :partial => ''footer'' %> I guess email views are a little different from normal ones as they don''t seem to have a access to a proper controller (?)
2006 Mar 02
6
Lighttpd and fastcgi problems...
Hi, I''m having difficulty getting ruby running via Lighttpd and fastcgi. My lighttpd.conf reads: server.port = 81 server.pid-file = "/tmp/test_lighttpd.pid" server.modules = ( "mod_redirect", "mod_access", "mod_fastcgi", "mod_accesslog", "mod_simple_vhost" ) server.document-root = "/tmp/mis/public"
2006 Apr 18
7
Connecting to multiple databases
Hi Everyone, I am trying to connect to multiple databases and followed along the Recipe in Chad Fowlers ''Rails Recipes'' book (which basically is about establishing the connection in a subclass of ActiveRecord::Base, and inheriting all classes in need of this connection from this class) Chad Fowler says: "You won''t be able to instantiate an External, of course,
2006 Jun 01
5
Content Management System
I am looking for a good CMS based on Rails that has at least these attributes: 1. Ease of use ( as it will be used by people who are not html literate) 2. Very easy/flexible to change layout. So far I have looked at http://rcms.oopen.de/Home/ (have not installed it yet) http://adminpages.flowdev.de http://demo.radiantcms.org/admin/pages http://www.eribium.org/eribium/ MuraveyWeb does not seem
2008 Mar 06
2
Radiant CMS
Hi, Could Please tell me how can we use radiant CMS in our application. Is this radiant cms is famous for ROR? Is there any other way to create CMS ror application. Thank you, srinivas rao.pala -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2006 Mar 21
4
Broken config/lighttpd.conf? (in EdgeRails)
I''m using Mac OS X, I installed Ruby/Rails/lighttpd/etc via the instructions from hivelogic. I think I''ve found a bug with EdgeRails, but I''m not sure how to submit it (and maybe I''m doing something wrong and someone can just point me in the right direction). Anyway I thought I''d report it just in case it is a bug. I''ve downloaded