search for: aren

Displaying 20 results from an estimated 2923 matches for "aren".

Did you mean: are
2012 Jan 03
4
Changing X axis of ggplot
...time (H:M:S) with no date attached. The plot shows up fine, but the X axis labels are 0.0 through 1.0. How do I convert this to 0:00 through 23:59 (or whatever may be appropriate given the breaks)? My searches lead me to scale_x_discrete, but I am not clear if that's even the right function. Aren
2002 Mar 07
4
port forwarding not working!
...192.168.1.255 routestopped in rules I have: # # Forward FTP connections to 2021 to 192.168.1.3 # ACCEPT net loc:192.168.1.3 tcp 2021 21 So, the end result should be that traffic from the net going to port 2021 should be forwarded to port 21 of 192.168.1.3. The packets aren''t dropped since they aren''t logged, so something is going on, but they aren''t being forwarded to my internal machine. When the firewall is started, the rule is added: Rule "ACCEPT net loc:192.168.1.3 tcp 2021 21" added. The only thing that is a little sketch...
2008 Apr 24
2
Dynamic finders in has_many associations
...=> :destroy has_many :ivrs, :through => :klusterings, :uniq => true end class Klustering < ActiveRecord::Base belongs_to :kluster belongs_to :ivr end I faced 2 problems and didn''t manage to find any good tutorial. 1. Given some Kluster A, I want to find all the Ivrs that aren''t in A. 2. I want to find all the Ivrs that aren''t in ANY Kluster. -- I managed to do 1. with: @kluster = Kluster.find(params[:id]) @all_ivrs = Ivr.find(:all) @ivrs = (@all_ivrs - @kluster.ivrs) -- And I did 2. with: @all_ivrs = Ivr.find(:all).select{ |ivr| ivr.klusters.empty?...
2006 Aug 16
5
validation on methods that aren''t part of the database.
...r of characters. i tried adding validation to the model but i''m guessing it didn''t work because there isn''t an actual field in the database called password. are there any workarounds for something like this? is there a way to use the validation helpers on things that aren''t in a database? -- Posted via http://www.ruby-forum.com/.
2005 Mar 08
2
ActionWebService SOAP Faults aren''t schema valid
...ActionWebService client talking to an ActionWebService server through one of DataPower''s XS40 XML Security Gateways. One of the intrinsic functions of this gateway is automatic SOAP schema validation. When testing some failure cases, I noticed that SOAP Faults returned by ActionWebService aren''t schema valid to the SOAP 1.1 schema, specifically: > <faultcode xsi:type="xsd:string">Server</faultcode> SOAP 1.1 section 4.4 says that env:Fault/faultcode "MUST be a qualified name" and gives some recommended values (i.e xsd:QName). I''d like...
2009 Nov 17
3
gem install rails - errors MAC OSX (snow leopard)
This produced quite a mouthful of text. I''m stuck on the error messages and wondering if I messed something up. Any advice would be very appreciated. Thank you. dust:~ Lex$ gem install rails WARNING: Installing to ~/.gem since /Library/Ruby/Gems/1.8 and /usr/bin aren''t both writable. WARNING: You don''t have /Users/Lex/.gem/ruby/1.8/bin in your PATH, gem executables will not run. Successfully installed activesupport-2.3.4 Successfully installed activerecord-2.3.4 Successfully installed rack-1.0.1 Successfully installed actionpack-2.3.4 Successf...
2006 Apr 19
0
Finding items that aren''t associated
...to construct a select of those users that haven''t had permissions added, so they can be added. I''ve tried some pretty stupid stuff like subtracting @thing.users from User.find :all, but this doesn''t seem to work. What is the easiest way of picking out all users that aren''t currently associated with the given thing? Then, I''ll create a multi-select and try to work out how to iterate through all the selected ones and add their permissions. Thanks. -- Posted via http://www.ruby-forum.com/.
2004 Nov 16
1
Dynamic traffic shaping or ATM like classes
Is it possible to dynamically do bandwidh reservation? That is, I want to limit the traffic to 50% for upload and download, but if there aren''t onbound traffic, who is doing a download will get 100% of bandwidh and if there aren''t inbound traffic, who is doing a upload will get 100%, but if there are both inbound and outbount traffic, each one get limited to 50%. I think this is similar to ATM classes _with a twist_. I...
2011 Oct 18
8
rspec 1.3.2, Rails 2.3.14 - plugins not loading
...; gem "capybara", "0.3.9" gem "cucumber", "0.9.4" gem "cucumber-rails", "0.3.2" gem ''database_cleaner'' end When I run the specs (bundle exec spec spec), I get error messages because the plugins of the application aren''t loaded. Indeed, if I bundle the gems in "group :test, :development do ", then script/server and script/console fail to start as well because the plugins aren''t loaded. Anyone seen this problem or can give me a hint of why the plugins suddenly aren''t loaded (...
2008 Jan 10
3
A best practices question
Hey everyone. I''ve got a best practices question. How are you guys rendering newsfeeds? We have a couple of apps where we send newsfeed items from a backend process. As such, we aren''t in the context of a controller and can''t use the rails template rendering. We''ve tried about 3 different ways to make that bearable, but aren''t having much luck. Is anyone using a cool trick to get access to all of our great rails helpers? Mike -- Mike...
2007 Apr 28
0
[975] branches/wxruby2/wxwidgets_282/rake/rakemswin.rb: Correct spacing for link command; remove odbc and db_table which aren''t
...ding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[975] branches/wxruby2/wxwidgets_282/rake/rakemswin.rb: Correct spacing for link command; remove odbc and db_table which aren''t</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>975</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-04-28 19:07:38 -0400 (Sat, 28 Apr 2007)</dd&gt...
2013 Oct 03
1
ixgbe/ix sysctl missing in FreeBSD 9.2
Hello everyone, I am trying to tweak some of the sysctl tunables for the ix (ixgbe) driver in FreeBSD 9.2 since I am experiencing less than ideal performance and it seems like I can't find any: # sysctl -a | grep -i ixgbe device ixgbe I am running 9.2-RC4. Any input appreciated. Thanks, -- Rumen Telbizov Unix Systems Administrator <http://telbizov.com>
2006 Mar 21
2
These objects aren''t equal..I''m confused
I''m testing to see if two objects are equal. One is accessed directly from the fixture, and the other is accessed through a relationship. Here''s the test: def test_hero assert_equal players(:hero), hands(:first).hero end Anyway, the values are exactly the same as far as I can tell. The only difference is the object id, but Ruby compares the values, right? This just
2012 Jan 04
2
Allow HTML email on R-Help
Is it possible to allow HTML email on R-Help? HTML email is mainstream and would really help with code markup and embedded graphics. Just a thought. It's frustrating dealing with the low usability of plain text. Aren
2007 Jul 09
7
Xapian pubmeet
...meeting up in a pub in London some time in autumn for drinks and food. However all of this really depends on who might be able to come! It would be a chance to meet other Xapian enthusiasts in an informal social setting and talk about all things search-related (and probably a lot of things that aren't). If you're interested, please reply and say so, if not please say why! Those of us who are UK-based might be able to help those who aren't with transport and accomodation queries. Cheers Charlie Lemur Consulting
2008 Mar 13
3
Stories (well, integration tests) which aren''t plain text
Hi, Having just played with getting my first plain text story working, I like how it all fits together. It worked out nicely. However, I don''t feel our project needs to have stories as plain text, in fact it''s a slight hindrance for us. Is there any sensible mechanism for doing integration testing using rspec without plain text stories? Thanks, Rob
2006 Jun 27
3
Capgem 0.1 Released
...se of Capgem on Rubyforge. It''s available under the MIT license. Capgem is an extension to Capistrano which adds a pack task to Capistrano so you can package up your Rails application as a Gem. This is useful if you are in an environment where Capistrano''s remote deployment tools aren''t an option. Capgem currently adds start and stop scripts for launching your app via mongrel even if it is in the Ruby gems directory. You can just type sudo start-myapp or sudo stop-myapp from anywhere on the system to launch once you''ve installed from your Gem. You can also use...
2006 Jul 26
3
radrails controllers
is there any reason in the world why the controllers i edit in radrails(and save) aren''t affecting the application running on localhost? what''s going on? i just don''t g e t it!!! thanks. !@#@! -- Posted via http://www.ruby-forum.com/.
2007 Jun 14
1
Custom facts not being displayed
I''ve added some custom facts to my Puppet setup but they aren''t being displayed by facter. I''ve tested them and they work correctly when run manually (and I''ve also tried a number of those listed on the wiki) but they aren''t included in facter''s output. I am using the default settings for factdest and factpath an...
2012 Nov 24
1
Could not retrieve catalog from remote server: SSL_connect returned=1 errno=0 state=SSLv3
What are the reasons for the above error (apart from clocks out of sync - they aren''t, and different versions of Ruby - they aren''t). -Nigel -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/1ZljqG71MSgJ. To post to...