PAUSE ID request (AOCOLE; Andrew Cole)

2013-04-24 Thread Perl Authors Upload Server
Request to register new user

fullname: Andrew Cole
  userid: AOCOLE
mail: CENSORED
homepage: 
 why:

I'd like to contribute a perl implementation of docopt.


The following links are only valid for PAUSE maintainers:

Registration form with editing capabilities:
  
https://pause.perl.org/pause/authenquery?ACTION=add_user&USERID=e5d0_ea86dc5039976852&SUBMIT_pause99_add_user_sub=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_user&USERID=e5d0_ea86dc5039976852&SUBMIT_pause99_add_user_Definitely=1


Re: Module submission Framework::Core

2013-04-24 Thread brian d foy
[[ This message was both posted and mailed: see
   the "To," "Cc," and "Newsgroups" headers for details. ]]

In article <20130423185355.67fa51f...@pause.perl.org>, "Perl Authors
Upload Server"  wrote:

> The following module was proposed for inclusion in the Module List:
> 
>   modid:   Framework::Core
>   DSLIP:   adpOp
>   description: Modular application framework
>   userid:  CODECHILD (David Helkowski)

Most people aren't looking to classify their frameworks by names. You
mentioned Catalyst and others; they didn't choose their names because
they didn't find a general noun to place their modules under. They
aren't trying to classify their modules in the era of "Search".

You can upload your module where you like, but I don't think other
people are going to follow you.

-- 
brian d foy (one of many PAUSE admins), http://pause.perl.org
PAUSE instructions:  http://pause.perl.org/pause/query?ACTION=pause_04about
Archives: http://www.xray.mpe.mpg.de/mailing-lists/modules
Please send all messages back to modules@perl.org with no CC to me.


Welcome new user AOCOLE

2013-04-24 Thread Perl Authors Upload Server

Welcome Andrew Cole,

PAUSE, the Perl Authors Upload Server, has a userid for you:

AOCOLE

Once you've gone through the procedure of password approval (see the
separate mail you should receive about right now), this userid will be
the one that you can use to upload your work or edit your credentials
in the PAUSE database.

This is what we have stored in the database now:

  Name:  Andrew Cole
  email: CENSORED
  homepage:  
  enteredby: David Golden

Please note that your email address is exposed in various listings and
database dumps. You can register with both a public and a secret email
if you want to protect yourself from SPAM. If you want to do this,
please visit
  https://pause.perl.org/pause/authenquery?ACTION=edit_cred
or
  http://pause.perl.org/pause/authenquery?ACTION=edit_cred

If you need any further information, please visit
  $CPAN/modules/04pause.html.
If this doesn't answer your questions, contact modules@perl.org.

Thank you for your prospective contributions,
The Pause Team


PAUSE ID request (VANHOESEL; Theo van Hoesel)

2013-04-24 Thread Perl Authors Upload Server
Request to register new user

fullname: Theo van Hoesel
  userid: VANHOESEL
mail: CENSORED
homepage: 
 why:

where possible, co-author or subclass TEXT based modules to step up
to Unicode.

Already discussed with Dave Cross to do his Number::Fraction also
saw Guitartabs that could do with improvements.

Planning to create a 'Notify' system that will run on te background
and keep track of many confgurable events from a great variety of
sources


The following links are only valid for PAUSE maintainers:

Registration form with editing capabilities:
  
https://pause.perl.org/pause/authenquery?ACTION=add_user&USERID=06d0_29edb15bacff1993&SUBMIT_pause99_add_user_sub=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_user&USERID=06d0_29edb15bacff1993&SUBMIT_pause99_add_user_Definitely=1


Welcome new user VANHOESEL

2013-04-24 Thread Perl Authors Upload Server

Welcome Theo van Hoesel,

PAUSE, the Perl Authors Upload Server, has a userid for you:

VANHOESEL

Once you've gone through the procedure of password approval (see the
separate mail you should receive about right now), this userid will be
the one that you can use to upload your work or edit your credentials
in the PAUSE database.

This is what we have stored in the database now:

  Name:  Theo van Hoesel
  email: CENSORED
  homepage:  
  enteredby: David Golden

Please note that your email address is exposed in various listings and
database dumps. You can register with both a public and a secret email
if you want to protect yourself from SPAM. If you want to do this,
please visit
  https://pause.perl.org/pause/authenquery?ACTION=edit_cred
or
  http://pause.perl.org/pause/authenquery?ACTION=edit_cred

If you need any further information, please visit
  $CPAN/modules/04pause.html.
If this doesn't answer your questions, contact modules@perl.org.

Thank you for your prospective contributions,
The Pause Team


Module submission Ruby::Collections

2013-04-24 Thread Perl Authors Upload Server

The following module was proposed for inclusion in the Module List:

  modid:   Ruby::Collections
  DSLIP:   bdpr2
  description: Ruby collections implementation in Perl
  userid:  CLAIR (Clair Lee)
  chapterid:   6 (Data_Type_Utilities)
  communities:
https://github.com/wnameless/ruby-collections-perl/wiki

  similar:

  rationale:

To improve the productivity of Perl, we try to implement around 200
methods inspired by Ruby collections for Perl array and hash.

We build up those methods based on the Perl tie 'StdArray' and tie
'StdHash' features. We call these implementations Ruby::Array and
Ruby::Hash. We try to make these implementations can be treated as
the ordinary Perl array and hash. All modules which are design for
Perl array and hash can be used on Ruby::Array and Ruby::Hash as
well.

Furthermore, we made many improvements on the behaviors of
Ruby::Array and Ruby::Hash. 1. We provide friendly api to build up
Ruby::Array and Ruby::Hash quickly. For example: ra( 1, 2, 3 ) -> [
1, 2, 3 ] ra( [ 1, 2, 3 ] ) -> [ 1, 2, 3 ] ra( ra( 1, 2, 3 ) ) -> [
[ 1, 2, 3 ] ] rh( { 'a' => 1 } ) -> { 'a' => 1 } rh( 'a' => 1 ) -> {
'a' => 1 } rh( 'a', 1 ) -> { 'a' => 1 }

2. Ruby::Hash enumerates its values in the order that the
corresponding keys were inserted. In other words, it becomes an
ordered hash.

3. When using array or hash to be the key of a Ruby::Hash, it
automatically translates the data structure into string form. For
example: rh( [ 1 , 2 ] => 3 ) -> { [ 1, 2 ] => 3 } instead of {
ARRAY(0x7fa4320052b8) => 3 }

4. Complex data structure comparison becomes mush easier. For
example: ra( 1, { 2 => 3 } ) == [ 1, { 2 => 3 } ] # return 1

5. Many operators are overloaded to make Ruby::Array and Ruby::Hash
easier to use. For example: ra( 1, 2 ) << 3 -> [ 1, 2, 3 ] ra( 1, 2,
3 ) - [ 3, 4 ] -> [ 1, 2 ] ...

6. Fluent interface make code much easier to read and use. For
example: rh( 1 => 2, 3 => 4 )->to_a->flatten->map( sub { $_[0] * 2 }
) -> [ 2, 4, 6, 8 ]

  enteredby:   CLAIR (Clair Lee)
  enteredon:   Wed Apr 24 15:54:14 2013 GMT

The resulting entry would be:

Ruby::
::Collections bdpr2 Ruby collections implementation in Perl  CLAIR


Thanks for registering,
-- 
The PAUSE

PS: The following links are only valid for module list maintainers:

Registration form with editing capabilities:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=26d0_e919311e5465e05a&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=26d0_e919311e5465e05a&SUBMIT_pause99_add_mod_insertit=1
Peek at the current permissions:
  
https://pause.perl.org/pause/authenquery?pause99_peek_perms_by=me&pause99_peek_perms_query=Ruby%3A%3ACollections


User update for VANHOESEL

2013-04-24 Thread Perl Authors Upload Server
Record update in the PAUSE users database:

 userid: [VANHOESEL]
   fullname: [Theo van Hoesel]
  asciiname: []
  email: [CENSORED]
   homepage: []
cpan_mail_alias: [publ] was [none]
ustatus: [unused]


Data were entered by VANHOESEL (Theo van Hoesel).
Please check if they are correct.

Thanks,
The Pause


Module submission Yote

2013-04-24 Thread Perl Authors Upload Server

The following module was proposed for inclusion in the Module List:

  modid:   Yote
  DSLIP:   adpOp
  description: autosave perl objs to js proxy no schema
  userid:  CANID (Eric Wolf)
  chapterid:   16 (Server_and_Daemon_Utilities)
  communities:

  similar:

  rationale:

I'm asking that the namespace Yote::WebAppServer be dropped in
favor of just Yote.

Please remove the Yote::WebAppServer namespace if possible

  enteredby:   CANID (Eric Wolf)
  enteredon:   Wed Apr 24 23:59:33 2013 GMT

The resulting entry would be:

Yote  adpOp autosave perl objs to js proxy no schema CANID


Thanks for registering,
-- 
The PAUSE

PS: The following links are only valid for module list maintainers:

Registration form with editing capabilities:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=36d0_8d8e3110dadafe11&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=36d0_8d8e3110dadafe11&SUBMIT_pause99_add_mod_insertit=1
Peek at the current permissions:
  
https://pause.perl.org/pause/authenquery?pause99_peek_perms_by=me&pause99_peek_perms_query=Yote


User update for HKOBA

2013-04-24 Thread Perl Authors Upload Server
Record update in the PAUSE users database:

 userid: [HKOBA]
   fullname: [KOBAYASHI, Hiroaki] was [KOBAYASI, Hiroaki]
  asciiname: []
  email: [CENSORED]
   homepage: [https://github.com/hkoba] was []
cpan_mail_alias: [secr]


Data were entered by HKOBA (KOBAYASI, Hiroaki).
Please check if they are correct.

Thanks,
The Pause