Comments on: getting started with activescaffold /2009/07/getting-started-with-activescaffold/ Sarah Allen's reflections on internet software and other topics Thu, 01 Nov 2012 13:58:50 +0000 hourly 1 https://wordpress.org/?v=5.7.1 By: Active scaffold | Kaokaokao /2009/07/getting-started-with-activescaffold/#comment-545 Thu, 01 Nov 2012 13:58:50 +0000 /?p=1621#comment-545 […] getting started with activescaffold | the evolving ultrasaurusJul 1, 2009 … The use case that led me to ActiveScaffold today was the creation of an admin interface. I’m working on a website and the end user stuff is … […]

]]>
By: Amal /2009/07/getting-started-with-activescaffold/#comment-544 Wed, 10 Mar 2010 07:04:58 +0000 /?p=1621#comment-544 Really Nice….I too started with this….

]]>
By: bronson /2009/07/getting-started-with-activescaffold/#comment-543 Thu, 21 Jan 2010 20:21:43 +0000 /?p=1621#comment-543 That seems a little strange to have a tasks.html.erb and an admin.html.erb… Conceptually, I would expect it to be admin/tasks.html.erb.

Does nesting everything behind /admin work well in practice?

]]>
By: Rupak Ganguly /2009/07/getting-started-with-activescaffold/#comment-542 Fri, 11 Dec 2009 08:42:02 +0000 /?p=1621#comment-542 Nice comparative post, Sarah. I noticed that there is a slight typo in the line:

Create app/controllers/task_controller.rb:

which I believe should be:

Create app/controllers/admin/tasks_controller.rb:

Notice the folder “admin” where the controller should be along with the plural naming convention.

Also, for Windows users, if you are having a tough time installing the active_scaffold plugin from Git, checkout the tip in my post at http://rails.webintellix.com/index.php/2009/05/installing-rails-plugins-from-github-on-windows/.

]]>
By: rails admin interface roundup | the evolving ultrasaurus /2009/07/getting-started-with-activescaffold/#comment-541 Sun, 05 Jul 2009 15:23:35 +0000 /?p=1621#comment-541 […] the evolving ultrasaurus Sarah Allen’s reflections on internet software and other topics Skip to content HomeCodeArchivesAbout « getting started with activescaffold […]

]]>
By: Daily Links #7 | :neil_middleton /2009/07/getting-started-with-activescaffold/#comment-540 Fri, 03 Jul 2009 18:16:10 +0000 /?p=1621#comment-540 […] Getting started with ActiveScaffold – A neat little alternative to the default Rails scaffolding that gives you a whole load more UI, and functionality out of the box […]

]]>
By: Francesc Esplugas /2009/07/getting-started-with-activescaffold/#comment-539 Fri, 03 Jul 2009 11:52:02 +0000 /?p=1621#comment-539 Nice introduction to ActiveScaffold, but I still think Typus works better out of the box. ;)

]]>
By: Double Shot #488 « A Fresh Cup /2009/07/getting-started-with-activescaffold/#comment-538 Fri, 03 Jul 2009 09:50:43 +0000 /?p=1621#comment-538 […] Getting Started with ActiveScaffold – A basic introduction. […]

]]>
By: Sean Dick /2009/07/getting-started-with-activescaffold/#comment-537 Thu, 02 Jul 2009 17:09:33 +0000 /?p=1621#comment-537 Taking a quick look at streamlined, the same approach of namespacing admin versions of all of your controllers would still give you basically the same effect. If you wanted to be extra fancy, you could actually have your admin versions inherit from an admin controller:

class Admin::AdminController < ApplicationController
before_filter [:login_required, :must_be_admin]

def must_be_admin
# add something to the flash maybe?
redirect_to “/” unless user.admin? and return
end
end

]]>
By: Jamie Flournoy /2009/07/getting-started-with-activescaffold/#comment-536 Thu, 02 Jul 2009 08:30:18 +0000 /?p=1621#comment-536 I tried ActiveScaffold out a couple of weeks ago and didn’t like it. I did like Streamlined, which I ended up using instead.

http://streamlinedframework.org/

The RDoc is not very helpful but the Wiki is: http://trac.streamlinedframework.org/ (at least I think that’s the right wiki since it’s down right this moment.)

]]>