|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/FusionChart/Code/RoR/SampleApp/doc/app/classes/XmlHelper.src/ |
Upload File : |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>escape_double_quotes (XmlHelper)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body class="standalone-code">
<pre><span class="ruby-comment cmt"># File lib/xml_helper.rb, line 20</span>
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">escape_double_quotes</span>(<span class="ruby-identifier">str_to_escape</span>)
<span class="ruby-comment cmt"># Hash containing the required conversion</span>
<span class="ruby-identifier">conversions</span> = {
<span class="ruby-regexp re">%r{"}</span>=<span class="ruby-operator">></span><span class="ruby-value str">'&quot;'</span>
}
<span class="ruby-identifier">escaped_str</span> = <span class="ruby-identifier">str_to_escape</span>
<span class="ruby-identifier">conversions</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">x</span>,<span class="ruby-identifier">y</span><span class="ruby-operator">|</span>
<span class="ruby-identifier">escaped_str</span> = <span class="ruby-identifier">escaped_str</span>.<span class="ruby-identifier">gsub</span>(<span class="ruby-identifier">x</span>,<span class="ruby-identifier">y</span>)
<span class="ruby-keyword kw">end</span>
<span class="ruby-keyword kw">return</span> <span class="ruby-identifier">escaped_str</span>
<span class="ruby-keyword kw">end</span></pre>
</body>
</html>