search for: barrueta

Displaying 20 results from an estimated 20 matches for "barrueta".

2006 May 25
12
RMagick install problems, advice needed
Hi guys, im trying to install rmagick on windows but i have some problems with the post install, im using win2000, ruby 1.8.4 and rails 1.1, all working well. Then i downloaded RMagick-1.9.2-IM-6.2.4-6-win32.zip from http://rubyforge.org/projects/rmagick/ extracted and do the gem install RMagick-win32-1.9.2-mswin32.gem , the gem was installed sucesfully but when i do the postinstall.rb i get
2006 Apr 08
2
ToDo list examples?
Hi guys, im guessing if there?s around a ToDo list example with categories using actual code(1.x) cause every example i found its about 0.x and its hard battle against deprecated code, that way i can see the basic of rails and tables relatios. Regards ;) -- Posted via http://www.ruby-forum.com/.
2006 Apr 23
2
blog model?
I just finished my auth zone and have some controllers to add content in the admin zone, now i want to build a blog, i have the 2 tables, posts and comments but i still dont get how to relate them, someone knows how to make a blog structure/model in rails? Any help will be very apreciated :) -- Posted via http://www.ruby-forum.com/.
2006 Apr 26
2
Rich text editing
Hi people, i just finished my first weblog, with comments, auth and admin zone(yay!) so i was looking for a way to make a rich text editor zone for the posts, right now im using textilize() and <br> html tags to format the text and breaklines so hope some one can give a reference in how to achieve that. Already told you that this rails stuff its amazing :) -- Posted via
2006 Apr 10
10
Anyone has experience with railsplayground.com hosting ?
Im ready to start hosting and deploying some of my rails apps, im guessing if someone are using railsplayground.com shared hosting plan, right now im paying USD $35 for a half of disk space and transfer, with no rails support :( any advice its more than welcome :) -- Posted via http://www.ruby-forum.com/.
2006 Apr 27
7
Role Based Authorization recipe implementation?
i got the rails recipes book, i have now an auth system for users without problems, now i want to made a role based acces for my app, im following the "Role Based Authorization" recipe of the book but i cant make it to work even when the tables created and correctly added data manually definig the roles and rights. als i dont know how to define a right for use all the actions in a
2006 Apr 05
3
Rails 1.1 and webrick/mysql problems
i just upgraded to rails 1.1 yesterday and since then i could?nt make it work with mysql, for example i have my database "todo" and one table "todos", i create the app and generate the model but when i try to generate the scaffold with "ruby script/generate scaffold Todo Todo" i get this error " error Before updating scaffolding from new DB schema, try
2006 Oct 05
1
Generate image titles with a custom font and rmagick
Hi all, i was experimenting with rmagick but i cant find a way to do this. I want to generate an image containing the title of a blog post with a custom font, for example like this page: http://photomatt.net/2006/10/02/blogtalk-presentation/ Any references or advice in how to do this are more than welcome :) -- Posted via http://www.ruby-forum.com/.
2006 Apr 19
1
Anatomy of an application in rails
Ok guys, after doing many tutorial arond the web i realize that im not going to learn rails well until a made my own app, so i defined what i want and structured in a way that hope you can understand, maybe we can help each other and define a good starting base(models and relationships) that can be helpful for all of us. Its a little(i think cms), it will consist of basically 4 sections:
2006 Apr 21
1
Catch authentication result from a model in a controller
Im still following the authorization recipe from the book, now all works fine but im getting trouble in how handle the model authorization result, if the user and pass are correct, it goes to a welcome screen(admin.rhtml) but if wrong the model prints a message in an ugly exception like page "usr and pass not correct", i want to redirect the user to the login
2006 Apr 21
4
Problem with the Authorization recipe
I just got the rails recipes book and i couldnt be more happy, but inside the book there are some details, mostly typos but this one its one i cant fix, im following the Authorization recipe on page 128 i create the table and the model, the problem comes when i try to assign a password to a user in the console, here is the output: >> justin = User.create(:username =>
2006 Apr 22
3
Making a separate admin zone
Hi, im building a little cms and i want to separate the admin zone controllers in a subfolder(controllers/admin) if possible to all be managed by one login module, i just have managed simple 3 or 4 controller apps so any help you can give me will be very apreciated. ;) -- Posted via http://www.ruby-forum.com/.
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 May 28
4
File_column trouble, advice needed
Finally i have RMagick and the file_column plugin installed, but at the time of uploading images i have trouble, i get "uninitialized constant ArtImage" error and other errors, im following the instructions on http://wiki.rubyonrails.com/rails/pages/HowToUseFileColumn but doesnt seems to work, this its the code im using: #----view <%=
2006 Jul 30
0
Standard user registration proccess
Hi all, Just getting trouble with confirmation emails(with actionmailer actually), someone knows where i can find info in how to make a standard user registration proccess? signup -> confirmation of email -> activate user Any help will be very apreciated. Ana :) -- Posted via http://www.ruby-forum.com/.
2006 May 02
0
Self-referential MtoM implementation
ok, guys i have followed the self referential recipe from the book it works perfect but now i have some doubts, at the end the model are modified to force the user beign added as a friend that add too who are adding him so how i can make that the full relationship doesn?t be complete until the friend beign added approves it(talking in the implementation of the code of course)? by the way,
2006 Apr 06
2
Problem with select helpers
Hi guys, Im doing a todo list in wich every todo item belongs to a category so at the time of create i want a select dropdown to let me choose the category for the new todo item. I have two models, todo and category(wich contains a name field), all goes fine the problem is that i cant fill the select with the names in the category table, here are the code im using, i tried many ways to make
2006 Apr 30
0
Role based auth recipe from a subfolder?
Hi guys, I have implemented the recipe for role based auth in the book, it works perfect(after sometime of pain to make it work fine), im using class inheritance to authenticate all the classes from one point(class AdminController in this case) i have this base structure: class AdminController < ApplicationController ... end class ArticlesController < AdminController ... end i define
2006 Apr 27
2
problematic admin/views
ok, i have a pretty almost finished (frontend) blog, i have defined an admin zone with authentication to add content, now im getting trouble with the views for the controllers in the admin zone, here you can see my file structure: http://img284.imageshack.us/my.php?image=tmpviews6oq.gif and my admin controllers like this: controllers/admin/admin_controller.rb class Admin::AdminController
2006 Jun 08
1
Permissions on uploaded files, TinyFile
Hi, im getting a little trouble with this, im using TinyFile as the example to upload files http://wiki.rubyonrails.com/rails/pages/TinyFile/versions/20 All goes well but the files uploaded are saved with permissions 600 (linux) and in the case of images arent showed on the browser(but uploaded and stored in the server without problems) i have to manually ftp to the uploaded files folder and