|
List Info
Thread: HTML_Progress2 2.3.0 alpha2 with HTML_AJAX
|
|
| HTML_Progress2 2.3.0 alpha2 with
HTML_AJAX |

|
2007-01-20 04:05:08 |
Hi everybody,
Finally after a first attempt to AJAX progress bar with
version 2.3.0
alpha 1, I've realized that my owner solution was not the
best way (even
if it works).
I've first bad feeling for HTML_AJAX, sorry Joshua Eichorn.
I realized after a day to learn/play and one another day to
plug-in to
HTML_Progress2 that it's the final and most open solution.
Version 2.3.0 alpha 2 (and final stable) will then come with
HTML_AJAX
0.5.x
I'm still working on tests, and building examples, but I
expect to
release the new version at beginning of next week .
Sorry for those who have already begin to implement alpha 1
API.
This is the main reason while I put alpha status.
Laurent Laville
--
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|
|
| Re: HTML_Progress2 2.3.0 alpha2 with
HTML_AJAX |

|
2007-01-22 10:46:38 |
Laurent Laville wrote:
> Hi everybody,
>
> Finally after a first attempt to AJAX progress bar with
version 2.3.0
> alpha 1, I've realized that my owner solution was not
the best way
> (even if it works).
>
> I've first bad feeling for HTML_AJAX, sorry Joshua
Eichorn.
> I realized after a day to learn/play and one another
day to plug-in to
> HTML_Progress2 that it's the final and most open
solution.
>
> Version 2.3.0 alpha 2 (and final stable) will then come
with HTML_AJAX
> 0.5.x
>
> I'm still working on tests, and building examples, but
I expect to
> release the new version at beginning of next week .
>
> Sorry for those who have already begin to implement
alpha 1 API.
> This is the main reason while I put alpha status.
>
> Laurent Laville
>
Let me know if you have any questions or need help on
something.
Also I do think its useful to support multiple AJAX
libraries for code
like this, if your site already uses jquery or moo or
prototype there is
a good chance you don't want to bring in yet another ajax
library. But
of course I think its a good to have pear libraries use each
other by
default.
-josh
--
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|
|
| Re: HTML_Progress2 2.3.0 alpha2 with
HTML_AJAX |

|
2007-01-22 11:24:04 |
Joshua Eichorn a écrit :
> Laurent Laville wrote:
>>
>> I'm still working on tests, and building examples,
but I expect to
>> release the new version at beginning of next week
.
>>
>>
>>
> Let me know if you have any questions or need help on
something.
> Also I do think its useful to support multiple AJAX
libraries for code
> like this, if your site already uses jquery or moo or
prototype there is
> a good chance you don't want to bring in yet another
ajax library. But
> of course I think its a good to have pear libraries use
each other by
> default.
>
> -josh
Hi Joshua,
I've played a lot with unofficial HTML_AJAX 0.5.1 and
HTML_Progress2
2.3.0a2 today.
I think I can tell that alpha 2 is ready to release.
Probably in next
hours (or tomorrow morning).
I really want to tell to you and your dev team: a great
thanks for this
package. Now I've used it and understand how it work, it's
so easy to
implement AJAX and used external ajax effect libraries.
BTW I've noticed a possible bug few minutes ago while I
tested my script
with Scriptaculous 1.7.0 and Prototype 1.5.0
<code>
function RequestStatusAndFx()
{
}
$callback = 'RequestStatusAndFx';
$server = new HTML_AJAX_Server();
$server->registerPhpCallback($callback);
$server->registerJsLibrary('scriptaculous',
array('prototype.js', 'scriptaculous.js',
'effect.js'),
dirname(__FILE__) . DIRECTORY_SEPARATOR.
'scriptaculous-js-1.7.0' . DIRECTORY_SEPARATOR);
$server->handleRequest();
</code>
I'm notified by HTML_AJAX_Server::_readFile() line 458 that
Unable to find javascript file: effect.js
Of course it's normal, I've a typo error : it's
"effects.js" (s missing)
BUT when i use an auto_server pattern, with
HTML_AJAX_Server::registerClass(), I AM NOT NOTIFIED OF
ERROR
Perharps I did something wrong, perharps its a bug ?!
best regards
Laurent
--
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|
|
| Re: HTML_Progress2 2.3.0 alpha2 with
HTML_AJAX |

|
2007-01-22 11:36:23 |
Laurent Laville wrote:
> Joshua Eichorn a écrit :
>> Laurent Laville wrote:
>>>
>>> I'm still working on tests, and building
examples, but I expect to
>>> release the new version at beginning of next
week .
>>>
>>>
>>>
>> Let me know if you have any questions or need help
on something.
>> Also I do think its useful to support multiple AJAX
libraries for
>> code like this, if your site already uses jquery or
moo or prototype
>> there is a good chance you don't want to bring in
yet another ajax
>> library. But of course I think its a good to have
pear libraries use
>> each other by default.
>>
>> -josh
>
> Hi Joshua,
>
> I've played a lot with unofficial HTML_AJAX 0.5.1 and
HTML_Progress2
> 2.3.0a2 today.
>
> I think I can tell that alpha 2 is ready to release.
Probably in next
> hours (or tomorrow morning).
>
> I really want to tell to you and your dev team: a great
thanks for
> this package. Now I've used it and understand how it
work, it's so
> easy to implement AJAX and used external ajax effect
libraries.
>
>
> BTW I've noticed a possible bug few minutes ago while I
tested my
> script with Scriptaculous 1.7.0 and Prototype 1.5.0
>
> <code>
> function RequestStatusAndFx()
> {
> }
>
> $callback = 'RequestStatusAndFx';
>
> $server = new HTML_AJAX_Server();
> $server->registerPhpCallback($callback);
> $server->registerJsLibrary('scriptaculous',
> array('prototype.js', 'scriptaculous.js',
'effect.js'),
> dirname(__FILE__) . DIRECTORY_SEPARATOR.
> 'scriptaculous-js-1.7.0' . DIRECTORY_SEPARATOR);
>
> $server->handleRequest();
> </code>
>
> I'm notified by HTML_AJAX_Server::_readFile() line 458
that
>
> Unable to find javascript file: effect.js
>
>
> Of course it's normal, I've a typo error : it's
"effects.js" (s missing)
>
> BUT when i use an auto_server pattern, with
> HTML_AJAX_Server::registerClass(), I AM NOT NOTIFIED OF
ERROR
>
>
> Perharps I did something wrong, perharps its a bug ?!
>
> best regards
> Laurent
I'll test that tonight and see whats happening.
-josh
--
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|
|
| Re: HTML_Progress2 2.3.0 alpha2 with
HTML_AJAX |

|
2007-01-22 12:25:35 |
Joshua Eichorn a écrit :
> Laurent Laville wrote:
>> Joshua Eichorn a écrit :
>>> Laurent Laville wrote:
>>>>
>>>> I'm still working on tests, and building
examples, but I expect to
>>>> release the new version at beginning of
next week .
>>>>
>>>>
>>>>
>>> Let me know if you have any questions or need
help on something.
>>> Also I do think its useful to support multiple
AJAX libraries for
>>> code like this, if your site already uses
jquery or moo or prototype
>>> there is a good chance you don't want to bring
in yet another ajax
>>> library. But of course I think its a good to
have pear libraries
>>> use each other by default.
>>>
>>> -josh
>>
>> Hi Joshua,
>>
>> I've played a lot with unofficial HTML_AJAX 0.5.1
and HTML_Progress2
>> 2.3.0a2 today.
>>
>> I think I can tell that alpha 2 is ready to
release. Probably in next
>> hours (or tomorrow morning).
>>
>> I really want to tell to you and your dev team: a
great thanks for
>> this package. Now I've used it and understand how
it work, it's so
>> easy to implement AJAX and used external ajax
effect libraries.
>>
>>
>> BTW I've noticed a possible bug few minutes ago
while I tested my
>> script with Scriptaculous 1.7.0 and Prototype
1.5.0
>>
>> <code>
>> function RequestStatusAndFx()
>> {
>> }
>>
>> $callback = 'RequestStatusAndFx';
>>
>> $server = new HTML_AJAX_Server();
>> $server->registerPhpCallback($callback);
>> $server->registerJsLibrary('scriptaculous',
>> array('prototype.js',
'scriptaculous.js', 'effect.js'),
>> dirname(__FILE__) .
DIRECTORY_SEPARATOR.
>> 'scriptaculous-js-1.7.0' . DIRECTORY_SEPARATOR);
>>
>> $server->handleRequest();
>> </code>
>>
>> I'm notified by HTML_AJAX_Server::_readFile() line
458 that
>>
>> Unable to find javascript file: effect.js
>>
>>
>> Of course it's normal, I've a typo error : it's
"effects.js" (s missing)
>>
>> BUT when i use an auto_server pattern, with
>> HTML_AJAX_Server::registerClass(), I AM NOT
NOTIFIED OF ERROR
>>
>>
>> Perharps I did something wrong, perharps its a bug
?!
>>
>> best regards
>> Laurent
> I'll test that tonight and see whats happening.
> -josh
>
>
I've just committed all stuff in PEAR CVS,
I've still the problem :
If you can have a look on my script
Progress2/examples/ajax/scriptaculous1.php
Perharps I've missed something
Thanks in advance
Laurent
--
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|
|
[1-5]
|
|