similar to: This doesn't make sense

Displaying 20 results from an estimated 40000 matches similar to: "This doesn't make sense"

2011 May 06
15
EL 6 rollout strategies? (Scientific Linux)
I was wondering what feedback might be offered by the CentOS community on their experiences using Scientific Linux? I'm a long-time Centos user, and am basically happy with CentOS. I understand there are delays getting EL 6 out. We have been long anxious to roll out EL 6 as soon as it's ready, but our time window for rollout is looming and we will need to act. (for business reasons,
2006 Jun 22
4
stylesheet linking and layouts
In my layout, I have something like (shortened for clarity): <html> <head> <%= stylesheet_link_tag "index", :media => "all" %> </head> <body> <div id="site-container"> ... <cut for space> <%= @content_for_layout %> ... <cut for space> </div> </body> A view action has another stylesheet defined
2007 May 09
3
flash CSS styling
I realize this is a CSS question, and not a rails question, so forgive the off-topicness, but I thought rails users might have some experience with this... In my app I typically set one of two flash messages to inform users on the sucess/failure of their actions. Ethier flash[:message] or flash[:error] will be set. I want this to appear in the same place as part of my site layout every time, so
2011 Oct 20
10
What happened to 6.1
Hi gang - Love CentOS - you guys to a fabulous job. It has been a while since I saw any update... I went to twitter.com/centos nothing there, twitter.com/centos6 nothing there, went to the qa calendar stuff nothing there. Last I saw was something in September saying all RPM's are built and doing ISO's. Then nothing. I know the whole story about its ready when its ready and I'm all
2006 Feb 12
3
AJAX to a table row
Hello- I''d like to throw a little AJAX into a table to allow the user to edit a single row of data inline rather than moving to another page. The row (which has N columns) would be swapped out for a row which has a single column (colspan="N") and the form inputs would be in that row. My question is, is this legal HTML? I can''t find anything that says either way.
2007 Jun 28
2
img element inside div not accessible with $$() or getElementsBySelector
I can''t access an img inside a div using the $$() syntax. Using getElementsBySelector doesn''t work either. Both return empty arrays. I can access it with getElementById, however. <div id="foo"> <img id="image" src="blah.jpg"> <div id="bar" </div> - Using $$(''#foo img'') returns an empty array - Using
2011 May 18
2
Some thoughts about EL 6
Many people seem to wait for the announcement of CentOS 6.0, so I want to share some test results I did with SL 6.0.. The actual 6.0 kernel can NOT allocate tape buffers when the server is heavily loaded at least on some LSILogic hardware. There is a big problem of slab buffer increase that can cause reboot/freeze of the server under load. Reported by many and verified by me :-( So perhaps
2006 Mar 09
2
handling events: mouseover, etc.
I''m having a hard time figuring out how to handle mouseover events w/ Ruby on Rails (esp. whether Javascript takes over, or the Controller should be used). I''m currently trying to create a simple mouseover info box showing the definition, and some other information, when certain words are moused-over. Say I have an array of Word objects that have 1) word name 2) definition
2006 Apr 20
7
AJAX/RJS Updating of Table Rows
I''m trying to update a table row (i.e. replace a <tr></tr>) using AJAX/RJS but of course this cannot be done in IE (works fine in Firefox). I have googled but have not found any solutions, only a lot of discussion. Does anyone have a solution to this problem? Cheers, Nicholas
2009 Jul 11
6
conditional link_to_remote not re-rendering
I have an int, ''floorfrozen,'' in my table, ''channels'' that can take a value of 0 or 1. When I render a page, an image in a link_to_remote is called differently depending what the value of channel.floorfrozen is, in a partial, as follows: <% if @channel.floorfrozen %> <%= link_to_remote image_tag("/images/icecube.gif"), {:url =>
2011 Aug 28
2
CentOS 6.0
Hello, Can anyone pls tell me if a ThinkServer TS130 with a E3-1225 Xeon processor is compatible with CentOS 6.0? I would like to upgrade from 5.6 but my hardware will not allow me to do so. I do not wish to buy something that is incompatible as I already have that now. The TS130 is replacing the TS200v which is RHEL 6.x certified. The TS130 has an Intel mobo and uses the C206 chipset. I do not
2008 Jan 07
1
GotoIf() help
Greetings all, I'm not real good with dial plan programming and need some help. I've looked at the 2nd edition of the Asterisk book about GotoIf() and have a basic idea what I need to do but not sure about the correct way or the best way, to set it up. I need to branch based on whether the dialed number is long distance (international or not) or not. I have branch offices on SIP and IAX
2005 Dec 30
2
unwanted scrolling
Hi all, I'm using Scriptaculous version 1.5.0 to make div's that are hidden at first (display: none position : absolute) visible using the cool effects of Scriptaculous. However when I use the effects (Appear, BlindDown, BlindUp) on div's that are positioned low in a long page IE and Firefox always scroll back to the top of the page, sometimes even scrolling away from the effected
2007 Jun 07
4
Effect.Fade and innerHTML?
Hi there, I''m now having an odd problem with Effect.Fade not working based on the innerHTML of a div. Take the following for example... <div id="blah"> Nothing here yet. </div> If I then update "blah", hide it and then fade it in, like so: <script type="text/javascript"> document.getElementById("blah").innerHTML =
2006 Jan 20
1
form_tag and multiple buttons inside problem
Hi, I have a bit of a problem with a form in rails. Well, the problem really is me not fully understanding the mechanism of the form_tag, so here''s what i try to do: The idea is to present a some edit fields for some @product attributes and then present a table showing the @product.pieces (pieces for every @product) and to include a "Edit Piece" and "Delete Piece"
2006 Mar 16
20
help with each
can you please tell me why this is not working? i got the example for how to use each online and copied it to a t (except i added the if). its telling me items.each does not exist. var items = document.getElementsByClassName(''editView''); if (items.length > 0){ items.each(function (result){ thisid = result.id; thiskey = thisid.replace(/se_item_/gi, '''');
2007 Dec 24
5
output link_remote_to in helper
Hi all, I have a complex link_remote_to link I need to generate often. I want to DRY up my view and create a helper that generates this link_remote_to for me. Is there a way my helper can output the link_remote_to javascript? Thanks STijn --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 May 09
3
validations erasing the form
Hi there I have a for with a couple of text_fields. I''m doing some validation via the model and when the validation "works" I get there was an error on blah blah the problem is the form is erased and I have to fill up the form again! I saw that scaffold keeps the form filled when the validation "works" but I dont know exactly what''s making it happen! I would
2009 Aug 11
5
Hiding views before using toggle
Hi, I want to hide some of my html in my view before toggling. In my css I tried setting the display:none; but then when I would run my toggle function it wouldn''t toggle. Is there an easy solution out there besides having to render javascript everytime to hide this html before toggling it? -- Posted via http://www.ruby-forum.com/.
2014 Mar 05
6
gnutls bug
I am running centos6.4. Where do I find the updated gnutls packages? I see the updated source file here: http://vault.centos.org/6.5/updates/Source/SPackages/ But I don't see the correct version of the packages in the 6.4 tree here: http://vault.centos.org/6.4/updates/x86_64/Packages/ Where should I be looking for the updated package for 6.4? Thanks. -- -MichaelC