vcl4php-developers Mailing List for VCL for PHP (Page 11)
Brought to you by:
ttm
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
(63) |
May
(29) |
Jun
(135) |
Jul
(36) |
Aug
(15) |
Sep
(30) |
Oct
|
Nov
(6) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
(3) |
Apr
|
May
(2) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(9) |
Dec
(15) |
2009 |
Jan
(2) |
Feb
(4) |
Mar
(2) |
Apr
|
May
(8) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: FrozenDice <fro...@gm...> - 2007-06-08 18:41:51
|
I've noticed when using the MainMenu component that if you create an item on the top level that has nothing inside it and click it during runtime you get this small grey box that appears under it where a menu would usually come out. I know it's hard to explain so here's a picture: http://uomu.com/public/differenceMenus.jpg This sets Items => null for this specific item(Test). If you set Items => null then it doesn't show that, and acts like a you would expect a menu to when it has nothing under it, more like a button. Also another question I have, is it possible to have a click Javascript event fire when you click on a menu with things inside it(if Test had options under it, could I click on Test and have a click event be fired)? I'm asking this because if I combine Items => null and a click event like this then you could make a about, or help, or anything on the main menu that acted more like a button rather than a dropdown. Another thing, what's with the limited scope of this MainMenu? Qooxdoo has the ability to do RadioButtons, CheckBoxes, and a whole ton of other things. - Daniel |
From: Jonathan B. <co...@jo...> - 2007-06-08 17:58:01
|
> The object used to return the response has been made global, called > $ajaxResponse, so now is available to all components. > > In this cases, I prefer not to attach it to components to reduce the > overhead of the object heap, and also, if components don't use > dumpForAjax, can get it. Excellent, thanks. Jon |
From: qadram s. <su...@qa...> - 2007-06-08 17:50:18
|
Jonathan Benedicto escribió: > Hi All, > > I've been thinking that perhaps it would be useful for components to be able > to get the xajaxResponse instance in the dumpForAjax function, so that they > can call functions such as addAssign instead of simply returning JavaScript > code. > > In my current case, since I currently can't get the xajaxResponse instance, > I have to dump the entire HTML contents for a grid as a JavaScript call, eg: > > print( "document.getElementById( '" . $this->Name . "_outerdiv' ).innerHTML > = \"$contents\"" ); > > whereas, if I had the xajaxResponse instance, I could simply do: > > $xajaxResponse->addAssign( $this->Name . '_outerdiv', 'innerHTML', > $contents ); > > The simplest way I can see to do this would be to change the dumpForAjax > function, so that it passes the xajaxResponse instance as a parameter. This > would involve changing a couple components, but it might be better this way. > > What do you think? The object used to return the response has been made global, called $ajaxResponse, so now is available to all components. In this cases, I prefer not to attach it to components to reduce the overhead of the object heap, and also, if components don't use dumpForAjax, can get it. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-06-08 13:53:53
|
Fawzib Rojas escribió: > Smarty and Ajax don't work together. I made some changes to > forms.inc.php and smartytemplate.inc.php to enable Smarty with Ajax. Ok, these changes have been integrated and now you can use ajax with smarty templates, thanks Fawzib!! Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: <pac...@pa...> - 2007-06-07 23:47:07
|
Check the VCL Wiki links page. Add components for download in there. http://www.qadram.com/vcl4php/wiki/index.php/Links You can also use the various forums there for posting announcements. -----Original Message----- From: vcl...@li... Is there any preferable way to announce a component you want to make available, like posting on the newsgroups? Also is there any list or compilation of components that people have made so far? |
From: FrozenDice <fro...@gm...> - 2007-06-07 23:28:45
|
Is there any preferable way to announce a component you want to make available, like posting on the newsgroups? Also is there any list or compilation of components that people have made so far? |
From: qadram s. <su...@qa...> - 2007-06-06 12:04:51
|
Jeroen Pluimers (PSO) escribió: > Dear José, > > > I am writing such a thing, and finding out I get different results from what > the IDE exports. > > See the files here: > http://snap.pluimers.com/upload/browsable/StreamDemo.zip > > A few differences: > - the IDE exports a lot of NULL stuff and properties that have Default > values > why? Can you tell me some samples of which properties are written and shouldn't have to? > - the IDE does not export values from functions starting with getjs > why? Do you mean the IDE doesn't store javascript events? > - the IDE exports object sub-properties (like the Font of a Form) in a > different way than sub-objects (like a Button on a Form) > How does it distinguish between the two? That's the reason to treat them differently, because are completely different things, a subobject is a control *inside* another control, a subproperty is a property-of-a-property object, the way to distinguish them is that subproperties are object properties which value inherit from Persistant and not from Component. Subobjects are the ones on the Controls property of the parent object. > - How should I handle this CDATA stuff? This is XML stuff, checkout some XML reference, basically is that the property value has some chars that need to be encoded (i.e. for DBCS or not valid chars for XML), you should enclose the value in a CDATA section. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: FrozenDice <fro...@gm...> - 2007-06-04 17:15:32
|
I've noticed that whenever I try to put a button with a server side event in a window it just plain doesn't work. Javascript events work fine, but for some reason I can't get it to submit inside a window. Is this just how the window functions or a bug? I'm also running VCL 1.0, which version is decently stable enough to upgrade to? - Daniel |
From: qadram s. <su...@qa...> - 2007-06-04 14:32:41
|
Rob Wilkens escribió: > This patch turns off (but does not delete) the storing of resources > (in loadResource()) in the session. It just doesn't work yet, and in > order to develop/test stuff off the SVN version, I personally (and > probably others too) would like to have functional code available. > > IF you want me to, I'll try to debug it for you if I can. However, > I'm offering this patch anyway. > > Hint for debugging: Test it outside of the PHP Debugger, or if you > test it on the PHP debugger, put some submit buttons on the form and > click them multiple times. I might be able to get more infor for you, > but right now, I think it's more important to be functional. This patch, what it does is to force reload properties from the .xml.php in the old way, but does not prevent storing properties on the session. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: Rob W. <rob...@gm...> - 2007-06-04 14:22:14
|
On 6/4/07, qadram support <su...@qa...> wrote: > Rob Wilkens escribi=F3: > > This is not an ideal/clean patch, but it works. > > > > What it does: Enables the ability to see/use a RichEdit on a > > PageControl. In htmlarea.js, I did two things : (1) Assigned > > xinha_editors[textarea.id] =3D this, in order to allow the user to > > reference as expected the editor in the xinha_editors array. (2) > > Added a bunch of "if (textarea) {...}" checks which seems to prevent > > some page errors that were coming up (visible easily in firebug) when > > a richedit control was on a page control. Also, in stdctrls.inc.php, > > I added, in dumpChildrenControls() which conveniently, i also > > submitted another patch for earlier today (not included here), I added > > the following: (1) A global variable to tell whether or not the > > control was initialized once (it should only be done once), (2) A > > function named after the control's name which is an 'appear' event > > handler - it does the initialization of the richedit, (3) Set the > > appear event to call that event handler. > > > > It's attached because it's a bit much to include in-line. > > > > Any comments (positive or negative) are welcome. > It would be possible to make it work without modifying htmlarea.js? The > reason is that we try not to touch included libraries so it's easy to > upgrade them both by us and users. > > Regards Yes it is, I'll work on that later on today if I have time... -Rob --=20 Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: qadram s. <su...@qa...> - 2007-06-04 14:20:53
|
Rob Wilkens escribió: > This is not an ideal/clean patch, but it works. > > What it does: Enables the ability to see/use a RichEdit on a > PageControl. In htmlarea.js, I did two things : (1) Assigned > xinha_editors[textarea.id] = this, in order to allow the user to > reference as expected the editor in the xinha_editors array. (2) > Added a bunch of "if (textarea) {...}" checks which seems to prevent > some page errors that were coming up (visible easily in firebug) when > a richedit control was on a page control. Also, in stdctrls.inc.php, > I added, in dumpChildrenControls() which conveniently, i also > submitted another patch for earlier today (not included here), I added > the following: (1) A global variable to tell whether or not the > control was initialized once (it should only be done once), (2) A > function named after the control's name which is an 'appear' event > handler - it does the initialization of the richedit, (3) Set the > appear event to call that event handler. > > It's attached because it's a bit much to include in-line. > > Any comments (positive or negative) are welcome. It would be possible to make it work without modifying htmlarea.js? The reason is that we try not to touch included libraries so it's easy to upgrade them both by us and users. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: qadram s. <su...@qa...> - 2007-06-04 13:04:53
|
Jeroen Pluimers (PSO) escribió: > Hi José, > > > During the field-test I already indicated I wanted to write a web-site using > Delphi for PHP that could be used in a white paper to promote the Delphi for > PHP product. > > The web-site I am currently converting is the Dutch version of this one: > http://www.dreamfoundation.info/ > (The English one will follow soon thereafter). > > In order to do this, I have to really persist objects (i.e. not in the PHP > session, but to disk), so I need the opposite of loadResource / > readFromResource (i.e. saveResource and writeToResource). > > Currently, I'm creating a mockup that will work half: > - deriving Serializable from Persistent, and my own objects from > Serializable > - Serializable will contain the writeToResource and saveResource > - writeToResource will delegate it's logic to a Writer class that descends > from Filer (which is supposed to read/write, but in fact can only read). > - it will probably use the XML DOM in PHP for that > > It would be much much easier if I could have the code the IDE uses to write > the .xml.php files though. While I cannot send you IDE code, the way to store those properties on disk is really easy, just: -Get a list of methods of your object instance -All methods starting with "set" are meant to be serialized -Compare the current value with the "default" method -If they are different, write the property value to disk -Arrays must be serialized, and objects must be stored as strings, being the name of the object the value to write -Pay attention to CDATA usage writting XML -And that's it, now use the algorithm recursively to traverse the form structure You are copied on the development list and you are invited to discuss anything there. Regards -- José León qadram software C/Juan Ramón Jiménez, 15 Entlo. 2 03203 Elche ALICANTE (SPAIN) T: +34 965 45 48 48 F: +34 965 45 48 48 M: +34 618 28 13 69 http://www.qadram.com |
From: Rob W. <rob...@gm...> - 2007-06-02 02:55:30
|
In fact, all these bugs may be fixed in xinha --- I don't know, they no longer use htmlarea.js :--), it's a compatibility file which links to what I'll call a 'compressed for space' XinhaCore.js file Should I try replacing htmlarea with a clean xinha download????? If I do, we'll still have to deal with xinha_editors[id] assignment unless they dealt with that too, and that's easy to do, in my earlier patch just modify 'new HTMLArea(...)" with "xinha_editors[id]=new HTMLArea(...);" where id is the text area id which I believe we have at the time of the call (or can easily get). -Rob On 6/1/07, Rob Wilkens <rob...@gm...> wrote: > I dunno what's actually part of vcl for php versus what's part of > third party.... I'm new to VCL for PHP, and as a result, I probably > sholdn't be the one submitting patches, even if they happen to work > ;-). I just want these things fixed and my patches somehow manage to > fix them it seems. > > These bugs, after I thought about them more, really are VCL bugs that > shouldn't have to be patched in htmlarea.js. Specifically, there are > some cases where the default intialization code is causing the bugs > i'm trying to fix here (specifically, by passing in an invalid > textarea) and that code just shouldn't be executed, and it's the VCL's > fault for executing the bad code versus htmlarea's respnsibility to > check if what's being passed to it is valid. In other words, what i'm > fixing is not necessarily the ultimate fix as i've been suggesting all > along, it's just something which gets done what I need to get done for > my project. > > Incidentally, I peeked through SVN logs tonight and saw the TreeView > data structure changed (fortunately, my old one was still working). > I've now converted my code to use the new data structure. Ran into > one 'bug' with this, but it was a bug in my code, specifically, I had > to clear out the TreeNode structure between page reloads, because > otherwise it would multiply in content. Way to fix that I was hoping > would be to do a : $this->TreeView1->Clear() or something like that, > but instead I had to do a $this->TreeView1->setItems(null); I'd still > like a 'clear' to be more clear, even if clear just does a > setItems(null) .. > > Any chance we'll be able to add multiple columns of data to the > TreeView in the future? > > -Rob > > > -Rob > > On 6/1/07, pac...@pa... <pac...@pa...> wrote: > > Isn't the better place to make these changes in the proper xinha > > repository/ticket system? > > http://xinha.python-hosting.com/ > > > > -----Original Message----- > > From: vcl...@li... > > [mailto:vcl...@li...] On Behalf Of Rob > > Wilkens > > Sent: Saturday, 2 June 2007 12:44 p.m. > > To: vcl...@li... > > Subject: [vcl4php-developers] One more htmlarea.js fix I missed (causes a > > javascript warning/error) > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > vcl4php-developers mailing list > > vcl...@li... > > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > > > > > -- > Rob Wilkens > http://RobWilkens.com > 516-874-0579 > -- Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: Rob W. <rob...@gm...> - 2007-06-02 02:44:51
|
I dunno what's actually part of vcl for php versus what's part of third party.... I'm new to VCL for PHP, and as a result, I probably sholdn't be the one submitting patches, even if they happen to work ;-). I just want these things fixed and my patches somehow manage to fix them it seems. These bugs, after I thought about them more, really are VCL bugs that shouldn't have to be patched in htmlarea.js. Specifically, there are some cases where the default intialization code is causing the bugs i'm trying to fix here (specifically, by passing in an invalid textarea) and that code just shouldn't be executed, and it's the VCL's fault for executing the bad code versus htmlarea's respnsibility to check if what's being passed to it is valid. In other words, what i'm fixing is not necessarily the ultimate fix as i've been suggesting all along, it's just something which gets done what I need to get done for my project. Incidentally, I peeked through SVN logs tonight and saw the TreeView data structure changed (fortunately, my old one was still working). I've now converted my code to use the new data structure. Ran into one 'bug' with this, but it was a bug in my code, specifically, I had to clear out the TreeNode structure between page reloads, because otherwise it would multiply in content. Way to fix that I was hoping would be to do a : $this->TreeView1->Clear() or something like that, but instead I had to do a $this->TreeView1->setItems(null); I'd still like a 'clear' to be more clear, even if clear just does a setItems(null) .. Any chance we'll be able to add multiple columns of data to the TreeView in the future? -Rob -Rob On 6/1/07, pac...@pa... <pac...@pa...> wrote: > Isn't the better place to make these changes in the proper xinha > repository/ticket system? > http://xinha.python-hosting.com/ > > -----Original Message----- > From: vcl...@li... > [mailto:vcl...@li...] On Behalf Of Rob > Wilkens > Sent: Saturday, 2 June 2007 12:44 p.m. > To: vcl...@li... > Subject: [vcl4php-developers] One more htmlarea.js fix I missed (causes a > javascript warning/error) > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-developers mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > -- Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: <pac...@pa...> - 2007-06-02 02:30:11
|
Isn't the better place to make these changes in the proper xinha repository/ticket system? http://xinha.python-hosting.com/ -----Original Message----- From: vcl...@li... [mailto:vcl...@li...] On Behalf Of Rob Wilkens Sent: Saturday, 2 June 2007 12:44 p.m. To: vcl...@li... Subject: [vcl4php-developers] One more htmlarea.js fix I missed (causes a javascript warning/error) |
From: Rob W. <rob...@gm...> - 2007-06-02 00:43:31
|
In htmlarea.js (vcl/resources/xinha) I made one additional change, unfortunately, if I do a unified diff, it will show changes for the whole file... So for now, I'll share this simple fix here, basically sometimes this function would be called with el = null, so I am now checking "if (el) { ... }" before executing the code, it follows: HTMLArea._addEvent = function(el, evname, func) { if (el){ el.attachEvent("on" + evname, func); HTMLArea._eventFlushers.push([el, evname, func]); } }; If you want a unified diff, let me know. -- Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: FrozenDice <fro...@gm...> - 2007-06-01 21:35:40
|
So I was successful in making my own component. Now I'm having a problem where after I make it initially if I try to resize it in in D4PHP it doesn't expand. Here's a screencap of what it looks like: http://uomu.com/public/noUpdate.bmp I figure it's not redrawing in D4PHP for some reason. I just don't know why. I've seen the same behavior in other third party components also. When you run it through it looks perfectly find, the problem only exists in the IDE. Ideas? - Daniel I'm not too familiar with using email lists like this so if I'm doing something wrong please tell me. |
From: Tiago L. T. <ti...@la...> - 2007-06-01 19:34:32
|
Hi, You have to install it in Delphi for PHP IDE as the components are NOT automatically installed. The path is Component (in the main menu) -> Packages -> Click Add button and that's it. Hope that helps! FrozenDice escreveu: > I'm trying to write components myself, and I think I have most of it > right but I just can't figure how to install to the IDE. I have the > .package.php but I don't know what to do with it. Do I put the > .package.php along with the .inc.php in the VCL main folder and leave > it there? Do I execute the .package.php? > When I execute it I just get output to the screen but as far as I can > tell nothing is installed. > > I went and grabbed another component someone else made > http://www.qadram.com/vcl4php/forums/viewtopic.php?t=295 the same > exact thing happened when I tried executing the .package.php to > install. I figure there must be some trick I don't know about. > Thanks for reading. > > - Daniel > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-developers mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > > -- Tiago Lima Trinidad |
From: Jonathan B. <co...@jo...> - 2007-06-01 19:31:22
|
Hi Daniel, Use the Component->Packages->Add to add the package to the IDE. HTH Jon ----- Original Message ----- From: "FrozenDice" <fro...@gm...> To: <vcl...@li...> Sent: Friday, June 01, 2007 3:20 PM Subject: [vcl4php-developers] Installing third party components > I'm trying to write components myself, and I think I have most of it > right but I just can't figure how to install to the IDE. I have the > .package.php but I don't know what to do with it. Do I put the > .package.php along with the .inc.php in the VCL main folder and leave > it there? Do I execute the .package.php? > When I execute it I just get output to the screen but as far as I can > tell nothing is installed. > > I went and grabbed another component someone else made > http://www.qadram.com/vcl4php/forums/viewtopic.php?t=295 the same > exact thing happened when I tried executing the .package.php to > install. I figure there must be some trick I don't know about. > Thanks for reading. > > - Daniel > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-developers mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > |
From: Tiago L. T. <ti...@la...> - 2007-06-01 19:30:56
|
Hi qadram! I'm looking forward to have my modifications added, too and I've already sent the copyright thing about the legal issues of written by myself being integrated in vcl4php. I'd like to be able to actively contribute to this project, with, either, new components, maybe property editors, fixing existing bugs and providing code samples but don't know where to start. What would you suggest? Thanks :) su...@qa... escreveu: > We.will review your patches ASAP and will reply then. > > THANKS! > >> Well, Yesterday and the Day Before I submitted some patches. >> >> I understand if they're not implemented as-is. However, I'd like to >> see one of the following responses on any one of them: >> >> (1) I'm looking into testing them before committing them to the project. >> (2) I'm reviewing the code with a fine toothed comb first. >> (3) I don't like how it's done, but I like the idea, need some time to >> reformulate. >> (4) I don't like the code >> (5) I don't like you ;-} >> (6) The weather is too nice to sit in front of the computer and stare at >> code >> (7) I'm too busy with my own work to get to yours just yet >> (8) Other (fill in): >> >> #6, yes, is an acceptable answer. At least here in the Northern >> hemisphere, it is summer-like (we're hiting 90 degrees in New York >> today). >> >> Thanks for your time! >> >> -- >> Rob Wilkens >> http://RobWilkens.com >> 516-874-0579 >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> vcl4php-developers mailing list >> vcl...@li... >> https://lists.sourceforge.net/lists/listinfo/vcl4php-developers >> >> > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-developers mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > > -- Tiago Lima Trinidad |
From: FrozenDice <fro...@gm...> - 2007-06-01 19:20:22
|
I'm trying to write components myself, and I think I have most of it right but I just can't figure how to install to the IDE. I have the .package.php but I don't know what to do with it. Do I put the .package.php along with the .inc.php in the VCL main folder and leave it there? Do I execute the .package.php? When I execute it I just get output to the screen but as far as I can tell nothing is installed. I went and grabbed another component someone else made http://www.qadram.com/vcl4php/forums/viewtopic.php?t=295 the same exact thing happened when I tried executing the .package.php to install. I figure there must be some trick I don't know about. Thanks for reading. - Daniel |
From: <su...@qa...> - 2007-06-01 14:31:46
|
We.will review your patches ASAP and will reply then. THANKS! > Well, Yesterday and the Day Before I submitted some patches. > > I understand if they're not implemented as-is. However, I'd like to > see one of the following responses on any one of them: > > (1) I'm looking into testing them before committing them to the project. > (2) I'm reviewing the code with a fine toothed comb first. > (3) I don't like how it's done, but I like the idea, need some time to > reformulate. > (4) I don't like the code > (5) I don't like you ;-} > (6) The weather is too nice to sit in front of the computer and stare at > code > (7) I'm too busy with my own work to get to yours just yet > (8) Other (fill in): > > #6, yes, is an acceptable answer. At least here in the Northern > hemisphere, it is summer-like (we're hiting 90 degrees in New York > today). > > Thanks for your time! > > -- > Rob Wilkens > http://RobWilkens.com > 516-874-0579 > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > vcl4php-developers mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > |
From: Rob W. <rob...@gm...> - 2007-06-01 13:48:27
|
Well, Yesterday and the Day Before I submitted some patches. I understand if they're not implemented as-is. However, I'd like to see one of the following responses on any one of them: (1) I'm looking into testing them before committing them to the project. (2) I'm reviewing the code with a fine toothed comb first. (3) I don't like how it's done, but I like the idea, need some time to reformulate. (4) I don't like the code (5) I don't like you ;-} (6) The weather is too nice to sit in front of the computer and stare at code (7) I'm too busy with my own work to get to yours just yet (8) Other (fill in): #6, yes, is an acceptable answer. At least here in the Northern hemisphere, it is summer-like (we're hiting 90 degrees in New York today). Thanks for your time! -- Rob Wilkens http://RobWilkens.com 516-874-0579 |
From: <pac...@pa...> - 2007-05-31 21:24:12
|
Is it possible to fix the Layout and Font derivatives of Persistent? As of now, since build 42 the Persistent:unserialize method is choking when it calls $ob->unserialize looking for a non null owner by calling $owner=$this->readOwner(); but readOwner is defined as null in all Persistent derivatives.. What this means is that an empty form in the last two builds cannot compile and execute. The Layout and Font properties of a form raise an exception. It should just be a matter of adding this override as was done to Pen and Brush: function readOwner() { return($this->_control); } If issues are raised here should they also be added to the project bug tracker? What is the best place to get the repository owners attention? Also I wonder what sort of testing process is used with releases? What and how do the phpunit relate to the vc/tests directory? Is this functionality working? -----Original Message----- From: vcl...@li... [mailto:vcl...@li...] On Behalf Of pac...@pa... Sent: Saturday, 26 May 2007 10:09 a.m. To: vcl...@li... Subject: Re: [vcl4php-svn] SF.net SVN: vcl4php: [43] trunk/vcl This is affecting other persistent based classes such as Layout and Font as well. An empty form raises an exception. >>+Fixed problem with controls using Pen and Brush, error with serialization |
From: Rob W. <rob...@gm...> - 2007-05-31 13:22:39
|
This patch adds two properties to the DateTimePicker control: IfFormat : Lets you change the date/time format ShowsTime: True/False : Whether or not to show the time in the Date/Time Picker Note that I removed the 'default value' for the 'text' field of the DateTimePicker because it would be initialized *before* the format was changed, and the result would be that we'd have the wrong format date/time in the initial field value, and the result of that was an invalid date, and the first time (for example) after changing to %m/%d/%Y, would be a date around the year 2099 when you clicked the pull-down calendar. -Rob -- Rob Wilkens http://RobWilkens.com 516-874-0579 |