[TEP-COMMIT] [CVS admin] replace calls to bindRaw with bindTable

hpdl-OfajU3CKLf1/[email protected] 28 Oct 2004 13:46:47 -0000
Newsgroups gmane.comp.web.oscommerce.cvs
Message-ID <[email protected]>
<html>
<head>
<style><!--
  body {background-color:#ffffff;}
  .file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
  .pathname {font-family:monospace; float:right;}
  .fileheader {margin-bottom:.5em;}
  .diff {margin:0;}
  .tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
  .tasklist ul {margin-top:0;margin-bottom:0;}
  tr.alt {background-color:#eeeeee}
  #added {background-color:#ddffdd;}
  #addedchars {background-color:#99ff99;font-weight:bolder;}
  tr.alt #added {background-color:#ccf7cc;}
  #removed {background-color:#ffdddd;}
  #removedchars {background-color:#ff9999;font-weight:bolder;}
  tr.alt #removed {background-color:#f7cccc;}
  #info {color:#888888;}
  #context {background-color:#eeeeee;}
  td {padding-left:.3em;padding-right:.3em;}
  tr.head {border-bottom-width:1px;border-bottom-style:solid;}
  tr.head td {padding:0;padding-top:.2em;}
  .task {background-color:#ffff00;}
  .comment {padding:4px;border:1px dashed #000000;background-color:#ffffdd}
  .error {color:red;}
  hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="4">Commit in <b><tt>admin/admin</tt></b><span id="info"> on MAIN</span></td></tr>
<tr><td><tt><a href="#file1">credit_cards.php</a></tt></td><td align="right" id="added">+1</td><td align="right" id="removed">-1</td><td nowrap="nowrap" align="center"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/credit_cards.php?rev=1.2&amp;content-type=text/vnd.viewcvs-markup">1.2</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/credit_cards.php.diff?r1=1.2&amp;r2=1.3">-&gt;</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/credit_cards.php?rev=1.3&amp;content-type=text/vnd.viewcvs-markup">1.3</a></td></tr>
<tr class="alt"><td><tt><a href="#file2">customers.php</a></tt></td><td align="right" id="added">+1</td><td align="right" id="removed">-1</td><td nowrap="nowrap" align="center"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/customers.php?rev=1.88&amp;content-type=text/vnd.viewcvs-markup">1.88</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/customers.php.diff?r1=1.88&amp;r2=1.89">-&gt;</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/customers.php?rev=1.89&amp;content-type=text/vnd.viewcvs-markup">1.89</a></td></tr>
<tr><td><tt>includes/<a href="#file3">application_top.php</a></tt></td><td align="right" id="added">+1</td><td align="right" id="removed">-1</td><td nowrap="nowrap" align="center"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes/application_top.php?rev=1.174&amp;content-type=text/vnd.viewcvs-markup">1.174</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes/application_top.php.diff?r1=1.174&amp;r2=1.175">-&gt;</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes/application_top.php?rev=1.175&amp;content-type=text/vnd.viewcvs-markup">1.175</a></td></tr>
<tr><td></td><td align="right" id="added">+3</td><td align="right" id="removed">-3</td><td></td></tr>
</table>
<small id="info">3 modified files</small><br />
<pre class="comment">
replace calls to bindRaw with bindTable
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin">admin</a>/<a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin">admin</a><br /></span>
<div class="fileheader"><big><b>credit_cards.php</b></big> <small id="info"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/credit_cards.php?rev=1.2&amp;content-type=text/vnd.viewcvs-markup">1.2</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/credit_cards.php.diff?r1=1.2&amp;r2=1.3">-&gt;</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/credit_cards.php?rev=1.3&amp;content-type=text/vnd.viewcvs-markup">1.3</a></small></div>
<pre class="diff"><small id="info">diff -u -r1.2 -r1.3
--- credit_cards.php	2004/07/22 23:27:42	1.2
+++ credit_cards.php	2004/10/28 13:46:40	1.3
@@ -70,7 +70,7 @@
</small></pre><pre class="diff" id="context">       case 'deleteconfirm':
         if (isset($_GET['ccID']) &amp;&amp; is_numeric($_GET['ccID'])) {
           $Qdel = $osC_Database-&gt;query('delete from :table_credit_cards where credit_card_id = :credit_card_id');
</pre><pre class="diff" id="removed">-          $Qdel-&gt;bind<span id="removedchars">Raw</span>(':table_credit_cards', TABLE_CREDIT_CARDS);
</pre><pre class="diff" id="added">+          $Qdel-&gt;bind<span id="addedchars">Table</span>(':table_credit_cards', TABLE_CREDIT_CARDS);
</pre><pre class="diff" id="context">           $Qdel-&gt;bindInt(':credit_card_id', $_GET['ccID']);
           $Qdel-&gt;execute();
 
</pre></div>
<hr /><a name="file2" /><div class="file">
<span class="pathname"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin">admin</a>/<a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin">admin</a><br /></span>
<div class="fileheader"><big><b>customers.php</b></big> <small id="info"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/customers.php?rev=1.88&amp;content-type=text/vnd.viewcvs-markup">1.88</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/customers.php.diff?r1=1.88&amp;r2=1.89">-&gt;</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/customers.php?rev=1.89&amp;content-type=text/vnd.viewcvs-markup">1.89</a></small></div>
<pre class="diff"><small id="info">diff -u -r1.88 -r1.89
--- customers.php	2004/08/17 23:49:00	1.88
+++ customers.php	2004/10/28 13:46:41	1.89
@@ -238,7 +238,7 @@
</small></pre><pre class="diff" id="context">                 $customer_id = $osC_Database-&gt;nextID();
 
                 $Qinfo = $osC_Database-&gt;query('insert into :table_customers_info (customers_info_id, customers_info_number_of_logons, customers_info_date_account_created) values (:customers_info_id, 0, now())');
</pre><pre class="diff" id="removed">-                $Qinfo-&gt;bind<span id="removedchars">Raw</span>(':table_customers_info', TABLE_CUSTOMERS_INFO);
</pre><pre class="diff" id="added">+                $Qinfo-&gt;bind<span id="addedchars">Table</span>(':table_customers_info', TABLE_CUSTOMERS_INFO);
</pre><pre class="diff" id="context">                 $Qinfo-&gt;bindInt(':customers_info_id', $customer_id);
                 $Qinfo-&gt;execute();
 
</pre></div>
<hr /><a name="file3" /><div class="file">
<span class="pathname"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin">admin</a>/<a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin">admin</a>/<a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes">includes</a><br /></span>
<div class="fileheader"><big><b>application_top.php</b></big> <small id="info"><a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes/application_top.php?rev=1.174&amp;content-type=text/vnd.viewcvs-markup">1.174</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes/application_top.php.diff?r1=1.174&amp;r2=1.175">-&gt;</a> <a href="http://cvs.oscommerce.com/viewcvs.cgi/admin/admin/includes/application_top.php?rev=1.175&amp;content-type=text/vnd.viewcvs-markup">1.175</a></small></div>
<pre class="diff"><small id="info">diff -u -r1.174 -r1.175
--- application_top.php	2004/10/28 12:59:50	1.174
+++ application_top.php	2004/10/28 13:46:44	1.175
@@ -61,7 +61,7 @@
</small></pre><pre class="diff" id="context"> 
 // set application wide parameters
   $Qcfg = $osC_Database-&gt;query('select configuration_key as cfgKey, configuration_value as cfgValue from :table_configuration');
</pre><pre class="diff" id="removed">-  $Qcfg-&gt;bind<span id="removedchars">Raw</span>(':table_configuration', TABLE_CONFIGURATION);
</pre><pre class="diff" id="added">+  $Qcfg-&gt;bind<span id="addedchars">Table</span>(':table_configuration', TABLE_CONFIGURATION);
</pre><pre class="diff" id="context">   $Qcfg-&gt;setCache('configuration');
   $Qcfg-&gt;execute();
 
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -&gt; email">CVSspam</a> 0.2.9</small></center>
</body></html>


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click