search for: ampersands

Displaying 20 results from an estimated 124 matches for "ampersands".

Did you mean: ampersand
2006 Aug 10
5
Ampersand Heartburn
Greetings all. I''m using the Microsoft "NorthWind Traders" database "orders" table as test data for the Rico LiveGrid JavaScript. The problem I''m noticing is that some of the records in the "ShipName" field contain ampersands -- which for some reason are not being escaped by Rails. Rails does in fact automatically escape all of the other characters like apostrophes'' that might otherwise cause problems. However it returns ampersands as ampersands with no escape character or other modification and this of c...
2011 Mar 12
2
two bugs in rsync 3.0.6 - ampersands in filenames, double quoting required
1) deleting path/to/(Something) Word Word Anotherword--Word Word.pdf IO error encountered -- skipping file deletion I think either the -- is causing it to fail, or more likely, the next filename, which it didn't bother to print out, which has an ampersand in the name, causes it to fail. I am using SSH as a substrate, of course, and I think you guys failed to escape things, so the ampersand
2007 Jan 03
1
Ampersand in Folder names causing folders to disappear?
Hi All, Dovecot 1.0.rc7 Not sure if this is a problem with Outlook, or with Dovecot, or to do with encoding in Linux. Whenever a user enters an ampersand into an IMAP folder name, it dissapears from outlook. These folders appear on the ext3 filesystem as &- for example drwx------ 5 mailusers mailusers 4096 2006-10-10 17:54 .INBOX.Networks.London Networks.NDCs.WH&-P joint working
2010 Feb 22
3
Rails 2.3.5/Ruby1.8.7 Collection_Select Labels with ampersands "&"
I am having an annoying problem displaying the labels of a select box correctly where there is an ampersand contained within the label string. On a form being rendered with the form_for helper the collection_select reads data from a Mysql 5.075 database the text stored in the database is "Surabaya & Surrounding Areas" when rendered and displayed in firefox 3.6 or safari is is
2010 Dec 31
1
Ampersand (&) in filename
Wine has been working great on my Mac, but when I tried to start Black & White after installing, I can't get it open because the filename is literally "Black & White". Does anyone know what to do about the ampersand in Terminal? Or is there another way to start installed programs in Wine that I'm missing other than through Terminal? Thanks!
2005 Sep 30
1
Ampersand in Auto Complete Entry Broken
Hi, I have been playing around with the autocomplete field in Rails 0.13. I have noticed that if I have an ampersand in the value such as "A&E", if I click on the entry in the autocomplete list, I am left with just A in the text box. I have narrowed it down to: String.unescapeHtml() in prototype.js as what strips the & and what follows it from the value. It strips it
2009 Apr 01
1
ampersand in local-part
I have a new email server (postfix/dovecot/mysql) with accounts migrated from another server (different platform) and email addresses with ampersands like "r&d at domain.com" that worked on my old email server are not working now. I'd like some help tracking this issue down. Can anyone tell me if this looks like a postfix, dovecot or mysql issue? Some log info follows. For brevity I'm just posting this log snip as I&...
2007 Mar 21
0
[908] branches/wxruby2/wxwidgets_282/doc/textile/control.txtl: Add note on use of ampersand characters in Wx::Control labels
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2007 Feb 06
3
Form won't accept ampersand
Hi guys, My start_form_tag generated form will not accept a text field containing an ampersand. For example, the text ''A & B'' is trunacted to ''A'' in the param hash. I know ampersands have to be encoded in URLs, but I''m surprised my form has a problem with this. I''ve tested this in Safari and Firefox. thanks Lindsay -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subsc...
2006 Jun 16
0
Double encoded ampersands in form actions
...ate_preset'', :id => @preset, :popup => params[:popup], :editor => params[:editor] %> which I want to be rendered something like: <form action="/admin/documents/update_preset/?editor=1&amp;popup=1" method="post"> but instead I get double encoded ampersands in the url: <form action="/admin/documents/update_preset/?editor=1&amp;amp;popup=1" method="post"> This only seems to be a problem with the url_for_options within form tags. Any suggestions? -- Posted via http://www.ruby-forum.com/.
2009 Aug 05
0
xend -x ampersand''s
Does anyone know if the -x option including ampersands issue has been fixed? I found references to the bug with virt-install from rhel, but I can''t locate anywhere that a bug was recognized with xend and corrected. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/...
2006 Jun 06
1
Ampersand Crashes Ruby
I''m using acts_as_ferret and when I call Object.find_by_contents("A & B"), Ruby dies with the following message: ^Cruby(5014,0xa000cf60) malloc: *** vm_allocate(size=1069056) failed (error code=3) ruby(5014,0xa000cf60) malloc: *** error: can''t allocate region ruby(5014,0xa000cf60) malloc: *** set a breakpoint in szone_error to debug ruby(5014,0xa000cf60) malloc:
2007 Aug 26
0
escaped ampersand in generated restful url
I am using a restful helper method to build a url for use in a link_to_remote method and for some reason the generated url has the ampersand that separates the parameters escaped (i.e. /action?param1=1&amp;param2=2 instead of /action?param1=1&param2=2) Any ideas why and how to make it stop? :-) The code in question resides in a helper, if that matters... Cheers, s0nspark -- Posted via
2018 Jan 08
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
When we discussed this our line of thought was like this: - LLVM IR already uses %name for SSA values which is closer to what a vreg is than to what a physreg is. It would be neat to draw that parallel to llvm IR. - We wanted another sigil for physregs so they are easy to differentiate from vregs to allow people to differentiate vregs/physregs even if they don't know all the physreg names of
2010 Jun 13
2
Rails 3, ActionMailer and urls (ampersand encoding)
In Rails 2, if I used an url in a plain text message it was sent as is, but it seems to be changed in Rails 3. The url http://ab.cd/ef?g=1&h=2 seems to be now translated to http://ab.cd/ef?g=1&amp;h=2 even if the message is plain text. Is it correct? I''ve written my tests previously considering it should not be encoded in plain text messages and these tests are failing when
2009 Aug 26
0
Way to keep ampersand from getting sanitized?
I have an error message with an html character entity in it ( &micro;/ &#181; ). My trouble is, rails swaps my & with &amp; - leaving me with &micro; getting shown literally in the message rather than a nice, neat Greek mu: μ. I should probably add that the error message is set in a validate routine on a model - via errors.add() - not in view code. Is there a trick to this? I
2010 Dec 31
1
Parsing params (one of the params value has ampersand)
Hello, I am trying to parse a URL of this format http://example.com/links?deal_id=161&url=http://another_example.com/index.php?route=product/product&product_id=275 I need to get 2 params deal_id and url However, in the above example, if I do params[:url], then I get "http://another_example.com/index.php?route=product/product" product_id=275 is dropped on the floor as its
2006 Apr 11
26
Firefox won''t let me send ''&'' with AJAX!
...the information contains an ampersand (''&''). In essence, request is never completed. The odd thing is that it only happens with Firefox (IE and Opera works fine). This means that I''m unable to pass along html entities, since they all, conveniently enough, contains ampersands. I can''t replace the ampersand with the html entitiy for it, either, since that would also contain an ampersand. Being Swedish, I''m kinda screwed if I can''t use &aring;, &auml; and &ouml; on my website. Replacing them with the letter without using entities...
2002 Sep 20
3
"@" doesn't work in the NT domain name
...ication attempts to fail. Since we are migrating to this domain, all of our samba servers will NOT function for users connecting from the AD domains due to the domain-name mangling. I was told this was done as part of a security audit to the samba code, but it breaks compatibility in a major way. Ampersands are VALID in a netbios domain name, just not in a machine name (AFAIK), but samba doesn't comply in this regard. Since changing the netbios domain names of our win2k domains is not possible, I need a fix ASAP. Any suggestions? "This e-mail message is intended only for the use of the na...
2006 Jul 25
9
Can anyone explain this code? It uses Inject
def webs @webs ||= Web.find(:all).inject({}) { |webs, web| webs.merge(web.address => web) } end -- Posted via http://www.ruby-forum.com/.