similar to: pre-alpha Rails Admin Console

Displaying 20 results from an estimated 1000 matches similar to: "pre-alpha Rails Admin Console"

2006 Aug 07
2
Administrative Console Update
Hi guys, I just wanted to announce the imminent release of the next revision of my autoDB Administrative Console. Now with: * Validations * A ton of association-related bug fixes * The ability to include the fields in belongs_to models into the form itself * AJAX improvements * Fixes to activate/deactivate and destroy * Rudimentary support for layouts Also, I made a change to the way
2006 Jul 26
4
yhtml plugin
I have released a yhtml plugin, which is available at http://http://svn.visualjquery.com/admin_console/trunk/admin_console/vendor/plugins/yhtml You can also get my other plugins, specificlly: the pre-alpha administrative console (AJAX-based scaffolding engine), acts_as_automatic, which allows you to define associations in a single yaml file, and not need to define has_many, has_one,
2006 Aug 12
5
Administrative Console Screencast
The first administrative console screencast is now available at: http://screencasts.visualjquery.com/demo1/ I''ve posted a bunch about the Admin Console, but it''s essentially an automated scaffold that works as an engine. The screencast is a quick overview of the minor things you''ll need to do in models, environment.rb, and others, as well as ::drumroll:: a demo of
2006 Jul 19
1
Admin Console
Hello again, I''m going to be releasing the administrative console (alpha) either tomorrow or Thursday. The reason I have not yet released it is that I''m in the process of migrating the entire system to AJAX, which has uncovered a few structural issues with the code that weren''t rearing their heads in the non-AJAXed version. I still need to make a few modifications,
2006 Jul 22
2
acts_as_automatic
Acts as automatic has two purposes: 1) provide acts_as_automatic act, which will automatically run the appropriate methods when conventions are adhered to (e.g. if you have category_id, it will assume that the model belongs_to :category). Only belongs_to via something_id is currently implemented. 2) Allow the creation of associations.yml, which will hold associations instead of inside each
2007 Jan 22
0
what is the Admin Console repository
hi, I try to access the page http://trac.visualjquery.com/admin_console and this repository http://svn.visualjquery.com/admin_console/trunk/admin_console/vendor/plugins/admin_console/ and i can''t. How i can install the plugin? Thanks in advance, Benjamin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2013 Jun 14
2
Safe/preferred way to import old email
Ive migrated from a qmail+Courier-IMAP setup to a Postfix+Dovecot setup. I'm using maildirs in both places. Is there a safe/preferred way to bring my old messages over without them being marked as new in Dovecot ? -- Aj.
2015 Jun 12
3
LDA versus LMTP
On Thu, 11 Jun 2015 15:14:31 -0400, Ajai Khattri <symbiat at gmail.com> wrote: >Im using Dovecot for LMTP for all my mail users, since this way they are >completely virtual (i.e. dont need to have a local account at all), all >mail gets delivered to Maildirs owned by dovecot. Also LMTP makes it easier >to insert scripts and do any custom processing which presumably is where
2010 Apr 23
2
Routing a Sinatra application
Hello, I wish to route a sinatra application in my Rails 3 app. As said by Yehuda, it should be possible. http://yehudakatz.com/2009/12/26/the-rails-3-router-rack-it-up/ However I see the route isn''t recognized and I get ActionController::RoutingError problems. It works well with simple rack apps however (the test in actionpack with a lambda passes well). I''ve written a test
2006 Feb 06
10
Urgently Need Solution
I''m using scriptaculous'' SlideUp and SlideDown effects to animate a menu. Specifically, I SlideUp, make some CSS changes, and SlideDown. All works well, except that for a split second in between, the element''s display becomes ''none'' and the other menu item jump into the space. I haven''t been able to find any way to force an element to retain
2012 Nov 13
5
Dovecot newbie (migrating from qmail)
Ive been using qmail+vpopmail+courier-imap for many years but its time to retire that server so I thought this might be an opportunity to see how I could use Postfix and Dovecot to provide the same services. Im running Dovecot 2.1.9 and Postfix 2.9.4. I have spent a few days reading through some of the docs on the wiki (there's doesn't seem to be any large overview of Dovecot concepts or
2013 Jun 14
2
Testing SMTP AUTH
Ive configured Postfix to use Dovecot for SMTP AUTH. I tried to test it but when I send the AUTH LOGIN command I get a response saying that AUTH method is not supported/implemented. How to test then? -- A -- Aj.
2006 Feb 08
6
Effect Help
I posted the following earlier: "I need a way to do a blind up that makes the element APPEAR and a blind down that makes the element DISAPPEAR. In essence, the opposite of the current blindup/blinddown. Thoughts?" I think somebody responded in Dutch. Anyone else have any ideas? -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288
2006 Jul 17
2
DB Admin Console
Over the past few months, I''ve developed an administrative console for databases in the process of solving other problems. At the moment, the state of development is: * Going to /admin_panel/model will bring you to a list of items in the model: * Supports acts_as_list via drag/drop sorting * Supports "activated" via an activated/deactivated button * Supports basic
2009 Oct 31
3
1.9 Compat and merging mail gem into ActionMailer
Hi all of both RoR Core and TMail. You may know me better as the maintainer of TMail. However, TMail has been a bit difficult to get working with Ruby 1.9, so in the light of that, I sat down over the past few months and wrote myself an all encompasing mail gem. Mail passes all of its hundreds of specs equally well in Ruby 1.8.6, 1.8.7 and 1.9.1. Mail reads every email in the TMail test suite
2015 Jun 12
2
LDA versus LMTP
On Thu, 11 Jun 2015 22:27:43 -0500, you wrote: > >On Jun 11, 2015, at 8:51 PM, Steve Matzura wrote: > >> On Thu, 11 Jun 2015 15:14:31 -0400, Ajai Khattri <symbiat at gmail.com> >> wrote: >> >>> Im using Dovecot for LMTP for all my mail users, since this way they are >>> completely virtual (i.e. dont need to have a local account at all), all
2006 Jul 17
3
Plugins and Engines
I''m trying to work out how to use the functionality from a plugin in an engine. It sounds weird, but it''s actually not so strange. I assume I can''t just add a vendor directory to an Engine, so some strategy for getting the plugin in the lib folder is probably necessary (and then requiring the plugin, perhaps?). -- Yehuda Katz -- Posted via
2010 Sep 09
3
1.9.2 why does relative_require need an additional backtrack in path
Why does Ruby-1.9.2-p0 require an additional ../ for relative paths when compared to the same code for ruby1.8? if RUBY_VERSION < ''1.9'' require File.dirname(__FILE__) + library else require_relative File.dirname(__FILE__) + ''/..'' + library end -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core"
2005 Oct 21
1
Re: [Xen-changelog] Tweak to pygrub build config detection.
On Fri, 2005-10-21 at 18:54 +0000, Xen patchbot -unstable wrote: > # HG changeset patch > # User kaf24@firebug.cl.cam.ac.uk > # Node ID 8eaaa622db81393ef0eae497090c34c04adf4212 > # Parent 3eee5653f08b01a310e0a9172a6c0149f16217df > Tweak to pygrub build config detection. > Signed-off-by: Jeremy Katz <katzj@redhat.com> Applying both patches for this is overkill.... ;)
2006 Feb 24
8
possible Slide and Blind IE bug
Hi, I''m new to this list, new to script.aculo.us but pretty comfortable with javascript. I''m trying to get a combination of Effect.SlideUp and Down and Effect.BlindUp and Down to well... it''s hard to describe, maybe have a visit here (try in firefox first): http://bruno.biosci.arizona.edu/occa/test.html Click on "next month" a couple times, then click on