search for: backpackit

Displaying 20 results from an estimated 95 matches for "backpackit".

Did you mean: backpack
2006 May 17
65
BACKPACK: There was a problem processing your email
...#39;s not something we can fix immediately, you can be sure it''s been put on the high priority list and we''ll be getting to it shortly. If after a few minutes you continue getting this response to emails you''ve sent to your Backpack pages, please send an email to support@backpackit.com explaining in as much detail as possible what caused you to see this message. Thanks for your patience, understanding, and help. - The Backpack Team
2006 Feb 08
35
BACKPACK: There was a problem processing your email
...#39;s not something we can fix immediately, you can be sure it''s been put on the high priority list and we''ll be getting to it shortly. If after a few minutes you continue getting this response to emails you''ve sent to your Backpack pages, please send an email to support@backpackit.com explaining in as much detail as possible what caused you to see this message. Thanks for your patience, understanding, and help. - The Backpack Team
2005 May 06
17
FYI: watch out for google's web accelerator - can empty your app of data
Hi All, A co-worker passed this info on to me: http://37signals.com/svn/archives2/google_web_accelerator_hey_not_so_fast_an_alert_for_web_app_designers.php The Skinny: Google has a "Web Accelerator" that pre-caches pages by following url''s. If you have any plain/simple URL''s that don''t take paramaters (like what often happens in rails apps), it will try to
2006 Jan 06
3
BACKPACK: There was a problem processing your email
...#39;s not something we can fix immediately, you can be sure it''s been put on the high priority list and we''ll be getting to it shortly. If after a few minutes you continue getting this response to emails you''ve sent to your Backpack pages, please send an email to support@backpackit.com explaining in as much detail as possible what caused you to see this message. Thanks for your patience, understanding, and help. - The Backpack Team
2008 Jan 16
4
Calendar in Rails
HI All, Please can anyone tell me whether there is a rails plugin/app that allows creation of a calendar that can render events. I am not talking about a calendar date picker of which there are several, but something more along the lines of http://www.backpackit.com/calendar where an html/css calendar can be rendered with dates highlighted. Many thanks Anthony --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send...
2006 Jan 25
11
Schemas and Migrations
Hello- I''m new to the ruby-based schemas and migrations. As I''m looking over examples and such online, I see that many of them don''t make use of schema-enforced attributes. For example, instead of: t.column "post_id", :integer, :default => 0, :null => false They do: t.column "post_id", :integer So I''m wondering -- is this
2006 Feb 04
2
Differentiating between normal site content and accounts with subdomains
...ount subdomains to access the app using an account, and www.domain.com and domain.com in order to show normal site content. I''ve noticed that on Backpack, it seems that when you leave the information pages and start using the app, such as signing up or logging in, takes you to 123.backpackit.com. On Strongspace, they have www.strongspace.com/* go to all the informational pages, as well as signup. I have, however, noticed that if you try to enter strongspace.com it redirects to www.strongspace.com. Finally, on Basecamp, all the actual accounts are on one of their other domains,...
2006 Apr 03
11
View source after AJAX update?
Does anyone know how to view the new source in IE after an AJAX update? When I "view -> source" I get the original page source, not the page source as updated. Thanks in advance, Bill -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060403/e8d96b2e/attachment.html
2006 Apr 06
3
Rails 1.1.1: Fixing a slew of minors (but you must still freeze Typo)
...;re frozen and stay cool. If you still haven''t upgraded to Rails 1.1, checkout the original announcement for a run-through of all the features. -- David Heinemeier Hansson http://www.loudthinking.com -- Broadcasting Brain http://www.basecamphq.com -- Online project management http://www.backpackit.com -- Personal information manager http://www.rubyonrails.com -- Web-application framework
2006 Mar 16
1
rails3 - example of Amazon S3 on rails
...ion for file management on Amazon''s new service, the storage webservice ''Amazon S3'' (at this time just upload, list and delete methods are implemented). Maybe someone find it useful as example. The source code and a little more information can be found here: http://caffo.backpackit.com/pub/502395 Best regards Rodrigo Franco (Caffo) -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060316/3deee93b/attachment.html
2006 Jan 08
8
RaislsEdge - where to get latest javascripts ?
To play with RJS I just made a "rake freeze edge". But this copies only the libs into vendor/rails and any attempt of "rake update_javascripts" fails. But all the he required javascripts are there, at: BASEPATH/vendor/rails/actionpack/lib/action_view/helpers/javascripts/ Except of prototype, they seem to have no version number, so I am asking whether I should take those
2006 Jan 09
4
Problem with habtm and resulting SQL insert
Cheers, I have a problem with 1.0 and a habtm relationship between User and Article. I want to save all articles that users read. I have these models: class User < ActiveRecord::Base has_and_belongs_to_many :read_articles, :class_name => "Article", :join_table => "read_articles" ... end class Article < ActiveRecord::Base has_and_belongs_to_many :readers,
2005 Dec 21
3
Patch Cycle
Hello, I submitted a patch <http://dev.rubyonrails.org/ticket/3287> ( http://dev.rubyonrails.org/ticket/3287) a couple of days ago. The patch adds some methods into and changes the existing methods in the CaptureHelper module. It should not, as I can see, affect any existing Rails implementations. I added the relevant unit tests and all but one of the tests pass. The test that fails failed
2006 Jan 08
3
Sceduling Tasks
I''m working on a RoR project and a requirement has popped up that would required certain actions to happen at certain time intervals (as opposed to having a user initiate the action). Is there anything similar to Java''s Quartz library, *nix cron, or anything of the like for Rails? I''m certainly willing to help with/test Ruby code if someone on the list is already
2006 Mar 29
2
Textdrive Rails 1.1 Error - Dependencies::LoadingModule
Textdrive upgraded to Rails 1.1 already. I have an older rails app, and am now getting the following error: c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.0 /lib/active_support/depende ncies.rb:112:in `const_missing'': uninitialized constant LoadingModule (NameEr ror) from ./script/../config/environment.rb:91 from
2006 Jun 03
2
migrations unit test and sqlite3 add_column
Hi all, I submitted a patch the other day for an issue I ran into running an "add_column" migration on a sqlite3 database when there is existing data in the table, and the new column has ":null=>false". Details at http://dev.rubyonrails.org/ticket/5215. The issue I encountered was not picked due to the unit test not having any actual data in it before running the
2005 Dec 15
2
Rails 1.0 & RJS Templates
Hello all, I just successfully updated my dev env to Rails 1.0. I then wanted to get .rjs templates working and followed Cody''s instructions at http://www.codyfauser.com/articles/2005/12/02/rails-rjs-templates-plugin . However, when I try to run ''rake test'' I get the following error: (in
2006 Apr 05
3
Where to find non deprecated docs?
I started two weeks ago with rails and im amazed of what can be done in a short time, i already finished the agile development with rails and some of the tutorials at the documentation section of the rubyonrails.com site. But i realize that many of the tutos and examples around the web and books are using earlier versions of rails (0.x.x) and some of that code and coding practices are
2006 Feb 12
7
ROR Recipes Beta: Why use taggings instead of tags_contacts? NoMethodError tag_with?
I have gotten acts_as_taggable to work for a test application as documented on taggable.rubyforge.org I am following Chad''s excellent examples in ROR Recipes Beta book. I have a few questions and hope that Chad or some other expert can help clarify them. 1. Why is the book suggesting to use taggings table instead of tags_contacts, as mentioned on taggable.rubyforge.org?
2006 Feb 24
4
Any way to pass state to a component?
I am trying set up a rails app that utilizes components. I need to be able to pass some state (a bunch of name value pairs) from the Main controller to the component. Is there any way to pass this state info using render_component? Regards -- Posted via http://www.ruby-forum.com/.