Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

I would like a nopaste app inside of our firewall on our intranet. Do you know of any perl scripts that serve as a nopaste app? All the nopaste or pastebin code on CPAN that I find, serves to post to popluar WWW nopaste services. I dont want to rewrite what seems to be already written many times before. Cheers.

Replies are listed 'Best First'.
Re: nopaste script
by Corion (Patriarch) on Apr 21, 2008 at 18:42 UTC
      Like i said "All the nopaste or pastebin code on CPAN that I find, serves to post to popluar WWW nopaste service"

        Oh.

        pastebot - the original clipboard to chat gateway

        But maybe I'm misunderstanding what you want.

Re: nopaste script
by mscharrer (Hermit) on Apr 21, 2008 at 18:13 UTC
    You want this as HTML app, do you?
    It sounds very straight forward to write a simple script using the CGI module which overs a simple HTML form, gets the content and put it in a standard HTML container inside <pre> tags.
    As unique identify a checksum could be used (->CPAN) and then you need a simple main HTML file holding a list/table of links to all entries.

    Could be done with 100 lines of code. Just in case you don't find a module for it.

      " I dont want to rewrite what seems to be already written many times before."