similar to: Gallery2 integration

Displaying 20 results from an estimated 1000 matches similar to: "Gallery2 integration"

2009 Jul 15
1
Gallery2 under CentOS-5.3
I asked about 18 months ago if gallery2 was available in any of the CentOS repositories, and it seemed that at that time it was not. However, there was some talk of putting it in epel or epel-testing. But I looked just now, and did not find it there. I actually installed gallery2 on my server by following the instructions at <http://codex.gallery2.org/Gallery2:Preinstaller>. But I've
2006 Aug 10
1
reusing previous code
Hi, I have a couple of controllers, views, models and mailers for a given functionality (for example, user registration). ?what is the best way to share them between multiple applications so that I don''t have to copy them over and over again? Thanks.
2006 Mar 12
1
Problem with --partial and rsync algorithm
Hi, I'm running the following command for a remote host backup: /usr/local/bin/rsync -a --delete --delete-excluded -v --timeout=120 -z --no-whole-file -partial --partial-dir .rsync-partial --exclude=/sys/* --exclude=/tmp/* --exclude=/stuff/distfiles/* --exclude=/stuff/sistema/* --exclude=/stuff2/ftp/* --exclude=/stuff2/backup/* --exclude=/home/ftp/* --exclude=/home/gentoo/* --exclude=/mnt/*
2006 Jul 18
7
Observer not working
Help please. I''m trying to observe a User class, but I can''t get this to work, the after_create method never gets called... (the breakpoint never gets called) app/models/user_observer.rb: class UserObserver < ActiveRecord::Observer def after_create(user) breakpoint setting =
2008 Apr 12
0
gallery2 under CentOS-5.1
Is there a CentOS RPM for gallery2? I'm thinking of installing gallery2 through the preinstaller if I can't find an RPM. Is this the best way to go? Is anyone happily running gallery2 under CentOS? Any advice or suggestions gratefully received.
2006 Jun 23
5
create session only for logged-in
i was wondering how a blog db has grown by about 15 mb in a week or two. it turns out its the sessions table.. so ive tried this: class ApplicationController.. session :off end class AccountController session :only, :login end and now, its impossible to login, and nothing ever appears in the session table. is this the right approach? i dont want to weed out the sessions with cron, i just
2006 Jun 21
2
raw sql and columns order
Hi, I''ve a model with the following method: def self.run(sql) return connection.select_all(sql) end so, the value returned is an array of hashes... the problen is that the sql command: "select name, id from table" and select id,name from table" returns the columns in the same order (name, id). And in my view, I need to keep the order of the SQL command.
2006 Aug 02
7
String lenth limit
Hi, I''ve seen some time ago a function which, given a string like "this is a very long string" would return , for example limitin it to 10 chars "this is a..." , but I can''t remember where..... I''ve searched throwth the apis of rails and ruby itself and I can''t find it. Thanks everybody..
2005 Dec 27
6
Best Environment for development
This is a newb question, and probably one that is a matter of taste more than objective merit. I''m working on a home server, running Linux [FC 4], hosting a website [look for generocities.com shortly]. I have a delightful new Windows XP Pro Dell Inspiron 9300 laptop. What would the community recommend for the environment in which I develop? I don''t mean technologies like RoR
2006 May 21
5
Looking for a Rails AJAX gallery/tutorial
Hello everyone, Do any of you know of a downloadable Rails app that demonstrates all the bundled AJAX-iness in an impressive form? I''m looking for two things: - something I can show off to wow people with Rails'' built-in AJAX power, then show them the code that does the work and wow them again with the simplicity. In short, something that will impress potential customers, as
2006 Feb 07
4
Dynamic url with javascript? - Help Please
Hi, I''m trying to call a remote function when a combobox option is selected, passing as an argument the current value of the combobox (paramenter "panel_id": <select id="server_interface_jack_switch_panel"
2006 Apr 28
4
Existing Tabs Helper?
Hi. I''m going to start writting an ajax "tabs"" helper, but before starting to reinvent the wheel (and in order to avoid DRO : don''t Repeat Ourselves :-) ) I wish to know if there is any project for this already. Thanks.
2006 Jun 27
2
Using a different layout/styleshheet
Hi, I have a view that I use to display and capture data. Once the user has input the required data, I then need to be able to print the view. I know that I can setup a stylesheet to take care of the page layout but it is not clear to me how I will make the print view call the new layout. If anyone could clarify this or point met in the right direction, I would be most grateful. Regards, Paul
2006 Jun 02
5
Firefox extension for ajax debugging
or similar... Is there any extension for firefox so that I can view the source code of ajax returned content? Thanks everybody.
2006 Feb 28
1
Crazy excludes
I'm stuck!!! Look this command line log: -bash-2.05b# pwd /usr/backups -bash-2.05b# ls .backup.gaia.sh.swp backup.gaia.sh ------------------------------------------------------ #NEXT COMMAND IS ENTERED BY HAND IN THE SHELL ------------------------------------------------------- -bash-2.05b# rsync -a -v --delete --timeout 120 --exclude='/msurdi/*' localhost:/home/
2006 May 05
5
Attach a PDF File to an Email
Hello ~ I have an email that I need to attach a PDF to. The email is being sent, and a file is attached but it is not the original file. I am following the example: attachment :content_type => "image/jpeg", :body => File.read("an-image.jpg") changing it to: attachment :content_type => "application/pdf", :body => File.read("pdf/my.pdf")
2009 Jun 24
16
Web photo gallery options
Hi all, I'm looking for a web photo gallery for my personal web server at home. Till now I've done the galleries manually from Adobe Photoshop Elements, but I feel that is a dead end, kinda', besides the fact that the galleries created are rather static. I'd like an easier way to do this, eg uploading images in folders directly to the gallery and it will take care of what needs to
2006 May 09
6
To Do list project?
I''m looking for a good web-based to do list app. Essentially, I''d like to use Basecamp''s todo management system, but that''s not an option since I can''t install Basecamp on a server I own. The information being tracked in the list cannot be sent out of my intranet. I would imagine that there are a couple of open source rails apps that would meet my
2007 Mar 12
7
Capistrano Hanging on Deployment
Hello ~ I am using the Capistrano recipe outlined in this post to restart my backgroundrb server: http://rubyforge.org/pipermail/backgroundrb-devel/2007-February/000718.html My Version: ~~~~~~~~~~~~ task :before_restart, :roles => :app do restart_backgroundrb end task :start_backgroundrb, :roles => :app do sudo "nohup
2006 May 12
1
ActionMailer without rails
Hi. Could someone post here a simple example of sending a mail throught a smtp server from ActionMailer but *outside* rails?? I mean, a simple script starting with: require ''rubygems'' require_gem ''actionmailer'' #stuff that sends some text by smtp I''ve been trying but I can''t get it to work. Thanks everybody.