scaffolding

Backend Administration in rails

I'd like to build a real quick and dirty administrative backend for a rails app I have been attached to at the last minute. I've looked at activescaffold and streamlined and think they are both very attractive and they should be simple to get running but I don't quite understand how to set up either one as a backend admin page. They se...

Initial skeleton for Firefox extensions?

I always seem to have a hard time starting a new Firefox extension. Can anyone recommend a good extension skeleton, scaffold, or code generator? Ideally one that follows all the best practices for FF extensions? ...

What is scaffolding? Is it a term for a particular platform?

Scaffolding, what is it? Is it a Rails-only thing? ...

How does the Gaia Flash Framework access the scaffold.as file?

In the Gaia Flash Framework, a file called 'Scaffold.as' is used to make each page a scaffold page. This is accessed by the code, new Scaffold(this); But the class itself does not appear to be imported. Am I missing something about the way flash handles external classes? Or is there something else pulling it in? Any help appreciated....

Re-Generating Scaffold

Is there any way to re-generate views from newly updated model? ...

Dynamic data for winforms

i have played around with dynamic data website. is there something similar for winforms. if there isn't anything out there for doing the same with winforms than the question would be why not? we have a massive ERP application that we want to migrate from AS400 to .Net Winform application. my initial thoughts were to have all the maintena...

Need help setting up scaffolding for this situation

I asked a question earlier, and got an excellent response, but, being a newbie to Rails and still getting the basics down, I need someone to show me how to set up some scaffolding for the situation that Hates_ was nice enough to outline for me. I've set up my application and whatnot, but I basically want to have, for example purposes: ...

Quickest way to get Scaffold code created with C#/ASP.NET

At the start of any project, once you've got your object model there then comes a period of tedium as you crank out the skeleton code required. Are there any tools that will help me with this task (including unit test skeletons if possible), a bit like the scaffolding feature in Rails? Thanks. ...

Is there a CRUD generator utility in Java(any framework) like Scaffolding in Rails?

Is there a CRUD generator utility in Java like Scaffolding in Rails? Can be in any framework or even plain servlets. Must generate controllers + views in jsp, not just DAO code... ...

Scaffolding ActiveRecord: two columns of the same data type

Another basic Rails question: I have a database table that needs to contain references to exactly two different records of a specific data type. Hypothetical example: I'm making a video game database. I have a table for "Companies." I want to have exactly one developer and exactly one publisher for each "Videogame" entry. I know that ...

Scaffolding for PHP

Is there any thing in PHP to create basic scaffold, like in Rails? EDIT: I need something to prototype quickly.. ...

Ruby on rails link_to syntax

After following a tutorial Ive found. Im now redoing it again, without the scaffolding part, to learn it better. However, editing my \app\views\home\index.html.erb to contain: <h1>Rails test project</h1> <%= link_to "my blog", posts_path> I get an error: undefined local variable or method `posts_path' for #<ActionView::Base:0x4e1d95...

generate scaffolding as code in cakephp

I have a cakephp app with some controllers using scaffolding for the logic and views... How can I make cake actually generate those as files and functions in my project that I can then modify and take ownership of... It's nice to have this stuff as a starting point, but it can't be true that I need to start basically from scratch if I ...

Dynamic scaffolding in Rails 2.2.2

class AdminController < ApplicationController scaffold :product end Above code works properly in Rails 1.2. But for the above mentioned code it gives error method missing 'scaffold' in Rails 2.2.2. Above code is used for dynamic scaffolding in Rails 1.2. Is this dynamic scaffolding supported in Rails 2.2.2? or do I need to use ruby...

Rails Application Controller for critique (feel free to be harsh)

Hi All, I've written an application controller that handles 99% of what I need any controller to do. I've posted it here (pastebin). Like I said, feel free to be harsh. -update: added comments :) Thx, -C P.S. I would like to say that my intention here is to overwrite methods that need different functionality in sub-classed contro...

Best way to implement add/edit functionallity in HTML for several classes at once

I'm writing a web application in C#. I have several classes which are stored in a DB with Fluent NHibernate. The users would be able to list, add, edit and delete these objects. I would like to avoid adding controls on a class-by-class basis for editing and adding the properties like Name or Text, but rather have some method to add/edi...

Where are the downloadable Rails generators?

When I run... $ script/generate I get a list of installed generators and a message saying "More are available at http://wiki.rubyonrails.org/rails/pages/AvailableGenerators." However, the indicated wiki page says "This topic does not exist yet." Does there exist some central repository of downloadable Rails generators? In particular...

Scaffolding for WPF using MVVM?

Hi there, Can anyone tell me if its possible (if some utility exists??) to create scaffolding taking into consideration MVVM with WPF. My idea here is i seem to have a lot fo data access forms, and of course i would like to Customize them but initially i would like a quick way of providing the form i.e. ALL controls placed on them and ...

CakePHP's scaffolding questions and changing the language of error messages

I've started to learn how to use the CakePHP framework for a part time job. And I decided to build one of my personal projects in this framework to get some practice on it. I have some models I created using Cake bake command and I added the automated CRUD support (It adds to the controller var $scaffold for the all relevant actions. I...

CakePHP Scaffolding Issue

I have a joins table which brings a users table and a Communications table together. I have the appropriate relationships built in Cake. When I use 'var $scaffold;' in the controllers everything links up perfect. I can view, add, and edit records in both directions. However, when I remove the 'var $scaffold feature through the Bake conso...