List Info

Thread: Proposal for Web Services::Services_TinyURL




Proposal for Web Services::Services_TinyURL
user name
2007-09-10 20:21:40
Joe Stump (http://pear.php.net/u
ser/jstump) proposes Web Services::Services_TinyURL.

You can find more detailed information here:
 http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-10 21:25:09
Chuck Burgess (http://pear.php.net/
user/ashnazg) has commented on the proposal for Web
Services::Services_TinyURL.

Comment:

Looks like a nice concise package to do the straightforward
job of setting
& getting TinyURLs.

Your package.xml says BSD license, though all the code files
show the PHP
license, both in license tag and in license text block.

Granted, this is only the second proposal I've ever looked
at, but I would
have expected to see the PEAR/Exception be required by the
Exception class
file, and the regular class file in turn requiring the
TinyURL_Exception
file.  That's just an observation... I don't know what the
coding standards
say on that.

I can't seem to get the PHPTs to pass.  I have Validate
0.7.0 and the curl
extension installed, using PHP 5.2.4.

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-10 21:45:57
Till Klampaeckel (http://pear.php.net/use
r/till) has commented on the proposal for Web
Services::Services_TinyURL.

Comment:

First off, good job. You kind of beat me to it.

It's very simple and easy to use, the only thing I want to
add (on top of
what Chuck said), is that I noticed that when I create a
tinyurl and I try
to look the same one up, it says - "no redirection
found".

How long does it take until urls create through the API
become available
through the API?

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-10 22:02:21
Helgi Žormar (http://pear.php.net/us
er/dufuz) has commented on the proposal for Web
Services::Services_TinyURL.

Comment:

Looks straight forward enough, small, simple, elegant.
Haven't tested it yet but I will.

One observation tho, do you plan on using curl if this gets
accepted or
change to HTTP_Request2 when (if ?! :P) it comes out.

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Changes in proposal for Web Services::Services_TinyURL
user name
2007-09-10 22:32:37
Joe Stump (http://pear.php.net/u
ser/jstump) has edited the proposal for Web
Services::Services_TinyURL.

Change comment:

Changed the URL to point to the 0.0.3 package, which
includes fixes for
comments up to this point.

Please review the proposal:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-10 22:33:34
Joe Stump (http://pear.php.net/u
ser/jstump) has commented on the proposal for Web
Services::Services_TinyURL.

Comment:

1.) http:
//bugs.joestump.net/trac.cgi/pear/ticket/8 (Addresses
all of the
comments so far)

2.) I'll be moving to HTTP_Request2 for all of my Services_*
packages once
it's released. Until then I'm stuck with curl.

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Re: Comment on Web Services::Services_TinyURL
user name
2007-09-10 22:42:22
On 11 Sep 2007 03:33:34 -0000, Joe Stump <pearjoestump.net> wrote:
>
> Joe Stump (http://pear.php.net/u
ser/jstump) has commented on the proposal for Web
Services::Services_TinyURL.
>
> Comment:
>
> 1.) http:
//bugs.joestump.net/trac.cgi/pear/ticket/8 (Addresses
all of the
> comments so far)

All works for me now, including reverse lookup etc.. 

Till

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-11 07:28:52
Travis Swicegood (http://pear.php.n
et/user/tswicegood) has commented on the proposal for
Web Services::Services_TinyURL.

Comment:

Couple of thoughts:

1) What about those of us who like to instantiate
everything?   Would a
Services_TinyURL::singleton/getInstance() be appropriate, or
am I the only
one that would want to instantiate this object?

2) I think there's a typo on the pattern of the first
preg_match() of
lookup().  "[a-z0-91]" - the "1" is
redundant, no?

3) Why use preg_match_all() at the end of lookup()?

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-11 11:07:01
Joshua Eichorn (http://pear.php.net
/user/jeichorn) has commented on the proposal for Web
Services::Services_TinyURL.

Comment:

Http_Request2 is currently only targeted at pear2 ie
PEAR2_Http_Request. 
If your interested in helping to make a Http_Request2
release happen let me
know.  The code is ready for a alpha release at this point.

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


Comment on Web Services::Services_TinyURL
user name
2007-09-11 19:40:25
Chuck Burgess (http://pear.php.net/
user/ashnazg) has commented on the proposal for Web
Services::Services_TinyURL.

Comment:

All my earlier comments look to be handled 

I did get the tests to pass via "pear run-tests
-p", so I'm good.

Proposal information:
http://pear.php.net/pepr/pepr-proposal-show.php?id=505


-- 
Sent by PEPr, the automatic proposal system at http://pear.php.net

-- 
PEAR Development Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php


[1-10] [11-20] [21-28]

about | contact  Other archives ( Real Estate discussion Medical topics )