Archive for April, 2008

links for 2008-04-18

Apr 18 2008 Published by under Links

No responses yet

links for 2008-04-17

Apr 17 2008 Published by under Links

No responses yet

links for 2008-04-16

Apr 16 2008 Published by under Links

One response so far

links for 2008-04-15

Apr 15 2008 Published by under Links

No responses yet

links for 2008-04-14

Apr 14 2008 Published by under Links

No responses yet

Nested Namespace in Rails 2.0

Apr 13 2008 Published by under English,Ruby

$> mate config/routes.rb

map.namespace :admin do |admin|
  admin.resources :user
end

$> rake routes

admin_user_index GET    /admin/user
  {:controller=>'admin/user', :action=>'index'}
......

$> mate config/routes.rb

map.namespace :admin do |admin|
  admin.namespace :user do |user|
    user.resources :profile
  end
end

$> rake routes

admin_user_profile_index GET    /admin/user/profile
  {:controller=>'admin/user/profile', :action=>'index'}
......

No responses yet

links for 2008-04-13

Apr 13 2008 Published by under Links

No responses yet

links for 2008-04-12

Apr 12 2008 Published by under Links

No responses yet

links for 2008-04-11

Apr 11 2008 Published by under Links

  • DARE is a local http server that makes it easy to create, test, and package AIR applications. It allows you to develop and test using your HTML/JS tools of choice and a web browser. You can use the “Refresh” button to test and package your application.
    (tags: adobe air flex)
  • This free, embeddable version of our FLV Player (AS 3.0) Basic Skins component does not require Flash (we provide the .swf in the download package) and has several advanced features
  • The JW FLV Media Player (built with Adobe’s Flash) is an easy and flexible way to add video and audio to your website. It supports playback of any format the Adobe Flash Player can handle (FLV, but also MP3, H264, SWF, JPG, PNG and GIF).

No responses yet

links for 2008-04-10

Apr 10 2008 Published by under Links

No responses yet

« Prev - Next »