search for: slatteri

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

Did you mean: slattery
2014 Sep 02
0
CentOS-docs Digest, Vol 94, Issue 1
Thanks, I can edit the requested pages. However I can't create a personal home page, I get the error "You are not allowed to edit this page" when I click on the "Create my home page now!" link. > On Sep 2, 2014, at 8:00 AM, centos-docs-request at centos.org wrote: > > Send CentOS-docs mailing list submissions to > centos-docs at centos.org > > To
2014 Sep 01
1
Wiki write access request
Hi, I'd like write access to the wiki - initially to just the following pages: http://wiki.centos.org/Cloud/Docker ? Add how-to build the Docker base images yourself. (There are cases -such as an isolated private cloud- where this may be necessary) http://wiki.centos.org/HowTos/Subversion ? Refresh for CentOS 7 / SVN 1.8 / Add AD integration how-to I would also like to have the rights to
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
Okay.. I'm pulling out my hair, not having much luck trying to get ISOLinux (syslinux) running on my IBM x345 Server... I want to put my boot (syslinux) and root files (lib etc for modules) on the CDROM and just boot off of it to use PartImage... Not having much luck though.. For testing purposes I'm using the boot floopy I created using "The Linux Bootdisk HOWTO" and it
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
For some reason when I try : cp -a /mnt/cdrom/. . for usr i get a significant number of input / output errors reported. (yes my cd is mounted at /mnt/cdrom) cp: reading '/mnt/cdrom/./bin/perl5.6.0': Input/output error lots of these ... Then when I try to build it fails at: cp -a root/. work/roottree/. in the make file (Generarate root tree) with
2012 Aug 10
1
button_to with image
I''m calling button_to in my page, and it renders a form with a submit 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
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