search for: functionaility

Displaying 5 results from an estimated 5 matches for "functionaility".

Did you mean: functionability
2020 Oct 23
1
Missing the old sytle gnome-software in CentOS 8 -- help!
Hello folks -- I recently got a new laptop and installed CentOS8 on it. Yes, it's a learning curve. What I am really upset/disappointed with is the "new" gnome-software application. It doesn't provide nearly the functionaility of the older gnome 3.28 app. Yes, I do know how to list EVERYTHING via the command line but the ease of listing files etc associated with a packages is now gone. Any ideas on a different app, plugins, extensions greatly appreciated. Thanks for any help. -- "DO or DO NOT; there is no try...
2008 Jul 10
1
redirecting when behind a firewall
...e, the external/internal ports have to match. So i don't have the ability to do something like "forward foo.gotdns.com to machine1, and forward foo2.gotdns.com to machine2" which is exactly what i'm trying to accomplish!! I've been looking into using vhosts, and the redirect functionaility, but I can't seem to get it to work, using the external domain name. So. i'm trying to: -be able to access multiple test sites, on multiple servers from a browser external to my network -be able to access the same sites, from inside my network, using the local/internal namespace -be...
2006 Nov 12
2
DO NOT REPLY [Bug 4220] New: --backup causes "stat" failed message when trying to delete a directory
...t: rsync-qa@samba.org I am experimenting with the examples on this page: http://rsync.samba.org/examples.html Specifically, the backup to a central backup server with 7 day incremental. I am manually running rsync (i.e. not using the script as it is presented) so that I can experiment with its functionaility before putting it in place. The command I am using is: rsync -av --force --ignore-errors --delete --backup --backup-dir=/Users/eric/Desktop/rsyncBackup1 /Users/eric/Desktop/rsyncSource/ /Users/eric/Desktop/rsyncDest/ When the source directory (/Users/eric/Desktop/rsyncSource/) contains the follo...
2010 Apr 15
12
[PATCH] Add :touch option to has_many associations
Hi, it would be nice to have the touch option in has_many associations also. I have a scenario like this: An user has some credit (money) and some advertises. Each advertise can be enabled or disabled depending on some rules. One of the rules is that the user should have money. Each time the money of the user change, the advertises are touched, enabled/disabled and then cached, as they are much
2006 Jul 02
18
JOIN conditions
Hi, how can I get Rails to generate SQL queries with conditions in the JOIN clause? What I would want is: SELECT * FROM people p LEFT OUTER JOIN jobs j (p.job_id = j.id AND j.salary > 9999999) I tried People.find(:all, :include => ''jobs'', :conditions => ''jobs.salary > 9999999'') but that generates SELECT * FROM people p LEFT OUTER