<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Qcodo.com RSS Feed</title>
	<link>http://www.qcodo.com/</link>
	<description>The Qcodo Development Framework is an open-source PHP framework that focuses on freeing developers from unnecessary tedious, mundane coding.  This RSS feed reports on the most recent activity, posts and community contributions to the framework via the Qcodo.com website.</description>
	<pubDate>Thu, 02 Sep 2010 09:56:05 PDT</pubDate>
	<generator>Qcodo Development Framework 0.4.16</generator>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<image>
		<url>http://www.qcodo.com/images/qcodo_smaller.png</url>
		<title>Qcodo.com RSS Feed</title>
		<link>http://www.qcodo.com/</link>
		<width>200</width>
		<height>84</height>
	</image>
	<item>
		<title>[Forums] Re: Qcodo 0.4.17 Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</link>
		<description><![CDATA[<p>Great!</p>

<p>Thank you Marcos Sánchez for added properties. Work like a charm in Netbeans 6.9.1 =)</p>

<p>Attila</p>

]]></description>
		<author>Gaspar Attila</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4249/lastpage#5</guid>
		<pubDate>Thu, 02 Sep 2010 05:47:58 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Qcodo 0.4.17 Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</link>
		<description><![CDATA[<p>Great stuff! Thanks. :)</p>

]]></description>
		<author>tronics</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4249/lastpage#4</guid>
		<pubDate>Tue, 31 Aug 2010 21:14:27 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QCalendar shows incorrect selected date when use Translate to true</title>
		<link>http://www.qcodo.com/issues/view.php/73/lastpage</link>
		<description><![CDATA[<p>this is the way how i fix it:</p>

<pre ><code><span style="color: #000000">objControl.setDate&nbsp;=&nbsp;function(intYear,&nbsp;intMonth,&nbsp;intDay)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(qcodo.dateTimeTranslated)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;intMonth++;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(intMonth&nbsp;&lt;&nbsp;10)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;intMonth&nbsp;=&nbsp;"0"&nbsp;+&nbsp;intMonth;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(intDay&nbsp;&lt;&nbsp;10)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;intDay&nbsp;=&nbsp;"0"+intDay;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.dateTimeTextBox.value&nbsp;=&nbsp;intYear&nbsp;+&nbsp;"-"&nbsp;+&nbsp;intMonth&nbsp;+&nbsp;"-"&nbsp;+&nbsp;intDay;<br />&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.dateTimeTextBox.value&nbsp;=&nbsp;qcodo.monthNamesAbbreviated[intMonth]&nbsp;+&nbsp;"&nbsp;"&nbsp;+&nbsp;intDay&nbsp;+&nbsp;"&nbsp;"&nbsp;+&nbsp;intYear;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.hideCalendar();<br />&nbsp;&nbsp;&nbsp;&nbsp;};<br /><br /><br />objControl.drawCalendar&nbsp;=&nbsp;function(intYear,&nbsp;intMonth)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;Get&nbsp;the&nbsp;"selected"&nbsp;date&nbsp;and&nbsp;the&nbsp;"current"&nbsp;date<br />&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;dttSelected;<br />&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(this.dateTimeTextBox.value){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(qcodo.dateTimeTranslated)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;strDateSelected&nbsp;=&nbsp;this.dateTimeTextBox.value;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dttSelected&nbsp;=&nbsp;new&nbsp;Date();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dttSelected.setFullYear(strDateSelected.substr(0,4),(new&nbsp;Number(strDateSelected.substr(5,2)))-1,strDateSelected.substr(8,2));<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;dttSelected&nbsp;=&nbsp;new&nbsp;Date(this.dateTimeTextBox.value);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;var&nbsp;dttToday&nbsp;=&nbsp;new&nbsp;Date();<br />...<br />.bc<br /></span></code></pre>

]]></description>
		<author>apselico</author>
		<comments>http://www.qcodo.com/issues/view.php/73/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/73/lastpage#3</guid>
		<pubDate>Tue, 31 Aug 2010 11:34:58 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QCalendar shows incorrect selected date when use Translate to true</title>
		<link>http://www.qcodo.com/issues/view.php/73/lastpage</link>
		<description><![CDATA[<p>apselico made content edits to the issue</p>

]]></description>
		<author>Qcodo System Message</author>
		<comments>http://www.qcodo.com/issues/view.php/73/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/73/lastpage#2</guid>
		<pubDate>Tue, 31 Aug 2010 11:27:49 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QCalendar shows incorrect selected date when use Translate to true</title>
		<link>http://www.qcodo.com/issues/view.php/73/lastpage</link>
		<description><![CDATA[<p>I im using the folowing autoincludes:<br/>
QApplication::InitializeI18n();<br/>
QDateTime::$Translate = true;</p>

<p>in my configuration.inc.php :<br/>
date_default_timezone_set('America/Lima');</p>

<p>and in QApplication class:<br/>
QApplication::$CountryCode = 'es';<br/>
QApplication::$LanguageCode = 'es';<br/>
QI18n::Initialize();</p>

<p>When i select a date like 2010-10-09 and i try to change date then the calendar shows 2010-10-08, the bug is located in calendar.js file.</p>

]]></description>
		<author>apselico</author>
		<comments>http://www.qcodo.com/issues/view.php/73/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/73/lastpage#1</guid>
		<pubDate>Tue, 31 Aug 2010 10:46:15 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QSoapService use deprecated way of passing arguments</title>
		<link>http://www.qcodo.com/issues/view.php/70/lastpage</link>
		<description><![CDATA[<p>This is the table:</p>

<p>CREATE TABLE `venta` (<br/>
 `codigo` int(11) NOT NULL auto_increment,<br/>
 `fecha` date NOT NULL,<br/>
 `cliente` int(11) NOT NULL,<br/>
 `observacion` text NOT NULL,<br/>
 `estado` char(1) NOT NULL,<br/>
 PRIMARY KEY &nbsp;(`codigo`)<br/>
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;</p>

<p>I have tested the example with the last release of qcodo(0.4.17), I have a class like this:<br/>
bc.<br/>
&lt;?php<br/>
include_once &ldquo;../includes/prepend.inc.php&rdquo;;</p>

<p>class Servicio extends QSoapService{<br/>
 &nbsp; /**<br/>
 &nbsp; &nbsp;* servicio encargado de mostrar ventas<br/>
 &nbsp; &nbsp;* @param int $intVenta<br/>
 &nbsp; &nbsp;* &nbsp;@return Venta<br/>
 &nbsp; &nbsp;*/<br/>
 &nbsp; public function getVenta($intVenta){<br/>
 &nbsp; &nbsp; &nbsp; $objVenta = Venta::Load($intVenta);<br/>
 &nbsp; &nbsp; &nbsp; return $objVenta;<br/>
 &nbsp; }<br/>
}<br/>
Servicio::Run(&ldquo;Servicio&rdquo;);<br/>
?&gt;<br/>
.bc</p>

<p>In linux Ubuntu 10.04 ( php 5.3.2 ) If I keep the &amp; symbol in line 43 of QSoapService class and i have the php.ini with allow_call_time_pass_reference=On, i get this CORRECT wsdl:</p>

<p>&lt;?xml version=&ldquo;1.0&rdquo; encoding=&ldquo;UTF-8&rdquo; ?&gt;<br/>
&lt;definitions name=&ldquo;Servicio&rdquo; targetNamespace=&ldquo;http://qcodo.defaultnamespace.com&rdquo;&gt;<br/>
&lt;service name=&ldquo;Servicio&rdquo;&gt;<br/>
&lt;documentation/&gt;<br/>
&lt;port name=&ldquo;Port&rdquo; binding=&ldquo;tns:Binding&rdquo;&gt;<br/>
&lt;soap:address location=&ldquo;http://localhost/~jorge/qcodo-0.4.17/www/servicio.php&rdquo;/&gt;<br/>
&lt;/port&gt;<br/>
&lt;/service&gt;<br/>
&lt;binding name=&ldquo;Binding&rdquo; type=&ldquo;tns:PortType&rdquo;&gt;<br/>
&lt;soap:binding transport=&ldquo;http://schemas.xmlsoap.org/soap/http&rdquo; style=&ldquo;rpc&rdquo;/&gt;<br/>
&lt;operation name=&ldquo;getVenta&rdquo;&gt;<br/>
&lt;soap:operation soapAction=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo;/&gt;<br/>
&lt;input&gt;<br/>
&lt;soap:body use=&ldquo;encoded&rdquo; namespace=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; encodingStyle=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo;/&gt;<br/>
&lt;/input&gt;<br/>
&lt;output&gt;<br/>
&lt;soap:body use=&ldquo;encoded&rdquo; namespace=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; encodingStyle=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo;/&gt;<br/>
&lt;/output&gt;<br/>
&lt;/operation&gt;<br/>
&lt;/binding&gt;<br/>
&lt;portType name=&ldquo;PortType&rdquo;&gt;<br/>
&lt;operation name=&ldquo;getVenta&rdquo;&gt;<br/>
&lt;input message=&ldquo;tns:getVentaRequest&rdquo;/&gt;<br/>
&lt;output message=&ldquo;tns:getVentaResponse&rdquo;/&gt;<br/>
&lt;/operation&gt;<br/>
&lt;/portType&gt;<br/>
&lt;message name=&ldquo;getVentaRequest&rdquo;&gt;<br/>
&lt;part name=&ldquo;intVenta&rdquo; type=&ldquo;xsd:int&rdquo;/&gt;<br/>
&lt;/message&gt;<br/>
&lt;message name=&ldquo;getVentaResponse&rdquo;&gt;<br/>
&lt;part name=&ldquo;getVentaResult&rdquo; type=&ldquo;xsd1:Venta&rdquo;/&gt;<br/>
&lt;/message&gt;<br/>
&lt;types&gt;<br/>
&lt;schema targetNamespace=&ldquo;http://qcodo.defaultnamespace.com&rdquo;&gt;<br/>
&lt;complexType name=&ldquo;Venta&rdquo;&gt;<br/>
&lt;sequence&gt;<br/>
&lt;element name=&ldquo;Codigo&rdquo; type=&ldquo;xsd:int&rdquo;/&gt;<br/>
&lt;element name=&ldquo;Fecha&rdquo; type=&ldquo;xsd:dateTime&rdquo;/&gt;<br/>
&lt;element name=&ldquo;Cliente&rdquo; type=&ldquo;xsd:int&rdquo;/&gt;<br/>
&lt;element name=&ldquo;Observacion&rdquo; type=&ldquo;xsd:string&rdquo;/&gt;<br/>
&lt;element name=&ldquo;Estado&rdquo; type=&ldquo;xsd:string&rdquo;/&gt;<br/>
&lt;element name=&ldquo;__blnRestored&rdquo; type=&ldquo;xsd:boolean&rdquo;/&gt;<br/>
&lt;/sequence&gt;<br/>
&lt;/complexType&gt;<br/>
&lt;/schema&gt;<br/>
&lt;/types&gt;<br/>
&lt;/definitions&gt;</p>

<p>If i delete the &amp; symbol on QSoapService class and keep php.ini with allow_call_time_pass_reference=On<br/>
In windows 7 (php 5.2.6 - appserv 5.2.10) this is the wsdl generated:</p>

<p>&lt;?xml version=&ldquo;1.0&rdquo; encoding=&ldquo;UTF-8&rdquo; ?&gt;<br/>
&lt;definitions name=&ldquo;Servicio&rdquo; targetNamespace=&ldquo;http://qcodo.defaultnamespace.com&rdquo; xmlns=&ldquo;http://schemas.xmlsoap.org/wsdl/&rdquo; xmlns:soap=&ldquo;http://schemas.xmlsoap.org/wsdl/soap/&rdquo; xmlns:tns=&ldquo;http://qcodo.defaultnamespace.com&rdquo; xmlns:xsd=&ldquo;http://www.w3.org/2001/XMLSchema&rdquo; xmlns:xsd1=&ldquo;http://qcodo.defaultnamespace.com&rdquo;&gt;<br/>
&lt;service name=&ldquo;Servicio&rdquo;&gt;<br/>
&lt;documentation /&gt;<br/>
&lt;port name=&ldquo;Port&rdquo; binding=&ldquo;tns:Binding&rdquo;&gt;<br/>
&lt;soap:address location=&ldquo;http://localhost/qcodo-0.4.17/www/servicio.php&rdquo; /&gt;<br/>
&lt;/port&gt;<br/>
&lt;/service&gt;<br/>
&lt;binding name=&ldquo;Binding&rdquo; type=&ldquo;tns:PortType&rdquo;&gt;<br/>
&lt;soap:binding transport=&ldquo;http://schemas.xmlsoap.org/soap/http&rdquo; style=&ldquo;rpc&rdquo; /&gt;<br/>
&lt;operation name=&ldquo;getVenta&rdquo;&gt;<br/>
&lt;soap:operation soapAction=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; /&gt;<br/>
&lt;input&gt;<br/>
&lt;soap:body use=&ldquo;encoded&rdquo; namespace=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; encodingStyle=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo; /&gt;<br/>
&lt;/input&gt;<br/>
&lt;output&gt;<br/>
&lt;soap:body use=&ldquo;encoded&rdquo; namespace=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; encodingStyle=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo; /&gt;<br/>
&lt;/output&gt;<br/>
&lt;/operation&gt;<br/>
&lt;/binding&gt;<br/>
&lt;portType name=&ldquo;PortType&rdquo;&gt;<br/>
&lt;operation name=&ldquo;getVenta&rdquo;&gt;<br/>
&lt;input message=&ldquo;tns:getVentaRequest&rdquo; /&gt;<br/>
&lt;output message=&ldquo;tns:getVentaResponse&rdquo; /&gt;<br/>
&lt;/operation&gt;<br/>
&lt;/portType&gt;<br/>
&lt;message name=&ldquo;getVentaRequest&rdquo;&gt;<br/>
&lt;part name=&ldquo;intVenta&rdquo; type=&ldquo;xsd:int&rdquo; /&gt;<br/>
&lt;/message&gt;<br/>
&lt;message name=&ldquo;getVentaResponse&rdquo;&gt;<br/>
&lt;part name=&ldquo;getVentaResult&rdquo; type=&ldquo;xsd1:Venta&rdquo; /&gt;<br/>
&lt;/message&gt;<br/>
&lt;types&gt;<br/>
&lt;schema xmlns=&ldquo;http://www.w3.org/2001/XMLSchema&rdquo; targetNamespace=&ldquo;http://qcodo.defaultnamespace.com&rdquo; xmlns:wsdl=&ldquo;http://schemas.xmlsoap.org/wsdl/&rdquo; xmlns:soapenc=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo; /&gt;<br/>
 &lt;/types&gt;<br/>
&lt;/definitions&gt;</p>

<br/>
<p>and in linux ubuntu 10.04 (php 5.3.2, i have tried with another linux also) without &amp; symbol but with allow_call_time_pass_reference=On the same example generates this WSDL:</p>

<p>&lt;?xml version=&ldquo;1.0&rdquo; encoding=&ldquo;UTF-8&rdquo;?&gt;<br/>
&lt;definitions name=&ldquo;Servicio&rdquo; targetNamespace=&ldquo;http://qcodo.defaultnamespace.com&rdquo; xmlns=&ldquo;http://schemas.xmlsoap.org/wsdl/&rdquo; xmlns:soap=&ldquo;http://schemas.xmlsoap.org/wsdl/soap/&rdquo; xmlns:tns=&ldquo;http://qcodo.defaultnamespace.com&rdquo; xmlns:xsd=&ldquo;http://www.w3.org/2001/XMLSchema&rdquo; xmlns:xsd1=&ldquo;http://qcodo.defaultnamespace.com&rdquo;&gt;<br/>
&lt;service name=&ldquo;Servicio&rdquo;&gt;<br/>
&lt;documentation/&gt;<br/>
&lt;port name=&ldquo;Port&rdquo; binding=&ldquo;tns:Binding&rdquo;&gt;<br/>
&lt;soap:address location=&ldquo;http://localhost/~jorge/qcodo-0.4.17/www/servicio.php&rdquo;/&gt;<br/>
&lt;/port&gt;<br/>
&lt;/service&gt;<br/>
&lt;binding name=&ldquo;Binding&rdquo; type=&ldquo;tns:PortType&rdquo;&gt;<br/>
&lt;soap:binding transport=&ldquo;http://schemas.xmlsoap.org/soap/http&rdquo; style=&ldquo;rpc&rdquo;/&gt;<br/>
&lt;operation name=&ldquo;getVenta&rdquo;&gt;<br/>
&lt;soap:operation soapAction=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo;/&gt;<br/>
&lt;input&gt;<br/>
&lt;soap:body use=&ldquo;encoded&rdquo; namespace=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; encodingStyle=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo;/&gt;<br/>
&lt;/input&gt;<br/>
&lt;output&gt;<br/>
&lt;soap:body use=&ldquo;encoded&rdquo; namespace=&ldquo;http://qcodo.defaultnamespace.com/getVenta&rdquo; encodingStyle=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo;/&gt;<br/>
&lt;/output&gt;<br/>
&lt;/operation&gt;<br/>
&lt;/binding&gt;<br/>
&lt;portType name=&ldquo;PortType&rdquo;&gt;<br/>
&lt;operation name=&ldquo;getVenta&rdquo;&gt;<br/>
&lt;input message=&ldquo;tns:getVentaRequest&rdquo;/&gt;<br/>
&lt;output message=&ldquo;tns:getVentaResponse&rdquo;/&gt;&lt;/operation&gt;<br/>
&lt;/portType&gt;<br/>
&lt;message name=&ldquo;getVentaRequest&rdquo;&gt;&lt;part name=&ldquo;intVenta&rdquo; type=&ldquo;xsd:int&rdquo;/&gt;&lt;/message&gt;<br/>
&lt;message name=&ldquo;getVentaResponse&rdquo;&gt;&lt;part name=&ldquo;getVentaResult&rdquo; type=&ldquo;xsd1:Venta&rdquo;/&gt;&lt;/message&gt;<br/>
&lt;types&gt;<br/>
&lt;schema xmlns=&ldquo;http://www.w3.org/2001/XMLSchema&rdquo; targetNamespace=&ldquo;http://qcodo.defaultnamespace.com&rdquo; xmlns:wsdl=&ldquo;http://schemas.xmlsoap.org/wsdl/&rdquo; xmlns:soapenc=&ldquo;http://schemas.xmlsoap.org/soap/encoding/&rdquo;&gt;<br/>
&lt;/schema&gt;<br/>
&lt;/types&gt;<br/>
&lt;/definitions&gt;</p>

]]></description>
		<author>apselico</author>
		<comments>http://www.qcodo.com/issues/view.php/70/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/70/lastpage#5</guid>
		<pubDate>Sun, 29 Aug 2010 08:52:40 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Qcodo 0.4.17 Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</link>
		<description><![CDATA[<p>Great Job, was just messing around with some date time internationalisation stuff so looking forward to looking at the changes in that regard :)</p>

]]></description>
		<author>Mischa Kroon</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4249/lastpage#3</guid>
		<pubDate>Sun, 29 Aug 2010 06:12:35 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Qcodo 0.4.17 Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</link>
		<description><![CDATA[<p>One quick note -- when using Qcodo Updater to update your Qcodo release to 0.4.17, please note that <strong>includes/qcodo/_core/qform/QDateTimePicker.class.php</strong> is now obsolete. &nbsp;We have migrated to _core QDateTimePickerBase and a user-configurable QDateTimePicker outside of _core.</p>

<p>So when using Qcodo Updater, you will see the warning/note about qcodo-updater trying to deleted an extraneous <strong>includes/qcodo/_core/qform/QDateTimePicker.class.php</strong> file. &nbsp;As long as you have never manually edited <strong>QDateTimePicker.class.php</strong>, you should feel free to have qcodo-updater delete it.</p>

]]></description>
		<author>Mike Ho</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4249/lastpage#2</guid>
		<pubDate>Fri, 27 Aug 2010 23:54:55 PDT</pubDate>
	</item>
	<item>
		<title>[Wiki] Re: Requirements for Running Qcodo</title>
		<link>http://www.qcodo.com/wiki/qcodo/requirements?lastpage</link>
		<description><![CDATA[<p>Mike Ho made created a new version (#9) of this wiki page.</p>

]]></description>
		<author>Qcodo System Message</author>
		<comments>http://www.qcodo.com/wiki/qcodo/requirements?lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/wiki/qcodo/requirements?lastpage#13</guid>
		<pubDate>Fri, 27 Aug 2010 23:06:07 PDT</pubDate>
	</item>
	<item>
		<title>[Wiki] Re: Requirements for Running Qcodo</title>
		<link>http://www.qcodo.com/wiki/qcodo/requirements?lastpage</link>
		<description><![CDATA[<p>Good catch -- I realized the SQLite was actually a old Downloads section posted a while ago.</p>

<p>Since I needed SQLite recently, and since the new SQLite3 adapter (which unfortunately does require PHP 5.3 or greater) looks like it will be the future for PHP and SQLite, I've gone ahead and refactored the original code for the new built-in extension-based SQLite3 adapter.</p>

<p>What this means, though, is that SQLite3 support will only work for those using Qcodo on PHP &gt; 5.3. &nbsp;I'll update the wiki page accordingly.</p>

]]></description>
		<author>Mike Ho</author>
		<comments>http://www.qcodo.com/wiki/qcodo/requirements?lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/wiki/qcodo/requirements?lastpage#12</guid>
		<pubDate>Fri, 27 Aug 2010 23:05:42 PDT</pubDate>
	</item>
	<item>
		<title>[Wiki] Re: Qcodo Changelog</title>
		<link>http://www.qcodo.com/wiki/qcodo/changelog?lastpage</link>
		<description><![CDATA[<p>Mike Ho made created a new version (#30) of this wiki page.</p>

]]></description>
		<author>Qcodo System Message</author>
		<comments>http://www.qcodo.com/wiki/qcodo/changelog?lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/wiki/qcodo/changelog?lastpage#29</guid>
		<pubDate>Fri, 27 Aug 2010 23:01:36 PDT</pubDate>
	</item>
	<item>
		<title>[Wiki] Re: Qcodo Changelog</title>
		<link>http://www.qcodo.com/wiki/qcodo/changelog?lastpage</link>
		<description><![CDATA[<p>Mike Ho made created a new version (#29) of this wiki page.</p>

]]></description>
		<author>Qcodo System Message</author>
		<comments>http://www.qcodo.com/wiki/qcodo/changelog?lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/wiki/qcodo/changelog?lastpage#28</guid>
		<pubDate>Fri, 27 Aug 2010 23:01:17 PDT</pubDate>
	</item>
	<item>
		<title>[Wiki] Re: Qcodo Changelog</title>
		<link>http://www.qcodo.com/wiki/qcodo/changelog?lastpage</link>
		<description><![CDATA[<p>Mike Ho made created a new version (#28) of this wiki page.</p>

]]></description>
		<author>Qcodo System Message</author>
		<comments>http://www.qcodo.com/wiki/qcodo/changelog?lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/wiki/qcodo/changelog?lastpage#27</guid>
		<pubDate>Fri, 27 Aug 2010 23:00:55 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Qcodo 0.4.17 Released</title>
		<link>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</link>
		<description><![CDATA[<p>I am happy to announce the immediate DEVELOPMENT release of Qcodo 0.4.17, which continues the iteration of a lot of the improvements over the past few dev releases. &nbsp;It also incorporates a few other key things, including:</p>

<ul>
<li>a completely revamped QEmailServer class</li>
<li>a new SQLite3 Database adapter (&ldquo;SqLite&rdquo;)</li>
<li>key improvements on i18n, specifically around dates, times and datetime controls</li>
<li>and many other improvements (see the <a href="http://www.qcodo.com/wiki/qcodo/changelog">changelog</a> for more information)</li>
</ul>

<p>There was also some confusion that we've had as to what &ldquo;minimum&rdquo; PHP version we should be supporting -- folks did some great analysis and cleanup work, and I'm happy to say that we're making sure that Qcodo should work on any PHP installation from PHP 5.1.2 to the current PHP 5.3.3 (and beyond). &nbsp;Although note that there may be a few functionality might not work in earlier versions (specifically on the 5.1.x branch), at least Qcodo itself should install and work.</p>

<p>Thanks to Marcos for all of his contributions, and I also wanted to give a quick thanks to klucznik for the work he's been doing in cleaning up and improving on a lot of the front-end code which has not made it into core yet (feel free to checkout his commits on <a href="http://github.com/klucznik/qcodo">github</a> if you want to see more). &nbsp;I'm hoping to get most of his improvements into core soon -- but since it'll take a bit of effort to merge many of his changes in, my hope is to work with him on that shortly after we get the current set of dev revisions into a stable release.</p>

<p>Please feel free to post with any questions or comments... feedback is always greatly appreciated. &nbsp;Also, we're starting to get a bit of <a href="http://www.qcodo.com/issues/">issues</a> posted -- if you have some time, any code contributions for fixes would also be greatly appreciated. &nbsp;Best way to submit would be to commit fixes to a specific issue to your own qcodo repository on <a href="http://github.com/">GitHub</a> (it's free to register), and then send me a pull request. &nbsp;Thanks!</p>

]]></description>
		<author>Mike Ho</author>
		<category>Official Blog</category>
		<comments>http://www.qcodo.com/forums/forum.php/5/4249/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/5/4249/lastpage#1</guid>
		<pubDate>Fri, 27 Aug 2010 22:48:57 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Links on page disable all Callbacks</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4241/lastpage</link>
		<description><![CDATA[<p>Thanks! &nbsp;This getting pushed into core as we speak, with one small change I'll be putting in (moving the QTarget abstract class into the _enumerations file)</p>

]]></description>
		<author>Mike Ho</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4241/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4241/lastpage#8</guid>
		<pubDate>Fri, 27 Aug 2010 22:20:13 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: introduction of magic column names</title>
		<link>http://www.qcodo.com/forums/forum.php/2/881/lastpage</link>
		<description><![CDATA[<p>Thanks! &nbsp;Just a FYI, it might be a while before I am able to get to this -- so feel free and post if anyone out there might be willing to help out with this!</p>

]]></description>
		<author>Mike Ho</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/881/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/881/lastpage#20</guid>
		<pubDate>Fri, 27 Aug 2010 22:19:28 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Can any hosting company support Qcodo?</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4248/lastpage</link>
		<description><![CDATA[<p>Agreed with Comet7.</p>

<p>As a FYI, We run all of our web properties (including qcodo.com =) on MediaTemple without any issues whatsoever.</p>

]]></description>
		<author>Mike Ho</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4248/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4248/lastpage#3</guid>
		<pubDate>Fri, 27 Aug 2010 22:18:48 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Can any hosting company support Qcodo?</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4248/lastpage</link>
		<description><![CDATA[<p>Yes - Qcodo is a PHP framework. &nbsp;Any hosting provider that supports PHP and databases can also run sites with Qcodo. &nbsp;I have used Qcodo on GoDaddy and HostGator with no issues.</p>

]]></description>
		<author>comet7</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4248/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4248/lastpage#2</guid>
		<pubDate>Thu, 26 Aug 2010 19:51:10 PDT</pubDate>
	</item>
	<item>
		<title>[Forums] Re: Can any hosting company support Qcodo?</title>
		<link>http://www.qcodo.com/forums/forum.php/2/4248/lastpage</link>
		<description><![CDATA[<p>By any, I mean any one that supports PHP, Mysql, else, do I need a special Hosting company and if so, can you give me some names?<br/>
Thanks,<br/>
dc</p>

]]></description>
		<author>dscapuano</author>
		<category>General Discussion</category>
		<comments>http://www.qcodo.com/forums/forum.php/2/4248/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/forums/forum.php/2/4248/lastpage#1</guid>
		<pubDate>Thu, 26 Aug 2010 11:48:01 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QSoapService use deprecated way of passing arguments</title>
		<link>http://www.qcodo.com/issues/view.php/70/lastpage</link>
		<description><![CDATA[<p>Could you please send me the piece of code that reproduces the issue?</p>

<p>Thanks</p>

]]></description>
		<author>marcosdsanchez</author>
		<comments>http://www.qcodo.com/issues/view.php/70/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/70/lastpage#4</guid>
		<pubDate>Thu, 26 Aug 2010 11:01:08 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QSoapService use deprecated way of passing arguments</title>
		<link>http://www.qcodo.com/issues/view.php/70/lastpage</link>
		<description><![CDATA[<p>Thanks for your response Marcos, but i have already try that, the behavior of the class is not the same without that &amp;. When i used the class without the &amp;, the wsdl generated dont shows the xml structure of the qcodo class object returned. That makes the soap client to crash because it does not know how to map the response.<br/>
</p>

]]></description>
		<author>apselico</author>
		<comments>http://www.qcodo.com/issues/view.php/70/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/70/lastpage#3</guid>
		<pubDate>Thu, 26 Aug 2010 08:31:00 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] MetaControlGen class calls wrong ToString method on Refresh()</title>
		<link>http://www.qcodo.com/issues/view.php/72/lastpage</link>
		<description><![CDATA[<p>The database contains a date field, and a lblDate is generated using the (Person)MetaControl class.<br/>
The Refresh()-Function of the class calls the toString()-Method of the underlying object (e.g. Person) instead of the actual field the label is connected to (Person-&gt;Date) resulting in a wrong label text after a Refresh()-call.</p>

<p>Fix:<br/>
$this-&gt;objPerson-&gt;__toString(...)<br/>
should be<br/>
$this-&gt;objPerson-&gt;Date-&gt;__toString(...)<br/>
on all labels connected to a date field.</p>

]]></description>
		<author>gr2711</author>
		<comments>http://www.qcodo.com/issues/view.php/72/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/72/lastpage#1</guid>
		<pubDate>Thu, 26 Aug 2010 07:45:30 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QSoapService use deprecated way of passing arguments</title>
		<link>http://www.qcodo.com/issues/view.php/70/lastpage</link>
		<description><![CDATA[<p>try this: <a href="http://github.com/marcosdsanchez/qcodo/commits/issue%2370">http://github.com/marcosdsanchez/qcodo/commits/issue%2370</a></p>

]]></description>
		<author>marcosdsanchez</author>
		<comments>http://www.qcodo.com/issues/view.php/70/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/70/lastpage#2</guid>
		<pubDate>Thu, 26 Aug 2010 07:37:41 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Dates before 1900 get converted to future dates</title>
		<link>http://www.qcodo.com/issues/view.php/71/lastpage</link>
		<description><![CDATA[<p>Several dates in my database are before 1900, for example 1895-01-23.<br/>
The framework gets the correct date from the database and converts them to a completely wrong date in the future.</p>

<p>Following code in the QDatetime.class.php seems to cause this:<br/>
// To deal with &ldquo;Tues&rdquo; and date skipping bug in PHP 5.2<br/>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ($objTimeZone)<br/>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;parent::__construct(date('Y-m-d H:i:s', parent::format('U')), $objTimeZone);<br/>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br/>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;parent::__construct(date('Y-m-d H:i:s', parent::format('U')));</p>

<p>Removing this workaround(?) fixes the problem and correct dates are shown.</p>

]]></description>
		<author>gr2711</author>
		<comments>http://www.qcodo.com/issues/view.php/71/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/71/lastpage#1</guid>
		<pubDate>Thu, 26 Aug 2010 07:33:39 PDT</pubDate>
	</item>
	<item>
		<title>[Issue] Re: QSoapService use deprecated way of passing arguments</title>
		<link>http://www.qcodo.com/issues/view.php/70/lastpage</link>
		<description><![CDATA[<p>I recieve the message:<br/>
Call-time pass-by-reference has been deprecated<br/>
when i try to use QSoapService, i solved that<br/>
changing PHP configuration:<br/>
allow_call_time_pass_reference = true (php.ini)<br/>
but as it has been deprecated the base class needs to be changed</p>

]]></description>
		<author>apselico</author>
		<comments>http://www.qcodo.com/issues/view.php/70/lastpage</comments>
		<guid isPermaLink="true">http://www.qcodo.com/issues/view.php/70/lastpage#1</guid>
		<pubDate>Wed, 25 Aug 2010 15:37:40 PDT</pubDate>
	</item>
</channel>
</rss>
