vcl4php-developers Mailing List for VCL for PHP (Page 3)
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: Jonathan B. <co...@jo...> - 2007-12-03 16:38:43
|
There is a bug in the BlogProject example, I'm guessing that the DBRepeater changed names sometime, and broke the blog example. On line 60 in index.php, it currently has: $this->DbRepeater1->DataSource = $BlogDB->BlogsDatasource1; That needs to be changed to: $this->DBRepeater1->DataSource = $BlogDB->BlogsDatasource1; Jon |
From: Daniele T. <dan...@gm...> - 2007-11-12 17:15:33
|
Ok, it's a nice plan. In my opinion, jquery could be usefull for many use not related to a particulat component. JQuery Core is not related to "components" but with DOM. So I think that an inclusion in jquery in vcl for php core shold be ok. Any comments? 2007/11/12, qadram support <su...@qa...>: > Daniele Teti escribi=F3: > > in a big project with D4PHP, I've used jquery for mutch of ajax stuff. > > I've planned to develop some jquery enabled components (Autocomplete > > Edit, Date Edit, Table with auto sorter, etc etc). > > > > If it could be interesting, ASAP I'll cound send this components to > > list for testing and accepting for inclusion in VCL for PHP. > That would be great, the plan for jquery, extjs, pear, etc, is to make > them available as separate downloads, so we don't bloat the main library,= so > > VCL for PHP core > extJS components > Pear components > > etc > > Regards > -- > Jos=E9 Le=F3n > qadram software > C/Juan Ram=F3n Jim=E9nez, 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 > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > vcl4php-developers mailing list > vcl...@li... > https://lists.sourceforge.net/lists/listinfo/vcl4php-developers > --=20 -------------------------------------------- Daniele Teti (tm) Software Architect http://dade2000.altervista.org |
From: Daniele T. <dan...@gm...> - 2007-11-12 17:02:11
|
2007/11/12, qadram support <su...@qa...>: > Daniele Teti escribi=F3: > > In no particular order: > Reply here so everyone can talk about it. > > > * New instance variable in Page object similar to ASP.NET IsPostBack > I'm not very proficient in asp.net, but I think this is done in PHP by > checking GET and POST, in any case I think is very simple to add. I'm think to $_SERVER['HTTP_REFERER'] but seems to be a not usefull info from php.net " 'HTTP_REFERER' The address of the page (if any) which referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted." :-( So I thinked to save in session last page name... but is not a robust options (think a popup windows that change session variable...) Any comments on this? > > * PEAR data grid more VCL like (no more dsn property but Database > > component reference in object inspector) > Yes, we could extract the DSN from the database, but it won't use the > database object itself, only to get the data connection string. Yep! I dont know PEAR datagrid very well. It's not possibile to change db access without use DSN at all? > > > * A property in visual control to remove "_outer" DIV used for position= ing. > This is not as easy as it looks, many parts on the code rely on the > existance of this div, can you ellaborate on this, specially why you > want it removed? In a templated page (99,99% of production web site) outer div is useless but increase page size and some size error occur. It's my opinion only? > > > * Complete support for ActiveRecord pattern (ADODB have a nice > > implementation but is not so complete) with some specific component > > for "bind" to an array of ActiveRecord's object > mmm, mmm, let see what others say... ;-) In my experience ActiveRecord is many usefull for manage entities. For complex query can be use still a "normal" query. > > > * Some standard "scaffolding" like Ruby on Rails (including some IDE > > expert for direct support to RoR clone (CakePHP, Trax and so on)). I'm > > designed a small system for this, it's very simple to use and could be > > included into Delphi for PHP IDE using included ActiveRecord > > implementation, but a complete system (Cake o trax) will be mutch > > better. > Opinions? Survey on VCL for PHP Web Site? > > > * A method to remove a form from session like following > > function RemoveSessionForm($formName) > > { > > foreach($_SESSION as $key=3D>$value) > > if (preg_match('/(comps|vclapp|insession)\.'.$formName.'/',$key)) > > unset($_SESSION[$key]); > > } > Something like this on the global application object can be done. Yep! > > > * A property in Component like ASP.NET "EnableViewState" to > > enable/disable dump of component property into session. > Easy also. OK > > > * A VCL for PHP designed for mobile application > I think we talked about this some time ago, when someone requested no > javascript usage on components, let's ellaborate an RFC, please. Ok, my 0.0.1 draft RFC -A separate component palette with standard HTML 4.0.1 components. -No Javascript events -A Very-Simple table for displaing data -Only LAYOUT=3DFLOW (???) -No table for page size -Srink page size to mininum allowed. ..? Regards --=20 -------------------------------------------- Daniele Teti (tm) Software Architect http://dade2000.altervista.org |
From: qadram s. <su...@qa...> - 2007-11-12 15:42:36
|
Daniele Teti escribió: > In no particular order: Reply here so everyone can talk about it. > * New instance variable in Page object similar to ASP.NET IsPostBack I'm not very proficient in asp.net, but I think this is done in PHP by checking GET and POST, in any case I think is very simple to add. > * PEAR data grid more VCL like (no more dsn property but Database > component reference in object inspector) Yes, we could extract the DSN from the database, but it won't use the database object itself, only to get the data connection string. > * A property in visual control to remove "_outer" DIV used for positioning. This is not as easy as it looks, many parts on the code rely on the existance of this div, can you ellaborate on this, specially why you want it removed? > * Complete support for ActiveRecord pattern (ADODB have a nice > implementation but is not so complete) with some specific component > for "bind" to an array of ActiveRecord's object mmm, mmm, let see what others say... ;-) > * Some standard "scaffolding" like Ruby on Rails (including some IDE > expert for direct support to RoR clone (CakePHP, Trax and so on)). I'm > designed a small system for this, it's very simple to use and could be > included into Delphi for PHP IDE using included ActiveRecord > implementation, but a complete system (Cake o trax) will be mutch > better. Opinions? > * A method to remove a form from session like following > function RemoveSessionForm($formName) > { > foreach($_SESSION as $key=>$value) > if (preg_match('/(comps|vclapp|insession)\.'.$formName.'/',$key)) > unset($_SESSION[$key]); > } Something like this on the global application object can be done. > * A property in Component like ASP.NET "EnableViewState" to > enable/disable dump of component property into session. Easy also. > * A VCL for PHP designed for mobile application I think we talked about this some time ago, when someone requested no javascript usage on components, let's ellaborate an RFC, please. 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-11-12 15:37:27
|
Daniele Teti escribió: > in a big project with D4PHP, I've used jquery for mutch of ajax stuff. > I've planned to develop some jquery enabled components (Autocomplete > Edit, Date Edit, Table with auto sorter, etc etc). > > If it could be interesting, ASAP I'll cound send this components to > list for testing and accepting for inclusion in VCL for PHP. That would be great, the plan for jquery, extjs, pear, etc, is to make them available as separate downloads, so we don't bloat the main library, so VCL for PHP core extJS components Pear components etc 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: Daniele T. <dan...@gm...> - 2007-11-11 18:04:58
|
Hi all, in a big project with D4PHP, I've used jquery for mutch of ajax stuff. I've planned to develop some jquery enabled components (Autocomplete Edit, Date Edit, Table with auto sorter, etc etc). If it could be interesting, ASAP I'll cound send this components to list for testing and accepting for inclusion in VCL for PHP. bye -- -------------------------------------------- Daniele Teti (tm) Software Architect http://dade2000.altervista.org |
From: Daniele T. <dan...@gm...> - 2007-11-09 10:23:15
|
In no particular order: * New instance variable in Page object similar to ASP.NET IsPostBack * PEAR data grid more VCL like (no more dsn property but Database component reference in object inspector) * A property in visual control to remove "_outer" DIV used for positioning. * Complete support for ActiveRecord pattern (ADODB have a nice implementation but is not so complete) with some specific component for "bind" to an array of ActiveRecord's object * Some standard "scaffolding" like Ruby on Rails (including some IDE expert for direct support to RoR clone (CakePHP, Trax and so on)). I'm designed a small system for this, it's very simple to use and could be included into Delphi for PHP IDE using included ActiveRecord implementation, but a complete system (Cake o trax) will be mutch better. * A method to remove a form from session like following function RemoveSessionForm($formName) { foreach($_SESSION as $key=>$value) if (preg_match('/(comps|vclapp|insession)\.'.$formName.'/',$key)) unset($_SESSION[$key]); } * A property in Component like ASP.NET "EnableViewState" to enable/disable dump of component property into session. * A VCL for PHP designed for mobile application I'm used Delphi for PHP for many *BIG* and *CRITICAL* projects, and this is my (incomplete) wish list. Someone agree with me? -- -------------------------------------------- Daniele Teti (tm) Software Architect http://dade2000.altervista.org |
From: Michael U. <mu...@ur...> - 2007-09-10 18:15:55
|
Jos=E9, > Which is your system drive? C: or D:? And where did you install > Delphi for PHP? System drive is C:, D4PHP is installed in the program dir on E: I know this isn't supported too well, but in Firefox I found a security= setting that, when turned off, will allow this setup, even with file:// includes > Sure, send it to me, no problem Done. I think the answer to the problem is somewhere in the Ajax return that is= displayed as last / top "line" in the Ajax debug screen. I could produce an unabbreviated version of that response= for investigation thanks Michael |
From: qadram s. <su...@qa...> - 2007-09-10 11:52:10
|
Michael Urban escribió: > I also have IE 7 available, but the app > won't run on that because of the "include by file://" problem. > I haven't found out yet how to turn that security setting off. Which is your system drive? C: or D:? And where did you install Delphi for PHP? > Sorry, no other machine available. I have a screencast, but that's a little over 700kB > - should I better send it to qadram support? Sure, send it to me, no problem 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: D. v. d. M. <d.v...@tw...> - 2007-09-07 18:23:58
|
When I issue a set command I get this: TEMP=C:\Users\Dennis\AppData\Local\Temp TMP=C:\Users\Dennis\AppData\Local\Temp Does this mean that when I develop a application on my C:\ drive all is well, but when I develop on my D:\ drive I have to create a temp directory myself? I've seen in your code that environment variables are being used. So why do I have to create a temp folder on my D:\ drive? Cheers... -----Oorspronkelijk bericht----- Van: vcl...@li... [mailto:vcl...@li...]Namens qadram support Verzonden: vrijdag 7 september 2007 12:55 Aan: vcl...@li... Onderwerp: Re: [vcl4php-developers] Temp directory Smarty D. van der Meulen escribió: > Hello José, > > I tried this and it works! > I'm running Vista and have no errors anymore. > > Thanks... Ok, great, by the way, can you open a command window and issue a "SET" command? You should have a TEMP= and TMP= environment variables defined. 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 ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ vcl4php-developers mailing list vcl...@li... https://lists.sourceforge.net/lists/listinfo/vcl4php-developers |
From: Michael U. <mu...@ur...> - 2007-09-07 17:28:15
|
Jos=E9, > I have tested the modified script you sent me and it works OK in > FireFox and IE, it would be possible to know more about your > environment? That is, OS, browser version, etc. It is D4PHP 1.0.2 b 539 , VCL build 163 running on Win XP, with Firefox 2.0.0.6. D4PHP is a fresh Update 2 install and the VCL I got from SVN. I also have IE 7 available, but the app won't run on that because of the "include by file://" problem. I haven't found out yet how to turn that security setting off. > If possible: > -Try on another machine > -Send an screencast to the list reproducing the problem Sorry, no other machine available. I have a screencast, but that's a little= over 700kB - should I better send it to qadram support? Michael |
From: qadram s. <su...@qa...> - 2007-09-07 15:56:37
|
Michael Urban escribió: > By the way: > > When I modify the original BasicAjax example, I get the same error: > > * blank page when not using Ajax debug > > * with Ajax debug, I get this error: > > "While trying to 'addScript/addRedirect' (command number 1), the following error occured: > SyntaxError: unterminated string literal" I have tested the modified script you sent me and it works OK in FireFox and IE, it would be possible to know more about your environment? That is, OS, browser version, etc. If possible: -Try on another machine -Send an screencast to the list reproducing the problem 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: Jonathan B. <co...@jo...> - 2007-09-07 14:49:50
|
Hi, I solved the particular issue in the SF report like this: $old_layer = $this->ActiveLayer; // Loop through each tab in the page control. foreach( $this->_Tabs as $tab ) { $this->ActiveLayer = $tab; $this->Layout->dumpLayoutContents(); } // Set the ActiveLayer back to what it was. $this->ActiveLayer = $old_layer; But regarding your solution for "hidden" components, it sounds great. Jon ----- Original Message ----- From: "qadram support" <su...@qa...> To: <vcl...@li...> Sent: Friday, September 07, 2007 4:54 AM Subject: [vcl4php-developers] dumpHeaderCode and dumpJavascript not called Hello, Regarding this report: http://sourceforge.net/tracker/index.php?func=detail&aid=1696212&group_id=189419&atid=929250 I suggest to add a boolean "Hidden" property to Control, so component developers can choose to create components that are live on the browser, but not shown, that way, all the code will be generated, but the control won't be shown and you can use javascript to show up the control if required. Basically is: Hidden Visible ---------------- False False -> No code is generated, so control is NOT shown False True -> Code is generated, control is shown True False -> No code is generated, so control is NOT shown True True -> Code is generated, control is NOT shown Let me know what do you think. 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 ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ vcl4php-developers mailing list vcl...@li... https://lists.sourceforge.net/lists/listinfo/vcl4php-developers |
From: qadram s. <su...@qa...> - 2007-09-07 10:55:27
|
D. van der Meulen escribió: > Hello José, > > I tried this and it works! > I'm running Vista and have no errors anymore. > > Thanks... Ok, great, by the way, can you open a command window and issue a "SET" command? You should have a TEMP= and TMP= environment variables defined. 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-09-07 08:55:02
|
Hello, Regarding this report: http://sourceforge.net/tracker/index.php?func=detail&aid=1696212&group_id=189419&atid=929250 I suggest to add a boolean "Hidden" property to Control, so component developers can choose to create components that are live on the browser, but not shown, that way, all the code will be generated, but the control won't be shown and you can use javascript to show up the control if required. Basically is: Hidden Visible ---------------- False False -> No code is generated, so control is NOT shown False True -> Code is generated, control is shown True False -> No code is generated, so control is NOT shown True True -> Code is generated, control is NOT shown Let me know what do you think. 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-09-07 07:41:43
|
Michael Urban escribió: > Hi, > > with rev. 163 I get an Ajax error (unterminated string literal) using a modified BasicAjax example app. > > The only change from the original is that button and label are sitting within a groupbox. > > As soon as I remove the groupbox, everything works again. It's working well for me, what I have done is: -Open BasicAjax sample -Place a GroupBox -Cut Button+Label -Paste them inside GroupBox -Run the app -And works well, that is, the label gets updated Can you send your code here so we can take a look? thanks. 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-09-07 07:25:20
|
marco tamanti escribió: >> We have commited your new layout type to the >> repository, is called >> RES_XY_LAYOUT. > > Great! > > I think that we can order the components even in > dumpABSLayout too. Why change the ordering of the abs layout? You are ordering components based on the Top property, and that makes the Z order don't match with the one set in the designer, I think that's required by the relative layout, but not for the absolute, let's talk about 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: marco t. <ta...@ya...> - 2007-09-06 22:41:56
|
> We have commited your new layout type to the > repository, is called > RES_XY_LAYOUT. Great! I think that we can order the components even in dumpABSLayout too. Instead of line 154 we can put what we can find on line 212-215: $arrayOfControls = $this->_control->controls->items; usort($arrayOfControls, array(&$this, "cmp_obj")); while (list($k,$v)=each($arrayOfControls)) More, dumpABSLayout and dumpRELLayout are very similar functions. We can do just one function for both, avoiding duplicated code, and use two small wrappers to differentiate them. ... I've just finished to rewrite the code. Yoo can find graphics.inc.php as attachment, with the join of the two functions. Now for both we have the component ordered, so it's easier to read the final html source. Sorry, but now I've no time to test it. I've just written it by hand. I've also added some comments. Best regards! Marco Tamanti. ____________________________________________________________________________________ Yahoo! oneSearch: Finally, mobile search that gives answers, not web links. http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC |
From: D. v. d. M. <d.v...@tw...> - 2007-09-06 18:12:15
|
Hello José, I tried this and it works! I'm running Vista and have no errors anymore. Thanks... -----Oorspronkelijk bericht----- Van: vcl...@li... [mailto:vcl...@li...]Namens qadram support Verzonden: donderdag 6 september 2007 11:52 Aan: vcl...@li... Onderwerp: Re: [vcl4php-developers] Temp directory Smarty D. van der Meulen escribió: > Hello All, > > in revision 139: > +SmartyTemplate temp dir now falls back to /tmp instead c:\temp > > I'm trying to start a Smarty project now, but keep the following error: > *Fatal error*: Smarty error: the $compile_dir '/tmp' does not exist, or > is not a directory. in > *D:\projects\php\vcl\smarty\libs\Smarty.class.php* on line *1095* > I've been creating tmp directories everywhere but no luck. > Does anyone know where to create the tmp directory now. > > Below is the initialize function in smartytemplate.inc.php > See arrow (<<===) for where functions jump too. You should create a tmp folder on the drive PHP is working on, that is, if you setup Delphi for PHP in d:, then create d:\tmp. In any case, you can setup an environment variable called TMP or TEMP with the folder where do you want to store cached templates. In any case, which Windows version are you using? 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 ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ vcl4php-developers mailing list vcl...@li... https://lists.sourceforge.net/lists/listinfo/vcl4php-developers |
From: Jonathan B. <co...@jo...> - 2007-09-06 16:37:09
|
qadram support wrote: > I supose is caused by the HTML inside the javascript, so let me know if > you can fix the regexp. Sorry about that, here is the fixed regex: '/^<script[^>]*?>(.*?)<\/script>$/si' Jon |
From: Michael U. <mu...@ur...> - 2007-09-06 15:53:06
|
Hi, with rev. 163 I get an Ajax error (unterminated string literal) using a= modified BasicAjax example app. The only change from the original is that button and label are sitting= within a groupbox. As soon as I remove the groupbox, everything works again. regards Michael Urban |
From: Jonathan B. <co...@jo...> - 2007-09-06 15:27:57
|
Hi Jose, > Jonathan, there is a problem with the modified extractjscript > function you developed, here it is: > > If you feed the function with this code to extract the javascript: [snip code] > And extracts the two scripts, but after that, when you try to extract > only the js code from the first script: > > You use this regexp: > /^<script[\s\S]*>([\s\S]*)<\/script>$/i > > And it's producing this output: [snip] > I supose is caused by the HTML inside the javascript, so let me know if > you can fix the regexp. Sorry about that, here is the fixed regex: '/^<script[^>]*?>(.*?)<\/script>$/si' That should work fine. Jon |
From: Jonathan B. <co...@jo...> - 2007-09-06 14:58:51
|
qadram support wrote: > Ok, I have integrated your change. thanks! Thanks :-) Jon |
From: Jonathan B. <co...@jo...> - 2007-09-06 14:58:02
|
qadram support wrote: > The problem was on the usage of master pages, when inheriting, your > function didn't returned the right value, so that messed up all > serialization, you can test it using the inheritance sample, I'm keen to > revise such function and speed it up, so let me know. Thanks for the info, I'll try to get an optimized version done ASAP. Jon |
From: Jonathan B. <co...@jo...> - 2007-09-06 14:56:47
|
qadram support wrote: > This has been added yesterday, but still need more testing regarding two > or more applications running within the same, to see if they collide. Ok, thanks. Jon |