From jhoover6672000 at yahoo.com Tue Feb 20 02:35:48 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Mon, 19 Feb 2007 23:35:48 -0800 (PST) Subject: [Bookcarnival-code] Initial user registration code committed Message-ID: <20070220073548.78403.qmail@web37203.mail.mud.yahoo.com> Hello, I added quite a bit of code to svn tonight. I think I may have written about 5 lines of it myself. ;-) This code is all about user registration. I have the migration for the new users table there along with the initial skeleton for the CRUD stuff, tests (unit and functional - all passing), and some plugins that are used to make all this magic happen. In order to get this new code to work, you'll need to run the following command from the root folder of your BookCarnival project: rake db:migrate This should create the "users" table in the bookcarnival_development database. If you don't have this database, you'll need to create it in MySQL. What can you do then? Try this command from the root of your project: script/server Now you can login go to your web browser and hit this url: http://localhost:3000/users/ You should be able to create, edit and delete users from here. You can also run these commands in your project root to see the tests run: rake test:units rake test: functionals Thanks, Josh From joe at kuesers.net Tue Feb 20 06:26:03 2007 From: joe at kuesers.net (Joe Kueser) Date: Tue, 20 Feb 2007 05:26:03 -0600 Subject: [Bookcarnival-code] Initial user registration code committed In-Reply-To: <20070220073548.78403.qmail@web37203.mail.mud.yahoo.com> References: <20070220073548.78403.qmail@web37203.mail.mud.yahoo.com> Message-ID: <39363151-FFEF-48DC-A5A3-01FC2208E70D@kuesers.net> Very cool. By the way, you will see some grayed out links at the bottom of each page that say something like: Edit: Controller | View | Layout | Stylesheets Show: Session | Cookies | Params | Log | General Debug These only show when we're in development mode and are probably only going to be used by me (for now). These make it possible for me to edit the pages from that page. I click on the links to edit the pages in TextMate. There are a few fields I want to add to the database. I assume I do that by creating another migration. Thanks, Sean...I mean Josh. Joe On Feb 20, 2007, at 1:35 AM, Josh Hoover wrote: > Hello, > > I added quite a bit of code to svn tonight. I think I may have > written about 5 lines of it myself. ;-) This code is all about > user registration. I have the migration for the new users table > there along with the initial skeleton for the CRUD stuff, tests > (unit and functional - all passing), and some plugins that are used > to make all this magic happen. > > In order to get this new code to work, you'll need to run the > following command from the root folder of your BookCarnival project: > > rake db:migrate > > This should create the "users" table in the > bookcarnival_development database. If you don't have this > database, you'll need to create it in MySQL. > > What can you do then? Try this command from the root of your project: > > script/server > > Now you can login go to your web browser and hit this url: > > http://localhost:3000/users/ > > You should be able to create, edit and delete users from here. > > You can also run these commands in your project root to see the > tests run: > > rake test:units > rake test: functionals > > Thanks, > > Josh > > > > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code From joe at kuesers.net Tue Feb 20 18:26:12 2007 From: joe at kuesers.net (Joe Kueser) Date: Tue, 20 Feb 2007 17:26:12 -0600 Subject: [Bookcarnival-code] Modified Database, Broke Some Stuff Message-ID: <7D300A8A-2650-4941-B46C-4FC2A1E68EF9@kuesers.net> I added a few columns to the user database, to get these in your local database, simply run: rake db:migrate I added the following columns: "photo_url" - For the user profile, we can allow the user to point to or upload a photo. Either way, we can refer to the photo with a standard URL. "bio" - For a short paragraph about a person Will be displayed in their profile. "homepage" - this is extended HTML allowed in the user's profile. Also, I removed the /tmp and /logs directories from SVN. This will probably break you locally. The /tmp directory seems to get recreated, but the /logs directory does not. So just create it locally, along with a "development.log" file and you should be good to go. (This is apparent from the error message you get.) I will also be removing the "config/database.yml" file from SVN, replacing it with a "config/database.yml.sample" file. That way we don't need to worry about accidently getting real passwords in SVN. Joe From joe at kuesers.net Tue Feb 20 18:57:04 2007 From: joe at kuesers.net (Joe Kueser) Date: Tue, 20 Feb 2007 17:57:04 -0600 Subject: [Bookcarnival-code] Interesting Page Message-ID: I think this was the coolest thing Josh checked in. http://localhost:3000/account -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070220/75ba43e6/attachment.html From joe at kuesers.net Tue Feb 20 19:54:29 2007 From: joe at kuesers.net (Joe Kueser) Date: Tue, 20 Feb 2007 18:54:29 -0600 Subject: [Bookcarnival-code] Frameworks: What do you think? Message-ID: <589A8A5A-F7F1-4ACB-B7B4-8769D8C06FC0@kuesers.net> After what Josh did I hate to even bring these up, but I stumbled across a couple of site frameworks that look promising. What do you think? http://goldberg.240gl.org/security http://www.radiantcms.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070220/723f611f/attachment.html From jhoover6672000 at yahoo.com Tue Feb 20 20:25:48 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Tue, 20 Feb 2007 17:25:48 -0800 (PST) Subject: [Bookcarnival-code] Frameworks: What do you think? In-Reply-To: <589A8A5A-F7F1-4ACB-B7B4-8769D8C06FC0@kuesers.net> Message-ID: <829281.22202.qm@web37204.mail.mud.yahoo.com> Heh. I have no problem ditching what I did. Although, the account controller's index page is going to be hard to replace. ;-) I'm not sure if we want to build on top of a framework on top of a framework. We'll definitely want to try to use someone else's authorization stuff, but I'm not sure we're going to want to utilize something like Radiant, where it's an entire CMS. Goldberg looks interesting. I'll mess with it locally and see what I can learn. Thanks, Josh --- Joe Kueser wrote: > After what Josh did I hate to even bring these up, > but I stumbled > across a couple of site frameworks that look > promising. What do you > think? > > http://goldberg.240gl.org/security > > http://www.radiantcms.org/ > > > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code > From joe at kuesers.net Tue Feb 20 20:38:30 2007 From: joe at kuesers.net (Joe Kueser) Date: Tue, 20 Feb 2007 19:38:30 -0600 Subject: [Bookcarnival-code] Frameworks: What do you think? In-Reply-To: <829281.22202.qm@web37204.mail.mud.yahoo.com> References: <829281.22202.qm@web37204.mail.mud.yahoo.com> Message-ID: I just checked out both. Radiant sucks. It seems to want to be its own version of rails. Even the directory structure is a little different. Goldberg is a generator, which is a lot better. It just dumps code and you can play with it as you see fit. It give us user accounts, roles, and permissions, as well as defining pages that are accessible. Not perfect, but not bad. On Feb 20, 2007, at 7:25 PM, Josh Hoover wrote: > Heh. I have no problem ditching what I did. Although, > the account controller's index page is going to be > hard to replace. ;-) > > I'm not sure if we want to build on top of a framework > on top of a framework. We'll definitely want to try > to use someone else's authorization stuff, but I'm not > sure we're going to want to utilize something like > Radiant, where it's an entire CMS. > > Goldberg looks interesting. I'll mess with it locally > and see what I can learn. > > Thanks, > > Josh > > --- Joe Kueser wrote: > >> After what Josh did I hate to even bring these up, >> but I stumbled >> across a couple of site frameworks that look >> promising. What do you >> think? >> >> http://goldberg.240gl.org/security >> >> http://www.radiantcms.org/ >> >> >>> _______________________________________________ >> Bookcarnival-code mailing list >> Bookcarnival-code at rubyforge.org >> > http://rubyforge.org/mailman/listinfo/bookcarnival-code >> > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code From jhoover6672000 at yahoo.com Tue Feb 20 21:19:17 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Tue, 20 Feb 2007 18:19:17 -0800 (PST) Subject: [Bookcarnival-code] Subclipse/Subversion issues Message-ID: <20070221021917.69046.qmail@web37211.mail.mud.yahoo.com> I use RadRails (http://radrails.org/) on Linux for my Rails dev here. Last night, when checking in code, I started getting "Malformed Network Data" errors at the end of each commit. The code would actually commit but the Subclipse client wouldn't show that the files were committed. I've seen these types of errors before with Subversion but have never quite figured them out. Tonight I think I found my answer: http://blog.maxdunn.com/articles/2006/12/07/svn-malformed-network-data-error-in-eclipse Basically, if you're using Subclipse (the Subversion Eclipse plug-in, which RadRails does) then you need to make sure you use the latest version of Subclipse. You can't do this if you use RadRails as its own application. You need to use Eclipse and then install RadRails into Eclipse. Then you can also install the latest version of Subclipse. I haven't tested it out yet (nothing to commit right now) but it seems promising. Josh From jhoover6672000 at yahoo.com Tue Feb 20 23:46:00 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Tue, 20 Feb 2007 20:46:00 -0800 (PST) Subject: [Bookcarnival-code] Frameworks: What do you think? Message-ID: <742020.76618.qm@web37212.mail.mud.yahoo.com> I messed with Goldberg for a bit and wasn't able to get it installed and working completely. I got it to create the template but couldn't run the rake task in the instructions successfully. It was complaining about "uninitialized constant MarkupStyle", which I think is related to the Textile requirement, but I'm not sure. I had to manually copy the rake task file for Goldberg to even get that far. That was the only way I could get rake to recognize that there was a task called goldberg:installed. Anyone else tried or want to try? I've been researching other options for role based authorization. There are options but none of them are getting me too excited right now. Josh ----- Original Message ---- From: Joe Kueser To: Josh Hoover Cc: bookcarnival-code at rubyforge.org Sent: Tuesday, February 20, 2007 7:38:30 PM Subject: Re: [Bookcarnival-code] Frameworks: What do you think? I just checked out both. Radiant sucks. It seems to want to be its own version of rails. Even the directory structure is a little different. Goldberg is a generator, which is a lot better. It just dumps code and you can play with it as you see fit. It give us user accounts, roles, and permissions, as well as defining pages that are accessible. Not perfect, but not bad. On Feb 20, 2007, at 7:25 PM, Josh Hoover wrote: > Heh. I have no problem ditching what I did. Although, > the account controller's index page is going to be > hard to replace. ;-) > > I'm not sure if we want to build on top of a framework > on top of a framework. We'll definitely want to try > to use someone else's authorization stuff, but I'm not > sure we're going to want to utilize something like > Radiant, where it's an entire CMS. > > Goldberg looks interesting. I'll mess with it locally > and see what I can learn. > > Thanks, > > Josh > > --- Joe Kueser wrote: > >> After what Josh did I hate to even bring these up, >> but I stumbled >> across a couple of site frameworks that look >> promising. What do you >> think? >> >> http://goldberg.240gl.org/security >> >> http://www.radiantcms.org/ >> >> >>> _______________________________________________ >> Bookcarnival-code mailing list >> Bookcarnival-code at rubyforge.org >> > http://rubyforge.org/mailman/listinfo/bookcarnival-code >> > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code From jhoover6672000 at yahoo.com Tue Feb 20 23:55:37 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Tue, 20 Feb 2007 20:55:37 -0800 (PST) Subject: [Bookcarnival-code] Updated Wiki Message-ID: <791699.71011.qm@web37206.mail.mud.yahoo.com> I added a quick and dirty listing of all the plug-ins we have checked into svn right now: http://bookcarnival.rubyforge.org/wiki/wiki.pl Is the wiki homepage the right place for this? Probably not. But we can fix that later. Josh From jhoover6672000 at yahoo.com Wed Feb 21 00:26:15 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Tue, 20 Feb 2007 21:26:15 -0800 (PST) Subject: [Bookcarnival-code] Modified BookCarnivalOverview.doc Message-ID: <614896.89589.qm@web37215.mail.mud.yahoo.com> I added an important note about the email field needing to be unique to best support features like email registration activation, forgot password functionality, etc. Related to this... Do we (or will we) need an ERD? I like them but they do tend to get out of date rather quickly unless you automate it or are persistent with manual updates. Thanks, Josh From joe at kuesers.net Thu Feb 22 19:50:04 2007 From: joe at kuesers.net (Joe Kueser) Date: Thu, 22 Feb 2007 18:50:04 -0600 Subject: [Bookcarnival-code] Database Diagram and New Plugin Message-ID: I've added a basic database diagram (with a few new tables) to SVN, and to the docs section of the rubyforge page. (By the way, the way I linked the diagram in the docs section will make it so when you click on it you will always get the latest version from SVN. To do this, I copied the link from the web SVN "download" link. It looks like http://rubyforge.org/viewvc/trunk/doc/BookCarnivalDatabase.jpg? root=bookcarnival&view=co) I also added a plugin called unobtrusive_javascript (and updated the wiki). It adds easy use of JavaScript on the pages, as well as support for the script.acul.us transitions. Hopefully I'll be able to get the model and migration files in for the new database additions tonight. Joe -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070222/873c787c/attachment.html From Joe at kuesers.net Thu Feb 22 22:07:28 2007 From: Joe at kuesers.net (Joe Kueser) Date: Thu, 22 Feb 2007 21:07:28 -0600 Subject: [Bookcarnival-code] Checked in DB changes Message-ID: <038CCAFF-9680-4566-8431-9E853DBB8EAB@kuesers.net> I checked in about 3 new tables/migrations. 1 for book transactions, one or transaction status, and one for games. We almost have enough to start writing real code! I added roles and permissions to the database diagram, but not to the database yet. I wanted a thumbs up from y'all before I went that far. Joe From jhoover6672000 at yahoo.com Thu Feb 22 23:19:28 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Thu, 22 Feb 2007 20:19:28 -0800 (PST) Subject: [Bookcarnival-code] Checked in DB changes Message-ID: <20070223041928.80990.qmail@web37211.mail.mud.yahoo.com> Very cool. I updated svn, ran "rake db:migrate" and now have the new tables. :-) Concerning the roles and permissions: I'm assuming we're OK with a user only having one role? I'm fine with that since it simplifies things quite a bit, but wanted to make sure that there wasn't a use case that you could think of right off the bat that would require a user to have multiple roles. Thanks, Josh ----- Original Message ---- From: Joe Kueser To: bookcarnival-code at rubyforge.org Sent: Thursday, February 22, 2007 9:07:28 PM Subject: [Bookcarnival-code] Checked in DB changes I checked in about 3 new tables/migrations. 1 for book transactions, one or transaction status, and one for games. We almost have enough to start writing real code! I added roles and permissions to the database diagram, but not to the database yet. I wanted a thumbs up from y'all before I went that far. Joe _______________________________________________ Bookcarnival-code mailing list Bookcarnival-code at rubyforge.org http://rubyforge.org/mailman/listinfo/bookcarnival-code From cgallemore at gmail.com Thu Feb 22 23:27:37 2007 From: cgallemore at gmail.com (Chad Gallemore) Date: Thu, 22 Feb 2007 22:27:37 -0600 Subject: [Bookcarnival-code] Checked in DB changes In-Reply-To: <038CCAFF-9680-4566-8431-9E853DBB8EAB@kuesers.net> References: <038CCAFF-9680-4566-8431-9E853DBB8EAB@kuesers.net> Message-ID: I updated and I'm getting an error know after running rake db:migrate uninitialized constant UJS and says that rake has been aborted. Do you have any idea what this is. Oh, and don't think it's a big deal, but there appears to be a database.ymlfile that got checked in. I get an error when updating saying it can't add it due to one already being there. On 2/22/07, Joe Kueser wrote: > > I checked in about 3 new tables/migrations. > > 1 for book transactions, one or transaction status, and one for games. > > We almost have enough to start writing real code! > > I added roles and permissions to the database diagram, but not to the > database yet. I wanted a thumbs up from y'all before I went that far. > > Joe > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070222/d434f8b5/attachment.html From jhoover6672000 at yahoo.com Thu Feb 22 23:38:06 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Thu, 22 Feb 2007 20:38:06 -0800 (PST) Subject: [Bookcarnival-code] Error: uninitialized constant UJS (NameError) Message-ID: <337154.74248.qm@web37214.mail.mud.yahoo.com> I get this error when I try to run the unit tests. It looks like this is a constant that the unobtrusive_javascript plug-in creates/uses. It's choking when looking at the config/routes.rb file. I checked my vendor/scripts directory for the unobtrusive_javascript plug-in but it doesn't look like it's there. Thoughts? Side note... I'm starting to add the email activation and forgot password functionality. Thanks, Josh From Joe at kuesers.net Fri Feb 23 06:19:14 2007 From: Joe at kuesers.net (Joe Kueser) Date: Fri, 23 Feb 2007 05:19:14 -0600 Subject: [Bookcarnival-code] Checked in DB changes In-Reply-To: References: <038CCAFF-9680-4566-8431-9E853DBB8EAB@kuesers.net> Message-ID: I may have failed to check in one file. The UJS constant is supposed to be defined in the routes.rb file, I believe. Let me double check and I'll check it back in pronto. (A little late for you, but I was trying to get to bed about the time you sent this ;-) Thanks! Joe On Feb 22, 2007, at 10:27 PM, Chad Gallemore wrote: > I updated and I'm getting an error know after running rake db:migrate > > uninitialized constant UJS > > and says that rake has been aborted. Do you have any idea what > this is. Oh, and don't think it's a big deal, but there appears to > be a database.yml file that got checked in. I get an error when > updating saying it can't add it due to one already being there. > > > On 2/22/07, Joe Kueser wrote: > I checked in about 3 new tables/migrations. > > 1 for book transactions, one or transaction status, and one for games. > > We almost have enough to start writing real code! > > I added roles and permissions to the database diagram, but not to the > database yet. I wanted a thumbs up from y'all before I went that far. > > Joe > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070223/c97f9b3d/attachment.html From cgallemore at gmail.com Fri Feb 23 09:12:30 2007 From: cgallemore at gmail.com (Chad Gallemore) Date: Fri, 23 Feb 2007 08:12:30 -0600 Subject: [Bookcarnival-code] Checked in DB changes In-Reply-To: References: <038CCAFF-9680-4566-8431-9E853DBB8EAB@kuesers.net> Message-ID: I got it fixed. I think when I updated and had the error on trying to add the database.yml, it killed the rest of my update. I got rid of the database.yml file and did another update and got a lot more code after that. I was then successful in adding the tables. On 2/23/07, Joe Kueser wrote: > > I may have failed to check in one file. The UJS constant is supposed to > be defined in the routes.rb file, I believe. Let me double check and I'll > check it back in pronto. (A little late for you, but I was trying to get to > bed about the time you sent this ;-) > > Thanks! > > Joe > > > > > On Feb 22, 2007, at 10:27 PM, Chad Gallemore wrote: > > I updated and I'm getting an error know after running rake db:migrate > > uninitialized constant UJS > > and says that rake has been aborted. Do you have any idea what this is. > Oh, and don't think it's a big deal, but there appears to be a > database.yml file that got checked in. I get an error when updating > saying it can't add it due to one already being there. > > > On 2/22/07, Joe Kueser wrote: > > > > I checked in about 3 new tables/migrations. > > > > 1 for book transactions, one or transaction status, and one for games. > > > > We almost have enough to start writing real code! > > > > I added roles and permissions to the database diagram, but not to the > > database yet. I wanted a thumbs up from y'all before I went that far. > > > > Joe > > _______________________________________________ > > Bookcarnival-code mailing list > > Bookcarnival-code at rubyforge.org > > http://rubyforge.org/mailman/listinfo/bookcarnival-code > > > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070223/2b74604c/attachment-0001.html From joe at kuesers.net Sun Feb 25 18:02:28 2007 From: joe at kuesers.net (Joe Kueser) Date: Sun, 25 Feb 2007 17:02:28 -0600 Subject: [Bookcarnival-code] More Plugins to Look Into Message-ID: <0EE0EFA8-8A3B-4221-8F1C-B627CCC9DA59@kuesers.net> No, I haven't downloaded or installed these yet, but these are worth considering. Roar - Automatic admin screen creation - http:// agilewebdevelopment.com/plugins/roar_offers_automated_rails (http:// nanoware.com/roar/) Toffee - Another admin auto admin screen plugin - http:// agilewebdevelopment.com/plugins/toffee (http://rubyfurnace.com/ plugins/toffee) Acts As Taggable - Add tags to any model - http:// agilewebdevelopment.com/plugins/acts_as_taggable (http://rails.co.za/ articles/2006/06/04/acts_as_taggable-plugin-docs) - We'd also want to find something to do a tag cloud. Foreign Key Mirgraitons - Automatic foreign key assignment - http:// agilewebdevelopment.com/plugins/foreign_key_migrations Ajax Scaffold - Automatic creation of Ajax based forms, etc - http:// agilewebdevelopment.com/plugins/ajax_scaffold -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070225/24e7b95b/attachment.html From joe at kuesers.net Mon Feb 26 12:39:17 2007 From: joe at kuesers.net (Joe Kueser) Date: Mon, 26 Feb 2007 11:39:17 -0600 Subject: [Bookcarnival-code] Yahoo GUI Message-ID: <9B633009-8B29-4D25-86F2-7826665D1F89@kuesers.net> I'm pretty sure we'll be using this library. http://developer.yahoo.com/yui/ If we wanted to be real cool, we'd figure out how to wrap this in a Rails plugin. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070226/10fae012/attachment.html From jhoover6672000 at yahoo.com Mon Feb 26 23:53:50 2007 From: jhoover6672000 at yahoo.com (Josh Hoover) Date: Mon, 26 Feb 2007 20:53:50 -0800 (PST) Subject: [Bookcarnival-code] Amazon.com Ruby integration Message-ID: <20070227045350.67097.qmail@web37203.mail.mud.yahoo.com> Chad reminded me this morning about the Amazon stuff when he showed me the cool Flex/Amazon spring graph demo. Here are some links I bookmarked a while back related to Ruby and Amazon that we'll probably want to utilize: Ruby/Amazon (Ruby library) http://www.caliban.org/ruby/ruby-amazon.shtml loads_from_amazon (Rails plug-in) http://agilewebdevelopment.com/plugins/loads_from_amazon Josh From cgallemore at gmail.com Tue Feb 27 09:12:17 2007 From: cgallemore at gmail.com (Chad Gallemore) Date: Tue, 27 Feb 2007 08:12:17 -0600 Subject: [Bookcarnival-code] Amazon.com Ruby integration In-Reply-To: <20070227045350.67097.qmail@web37203.mail.mud.yahoo.com> References: <20070227045350.67097.qmail@web37203.mail.mud.yahoo.com> Message-ID: I downloaded the the Ruby/Amazon library last night and got that installed. The book Joe gave me has a code snippet in it that looks pretty simple, I just have to figure out how to use it with rails. I'll take a look at that plugin thanks. On 2/26/07, Josh Hoover wrote: > > Chad reminded me this morning about the Amazon stuff when he showed me the > cool Flex/Amazon spring graph demo. Here are some links I bookmarked a > while back related to Ruby and Amazon that we'll probably want to utilize: > > Ruby/Amazon (Ruby library) > http://www.caliban.org/ruby/ruby-amazon.shtml > > loads_from_amazon (Rails plug-in) > http://agilewebdevelopment.com/plugins/loads_from_amazon > > Josh > > > _______________________________________________ > Bookcarnival-code mailing list > Bookcarnival-code at rubyforge.org > http://rubyforge.org/mailman/listinfo/bookcarnival-code > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070227/63494d29/attachment.html From cgallemore at gmail.com Tue Feb 27 10:12:40 2007 From: cgallemore at gmail.com (Chad Gallemore) Date: Tue, 27 Feb 2007 09:12:40 -0600 Subject: [Bookcarnival-code] Next time we meet Message-ID: I know last time we meet, we talked about doing some coding the next time around. Can we also take a look at how to use plugins, setting up our IDE, etc. Just some small stuff that shouldn't take too long. -Chad -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070227/813a4504/attachment.html From joe at kuesers.net Tue Feb 27 22:06:12 2007 From: joe at kuesers.net (Joe Kueser) Date: Tue, 27 Feb 2007 21:06:12 -0600 Subject: [Bookcarnival-code] Rough Wireframes Added Message-ID: I added a few rough wireframes to show my initial ideas for a few pages. One is of the front page. This should be where a brief description of the site is shown, our "mission statement", an area to log in or register, and a link for guests to get a sneak peek into the site. Another is the sneak peek page. This shows a quick overview of what is currently available on the site. The names of the games should either link to descriptions, or have cool popouts with descriptions of the games. The third is the user's home page, where it shows what books a member needs to send out, what books they are still waiting on, and the status for these. It should also show their friends list and wishlist. This page will be more or less a dashboard of the member's activity. Maybe even an area to link to favorite games, etc. Let me know what you think! Joe From cgallemore at gmail.com Wed Feb 28 17:27:01 2007 From: cgallemore at gmail.com (Chad Gallemore) Date: Wed, 28 Feb 2007 16:27:01 -0600 Subject: [Bookcarnival-code] RadRails Message-ID: Josh and Joe probably don't need this, but for James I put RadRails on joputil \\joputil01\Software\Ruby_Rails -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/bookcarnival-code/attachments/20070228/7c41d75c/attachment.html