search for: slattery

Displaying 10 results from an estimated 10 matches for "slattery".

2014 Sep 02
0
CentOS-docs Digest, Vol 94, Issue 1
...the person managing the list at > centos-docs-owner at centos.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of CentOS-docs digest..." > > > Today's Topics: > > 1. Wiki write access request (Patrick Slattery) > 2. Re: Wiki write access request (Fabian Arrotin) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 01 Sep 2014 20:46:42 +0000 (GMT) > From: Patrick Slattery <patrickmslattery at mac.com> > To: centos-do...
2014 Sep 01
1
Wiki write access request
.../ Atomic OpenStack (Just starting with this) Windows/AD/OS X integration SCM management However I'd like to contribute in other areas too, I like to write unambiguous and accurate docs and I'm willing to test out contributions by others to help the overall project. My wiki ID is: patrickmslatteryvt Thanks, Patrick M. Slattery -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20140901/6ca1534b/attachment-0006.html>
2006 Aug 14
2
ActionPack: number_to_phone error
Question about the number_to_phone function as provided by rails in actionpack: http://api.rubyonrails.org/classes/ActionView/Helpers/NumberHelper.html If I do this in my controller: num = number_to_phone(params[:phone_number]) I get this error: undefined method `number_to_phone'' for #<TicketsController:0xb7a2bfcc> Whereas if I do this in my view: <%
2006 Aug 15
1
Local Variable Troubles
Hi all, I currently have a partial named _menu, where I generate the menu for my site. I pass locals to it with a render :partial. I have the partial check for 2 items, display_title and klass. I only pass these to the partial if I need to use them, otherwise no locals named display_title or klass are present in the partial. I test to see if these exists by doing the following: <% unless
2002 Nov 25
3
Trying to build ISOLinux Minimal CD
...e cause of the problem) kmod: failed to exec /sbin/modprobe -s -k ide-cd, errno = 2 hda: driver not preset VFS: cannot open root device "300" or "03:00" I'm assuming I'm leaving something out of the kernel Any help would be appreciated... Mike Slattery ______________________________________________________________________ IMPORTANT NOTICE: The information in this email is confidential and proprietary to NexPress Solutions LLC and may be legally privileged. It is for the intended recipient(s) named above only. Any unauthorized review, printi...
2006 Aug 18
2
subdomains with Rails
Hi. I want to add subdomains like this: Example: http://shirts.myshopify.com , http://computers.myshopify.com Is it something you can do while still in development mode or do you wait until you deploy and configure the subdomain names with your host somehow? Can you help direct me in the right way to do this? -- Posted via http://www.ruby-forum.com/.
2002 Nov 20
1
Failed to build - MJS
...at work/roottree/././sbin it's a link (failed flashing red) to usr/root/sbin I've tried redownloading ISO, recreating the CD, and even mounting the ISO to a loop file system as the source of the cp... no such luck, exact same failure... any suggestions? Thanks for any help, Michael J. Slattery ______________________________________________________________________ IMPORTANT NOTICE: The information in this email is confidential and proprietary to NexPress Solutions LLC and may be legally privileged. It is for the intended recipient(s) named above only. Any unauthorized review, printin...
2012 Aug 10
1
button_to with image
...it button just fine. But what I''d really like is <input type="img" src="myimage.png" .....> instead of <input type="submit...> button_to doesn''t seem able to do this, :type and :src parameters get ignored. Is there a way to do it? -- Tim Slattery Slattery_T-R43zzhgHTig@public.gmane.org -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send...
2006 Aug 16
4
Overwrite form helper methods and call old ones in new ones?
Hi all All my forms should look the same, so I think always putting the right div etc. tags around them is a violation of the DRY principle. Until now my forms look like that: <div class="text_field"> <label for="news_item_subject">Subject:</label> <%= text_field "news_item", "subject" %> </div> Now I want the default
2006 Aug 16
14
Migrations: only one table per migration file?
Hi all I have a new migration file created that adds some tables and fills one with some data: create_table :sound_styles do |t| t.column :name, :string, :null => false end create_table :show_types do |t| t.column :name, :string, :null => false end create_table :countries do |t| t.column :name, :string, :null => false end ActionView::Helpers::FormOptionsHelper::COUNTRIES.each