Re: Module submission Tk::Text::Viewer

2003-10-07 Thread Dominique Dumont
[EMAIL PROTECTED] (Perl Authors Upload Server) writes:

>   description: Read Only Text Widget with simple serach
>   userid:  RAZINF (Oded S. Resnik)
>   chapterid:8 (User_Interfaces)
>   communities:
>
>   similar:
> Tk::More

What's the difference between your widget and Tk::ROText ?

Cheers


-- 
[EMAIL PROTECTED]


PAUSE ID request (GBJK; Gareth Kirwan)

2003-10-07 Thread Perl Authors Upload Server
Request to register new user

fullname: Gareth Kirwan
  userid: GBJK
mail: CENSORED
homepage: http://www.thermeoneurope.com
 why:

Various module ideas, hopefully in several areas.


The following links are only valid for PAUSE maintainers:

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


Re: Module submission Curses::UI::POE

2003-10-07 Thread Dominique Dumont
[EMAIL PROTECTED] (Perl Authors Upload Server) writes:

> The following module was proposed for inclusion in the Module List:
>
>   modid:   Curses::UI::POE
>   DSLIP:   bdppo
>   description: A subclass that forces Curses::UI to use POE
>   userid:  TAG (Scott McCoy)
>   chapterid:8 (User_Interfaces)
>   communities:
> #poe @ freenode
>
>   similar:
> None.
>
>   rationale:
>
> Curses::UI has a nice set of widgets for some things, but not a
> nice way to multitask. This allows POE and Curses::UI components to
> be mixed and matched easily, and makes Curses::UI use a much larger
> and more robust event based framework for all of its event handling.

That's an excellent idea. 

But POE already features a POE::Wheel::Curses. May be you module
should be named POE::Wheel::Curses::UI ? Rocco, do you agree ?

Then, you should discuss with Rocco to dedice whether to distribute
your own package or to integrate your module into POE main package.

Marcus, it would be nice if you could include in Curses::UI's doc a
mention of Scott's module.

Once, the name is agreed upon, I'll register it.

Cheers

-- 
[EMAIL PROTECTED]


User update for MARCUS

2003-10-07 Thread Perl Authors Upload Server
Record update in the PAUSE users database:

 userid: [MARCUS]
   fullname: [Marcus Thiesen]
  asciiname: []
  email: [CENSORED]
   homepage: [http://perl.thiesenweb.de] was [http://www.thiesenweb.de]
cpan_mail_alias: [secr] was [publ]


Data were entered by MARCUS (Marcus Thiesen).
Please check if they are correct.

Thanks,
The Pause


Re: Module submission Arary::Heap2

2003-10-07 Thread pcg
On Mon, Oct 06, 2003 at 10:40:06AM -0400, John Macdonald <[EMAIL PROTECTED]> wrote:
> However, I did write a much simpler package to manage
> a caller-provided array as a heap.

That sounds as if you had the exact same goal.

> Marc (or Autrijus, whichever of you was the person

Marc was it :)
  
> reply to me.  If you give me a few weeks to dig out
> my original code, we can compare and decide where to
> proceed.  Obviously, there is no large installed user
> base that depends upon the unpublished Array::Heap
> code.

np. there is also no installed user base for my module (except my
programs). if you want to compare, my version is on cpan:

http://www.cpan.org/modules/by-authors/id/MLEHMANN/Array-Heap-0.01.tar.gz

(I also attached the module documentation, so no need to download)

> as a heap, while the Heap::* would be the inheritable
> object-oriented heap mechanisms for which you provided
> an Element sub-component for your own purposes - more
> overhead in using them, but more power and flexibility
> available as a result.

That is what I gathered when doing a survey of the existing heap
modules. However, what I needed was the ability to specifically treat an
array as a heap, e.g. calling make_heap after I did some heap-destroying
operations. The existing heap modules only do heaps, it's difficult to
create higher-level data structures on top of them (or so it looked to
me).

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED]  |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |
NAME
Array::Heap - treat perl arrays as heaps (priority queues)

SYNOPSIS
 use Array::Heap;

DESCRIPTION
There are a multitude of heap and heap-like modules on CPAN, you might
want to search for /Heap/ and /Priority/ to find many. They implement
more or less fancy datastructures that might well be what you are
looking for.

This module takes a different approach: It exports functions (i.e. no
object orientation) that are loosely modeled after the C++ STL's heap
functions. They all take an array as argument, just like perl's built-in
functions "push", "pop" etc.

The implementation itself is in C for maximum speed (although I doubt it
makes that much of a difference).

FUNCTIONS
All of the following functions are being exported by default.

make_heap @heap (\@)
Reorders the elements in the array so they form a heap, with the
lowest value "on top" of the heap (corresponding to the first array
element).

make_heap_cmp { compare } @heap (&\@)
Just like "make_heap", but takes a custom comparison function.

push_heap @heap, $element, ... (\@@)
Adds the given element(s) to the heap.

push_heap_cmp { compare } @heap, $element, ... (&\@@)
Just like "push_heap", but takes a custom comparison function.

pop_heap @heap (\@)
Removes the topmost (lowest) heap element and repairs the heap.

pop_heap_cmp { compare } @heap (&\@)
Just like "pop_heap", but takes a custom comparison function.

  COMPARISON FUNCTIONS
All the functions come in two flavours: one that uses the built-in
comparison function and one that uses a custom comparison function.

The built-in comparison function can either compare scalar numerical
values, or array refs. If the elements to compare are array refs, the
first element of the array is used for comparison, i.e.

  1, 4, 6

will be sorted according to their numerical value,

  [1 => $obj1], [2 => $obj2], [3 => $obj3]

will sort according to the first element of the arrays, i.e. "1,2,3".

The custom comparison functions work similar to how "sort" works: $a and
$b are set to the elements to be compared, and the result should be
either -1 if $a is less than $b, or ">= 0" otherwise.

The first example above corresponds to this comparison "function":

  { $a <=> $b }

And the second example corresponds to this:

  { $a->[0] <=> $b->[0] }

Unlike "sort", the default sort is numerical and it is not possible to
use normal subroutines.

BUGS
This module does not work with tied or magical arrays or array
elements.

AUTHOR
 Marc Lehmann <[EMAIL PROTECTED]>
 http://www.goof.com/pcg/marc/



Carparts Online International - Auto Parts, Performance Parts, Option Parts, Japan Car Parts

2003-10-07 Thread Carparts.com.hk
Hi Car Fans,

Carparts Online International – Auto Parts, Performance Parts, Option
Parts, Japan Car Parts, HKS, Apexi, Mugen, Blitz, Pivot, Hot Inazma,
Nology, Trust, GReddy, e-manage

Carparts Online International is a performance car parts website for
retail and wholesale. We have point of present in Japan - Tokyo, Canada,
China and Hong Kong. We sell Air Intake, Exhaust, Mainifold, Frontpipe,
Outlet, Catalytic replacement, N muffler, DTM Muffler, Mugen Style
Muffler, Tips, Oil Catch Tank, Strut Bar, Intercooler, Oil Cooler, Body
Kit, Grounding Wire, H.V.S, Hyper Voltage Regulator, Nology, Gauges,
Turbine, Carbon GT-Wing, Alumininum GT-Wing, King Spring, Xenon Halegon
White Bulb, Car Alarm, Accessories, perfume. Apexi PowerFC, FC
Commander, Boost Controller kit, RSM-GP, RSM, S-AFC2, V-AFC, V-AFC2,
AVC-R, Gauges, HKS SQV BOV, Sard R2D2, Blitz Super DD, Air filter, Power
Flow, Trust e-manage, Blitz dual sbc Spec-S, Spec-R, G-Force Senor,
boost controller, Turbo Timer, HPI Engine damper, Pivot Shift lamp,
Speed meter.

www.carparts.com.hk



User update for JMM

2003-10-07 Thread Perl Authors Upload Server
Record update in the PAUSE users database:

 userid: [JMM]
   fullname: [John Macdonald]
  asciiname: []
  email: [CENSORED]
   homepage: []
cpan_mail_alias: [publ]


Data were entered by ANDK (Andreas J. König).
Please check if they are correct.

Thanks,
The Pause


Os Prefeitos e as Prefeituras do Brasil estão Aqui !

2003-10-07 Thread SSB marketing dirigido

SSB marketing dirigido


At Sr Gerente de Vendas


***
LANÇAMENTO:  A MAIOR PESQUISA DE PREFEITURAS FEITA NO BRASIL 

KIT PREFEITURAS/2003 com os 5561 municípios e seus prefeitos em todo o Brasil
***


Prezado Amigo:

É com enorme prazer que a SSB Marketing lança no mercado o KIT PREFEITURAS/2003 para 
mala direta dirigida e telemarketing com os 5.561 municípios brasileiros e seus 
respectivos prefeitos e Câmaras Municipais.

O Kit é formado por CD Rom com uma planilha do Excel que contém:

Nome da Prefeitura, Nome do Prefeito com o mandato atual até 2004, Endereço completo, 
Telefone da Prefeitura, Área Quadrada do Município, Quantidade Populacional e Ano de 
Fundação. Além os dados da prefeitura estão inclusos os dados da Câmara de Vereadores 
do Município, com endereço completo e telefone.

Além do CD Rom com a planilha em Excel sua empresa recebe também as etiquetas 
impressas para facilitar sua mala direta dirigida.

Este banco de dados é de fundamental importância para todas as empresas que 
comercializam produtos e/ou serviços para os municípios do Brasil, saia na frente da 
concorrência, adquira agora mesmo o maior e melhor banco de dados de municípios já 
produzido no Brasil. Com margem de erro inferior a 2%.


Amigo: o valor do livro do KIT PREFEITURAS/2003 e de R$ 440,00 (na promoção até o dia 
10/10/2003) com pagamento em 2x de R$ 220,00 para 21 e 42  dias, sem nenhum custo 
extra, o frete já esta incluso. O prazo de entrega é de no máximo 4 dias. Para 
qualquer detalhe extra estamos a sua disposição basta ligar, caso tenha interesse em 
conhecer pessoalmente o banco de dados basta agendar uma visita em nossa sede a Rua 
Oscar Camilo 218, bairro da Freguesia do Ó -  SP

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

(   ) Sim desejo receber no endereço abaixo o KIT PREFEITURAS BRASIL/2003   pelo qual 
pagarei o valor promocional de R$ 440,00, com frete incluso e pagamento em 2x de R$ 
220,00 para 21 e 42  dias via boleto bancário.  Sem nenhum custo extra. Envie para o 
e-mail [EMAIL PROTECTED] ou para o fax (11) 3932-5818

Empresa: 

Nome: ___

Endereço: _

CEP: Cidade: __

UF: Telefone: _

CNPJ ou CPF: 

IE ou RG: ___

Data Assinatura_Promoção Valida até 20/10/2003



Sds e muito sucesso


AA Rossi
Dir Coml
(11) 3932-3535







SSB MARKETING DIRIGIDO
Rua Oscar Camilo 218 CEP 02911-130 São Paulo SP
Telefaxes: (11) 3932-3535 ou 3932-5818
E-mail: [EMAIL PROTECTED] 












Caso este informativo não seja de seu interesse, mande um e-mail para [EMAIL 
PROTECTED]com o assunto "Remover da Lista".
Esta mensagem é enviada com a complacência da nova legislação sobre correio 
eletrônico, Seção 301, Parágrafo (a) (2) (c) Decreto S. 1618, Título Terceiro aprovado 
pelo 105o. Congresso Base das Normativas Internacionais sobre o SPAM. Este E-mail não 
poderá ser considerado SPAM quando inclua uma forma de ser removido.




Re: That movie

2003-10-07 Thread info
Dear Sir/Madam,

This is an autogenerated note. Kindly do not answer the same. The mail indicates that 
your message has been forwarded to the right email box in the Institute for further 
action.

Kindly also see the web site of ICSI and use the services on the web site after 
Registering yourself
www.icsi.edu

You can now use the chat/discussion board/placement/training related services. For the 
same you have to register just once and then login into "MyWorkarea" which has been 
developed just for your needs.

You may also use the direct email id of Departments as follows for immediate redressal

Student : [EMAIL PROTECTED]   Always quote your full Registeration number in 
all communication

Member  : [EMAIL PROTECTED]  Always quote your full Membership number in all 
communication

Training: [EMAIL PROTECTED]   Always quote your full Registeration number in 
all communication


The feedback / Complaint link on the bottom of the home page of the web site 
www.icsi.edu may also be used


ICSI



Module submission CPANXR

2003-10-07 Thread Perl Authors Upload Server

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

  modid:   CPANXR
  DSLIP:   adpOp
  description: CPAN Cross Referencer
  userid:  CLAESJAC (Claes Jacobsson)
  chapterid:   23 (Miscellaneous_Modules)
  communities:
London Perl Mongers

  similar:

  rationale:

CPANXR is a cross referencer of Perl code (and some XS). It is
intended to cross reference entire CPAN in the future. There's a
public demo installation on http://cpanxr.surfar.nu/

The name CPANXR is choosen because 1) it's easy and short to write,
2) it rhymes with LXR, 3) It kinda describes what it does.

  enteredby:   CLAESJAC (Claes Jacobsson)
  enteredon:   Tue Oct  7 20:25:09 2003 GMT

The resulting entry would be:

CPANXRadpOp CPAN Cross ReferencerCLAESJAC


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=2640_cc3e8497096dd88d&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=2640_cc3e8497096dd88d&SUBMIT_pause99_add_mod_insertit=1


Module submission Net::BitTorrent::File

2003-10-07 Thread Perl Authors Upload Server

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

  modid:   Net::BitTorrent::File
  DSLIP:   adpOp
  description: Object representing a .torrent file.
  userid:  ORCLEV (R. Kyle Murphy)
  chapterid:5 (Networking_Devices_IPC)
  communities:

  similar:

  rationale:

The Net::BitTorrent namespace will contain various modules for use
with the BitTorrent protocol, including clients, servers, and
various helper utilities. Net::BitTorrent::File is one of several
groundwork modules that will be used within other Net::BitTorrent
modules. The main purpose of Net::BitTorrent::File is to provide a
object oriented representation of .torrent files used by BitTorrent
clients, and to provide other modules in the Net::BitTorrent
namespace with a simple way to handle .torrent files.

  enteredby:   ORCLEV (R. Kyle Murphy)
  enteredon:   Tue Oct  7 20:26:55 2003 GMT

The resulting entry would be:

Net::BitTorrent::
::FileadpOp Object representing a .torrent file. ORCLEV


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=3640_fd6bc40e546ac838&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=3640_fd6bc40e546ac838&SUBMIT_pause99_add_mod_insertit=1


Module submission HTML::TagReader

2003-10-07 Thread Perl Authors Upload Server

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

  modid:   HTML::TagReader
  DSLIP:   MdhOp
  description: read html/sgml/xml files by tags
  userid:  GUS (Guido Socher)
  chapterid:   15 (World_Wide_Web_HTML_HTTP_CGI)
  communities:

  similar:
HTML::Parser HTML::TokeParser

  rationale:

TagReader is a perl extension module which allows you to read
html/xml files by tag. That is: in a similar way as you can read
textfiles by line with "while(<>)" you use
HTML::TagReader::getbytoken to read a file by tag.

Although this module is also suitable to read xml code it is
probably most useful for processing web pages in an efficient way.

HTML::TagReader is a light weight interface to modify/process html
code.

  enteredby:   GUS (Guido Socher)
  enteredon:   Wed Oct  8 01:57:50 2003 GMT

The resulting entry would be:

HTML::
::TagReader   MdhOp read html/sgml/xml files by tags GUS


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=4640_df00e492cdd0386b&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=4640_df00e492cdd0386b&SUBMIT_pause99_add_mod_insertit=1


Module submission CAD::Drawing

2003-10-07 Thread Perl Authors Upload Server

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

  modid:   CAD::Drawing
  DSLIP:   cdpOp
  description: Flexible Vector Geometry Composition in Perl
  userid:  EWILHELM (Eric Wilhelm)
  chapterid:   18 (Images_Pixmaps_Bitmaps)
  communities:
module-authorsATperl.org, pythoncadATpython.org,
cad-linux-devATfreelists.org, comp.lang.perl.modules

  similar:

  rationale:

There are currently no modules available for loading and
manipulating geometric data from dxf and dwg formats. This module
does this and much more, providing a quick and consistent interface
regardless of source or destination format. It encapsulates what I
think is a robust and flexible data structure for 2D geometric data.

It currently supports loading and saving dwg and dxf formats via
the openDWG toolkit. Saving is also possible to Image::Magick
formats and to postscript (via PostScript::Simple.) The driving idea
behind this module is to unify the interface to multiple
file-formats and encapsulate the geometric data in an organized way.
Adding support for other file types is just a matter of writing a
load or save function for that type and will not change the
programming interface.

Entity selection and tracking is available through the use of hash
references which act as addresses. Any manipulation function (move,
copy, rotate, clone, mirror, clip, offset, delete) can operate on an
entity (point, line, arc, circle, text, polyline) using only the
address. This trivializes the writing of programs which deal with
multiple drawings and formats and prevents errors and omissions when
dealing with multiple entity types. It has been developed for use in
batch-processing, but also makes geometric one-liners possible and
would work well for prototyping cad software (though it currently
has no gui components.)

  enteredby:   EWILHELM (Eric Wilhelm)
  enteredon:   Wed Oct  8 02:06:43 2003 GMT

The resulting entry would be:

CAD::
::Drawing cdpOp Flexible Vector Geometry Composition in Perl EWILHELM


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=5640_ccf65b933b2ac9d9&SUBMIT_pause99_add_mod_preview=1
Immediate (one click) registration:
  
https://pause.perl.org/pause/authenquery?ACTION=add_mod&USERID=5640_ccf65b933b2ac9d9&SUBMIT_pause99_add_mod_insertit=1


5 Need not over the ofr counter Meds? dro dfbsmf

2003-10-07 Thread Emiliano




==
Get ANY RX Drugs You NEED or Refills
==

OUR US Doctors will Write YOU a Prescription
You will get it NEXT-DAY via Fed-Ex

You will be very pleased with the results of this 'real' medicine
that you cannot buy off the shelf.

Look at our Huge Selection



Please No More



ten thousand men, reached Napoleon at Orsha with only one thousand men
 have to explain?  If you really say this, my questions are answered
Then I became interested in the contents of some biscuit-tins, and


 



PAUSE ID request (DARTH; Raphael Schmitt)

2003-10-07 Thread Perl Authors Upload Server
Request to register new user

fullname: Raphael Schmitt
  userid: DARTH
mail: CENSORED
homepage: 
 why:


The following links are only valid for PAUSE maintainers:

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