similar to: Locating Objects by associated object.properties

Displaying 20 results from an estimated 2000 matches similar to: "Locating Objects by associated object.properties"

2005 Nov 07
9
Using Gettext To Translate Your Rails Application
Hi, Has anyone has any success using the gettext translation methods mentioned in this wiki page? http://manuals.rubyonrails.com/read/chapter/105 I got up to running the localize script at which point it protests about not being able to find ''gettext/rgettext'' from the require line at the top of the script: script/localize:8:in `require'': no such file to load --
2011 Jul 29
9
Custom fact question
Hi, I need to use the output of a script to set the value of a variable. I understand the only way to do this is to use a custom Facter fact. However, this script will only run when (naturally) it''s been installed, which is something Puppet takes care of. Conf files, which I would very much like to be able to install as part of the same run depend on the variable being set. So, it
2006 Feb 01
4
Viewing all Properties and Methods?
Hello, How can I see all the properties (member variables) and methods (functions) that are available for an object? Is there a function similar to PHP''s var_dump in MySQL? Many thanks for your assistance. Frank --------------------------------- What are the most popular cars? Find out at Yahoo! Autos -------------- next part -------------- An HTML attachment
2014 Sep 29
8
Spacewalk? Local repo? Cache?
I have a mix of CentOS 5, 6, and now 7 servers at work. There are enough of them now that it is starting to make sense for them to get updates from an internal source. I've seen RHN Satellite in years past. It looks like it may be a way to allow Windows admins here (familiar with WSUS) to update Linux boxes. A local repo might be easier to set up, but (as with Spacewalk) it seems like
2006 May 16
8
ZFS recovery from a disk losing power
running b37 on amd64. after removing power from a disk configured as a mirror, 10 minutes has passed and ZFS has still not offlined it. # zpool status tank pool: tank state: ONLINE status: One or more devices has experienced an unrecoverable error. An attempt was made to correct the error. Applications are unaffected. action: Determine if the device needs to be replaced, and clear
2015 Feb 10
2
CentOS 7 will not run pre-installation script
On 2/9/2015 9:15 PM, g wrote:> > On 02/09/2015 05:10 PM, Mark LaPierre wrote: >> >> That's my plan too. I figure that I'll try it when it gets to 7.3. > > i thought it was better to use the even number revisions. I think the even numbers advice only applies to Star Trek movies. CentOS 7.3 will be usable, but 7.3.11 for Workgroups is where things will really
2005 Mar 07
1
FXO module in TDM400P (UK, BT) - Hangup
Thanks for the suggestion. I have busydetect=yes in zapata.conf. You refer to "Martin's algorithm". Can you provide more details please? ----- Original Message ----- From: "Soner Tari" <list@kulustur.org> Subject: Re: [Asterisk-Users] FXO module in TDM400P (UK, BT) - Hangup detection failing To: "Asterisk Users Mailing List - Non-Commercial Discussion"
2006 Jun 16
5
superclass mismatch for class OrderedOptions
I have Rails 1.1.2 installed and froze my app to 1.0 by checking it out into the vender directory. Maybe it''s coincidence, but now when trying to do rake migrate I get this: > rake migrate --trace (in /home/beet/workspace/) rake aborted! superclass mismatch for class OrderedOptions /usr/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/ordered_options.rb:27
2005 Mar 21
2
Permission issue with outgoing calling
I have created a call file which has been moved into the outgoing directory. However the log file displays the following message: Unable to open /var/spool/asterisk/outgoing/1.call: Permission denied, deleting I have executed chmod 777 1.call on the file prior to moving it to the outgoing directory but is there something else I need to do before the file can be used by Asterisk? Any help
2006 May 19
2
Thunderbird 1.5 and messages with no Date: header
hi, some of my Thunderbird users have a minor but annoying problem with messages that have no Date: header. these clients use BODY[HEADER.FIELDS (Date)] as the date for messages. when a message has no Date: header, they display the date as 01/01/1970 10:00:00 because Dovecot returns empty string. would it be possible for Dovecot to return INTERNALDATE instead, for messages that contain no Date:
2005 Sep 01
3
qpopper UIDLs and migrating to dovecot/maildir
hi all, I am hoping to convert a 350K user qpopper installation using mbox to dovecot and maildir (pop3 only). many of the users "leave mail on server", and qpopper's UIDL format isn't (yet) supported by dovecot. since the UIDLs have been written by qpoppper to the existing mbox files (and will be preserved when the mboxes are converted to maildir) it would be possible to do
2016 Mar 11
3
Openshot 2.x (beta) on C7??
On 3/11/2016 2:02 AM, Sorin Srbu wrote: >>> Looks like installing openshot 2.x on C7 isn't as trivial >> >> It is not trivial at all. The best way to handle this will be to find the >> required packages in Fedora and rebuild them. > > So what's the easy way? > > Switch to Ubuntu or something? 8-O Maybe Fedora, maybe Ubuntu? It's more
2005 Nov 11
1
1.0alpha4: pop3_reuse_xuidl patch
hi all, this is needed to make the pop3_reuse_xuidl option work in 1.0alpha4. I am using maildir and I noticed that for each message which doesn't have an indexed X-UIDL header, the entire message is read from disk. as this is reading only headers, it is probably reasonable to stop reading at the end of the headers. it would also be neat if dovecot could be configured to only try reading
2017 Oct 24
4
Not Able to Configure Nagios Server 4.3.4 in Centos 7
Hi Team, I was trying to install the Nagios server in Centos 7. I had downloaded and unzipped the Nagios server and it's plugins file. As per the installation instructions I ran the commands in the concerned folders of ./configure , make , make install for both the core and the Nagios plugins. I am not able to figure out the issue behind that it is not working It did got installed using
2011 Aug 09
1
"Denormalize" data
Hello R users, My problem is that the data I've got is in the minimum number of columns with each ward (geographic area) appearing multiple times. The first 30 terms look like this > HHum02 CASW Btype Yr CO2Group NumVeh 170597 00CCFA CARS 2002 C 2 170598 00CCFA CARS 2002 D 2 170599 00CCFA CARS 2002 E 22 170600 00CCFA CARS 2002
2005 Dec 23
1
Handling file uploads & mixing class and instance vars
Hey Everybody, This is the only way I''ve been able to get my file upload to work: class Item < ActiveRecord::Base def file=(upload) @file=upload end def after_create File.open("public/items/#{self.id}.jpg", "w") { |f| f.write(@file.read) } end end The upload form has "file_field ''item'', ''file'',
2015 Aug 25
2
C7 and /etc/sysconfig/network
Does Centos 7 use /etc/sysconfig/network or is this replaced by some systemctl set of commands. For example I know to set my host name with: hostnamectl set-hostname nevia.htt-consult.com But I don't know if this is the same as cat <<EOF>/etc/sysconfig/network || exit 1 NETWORKING=yes HOSTNAME=nevia.htt-consult.com EOF
2019 Sep 27
1
Centos-8 Minimal iso?
Is there a minimal Centos 8 iso image available like Centos 7 ?
2000 Jun 27
1
vorbis-tools/Makefile.in glitch...
I'm updating my vorbis rpm spec file, and when I try to do "make -C vorbis-tools ogg123", due to rpm's build environment, I get lots of: gcc ogg123.o -o ogg123 -lm ../lib/libvorbis.a ../lib/vorbisfile.a ../lib/vorbisfile.a(vorbisfile.o): In function `_get_prev_page': vorbisfile.o(.text+0x54): undefined reference to `ogg_sync_reset' vorbisfile.o(.text+0xa9): undefined
2000 Jul 01
1
Bugfix patch for vorbize, compat patch for grip
Hey. Last night I hacked grip so that it'd allow me to use vorbize and comments with grip. It's very ugly because grip'd need a bit of rearrangement in order to facilitate the way the vorbis comments work (that is, the comments are not added in after the encoded file has been written). Any one who wants to use it should patch grip-2.94 (http://www.nostatic.org/grip), and make sure you