├── docs ├── learn │ ├── includes │ │ ├── bottom.html │ │ └── head.html │ ├── tpl │ │ ├── navigation.html │ │ ├── sponsor.html │ │ └── sections │ │ │ └── examples_config.html │ ├── lessions │ │ └── web_server │ │ │ └── plack │ │ │ ├── root │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── README │ ├── examples │ │ ├── script_head.html │ │ ├── epoch_to_human.html │ │ ├── spreadsheet_read.html │ │ ├── email_valid.html │ │ ├── dancer.html │ │ └── configuration_files.html │ ├── i │ │ ├── external.1.png │ │ ├── oses │ │ │ ├── linux.gif │ │ │ ├── mac.gif │ │ │ └── windows.gif │ │ └── app_icons │ │ │ ├── logo.png │ │ │ ├── iTerm2.png │ │ │ ├── nppLogo.png │ │ │ ├── TextmateIcon.png │ │ │ ├── terminal_app.png │ │ │ ├── TextEdit_icon.png │ │ │ ├── reiss-head-sm.jpg │ │ │ ├── Notepad-icon-free.jpg │ │ │ ├── Command-Prompt-icon.png │ │ │ └── venturing_into_vim.jpeg │ ├── first_steps │ │ └── 01_hello_world.pl │ └── books │ │ └── index.html ├── dev │ ├── google29050d1db60a402f.html │ ├── tpl │ │ ├── sections │ │ │ └── home_config.html │ │ └── nav_tabs.html │ ├── perl5 │ │ ├── news │ │ │ └── 2002 │ │ │ │ └── 07 │ │ │ │ └── 18 │ │ │ │ └── 580ann │ │ │ │ ├── autohandler │ │ │ │ ├── p580ann.txt.big5-tw │ │ │ │ ├── p580ann.txt.euc-cn │ │ │ │ ├── p580ann.txt.euc-jp │ │ │ │ └── p580ann.txt.euc-kr │ │ ├── list-summaries │ │ │ ├── 2002 │ │ │ │ ├── p5p-200208-2.pod │ │ │ │ ├── p5p-200208-3.pod │ │ │ │ ├── p5p-200209-4.pod │ │ │ │ ├── p5p-200210-3.pod │ │ │ │ ├── p5p-200211-3.pod │ │ │ │ └── p5p-200211-4.pod │ │ │ ├── 2003 │ │ │ │ ├── p5p-200304-4.pod │ │ │ │ ├── p5p-200311-4.pod │ │ │ │ └── p5p-200312-1.pod │ │ │ ├── 2005 │ │ │ │ ├── 20050909.pod │ │ │ │ ├── 20050915.pod │ │ │ │ ├── 20050926.pod │ │ │ │ ├── 20051003.pod │ │ │ │ ├── 20051010.pod │ │ │ │ ├── 20051017.pod │ │ │ │ ├── 20051024.pod │ │ │ │ ├── 20051031.pod │ │ │ │ ├── 20051114.pod │ │ │ │ ├── 20051121.pod │ │ │ │ ├── 20051128.pod │ │ │ │ ├── 20051205.pod │ │ │ │ ├── 20051212.pod │ │ │ │ └── 20051226.pod │ │ │ ├── 2006 │ │ │ │ ├── 20060102.pod │ │ │ │ ├── 20060109.pod │ │ │ │ ├── 20060227.pod │ │ │ │ ├── 20060306.pod │ │ │ │ ├── 20060313.pod │ │ │ │ ├── 20060403.pod │ │ │ │ ├── 20060424.pod │ │ │ │ ├── 20060501.pod │ │ │ │ ├── 20060508.pod │ │ │ │ ├── 20060515.pod │ │ │ │ ├── 20060522.pod │ │ │ │ ├── 20060529.pod │ │ │ │ ├── 20060605.pod │ │ │ │ ├── 20060612.pod │ │ │ │ ├── 20060619.pod │ │ │ │ ├── 20060626.pod │ │ │ │ ├── 20060710.pod │ │ │ │ ├── 20060717.pod │ │ │ │ ├── 20060831.pod │ │ │ │ ├── 20060910.pod │ │ │ │ ├── 20060917.pod │ │ │ │ ├── 20061001.pod │ │ │ │ ├── 20061008.pod │ │ │ │ ├── 20061015.pod │ │ │ │ ├── 20061022.pod │ │ │ │ ├── 20061105.pod │ │ │ │ ├── 20061112.pod │ │ │ │ ├── 20061126.pod │ │ │ │ ├── 20061203.pod │ │ │ │ ├── 20061210.pod │ │ │ │ └── 20061217.pod │ │ │ ├── 2007 │ │ │ │ └── 20071230.pod │ │ │ └── 2008 │ │ │ │ ├── 20080106.pod │ │ │ │ ├── 20080112.pod │ │ │ │ ├── 20080119.pod │ │ │ │ ├── 20080126.pod │ │ │ │ ├── 20080202.pod │ │ │ │ ├── 20080210.pod │ │ │ │ ├── 20080223.pod │ │ │ │ ├── 20080229.pod │ │ │ │ ├── 20080308.pod │ │ │ │ └── 20080315.pod │ │ ├── errata.html │ │ └── lists.html │ ├── licenses │ │ └── osi-certified-90x75.gif │ └── perl1 │ │ └── lists.html ├── shared │ ├── favicon.ico │ ├── tpl │ │ ├── style │ │ │ └── bare.html │ │ ├── nav_tabs.html │ │ ├── sponsor.html │ │ ├── defaults │ │ ├── common │ │ │ └── css_include.html │ │ ├── tip │ │ ├── wrapper │ │ └── quick_link_creator │ ├── i │ │ ├── camels.gif │ │ ├── lcamel.gif │ │ ├── lcamel.jpg │ │ ├── onion.jpg │ │ ├── external.png │ │ ├── onion_background.jpg │ │ ├── buttons │ │ │ ├── navy_left.gif │ │ │ └── navy_right.gif │ │ └── short_list_header.jpg │ ├── icons │ │ ├── a.gif │ │ ├── c.gif │ │ ├── f.gif │ │ ├── p.gif │ │ ├── ps.gif │ │ ├── up.gif │ │ ├── uu.gif │ │ ├── back.gif │ │ ├── blank.gif │ │ ├── bomb.gif │ │ ├── box1.gif │ │ ├── box2.gif │ │ ├── burst.gif │ │ ├── dir.gif │ │ ├── down.gif │ │ ├── dvi.gif │ │ ├── index.gif │ │ ├── left.gif │ │ ├── link.gif │ │ ├── movie.gif │ │ ├── patch.gif │ │ ├── pdf.gif │ │ ├── pie0.gif │ │ ├── pie1.gif │ │ ├── pie2.gif │ │ ├── pie3.gif │ │ ├── pie4.gif │ │ ├── pie5.gif │ │ ├── pie6.gif │ │ ├── pie7.gif │ │ ├── pie8.gif │ │ ├── quill.gif │ │ ├── right.gif │ │ ├── tar.gif │ │ ├── tex.gif │ │ ├── text.gif │ │ ├── binary.gif │ │ ├── binhex.gif │ │ ├── broken.gif │ │ ├── folder.gif │ │ ├── forward.gif │ │ ├── generic.gif │ │ ├── hand.up.gif │ │ ├── image1.gif │ │ ├── image2.gif │ │ ├── image3.gif │ │ ├── layout.gif │ │ ├── portal.gif │ │ ├── screw1.gif │ │ ├── screw2.gif │ │ ├── script.gif │ │ ├── sound1.gif │ │ ├── sound2.gif │ │ ├── sphere1.gif │ │ ├── sphere2.gif │ │ ├── unknown.gif │ │ ├── world1.gif │ │ ├── world2.gif │ │ ├── alert.red.gif │ │ ├── apache_pb.gif │ │ ├── ball.gray.gif │ │ ├── ball.red.gif │ │ ├── comp.blue.gif │ │ ├── comp.gray.gif │ │ ├── compressed.gif │ │ ├── continued.gif │ │ ├── folder.sec.gif │ │ ├── hand.right.gif │ │ ├── icon.sheet.gif │ │ ├── transfer.gif │ │ ├── uuencoded.gif │ │ ├── alert.black.gif │ │ ├── folder.open.gif │ │ ├── generic.red.gif │ │ └── generic.sec.gif │ ├── simages │ │ ├── rss.gif │ │ ├── xml.gif │ │ ├── sm_camel.gif │ │ └── combust-powered.png │ ├── robots.txt │ └── nav_tabs ├── static │ ├── .gitignore │ ├── tpl │ │ └── style │ │ │ └── default.html │ ├── favicon.ico │ ├── images │ │ ├── lcamel.gif │ │ ├── tab_bg.gif │ │ ├── icons │ │ │ ├── cal.png │ │ │ ├── cog.png │ │ │ ├── rss.png │ │ │ ├── camel.png │ │ │ ├── cpan.png │ │ │ ├── cross.png │ │ │ ├── docs.png │ │ │ ├── info.png │ │ │ ├── learn.png │ │ │ ├── onion.png │ │ │ ├── perl6.png │ │ │ ├── star.png │ │ │ ├── tick.png │ │ │ ├── download.png │ │ │ ├── community.png │ │ │ ├── download_arrow.gif │ │ │ └── onion_download.png │ │ ├── logos │ │ │ ├── mac.gif │ │ │ ├── linux.gif │ │ │ └── windows.gif │ │ ├── arrow_grey.gif │ │ ├── camel_head.png │ │ ├── friends │ │ │ ├── ix2.png │ │ │ ├── rhn.png │ │ │ ├── fastly.png │ │ │ ├── phyber.png │ │ │ ├── vmware.gif │ │ │ ├── cyclades.gif │ │ │ ├── cyclades.png │ │ │ ├── internap.gif │ │ │ ├── penguin.gif │ │ │ ├── citysearch.png │ │ │ ├── coyotepoint.png │ │ │ ├── oreilly-160.png │ │ │ ├── safari_logo.gif │ │ │ ├── yellowbot.gif │ │ │ ├── bestpractical.gif │ │ │ ├── bestpractical.png │ │ │ ├── bizrate_logo.png │ │ │ ├── thalasar_logo.gif │ │ │ ├── ticketmaster.png │ │ │ ├── template-toolkit.gif │ │ │ ├── valueclick_logo.gif │ │ │ ├── digital_craftsmen.png │ │ │ └── develooperlogo-160t.png │ │ ├── shadow_line.jpg │ │ ├── tab_bg_selected.gif │ │ ├── buttons │ │ │ ├── my_portal.gif │ │ │ ├── perlpowered.gif │ │ │ ├── perlpowered.png │ │ │ ├── download_perl.gif │ │ │ ├── download_perl1.gif │ │ │ └── download_perl_grey.gif │ │ ├── onion │ │ │ ├── onion-160x160.gif │ │ │ ├── onion-160x160.png │ │ │ ├── onion-24x24.gif │ │ │ ├── onion-24x24.png │ │ │ ├── onion-30x30.gif │ │ │ ├── onion-30x30.png │ │ │ ├── onion-30x30a.gif │ │ │ ├── onion-30x30a.png │ │ │ └── onion-160x160a.gif │ │ ├── tab_bg_r_selected.gif │ │ └── masthead │ │ │ └── camel │ │ │ └── camel_bg.gif │ ├── cpanratings │ │ └── images │ │ │ ├── progress.gif │ │ │ ├── stars-0.0.png │ │ │ ├── stars-0.5.png │ │ │ ├── stars-1.0.png │ │ │ ├── stars-1.5.png │ │ │ ├── stars-2.0.png │ │ │ ├── stars-2.5.png │ │ │ ├── stars-3.0.png │ │ │ ├── stars-3.5.png │ │ │ ├── stars-4.0.png │ │ │ ├── stars-4.5.png │ │ │ ├── stars-5.0.png │ │ │ └── stars-undef.png │ └── css │ │ ├── dbi.css │ │ ├── qa.css │ │ └── ldap.css ├── www │ ├── google29050d1db60a402f.html │ ├── images │ │ ├── buttons │ │ ├── camel.gif │ │ ├── lcamel.gif │ │ ├── cpan_banner.png │ │ ├── perlmongers.gif │ │ └── perl_logo_tm-40x130.gif │ ├── favicon.ico │ ├── i │ │ ├── activestate.png │ │ └── strawberry_small.png │ ├── tpl │ │ ├── sections │ │ │ ├── home_config.html │ │ │ ├── community_config.html │ │ │ ├── cpan_config.html │ │ │ └── contribute_config.html │ │ └── sponsor.html │ ├── css │ │ └── search.css │ └── advocacy │ │ ├── white_camel │ │ └── 2009.html │ │ └── spoofathon │ │ └── tpl │ │ └── navigation.html ├── perl4lib │ ├── tpl │ │ ├── style │ │ │ ├── simple.html │ │ │ └── perl4lib.html │ │ └── defaults │ ├── images │ │ └── perl4lib.png │ └── css │ │ └── style.css ├── cpanratings │ ├── robots.txt │ ├── display │ │ ├── bare_list.html │ │ └── show_list.html │ ├── rate │ │ ├── rate_error.html │ │ └── rate_submitted.html │ ├── search │ │ └── search_form.html │ ├── .htredirects │ └── index.html ├── noc │ ├── tpl │ │ └── defaults │ ├── images │ │ ├── ask.gif │ │ └── robert.gif │ ├── policy │ │ └── index.html │ └── svn │ │ └── tpl │ │ └── navigation.html ├── com │ ├── favicon.ico │ └── tpl │ │ └── sections │ │ └── articles_config.html ├── dbi │ ├── favicon.ico │ └── images │ │ ├── logo.gif │ │ └── dbiarch.gif ├── ldap │ ├── favicon.ico │ ├── .htredirects │ └── tpl │ │ ├── quick_links_2 │ │ ├── quick_links_1 │ │ └── defaults ├── qa │ ├── images │ │ ├── qa.png │ │ └── kwalitee-hoplite-red.jpg │ ├── tpl │ │ ├── quick_links_3 │ │ ├── sections │ │ │ └── home_config.html │ │ └── defaults │ ├── .htredirects │ └── phalanx │ │ └── make-status ├── parrotcode │ ├── favicon.ico │ ├── images │ │ └── parrot.small.png │ ├── docs.html │ ├── docs │ │ ├── donors.html │ │ ├── pmc │ │ │ ├── pmc │ │ │ │ ├── env.html │ │ │ │ ├── key.html │ │ │ │ ├── nci.html │ │ │ │ ├── os.html │ │ │ │ ├── ref.html │ │ │ │ ├── sub.html │ │ │ │ ├── array.html │ │ │ │ ├── eval.html │ │ │ │ ├── file.html │ │ │ │ ├── float.html │ │ │ │ ├── hash.html │ │ │ │ ├── null.html │ │ │ │ ├── pair.html │ │ │ │ ├── role.html │ │ │ │ ├── slice.html │ │ │ │ ├── subs.html │ │ │ │ ├── super.html │ │ │ │ ├── timer.html │ │ │ │ ├── undef.html │ │ │ │ ├── bigint.html │ │ │ │ ├── lexpad.html │ │ │ │ ├── object.html │ │ │ │ ├── random.html │ │ │ │ ├── sarray.html │ │ │ │ ├── scalar.html │ │ │ │ ├── stmlog.html │ │ │ │ ├── stmref.html │ │ │ │ ├── stmvar.html │ │ │ │ ├── string.html │ │ │ │ ├── struct.html │ │ │ │ ├── tqueue.html │ │ │ │ ├── boolean.html │ │ │ │ ├── capture.html │ │ │ │ ├── closure.html │ │ │ │ ├── compiler.html │ │ │ │ ├── complex.html │ │ │ │ ├── default.html │ │ │ │ ├── delegate.html │ │ │ │ ├── exporter.html │ │ │ │ ├── integer.html │ │ │ │ ├── intlist.html │ │ │ │ ├── iterator.html │ │ │ │ ├── lexinfo.html │ │ │ │ ├── multisub.html │ │ │ │ ├── parrotio.html │ │ │ │ ├── pointer.html │ │ │ │ ├── version.html │ │ │ │ ├── bound_nci.html │ │ │ │ ├── coroutine.html │ │ │ │ ├── deleg_pmc.html │ │ │ │ ├── enumerate.html │ │ │ │ ├── exception.html │ │ │ │ ├── multiarray.html │ │ │ │ ├── namespace.html │ │ │ │ ├── sharedref.html │ │ │ │ ├── smop_class.html │ │ │ │ ├── orderedhash.html │ │ │ │ ├── parrotclass.html │ │ │ │ ├── vtablecache.html │ │ │ │ ├── addrregistry.html │ │ │ │ ├── continuation.html │ │ │ │ ├── fixedpmcarray.html │ │ │ │ ├── managedstruct.html │ │ │ │ ├── parrotlibrary.html │ │ │ │ ├── parrotobject.html │ │ │ │ ├── parrotthread.html │ │ │ │ ├── fixedfloatarray.html │ │ │ │ ├── pccmethod_test.html │ │ │ │ ├── retcontinuation.html │ │ │ │ ├── smop_attribute.html │ │ │ │ ├── unmanagedstruct.html │ │ │ │ ├── fixedstringarray.html │ │ │ │ ├── exception_handler.html │ │ │ │ ├── fixedbooleanarray.html │ │ │ │ ├── fixedintegerarray.html │ │ │ │ ├── parrotinterpreter.html │ │ │ │ ├── resizablepmcarray.html │ │ │ │ ├── parrotrunningthread.html │ │ │ │ ├── resizablefloatarray.html │ │ │ │ ├── resizablestringarray.html │ │ │ │ ├── resizablebooleanarray.html │ │ │ │ └── resizableintegerarray.html │ │ │ ├── array.html │ │ │ ├── iterator.html │ │ │ ├── subs.html │ │ │ └── struct.html │ │ ├── ops │ │ │ ├── core.html │ │ │ ├── debug.html │ │ │ ├── dotgnu.html │ │ │ ├── io.html │ │ │ ├── pmc.html │ │ │ ├── bit.html │ │ │ ├── set.html │ │ │ ├── var.html │ │ │ ├── cmp.html │ │ │ ├── math.html │ │ │ ├── obscure.html │ │ │ ├── python.html │ │ │ ├── string.html │ │ │ ├── sys.html │ │ │ ├── object.html │ │ │ └── experimental.html │ │ ├── pmc2c.html │ │ ├── dev │ │ │ └── optimizer.html │ │ ├── pdd │ │ │ ├── pdd17_pmc.html │ │ │ ├── pdd24_events.html │ │ │ ├── pdd18_security.html │ │ │ ├── pdd00_pdd.html │ │ │ ├── pdd28_strings.html │ │ │ ├── pdd07_codingstd.html │ │ │ ├── pdd15_objects.html │ │ │ ├── pdd21_namespaces.html │ │ │ ├── pdd23_exceptions.html │ │ │ ├── pdd25_concurrency.html │ │ │ ├── pdd26_ast.html │ │ │ ├── pdd22_io.html │ │ │ ├── pdd19_pir.html │ │ │ ├── pdd09_gc.html │ │ │ ├── pdd27_multiple_dispatch.html │ │ │ ├── pdd03_calling_conventions.html │ │ │ ├── pdd08_keys.html │ │ │ ├── pdd13_bytecode.html │ │ │ ├── pdd14_numbers.html │ │ │ ├── pdd10_embedding.html │ │ │ ├── pdd05_opfunc.html │ │ │ └── pdd06_pasm.html │ │ ├── art │ │ │ ├── pp001-intro.html │ │ │ ├── pp002-pmc.html │ │ │ └── pp003-oop.html │ │ ├── imcc │ │ │ ├── operation.html │ │ │ └── imcfaq.html │ │ ├── roles.html │ │ └── parrothist.html │ ├── faq │ │ ├── imcc.html │ │ └── index.html │ ├── glossary.html │ ├── testing_status.html │ ├── languages │ │ └── index.html │ └── cage-cleaners │ │ └── guide.html ├── foundation │ ├── tpl │ │ ├── news │ │ │ ├── list.html │ │ │ ├── archive_year_list.html │ │ │ ├── current.html │ │ │ ├── individual_entry.html │ │ │ ├── entry.html │ │ │ ├── archive_summary.html │ │ │ └── archive.html │ │ └── defaults │ ├── images │ │ ├── bplogo.gif │ │ ├── favicon.ico │ │ ├── rss-10.gif │ │ ├── rss-20.gif │ │ ├── Dan_2002.jpg │ │ ├── Larry_2002.jpg │ │ ├── Damian_2002.jpg │ │ ├── TPFcircle-sm.jpg │ │ ├── onion_32x32.png │ │ ├── onion_64x64.png │ │ ├── perl_powered.png │ │ ├── perl_tm_demo.png │ │ ├── perl_republic.png │ │ ├── tpf_logo_150x79.png │ │ ├── tpf_logo_45x86.png │ │ └── perl_logo_32x104.png │ ├── data │ │ ├── Makefile │ │ └── news │ │ │ ├── 20040326-2004_first_quarter_grants │ │ │ ├── 20040219-grants_committee_membership │ │ │ ├── 20020131-yapc__america__2002_call_for_papers │ │ │ ├── 20020215-yapc__america__2002_registration_opens │ │ │ ├── 20020216-yas_to_host_mozilla_developer_days_at_cmu │ │ │ ├── 20010326-yet_another_rss_channel │ │ │ ├── 20020729-perl_foundation_july__2002_newsletter │ │ │ ├── 20010403-yapc__america__north_registration_opens │ │ │ ├── 20010313-larry_wall_to_speak_at_yapc__america__north │ │ │ ├── 20040123-fotango_provides_grant_money_for_the_tpf │ │ │ ├── 20030407-survey_and_proposal_forms │ │ │ ├── 20030726-yapc__eu__2004_venue_chosen │ │ │ ├── 20030731-grant_recipient_autrijus_tang_results │ │ │ └── 20020102-yapc__europe__2002__munich____call_for_papers │ ├── gc │ │ └── grants │ │ │ └── 2006.html │ ├── news │ │ ├── 2001 │ │ │ ├── yasrssfeed.html │ │ │ ├── yapcna2001reg.html │ │ │ └── yapcna2001larry.html │ │ ├── 2002 │ │ │ ├── yapcna2002reg.html │ │ │ ├── yashostsmozilla.html │ │ │ ├── yapcna2002cfp.html │ │ │ ├── pfnewsletter2002.html │ │ │ ├── yapceu2002cfp.html │ │ │ └── 20022001grants.html │ │ ├── 2003 │ │ │ ├── autrijus.html │ │ │ ├── yapceu2004venue.html │ │ │ ├── surveyproposal.html │ │ │ └── YAPC::EU::2004.html │ │ ├── 2004 │ │ │ ├── 2004q1grants.html │ │ │ ├── 2004gcmembership.html │ │ │ └── fontangogrant.html │ │ └── 2005 │ │ │ └── 20022001grants.html │ ├── sc │ │ └── index.html │ ├── who.html │ ├── pr │ │ ├── index.html │ │ └── old_news │ │ │ └── index.html │ ├── bod.pod │ └── conferences.pod ├── cpannotify │ ├── i │ │ ├── img │ │ │ ├── progress.gif │ │ │ └── progress2.gif │ │ ├── css │ │ │ └── cpannotify.css │ │ └── js │ │ │ └── yui │ │ │ ├── YAHOO.js │ │ │ └── min │ │ │ └── YAHOO.js │ └── index.html ├── sdl │ └── .htredirects ├── debugger │ ├── tpl │ │ └── defaults │ └── .htredirects └── lists │ ├── tpl │ └── category_page.html │ ├── data │ └── validate.pl │ └── category │ ├── science.html │ └── db.html ├── LICENSE ├── .mailmap ├── lib ├── PerlOrg │ ├── Control.pm │ ├── Control │ │ ├── Basic.pm │ │ └── CSS.pm │ └── App.pm ├── CPANNotify.pm ├── CPANRatings │ ├── Control │ │ ├── Logout.pm │ │ ├── Basic.pm │ │ └── RecentRSS.pm │ ├── API.pm │ └── API │ │ ├── Test.pm │ │ └── Base.pm └── CPANNotify │ ├── DBI.pm │ └── User.pm ├── app.psgi ├── .gitmodules ├── run_perlweb ├── apache └── conf │ └── sites │ ├── sdl.tmpl │ ├── ldap.tmpl │ ├── dbi.tmpl │ ├── ponie.tmpl │ ├── qa.tmpl │ ├── combust.tmpl │ ├── perl4lib.tmpl │ ├── noc.tmpl │ ├── debugger.tmpl │ └── foundation.tmpl ├── .gitignore └── sql └── scripts └── cpanratings.6 /docs/learn/includes/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/learn/includes/head.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/learn/tpl/navigation.html: -------------------------------------------------------------------------------- 1 | navbar 2 | -------------------------------------------------------------------------------- /docs/dev/google29050d1db60a402f.html: -------------------------------------------------------------------------------- 1 | google 2 | -------------------------------------------------------------------------------- /docs/shared/favicon.ico: -------------------------------------------------------------------------------- 1 | ../static/favicon.ico -------------------------------------------------------------------------------- /docs/static/.gitignore: -------------------------------------------------------------------------------- 1 | .static.versions.* 2 | -------------------------------------------------------------------------------- /docs/www/google29050d1db60a402f.html: -------------------------------------------------------------------------------- 1 | google 2 | -------------------------------------------------------------------------------- /docs/perl4lib/tpl/style/simple.html: -------------------------------------------------------------------------------- 1 | [% content %] 2 | -------------------------------------------------------------------------------- /docs/shared/tpl/style/bare.html: -------------------------------------------------------------------------------- 1 | [% content %] 2 | -------------------------------------------------------------------------------- /docs/www/images/buttons: -------------------------------------------------------------------------------- 1 | ../../static/images/buttons -------------------------------------------------------------------------------- /docs/static/tpl/style/default.html: -------------------------------------------------------------------------------- 1 | [% content %] 2 | 3 | -------------------------------------------------------------------------------- /docs/dev/tpl/sections/home_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | -%] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/LICENSE -------------------------------------------------------------------------------- /docs/cpanratings/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /rate 3 | -------------------------------------------------------------------------------- /docs/shared/tpl/nav_tabs.html: -------------------------------------------------------------------------------- 1 | [% # defaults to empty %] 2 | 3 | -------------------------------------------------------------------------------- /docs/shared/tpl/sponsor.html: -------------------------------------------------------------------------------- 1 | [% # intentionally left blank %] 2 | -------------------------------------------------------------------------------- /docs/noc/tpl/defaults: -------------------------------------------------------------------------------- 1 | [% 2 | PROCESS shared/tpl/defaults; 3 | 4 | %] -------------------------------------------------------------------------------- /docs/dev/perl5/news/2002/07/18/580ann/autohandler: -------------------------------------------------------------------------------- 1 | % $m->call_next; 2 | 3 | -------------------------------------------------------------------------------- /docs/learn/lessions/web_server/plack/root/index.html: -------------------------------------------------------------------------------- 1 | I am the index page 2 | -------------------------------------------------------------------------------- /docs/com/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/com/favicon.ico -------------------------------------------------------------------------------- /docs/dbi/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dbi/favicon.ico -------------------------------------------------------------------------------- /docs/ldap/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/ldap/favicon.ico -------------------------------------------------------------------------------- /docs/learn/examples/script_head.html: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use strict; 3 | use warnings; 4 | 5 | -------------------------------------------------------------------------------- /docs/qa/images/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/qa/images/qa.png -------------------------------------------------------------------------------- /docs/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/favicon.ico -------------------------------------------------------------------------------- /docs/dbi/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dbi/images/logo.gif -------------------------------------------------------------------------------- /docs/noc/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/noc/images/ask.gif -------------------------------------------------------------------------------- /docs/shared/i/camels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/camels.gif -------------------------------------------------------------------------------- /docs/shared/i/lcamel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/lcamel.gif -------------------------------------------------------------------------------- /docs/shared/i/lcamel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/lcamel.jpg -------------------------------------------------------------------------------- /docs/shared/i/onion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/onion.jpg -------------------------------------------------------------------------------- /docs/shared/icons/a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/a.gif -------------------------------------------------------------------------------- /docs/shared/icons/c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/c.gif -------------------------------------------------------------------------------- /docs/shared/icons/f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/f.gif -------------------------------------------------------------------------------- /docs/shared/icons/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/p.gif -------------------------------------------------------------------------------- /docs/shared/icons/ps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/ps.gif -------------------------------------------------------------------------------- /docs/shared/icons/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/up.gif -------------------------------------------------------------------------------- /docs/shared/icons/uu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/uu.gif -------------------------------------------------------------------------------- /docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/favicon.ico -------------------------------------------------------------------------------- /docs/dbi/images/dbiarch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dbi/images/dbiarch.gif -------------------------------------------------------------------------------- /docs/learn/i/external.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/external.1.png -------------------------------------------------------------------------------- /docs/learn/i/oses/linux.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/oses/linux.gif -------------------------------------------------------------------------------- /docs/learn/i/oses/mac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/oses/mac.gif -------------------------------------------------------------------------------- /docs/noc/images/robert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/noc/images/robert.gif -------------------------------------------------------------------------------- /docs/parrotcode/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/parrotcode/favicon.ico -------------------------------------------------------------------------------- /docs/shared/i/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/external.png -------------------------------------------------------------------------------- /docs/shared/icons/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/back.gif -------------------------------------------------------------------------------- /docs/shared/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/blank.gif -------------------------------------------------------------------------------- /docs/shared/icons/bomb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/bomb.gif -------------------------------------------------------------------------------- /docs/shared/icons/box1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/box1.gif -------------------------------------------------------------------------------- /docs/shared/icons/box2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/box2.gif -------------------------------------------------------------------------------- /docs/shared/icons/burst.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/burst.gif -------------------------------------------------------------------------------- /docs/shared/icons/dir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/dir.gif -------------------------------------------------------------------------------- /docs/shared/icons/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/down.gif -------------------------------------------------------------------------------- /docs/shared/icons/dvi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/dvi.gif -------------------------------------------------------------------------------- /docs/shared/icons/index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/index.gif -------------------------------------------------------------------------------- /docs/shared/icons/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/left.gif -------------------------------------------------------------------------------- /docs/shared/icons/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/link.gif -------------------------------------------------------------------------------- /docs/shared/icons/movie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/movie.gif -------------------------------------------------------------------------------- /docs/shared/icons/patch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/patch.gif -------------------------------------------------------------------------------- /docs/shared/icons/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pdf.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie0.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie1.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie2.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie3.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie4.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie5.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie6.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie7.gif -------------------------------------------------------------------------------- /docs/shared/icons/pie8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/pie8.gif -------------------------------------------------------------------------------- /docs/shared/icons/quill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/quill.gif -------------------------------------------------------------------------------- /docs/shared/icons/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/right.gif -------------------------------------------------------------------------------- /docs/shared/icons/tar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/tar.gif -------------------------------------------------------------------------------- /docs/shared/icons/tex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/tex.gif -------------------------------------------------------------------------------- /docs/shared/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/text.gif -------------------------------------------------------------------------------- /docs/shared/simages/rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/simages/rss.gif -------------------------------------------------------------------------------- /docs/shared/simages/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/simages/xml.gif -------------------------------------------------------------------------------- /docs/www/i/activestate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/i/activestate.png -------------------------------------------------------------------------------- /docs/www/images/camel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/images/camel.gif -------------------------------------------------------------------------------- /docs/www/images/lcamel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/images/lcamel.gif -------------------------------------------------------------------------------- /docs/learn/i/oses/windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/oses/windows.gif -------------------------------------------------------------------------------- /docs/shared/icons/binary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/binary.gif -------------------------------------------------------------------------------- /docs/shared/icons/binhex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/binhex.gif -------------------------------------------------------------------------------- /docs/shared/icons/broken.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/broken.gif -------------------------------------------------------------------------------- /docs/shared/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/folder.gif -------------------------------------------------------------------------------- /docs/shared/icons/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/forward.gif -------------------------------------------------------------------------------- /docs/shared/icons/generic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/generic.gif -------------------------------------------------------------------------------- /docs/shared/icons/hand.up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/hand.up.gif -------------------------------------------------------------------------------- /docs/shared/icons/image1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/image1.gif -------------------------------------------------------------------------------- /docs/shared/icons/image2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/image2.gif -------------------------------------------------------------------------------- /docs/shared/icons/image3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/image3.gif -------------------------------------------------------------------------------- /docs/shared/icons/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/layout.gif -------------------------------------------------------------------------------- /docs/shared/icons/portal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/portal.gif -------------------------------------------------------------------------------- /docs/shared/icons/screw1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/screw1.gif -------------------------------------------------------------------------------- /docs/shared/icons/screw2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/screw2.gif -------------------------------------------------------------------------------- /docs/shared/icons/script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/script.gif -------------------------------------------------------------------------------- /docs/shared/icons/sound1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/sound1.gif -------------------------------------------------------------------------------- /docs/shared/icons/sound2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/sound2.gif -------------------------------------------------------------------------------- /docs/shared/icons/sphere1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/sphere1.gif -------------------------------------------------------------------------------- /docs/shared/icons/sphere2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/sphere2.gif -------------------------------------------------------------------------------- /docs/shared/icons/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/unknown.gif -------------------------------------------------------------------------------- /docs/shared/icons/world1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/world1.gif -------------------------------------------------------------------------------- /docs/shared/icons/world2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/world2.gif -------------------------------------------------------------------------------- /docs/static/images/lcamel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/lcamel.gif -------------------------------------------------------------------------------- /docs/static/images/tab_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/tab_bg.gif -------------------------------------------------------------------------------- /docs/foundation/tpl/news/list.html: -------------------------------------------------------------------------------- 1 | [% FOREACH news = news_data %] 2 | [% INCLUDE news/entry.html %] 3 | [% END %] 4 | -------------------------------------------------------------------------------- /docs/learn/first_steps/01_hello_world.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use strict; 3 | use warnings; 4 | 5 | print "hi NAME\n"; -------------------------------------------------------------------------------- /docs/learn/i/app_icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/logo.png -------------------------------------------------------------------------------- /docs/shared/icons/alert.red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/alert.red.gif -------------------------------------------------------------------------------- /docs/shared/icons/apache_pb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/apache_pb.gif -------------------------------------------------------------------------------- /docs/shared/icons/ball.gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/ball.gray.gif -------------------------------------------------------------------------------- /docs/shared/icons/ball.red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/ball.red.gif -------------------------------------------------------------------------------- /docs/shared/icons/comp.blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/comp.blue.gif -------------------------------------------------------------------------------- /docs/shared/icons/comp.gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/comp.gray.gif -------------------------------------------------------------------------------- /docs/shared/icons/compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/compressed.gif -------------------------------------------------------------------------------- /docs/shared/icons/continued.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/continued.gif -------------------------------------------------------------------------------- /docs/shared/icons/folder.sec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/folder.sec.gif -------------------------------------------------------------------------------- /docs/shared/icons/hand.right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/hand.right.gif -------------------------------------------------------------------------------- /docs/shared/icons/icon.sheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/icon.sheet.gif -------------------------------------------------------------------------------- /docs/shared/icons/transfer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/transfer.gif -------------------------------------------------------------------------------- /docs/shared/icons/uuencoded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/uuencoded.gif -------------------------------------------------------------------------------- /docs/shared/simages/sm_camel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/simages/sm_camel.gif -------------------------------------------------------------------------------- /docs/static/images/icons/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/cal.png -------------------------------------------------------------------------------- /docs/static/images/icons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/cog.png -------------------------------------------------------------------------------- /docs/static/images/icons/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/rss.png -------------------------------------------------------------------------------- /docs/static/images/logos/mac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/logos/mac.gif -------------------------------------------------------------------------------- /docs/www/i/strawberry_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/i/strawberry_small.png -------------------------------------------------------------------------------- /docs/www/images/cpan_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/images/cpan_banner.png -------------------------------------------------------------------------------- /docs/www/images/perlmongers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/images/perlmongers.gif -------------------------------------------------------------------------------- /docs/cpannotify/i/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/cpannotify/i/img/progress.gif -------------------------------------------------------------------------------- /docs/foundation/images/bplogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/bplogo.gif -------------------------------------------------------------------------------- /docs/foundation/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/favicon.ico -------------------------------------------------------------------------------- /docs/foundation/images/rss-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/rss-10.gif -------------------------------------------------------------------------------- /docs/foundation/images/rss-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/rss-20.gif -------------------------------------------------------------------------------- /docs/learn/i/app_icons/iTerm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/iTerm2.png -------------------------------------------------------------------------------- /docs/learn/i/app_icons/nppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/nppLogo.png -------------------------------------------------------------------------------- /docs/perl4lib/images/perl4lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/perl4lib/images/perl4lib.png -------------------------------------------------------------------------------- /docs/shared/i/onion_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/onion_background.jpg -------------------------------------------------------------------------------- /docs/shared/icons/alert.black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/alert.black.gif -------------------------------------------------------------------------------- /docs/shared/icons/folder.open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/folder.open.gif -------------------------------------------------------------------------------- /docs/shared/icons/generic.red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/generic.red.gif -------------------------------------------------------------------------------- /docs/shared/icons/generic.sec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/icons/generic.sec.gif -------------------------------------------------------------------------------- /docs/static/images/arrow_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/arrow_grey.gif -------------------------------------------------------------------------------- /docs/static/images/camel_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/camel_head.png -------------------------------------------------------------------------------- /docs/static/images/friends/ix2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/ix2.png -------------------------------------------------------------------------------- /docs/static/images/friends/rhn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/rhn.png -------------------------------------------------------------------------------- /docs/static/images/icons/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/camel.png -------------------------------------------------------------------------------- /docs/static/images/icons/cpan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/cpan.png -------------------------------------------------------------------------------- /docs/static/images/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/cross.png -------------------------------------------------------------------------------- /docs/static/images/icons/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/docs.png -------------------------------------------------------------------------------- /docs/static/images/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/info.png -------------------------------------------------------------------------------- /docs/static/images/icons/learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/learn.png -------------------------------------------------------------------------------- /docs/static/images/icons/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/onion.png -------------------------------------------------------------------------------- /docs/static/images/icons/perl6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/perl6.png -------------------------------------------------------------------------------- /docs/static/images/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/star.png -------------------------------------------------------------------------------- /docs/static/images/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/tick.png -------------------------------------------------------------------------------- /docs/static/images/logos/linux.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/logos/linux.gif -------------------------------------------------------------------------------- /docs/static/images/shadow_line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/shadow_line.jpg -------------------------------------------------------------------------------- /docs/cpannotify/i/img/progress2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/cpannotify/i/img/progress2.gif -------------------------------------------------------------------------------- /docs/foundation/images/Dan_2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/Dan_2002.jpg -------------------------------------------------------------------------------- /docs/foundation/images/Larry_2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/Larry_2002.jpg -------------------------------------------------------------------------------- /docs/shared/i/buttons/navy_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/buttons/navy_left.gif -------------------------------------------------------------------------------- /docs/shared/i/buttons/navy_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/buttons/navy_right.gif -------------------------------------------------------------------------------- /docs/shared/i/short_list_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/i/short_list_header.jpg -------------------------------------------------------------------------------- /docs/static/images/friends/fastly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/fastly.png -------------------------------------------------------------------------------- /docs/static/images/friends/phyber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/phyber.png -------------------------------------------------------------------------------- /docs/static/images/friends/vmware.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/vmware.gif -------------------------------------------------------------------------------- /docs/static/images/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/download.png -------------------------------------------------------------------------------- /docs/static/images/logos/windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/logos/windows.gif -------------------------------------------------------------------------------- /docs/cpanratings/display/bare_list.html: -------------------------------------------------------------------------------- 1 | [% page.style = "none" %] 2 | [% PROCESS display/show_list.html, reviews = reviews %] 3 | -------------------------------------------------------------------------------- /docs/foundation/images/Damian_2002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/Damian_2002.jpg -------------------------------------------------------------------------------- /docs/foundation/images/TPFcircle-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/TPFcircle-sm.jpg -------------------------------------------------------------------------------- /docs/foundation/images/onion_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/onion_32x32.png -------------------------------------------------------------------------------- /docs/foundation/images/onion_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/onion_64x64.png -------------------------------------------------------------------------------- /docs/foundation/images/perl_powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/perl_powered.png -------------------------------------------------------------------------------- /docs/foundation/images/perl_tm_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/perl_tm_demo.png -------------------------------------------------------------------------------- /docs/learn/i/app_icons/TextmateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/TextmateIcon.png -------------------------------------------------------------------------------- /docs/learn/i/app_icons/terminal_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/terminal_app.png -------------------------------------------------------------------------------- /docs/parrotcode/images/parrot.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/parrotcode/images/parrot.small.png -------------------------------------------------------------------------------- /docs/qa/images/kwalitee-hoplite-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/qa/images/kwalitee-hoplite-red.jpg -------------------------------------------------------------------------------- /docs/sdl/.htredirects: -------------------------------------------------------------------------------- 1 | # not moved to git: 2 | /lib-SDL-bin_win32.zip http://blob.perl.org/perlweb/sdl/lib-SDL-bin_win32.zip perm 3 | -------------------------------------------------------------------------------- /docs/shared/simages/combust-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/shared/simages/combust-powered.png -------------------------------------------------------------------------------- /docs/static/images/friends/cyclades.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/cyclades.gif -------------------------------------------------------------------------------- /docs/static/images/friends/cyclades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/cyclades.png -------------------------------------------------------------------------------- /docs/static/images/friends/internap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/internap.gif -------------------------------------------------------------------------------- /docs/static/images/friends/penguin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/penguin.gif -------------------------------------------------------------------------------- /docs/static/images/icons/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/community.png -------------------------------------------------------------------------------- /docs/static/images/tab_bg_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/tab_bg_selected.gif -------------------------------------------------------------------------------- /docs/www/images/perl_logo_tm-40x130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/www/images/perl_logo_tm-40x130.gif -------------------------------------------------------------------------------- /docs/dev/licenses/osi-certified-90x75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/licenses/osi-certified-90x75.gif -------------------------------------------------------------------------------- /docs/foundation/images/perl_republic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/perl_republic.png -------------------------------------------------------------------------------- /docs/foundation/images/tpf_logo_150x79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/tpf_logo_150x79.png -------------------------------------------------------------------------------- /docs/foundation/images/tpf_logo_45x86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/tpf_logo_45x86.png -------------------------------------------------------------------------------- /docs/ldap/.htredirects: -------------------------------------------------------------------------------- 1 | # not moved to git: 2 | /perl-ldap-oscon2001.pdf http://blob.perl.org/perlweb/ldap/perl-ldap-oscon2001.pdf perm 3 | -------------------------------------------------------------------------------- /docs/learn/i/app_icons/TextEdit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/TextEdit_icon.png -------------------------------------------------------------------------------- /docs/learn/i/app_icons/reiss-head-sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/reiss-head-sm.jpg -------------------------------------------------------------------------------- /docs/static/images/buttons/my_portal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/buttons/my_portal.gif -------------------------------------------------------------------------------- /docs/static/images/buttons/perlpowered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/buttons/perlpowered.gif -------------------------------------------------------------------------------- /docs/static/images/buttons/perlpowered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/buttons/perlpowered.png -------------------------------------------------------------------------------- /docs/static/images/friends/citysearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/citysearch.png -------------------------------------------------------------------------------- /docs/static/images/friends/coyotepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/coyotepoint.png -------------------------------------------------------------------------------- /docs/static/images/friends/oreilly-160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/oreilly-160.png -------------------------------------------------------------------------------- /docs/static/images/friends/safari_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/safari_logo.gif -------------------------------------------------------------------------------- /docs/static/images/friends/yellowbot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/yellowbot.gif -------------------------------------------------------------------------------- /docs/static/images/onion/onion-160x160.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-160x160.gif -------------------------------------------------------------------------------- /docs/static/images/onion/onion-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-160x160.png -------------------------------------------------------------------------------- /docs/static/images/onion/onion-24x24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-24x24.gif -------------------------------------------------------------------------------- /docs/static/images/onion/onion-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-24x24.png -------------------------------------------------------------------------------- /docs/static/images/onion/onion-30x30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-30x30.gif -------------------------------------------------------------------------------- /docs/static/images/onion/onion-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-30x30.png -------------------------------------------------------------------------------- /docs/static/images/onion/onion-30x30a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-30x30a.gif -------------------------------------------------------------------------------- /docs/static/images/onion/onion-30x30a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-30x30a.png -------------------------------------------------------------------------------- /docs/static/images/tab_bg_r_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/tab_bg_r_selected.gif -------------------------------------------------------------------------------- /docs/www/tpl/sections/home_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | # All set in www/index.html 3 | SET section_data = { 4 | }; 5 | 6 | -%] 7 | -------------------------------------------------------------------------------- /docs/foundation/images/perl_logo_32x104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/foundation/images/perl_logo_32x104.png -------------------------------------------------------------------------------- /docs/learn/i/app_icons/Notepad-icon-free.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/Notepad-icon-free.jpg -------------------------------------------------------------------------------- /docs/static/cpanratings/images/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/progress.gif -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-0.0.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-0.5.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-1.0.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-1.5.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-2.0.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-2.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-2.5.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-3.0.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-3.5.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-4.0.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-4.5.png -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-5.0.png -------------------------------------------------------------------------------- /docs/static/images/buttons/download_perl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/buttons/download_perl.gif -------------------------------------------------------------------------------- /docs/static/images/friends/bestpractical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/bestpractical.gif -------------------------------------------------------------------------------- /docs/static/images/friends/bestpractical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/bestpractical.png -------------------------------------------------------------------------------- /docs/static/images/friends/bizrate_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/bizrate_logo.png -------------------------------------------------------------------------------- /docs/static/images/friends/thalasar_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/thalasar_logo.gif -------------------------------------------------------------------------------- /docs/static/images/friends/ticketmaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/ticketmaster.png -------------------------------------------------------------------------------- /docs/static/images/icons/download_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/download_arrow.gif -------------------------------------------------------------------------------- /docs/static/images/icons/onion_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/icons/onion_download.png -------------------------------------------------------------------------------- /docs/static/images/onion/onion-160x160a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/onion/onion-160x160a.gif -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20050909.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20050909.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20050915.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20050915.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20050926.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20050926.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051003.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051003.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051010.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051010.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051017.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051017.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051024.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051024.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051031.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051031.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051114.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051114.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051121.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051121.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051128.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051128.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051205.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051205.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051212.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051212.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2005/20051226.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2005/20051226.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060102.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060102.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060109.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060109.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060227.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060227.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060306.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060306.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060313.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060313.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060403.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060403.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060424.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060424.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060501.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060501.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060508.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060508.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060515.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060515.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060522.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060522.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060529.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060529.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060605.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060605.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060612.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060612.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060619.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060619.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060626.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060626.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060710.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060710.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060717.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060717.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060831.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060831.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060910.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060910.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20060917.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20060917.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061001.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061001.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061008.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061008.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061015.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061015.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061022.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061022.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061105.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061105.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061112.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061112.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061126.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061126.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061203.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061203.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061210.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061210.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2006/20061217.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2006/20061217.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2007/20071230.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2007/20071230.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080106.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080106.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080112.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080112.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080119.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080119.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080126.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080126.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080202.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080202.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080210.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080210.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080223.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080223.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080229.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080229.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080308.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080308.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2008/20080315.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2008/20080315.pod -------------------------------------------------------------------------------- /docs/learn/i/app_icons/Command-Prompt-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/Command-Prompt-icon.png -------------------------------------------------------------------------------- /docs/learn/i/app_icons/venturing_into_vim.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/learn/i/app_icons/venturing_into_vim.jpeg -------------------------------------------------------------------------------- /docs/perl4lib/tpl/defaults: -------------------------------------------------------------------------------- 1 | [%- page.style = 'perl4lib.html'; 2 | 3 | # don't include any whitespace from here... 4 | RETURN; 5 | -%] 6 | -------------------------------------------------------------------------------- /docs/static/cpanratings/images/stars-undef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/cpanratings/images/stars-undef.png -------------------------------------------------------------------------------- /docs/static/images/buttons/download_perl1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/buttons/download_perl1.gif -------------------------------------------------------------------------------- /docs/static/images/friends/template-toolkit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/template-toolkit.gif -------------------------------------------------------------------------------- /docs/static/images/friends/valueclick_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/valueclick_logo.gif -------------------------------------------------------------------------------- /docs/static/images/masthead/camel/camel_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/masthead/camel/camel_bg.gif -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | # See 'git blame' / MAPPING AUTHORS for syntax 2 | 3 | Ask Bjørn Hansen 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/noc/policy/index.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Policies" %] 2 | 3 | 6 | -------------------------------------------------------------------------------- /docs/shared/robots.txt: -------------------------------------------------------------------------------- 1 | # Default robots.txt for combust 2 | 3 | # http://www.nameprotect.com/botinfo.html 4 | User-agent: NPBot 5 | Disallow: / 6 | 7 | -------------------------------------------------------------------------------- /docs/shared/tpl/defaults: -------------------------------------------------------------------------------- 1 | [%- 2 | PROCESS "tpl/quicknews"; 3 | 4 | # don't include any whitespace from here... 5 | RETURN; 6 | -%] 7 | 8 | -------------------------------------------------------------------------------- /docs/static/images/buttons/download_perl_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/buttons/download_perl_grey.gif -------------------------------------------------------------------------------- /docs/static/images/friends/digital_craftsmen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/digital_craftsmen.png -------------------------------------------------------------------------------- /lib/PerlOrg/Control.pm: -------------------------------------------------------------------------------- 1 | package PerlOrg::Control; 2 | use Moose; 3 | extends 'Combust::Control', 'Combust::Control::StaticFiles'; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /lib/PerlOrg/Control/Basic.pm: -------------------------------------------------------------------------------- 1 | package PerlOrg::Control::Basic; 2 | use Moose; 3 | extends 'PerlOrg::Control', 'Combust::Control::Basic'; 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2002/p5p-200208-2.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2002/p5p-200208-2.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2002/p5p-200208-3.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2002/p5p-200208-3.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2002/p5p-200209-4.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2002/p5p-200209-4.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2002/p5p-200210-3.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2002/p5p-200210-3.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2002/p5p-200211-3.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2002/p5p-200211-3.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2002/p5p-200211-4.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2002/p5p-200211-4.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2003/p5p-200304-4.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2003/p5p-200304-4.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2003/p5p-200311-4.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2003/p5p-200311-4.pod -------------------------------------------------------------------------------- /docs/dev/perl5/list-summaries/2003/p5p-200312-1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/list-summaries/2003/p5p-200312-1.pod -------------------------------------------------------------------------------- /docs/static/images/friends/develooperlogo-160t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/static/images/friends/develooperlogo-160t.png -------------------------------------------------------------------------------- /docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.big5-tw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.big5-tw -------------------------------------------------------------------------------- /docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.euc-cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.euc-cn -------------------------------------------------------------------------------- /docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.euc-jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.euc-jp -------------------------------------------------------------------------------- /docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.euc-kr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngsankha/perlweb/master/docs/dev/perl5/news/2002/07/18/580ann/p580ann.txt.euc-kr -------------------------------------------------------------------------------- /app.psgi: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | use strict; 3 | use warnings; 4 | use lib 'lib'; 5 | use PerlOrg::App; 6 | 7 | my $app = PerlOrg::App->new; 8 | return $app->reference; 9 | -------------------------------------------------------------------------------- /docs/learn/lessions/web_server/plack/index.html: -------------------------------------------------------------------------------- 1 | [% page.import({ 2 | title = 'IBM article', 3 | }) %] 4 | 5 | [% INCLUDE "lessions/web_server/plack/article.html" %] 6 | -------------------------------------------------------------------------------- /docs/qa/tpl/quick_links_3: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /docs/shared/nav_tabs: -------------------------------------------------------------------------------- 1 | [% 2 | # because this used to be / is also a BLOCK name, but 3 | # we want to put the template into tpl/... 4 | PROCESS tpl/nav_tabs.html; 5 | -%] 6 | -------------------------------------------------------------------------------- /lib/CPANNotify.pm: -------------------------------------------------------------------------------- 1 | package CPANNotify; 2 | use strict; 3 | 4 | use CPANNotify::Control; 5 | use CPANNotify::Control::Subscriptions; 6 | use CPANNotify::Control::API; 7 | 8 | 1; 9 | -------------------------------------------------------------------------------- /docs/foundation/tpl/news/archive_year_list.html: -------------------------------------------------------------------------------- 1 | Archived News: 2 | [%- FOREACH year = years %] 3 | [% year %] 4 | [%- loop.last ? "." : ", " %] 5 | [% END %] 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "combust"] 2 | path = combust 3 | url = git://github.com/abh/combust.git 4 | [submodule "docs/static/cdn"] 5 | path = docs/static/cdn 6 | url = git://git.develooper.com/devcdn.git 7 | -------------------------------------------------------------------------------- /docs/foundation/data/Makefile: -------------------------------------------------------------------------------- 1 | PERL=/usr/bin/perl 2 | # make PERL=/pkg/perl-5.8.5/bin/perl 3 | 4 | thefirstentryisthedefault: 5 | $(PERL) ./generate-news -v 6 | 7 | force: 8 | $(PERL) ./generate-news -v -f 9 | -------------------------------------------------------------------------------- /docs/learn/lessions/web_server/plack/README: -------------------------------------------------------------------------------- 1 | This is the test area for an article which will be posted 2 | on the IBM website. 3 | 4 | I hope to introduce Plack and some of it's Apps as well 5 | as show how to extend it 6 | -------------------------------------------------------------------------------- /lib/CPANRatings/Control/Logout.pm: -------------------------------------------------------------------------------- 1 | package CPANRatings::Control::Logout; 2 | use base qw(CPANRatings::Control); 3 | use strict; 4 | 5 | sub render { 6 | my $self = shift; 7 | $self->logout; 8 | } 9 | 10 | 11 | 1; 12 | -------------------------------------------------------------------------------- /docs/cpanratings/display/show_list.html: -------------------------------------------------------------------------------- 1 | 2 | [% WHILE (review = reviews.next) %] 3 | [% PROCESS display/short_review.html, 4 | review => review, 5 | no_more => (mode == 'distribution') 6 | %] 7 | [% END %] 8 | -------------------------------------------------------------------------------- /docs/debugger/tpl/defaults: -------------------------------------------------------------------------------- 1 | [%- 2 | page.sidebar = 'Home | Tools | Resources'; 3 | 4 | # don't include any whitespace from here... 5 | RETURN; 6 | -%] 7 | -------------------------------------------------------------------------------- /docs/learn/books/index.html: -------------------------------------------------------------------------------- 1 | [%- page.import({ 2 | title => 'Perl books', 3 | section => 'books', 4 | description => 'Perl books', 5 | }) -%] 6 | 7 | 8 | 9 | [% PROCESS books/books_content.html %] 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/learn/tpl/sponsor.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /lib/PerlOrg/App.pm: -------------------------------------------------------------------------------- 1 | package PerlOrg::App; 2 | use Moose; 3 | use Plack::Builder; 4 | extends 'Combust::App'; 5 | with 'Combust::App::ApacheRouters'; 6 | with 'Combust::Redirect'; 7 | 8 | our $VERSION = '2.0'; 9 | 10 | 1; 11 | -------------------------------------------------------------------------------- /docs/www/tpl/sponsor.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /docs/qa/.htredirects: -------------------------------------------------------------------------------- 1 | # not moved to git 2 | /images/phalanx-kwalitee.jpg http://blob.perl.org/perlweb/qa/images/phalanx-kwalitee.jpg perm 3 | /phalanx/100/distros-table.html http://blob.perl.org/perlweb/qa/phalanx/100/distros-table.html perm 4 | -------------------------------------------------------------------------------- /docs/foundation/gc/grants/2006.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "2006 Grants" %] 2 | [% page.title = page.banner %] 3 | 4 |

First Quarter Grants

5 | 8 | 9 | -------------------------------------------------------------------------------- /docs/static/css/dbi.css: -------------------------------------------------------------------------------- 1 | .dbi_book { 2 | height: 300px; 3 | } 4 | 5 | /* Overwrite main CSS as we do not have an icon (yet?) */ 6 | 7 | #page_image { 8 | width: 0px; 9 | } 10 | 11 | #header_holder h1 { 12 | margin: 17px 0px 0px 0px; 13 | } -------------------------------------------------------------------------------- /docs/cpanratings/rate/rate_error.html: -------------------------------------------------------------------------------- 1 | 2 |

Fatal error

3 |

4 | [% error.message | html %] 5 | 6 |

7 | Contact ask@perl.org if you believe this to be incorrect. 8 | 9 |

10 | 11 | -------------------------------------------------------------------------------- /docs/debugger/.htredirects: -------------------------------------------------------------------------------- 1 | /580/perldebguts.(html|pod) http://perldoc.perl.org/perldebguts.html perm 2 | /580/perldebtut.(html|pod) http://perldoc.perl.org/perldebtut.html perm 3 | /580/perldebug.(html|pod) http://perldoc.perl.org/perldebug.html perl 4 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20040326-2004_first_quarter_grants: -------------------------------------------------------------------------------- 1 | Date: 20040326 2 | Short: 2004q1grants 3 | Title: 2004 First Quarter Grants 4 | 5 |

Read the Press Release 6 | for the latest grants.

7 | -------------------------------------------------------------------------------- /docs/foundation/news/2004/2004q1grants.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "March 26, 2004 - 2004 First Quarter Grants" %] 2 | [% page.title = page.banner %] 3 | 4 |

Read the Press Release 5 | for the latest grants.

6 | -------------------------------------------------------------------------------- /docs/ldap/tpl/quick_links_2: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /docs/learn/examples/epoch_to_human.html: -------------------------------------------------------------------------------- 1 | [%- page.import({ 2 | title => 'Convert epoc to time', 3 | section => 'examples', 4 | }) -%] 5 | 6 | [% WRAPPER code_chunk %] 7 | perl -le 'print scalar localtime shift' 931231223 8 | [% END %] 9 | 10 | -------------------------------------------------------------------------------- /docs/foundation/tpl/news/current.html: -------------------------------------------------------------------------------- 1 | [% SET percent = '%' %] 2 | [[% percent %]# *** Generated File. Do not edit. (Or Robert will hurt you.) *** [% percent %]] 3 | [% INCLUDE news/list.html %] 4 |

Older News

5 | Read older news... 6 | -------------------------------------------------------------------------------- /docs/learn/tpl/sections/examples_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | PROCESS "examples/example_list.html"; 4 | 5 | SET section_data = { 6 | quick_links_1_title => 'Other examples', 7 | quick_links_1_list => example_list, 8 | }; 9 | 10 | -%] 11 | -------------------------------------------------------------------------------- /docs/cpanratings/rate/rate_submitted.html: -------------------------------------------------------------------------------- 1 |

Thanks

2 | 3 |

4 | Thank you for submitting a review of [% review.distribution %]. 5 |

6 | 7 | 8 |

9 | [% PROCESS display/short_review.html %] 10 |

11 | 12 | Go back to the front page 13 | -------------------------------------------------------------------------------- /docs/qa/tpl/sections/home_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | SET section_data = { 4 | quick_links_1_title => 'Related sites', 5 | quick_links_1_list => [ 6 | 'CPAN Testers', 7 | ], 8 | }; 9 | 10 | -%] 11 | -------------------------------------------------------------------------------- /docs/shared/tpl/common/css_include.html: -------------------------------------------------------------------------------- 1 | [% 2 | IF (page.css_more); 3 | page.css.push(page.css_more); 4 | END; 5 | 6 | FOR css = page.css %] 7 | [% 8 | END; 9 | %] 10 | -------------------------------------------------------------------------------- /docs/www/css/search.css: -------------------------------------------------------------------------------- 1 | 2 | #cpansearchbox { 3 | width: 250px; 4 | float: right; 5 | border: 1px solid #111; 6 | background: #eee; 7 | margin: 10px; 8 | padding: 5px; 9 | } 10 | 11 | span.cpansearchbox_meta { 12 | font-style: italic; 13 | font-size: 70%; 14 | } 15 | -------------------------------------------------------------------------------- /run_perlweb: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # A quick helper for setting environment variables and starting the server. 4 | 5 | mypath=$(dirname $(readlink -f $0)) 6 | ( 7 | cd ${mypath}; 8 | export CBROOTLOCAL=`pwd` 9 | export CBROOT=${CBROOTLOCAL}/combust 10 | ./combust/bin/httpd 11 | ) 12 | -------------------------------------------------------------------------------- /docs/cpanratings/search/search_form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | Find a distribution you would like to review: 5 |

6 |
7 | 8 | 9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/noc/svn/tpl/navigation.html: -------------------------------------------------------------------------------- 1 |
2 | [% FILTER navigation(combust.request.path,'','') %] 3 | •  4 | Policy 5 | •  6 | Authentication and Access 7 | [% END %] 8 |
9 | 10 | -------------------------------------------------------------------------------- /docs/cpanratings/.htredirects: -------------------------------------------------------------------------------- 1 | 2 | /favicon.ico /www/favicon.ico internal 3 | 4 | # stupid idiots 5 | 6 | /cgi-bin/formmail/.* http://www.army.mil/ 7 | /_vti_bin/.* http://www.af.mil/ 8 | /_vti_inf.* http://www.whitehouse.gov/ 9 | /MSOffice/.* http://www.navy.mil/ 10 | -------------------------------------------------------------------------------- /docs/dev/perl5/errata.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Errata" %] 2 |

3 | The following links point to errata for various perl releases. 4 |

5 |

6 |

9 |

10 | -------------------------------------------------------------------------------- /docs/foundation/tpl/news/individual_entry.html: -------------------------------------------------------------------------------- 1 | [% SET percent = '%' %] 2 | [[% percent %] page.banner = "[% news.pretty_date %] - [% FILTER html_entity %][% news.title %][% END %]" [% percent %]] 3 | [[% percent %] page.title = page.banner [% percent %]] 4 | 5 | [% news.body %] 6 | [% news.long_body %] 7 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20040219-grants_committee_membership: -------------------------------------------------------------------------------- 1 | Date: 20040219 2 | Short: 2004gcmembership 3 | Title: Grants Committee Membership 4 | 5 |

The Perl Foundation is proud to announce the membership of its Grants 6 | Committee.

7 | 8 |

Read full announcement.

9 | -------------------------------------------------------------------------------- /docs/foundation/news/2002/yapcna2002reg.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "February 15, 2002 - YAPC::America::2002 Registration Opens" %] 2 | [% page.title = page.banner %] 3 | 4 |

Registration has opened for YAPC North America 2002

6 | -------------------------------------------------------------------------------- /docs/foundation/news/2002/yashostsmozilla.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "February 16, 2002 - YAS to Host Mozilla Developer Days at CMU" %] 2 | [% page.title = page.banner %] 3 | 4 |

The Yet Another Society will be providing support for Mozilla Developer 5 | Days to be held at Carnegie Mellon University on March 1-2, 2002.

6 | -------------------------------------------------------------------------------- /docs/foundation/tpl/news/entry.html: -------------------------------------------------------------------------------- 1 | 2 |

[% news.pretty_date %]
[% news.title %]

3 | [% news.body %] 4 | 5 | [% IF news.long_body %] 6 |

Read more...

7 | [% END %] 8 | -------------------------------------------------------------------------------- /lib/CPANNotify/DBI.pm: -------------------------------------------------------------------------------- 1 | package CPANNotify::DBI; 2 | use strict; 3 | use base qw(Class::DBI::mysql); 4 | use Combust::DB qw(db_open); 5 | 6 | sub dbh { 7 | shift->db_Main; 8 | } 9 | 10 | sub db_Main { 11 | my $class = shift; 12 | return db_open('combust', {$class->_default_attributes}) 13 | } 14 | 15 | 1; 16 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20020131-yapc__america__2002_call_for_papers: -------------------------------------------------------------------------------- 1 | Date: 20020131 2 | Short: yapcna2002cfp 3 | Title: YAPC::America::2002 Call For Papers 4 | 5 | The Call For Papers, as well as other information about YAPC::America::2002, is 6 | now available at the YAPC website. 7 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20020215-yapc__america__2002_registration_opens: -------------------------------------------------------------------------------- 1 | Date: 20020215 2 | Short: yapcna2002reg 3 | Title: YAPC::America::2002 Registration Opens 4 | 5 |

Registration has opened for YAPC North America 2002

7 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20020216-yas_to_host_mozilla_developer_days_at_cmu: -------------------------------------------------------------------------------- 1 | Date: 20020216 2 | Short: yashostsmozilla 3 | Title: YAS to Host Mozilla Developer Days at CMU 4 | 5 |

The Yet Another Society will be providing support for Mozilla Developer 6 | Days to be held at Carnegie Mellon University on March 1-2, 2002.

7 | -------------------------------------------------------------------------------- /docs/foundation/news/2002/yapcna2002cfp.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "January 31, 2002 - YAPC::America::2002 Call For Papers" %] 2 | [% page.title = page.banner %] 3 | 4 | The Call For Papers, as well as other information about YAPC::America::2002, is 5 | now available at the YAPC website. 6 | -------------------------------------------------------------------------------- /docs/foundation/news/2004/2004gcmembership.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "February 19, 2004 - Grants Committee Membership" %] 2 | [% page.title = page.banner %] 3 | 4 |

The Perl Foundation is proud to announce the membership of its Grants 5 | Committee.

6 | 7 |

Read full announcement.

8 | -------------------------------------------------------------------------------- /docs/static/css/qa.css: -------------------------------------------------------------------------------- 1 | .dbi_book { 2 | height: 300px; 3 | } 4 | 5 | /* Overwrite main CSS as we do not have an icon (yet?) */ 6 | 7 | #page_image { 8 | width: 0px; 9 | } 10 | 11 | #header_holder h1 { 12 | margin: 17px 0px 0px 0px; 13 | } 14 | 15 | .phalanx_table { 16 | width: 100%; 17 | font-size: .8em; 18 | } -------------------------------------------------------------------------------- /lib/CPANNotify/User.pm: -------------------------------------------------------------------------------- 1 | package CPANNotify::User; 2 | use base qw(CPANNotify::DBI); 3 | use strict; 4 | 5 | __PACKAGE__->set_up_table('cpannotify_users'); 6 | __PACKAGE__->has_many(subscriptions => 'CPANNotify::Subscription'); 7 | #__PACKAGE__->has_many(emails => 'CPANNotify::User::Email'); 8 | 9 | 10 | 1; 11 | -------------------------------------------------------------------------------- /docs/com/tpl/sections/articles_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | SET section_data = { 4 | quick_links_2_title => 'Related', 5 | quick_links_2_list => [ 6 | 'Articles', 7 | 'Technical showcases', 8 | ], 9 | }; 10 | 11 | -%] 12 | -------------------------------------------------------------------------------- /docs/cpannotify/index.html: -------------------------------------------------------------------------------- 1 | 2 |

CPAN Notification Service

3 | 4 |

5 | To add subscriptions, go to CPAN 6 | Search and click on the "subscribe" link from the distribution or author page. 7 |

8 | 9 |

10 | You can also remove subscriptions. 11 |

-------------------------------------------------------------------------------- /docs/foundation/sc/index.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "Steering Committee" %] 2 | [% page.title = page.banner %] 3 | 4 | The Steering Committee was formed in July 2003 to oversee the daily operations 5 | of the Perl Foundation. 6 | 7 |

8 | Charter
9 | 10 | [% INCLUDE sc/members.html %] 11 | -------------------------------------------------------------------------------- /lib/CPANRatings/API.pm: -------------------------------------------------------------------------------- 1 | package CPANRatings::API; 2 | use strict; 3 | use base qw(Combust::API); 4 | 5 | __PACKAGE__->setup_api( 6 | 'test' => 'Test', 7 | 'helpful' => 'Helpful', 8 | 'review' => 'Review', 9 | ); 10 | 11 | 1; 12 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20010326-yet_another_rss_channel: -------------------------------------------------------------------------------- 1 | Date: 20010326 2 | Short: yasrssfeed 3 | Title: Yet Another RSS Channel 4 | 5 | A RDF file is now available to keep track of the latest Yet Another 6 | Society News. The file can be fetched at 7 | http://perlfoundation.org/perl-foundation.rdf. 8 | -------------------------------------------------------------------------------- /docs/shared/tpl/tip: -------------------------------------------------------------------------------- 1 | [% UNLESS tip; RETURN; END; %] 2 |

13 | 14 | -------------------------------------------------------------------------------- /lib/CPANRatings/API/Test.pm: -------------------------------------------------------------------------------- 1 | package CPANRatings::API::Test; 2 | use strict; 3 | use base qw(Combust::API::Base); 4 | 5 | sub echo { 6 | my ($self) = @_; 7 | return { %{$self->args->{params}} }; 8 | } 9 | 10 | sub _private { 11 | my ($self) = @_; 12 | return { %{$self->args->{params}} }; 13 | } 14 | 15 | 1; 16 | -------------------------------------------------------------------------------- /docs/cpannotify/i/css/cpannotify.css: -------------------------------------------------------------------------------- 1 | 2 | #add_request, #motion, #end { 3 | /* background:#FFFFFF; */ 4 | background: #F5F5FF; 5 | width:450px; 6 | height:5em; 7 | } 8 | 9 | p.add_request { 10 | /* border-width: 1px; 11 | border-style: dotted; 12 | border-color: #444; */ 13 | margin: 5px; 14 | padding: 8px; 15 | } 16 | -------------------------------------------------------------------------------- /docs/foundation/news/2001/yasrssfeed.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "March 26, 2001 - Yet Another RSS Channel" %] 2 | [% page.title = page.banner %] 3 | 4 | A RDF file is now available to keep track of the latest Yet Another 5 | Society News. The file can be fetched at 6 | http://perlfoundation.org/perl-foundation.rdf. 7 | -------------------------------------------------------------------------------- /docs/parrotcode/docs.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Documentation" %] 2 | 3 | 4 | :( 5 | 6 | 7 |
8 | 9 |

We put the new website up, but haven't transfered the documentation page over yet. We're working on it. All of the documentation is also available from the parrot source.

10 | -------------------------------------------------------------------------------- /docs/foundation/news/2002/pfnewsletter2002.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "July 29, 2002 - Perl Foundation July, 2002 Newsletter" %] 2 | [% page.title = page.banner %] 3 | 4 |

The July, 5 | 2002 Newsletter is now online. You can go 6 | here to see all the 7 | newsletters.

8 | -------------------------------------------------------------------------------- /docs/www/tpl/sections/community_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | SET section_data = { 4 | quick_links_1_title => 'Related sites', 5 | quick_links_1_list => [ 6 | 'Perl Mongers', 7 | 'Perl Monks', 8 | ], 9 | }; 10 | 11 | -%] 12 | -------------------------------------------------------------------------------- /docs/www/tpl/sections/cpan_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | SET section_data = { 4 | quick_links_1_title => 'Related sites', 5 | quick_links_1_list => [ 6 | 'CPAN', 7 | 8 | 'CPAN ratings', 9 | ], 10 | }; 11 | 12 | -%] 13 | -------------------------------------------------------------------------------- /apache/conf/sites/sdl.tmpl: -------------------------------------------------------------------------------- 1 | 2 | ServerName [% config.site.sdl.servername %] 3 | [% expandServerAliases( config.site.sdl.aliases ) %] 4 | PerlSetVar site sdl 5 | 6 | SetHandler perl-script 7 | PerlHandler PerlOrg::Control::Basic 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20020729-perl_foundation_july__2002_newsletter: -------------------------------------------------------------------------------- 1 | Date: 20020729 2 | Short: pfnewsletter2002 3 | Title: Perl Foundation July, 2002 Newsletter 4 | 5 |

The July, 6 | 2002 Newsletter is now online. You can go 7 | here to see all the 8 | newsletters.

9 | -------------------------------------------------------------------------------- /apache/conf/sites/ldap.tmpl: -------------------------------------------------------------------------------- 1 | 2 | ServerName [% config.site.ldap.servername %] 3 | [% expandServerAliases( config.site.ldap.aliases ) %] 4 | PerlSetVar site ldap 5 | 6 | SetHandler perl-script 7 | PerlHandler PerlOrg::Control::Basic 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/foundation/tpl/defaults: -------------------------------------------------------------------------------- 1 | [%- page = { 2 | title = template.title, 3 | style = template.style or 'foundation.html', 4 | site = "The Perl Foundation", 5 | siteinfo = "/contacts.html", 6 | favicon = "/images/favicon.ico", 7 | }; 8 | 9 | # don't include any whitespace from here... 10 | # RETURN; 11 | -%] 12 | -------------------------------------------------------------------------------- /docs/perl4lib/tpl/style/perl4lib.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [% page.title %] 5 | 6 | 7 | 8 | 9 | 10 |
11 |

12 |
13 | 14 | [% content %] 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/shared/tpl/wrapper: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | content = PROCESS $template; 4 | 5 | #USE Dumper; Dumper.dump_html(page template) 6 | IF page.style == 'none' || template.name.match('css$'); 7 | content; 8 | ELSE; 9 | default_style_template = "tpl/style/" _ page.style; 10 | PROCESS $default_style_template; 11 | END; 12 | 13 | %] 14 | 15 | -------------------------------------------------------------------------------- /apache/conf/sites/dbi.tmpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | ServerName [% config.site.dbi.servername %] 4 | [% expandServerAliases( config.site.dbi.aliases ) %] 5 | PerlSetVar site dbi 6 | 7 | SetHandler perl-script 8 | PerlHandler PerlOrg::Control::Basic 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /apache/conf/sites/ponie.tmpl: -------------------------------------------------------------------------------- 1 | 2 | ServerName [% config.site.ponie.servername %] 3 | [% expandServerAliases( config.site.ponie.aliases ) %] 4 | PerlSetVar site ponie 5 | 6 | SetHandler perl-script 7 | PerlHandler PerlOrg::Control::Basic 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apache/conf/sites/qa.tmpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | ServerName [% config.site.qa.servername %] 4 | [% expandServerAliases( config.site.qa.aliases ) %] 5 | PerlSetVar site qa 6 | 7 | SetHandler perl-script 8 | PerlHandler PerlOrg::Control::Basic 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/foundation/who.html: -------------------------------------------------------------------------------- 1 | [% page.banner = BLOCK %]Who's Who at The Perl Foundation[% END %] 2 | [% #page.title = page.banner %] 3 | [% page.forcenavigation = 1 %] 4 | 5 | [% INCLUDE bod.html %] 6 | [% INCLUDE sc/members.html %] 7 | [% INCLUDE gc/members.html %] 8 | [% INCLUDE conferences.html %] 9 | 10 | -------------------------------------------------------------------------------- /docs/learn/examples/spreadsheet_read.html: -------------------------------------------------------------------------------- 1 | [%- page.import({ 2 | title => 'Extract data from a spreadsheet', 3 | section => 'examples', 4 | }) -%] 5 | 6 | [% WRAPPER code_chunk %] 7 | [% INCLUDE "examples/script_head.html" -%] 8 | use Spreadsheet::Read; 9 | 10 | my $workbook = ReadData ("test.xls"); 11 | print $workbook->[1]{A3} . "\n"; 12 | [% END %] 13 | -------------------------------------------------------------------------------- /docs/lists/tpl/category_page.html: -------------------------------------------------------------------------------- 1 | [% PROCESS data/categories.html %] 2 | [% FOREACH cat = categories %] 3 | [% category = cat_list.$cat %] 4 |
[% category.title %]
5 | 10 | [% END %] -------------------------------------------------------------------------------- /docs/static/css/ldap.css: -------------------------------------------------------------------------------- 1 | /* CSS for perl-ldap site */ 2 | 3 | 4 | div#banners { 5 | width: 150px; 6 | float: right; 7 | margin-top: 45px; 8 | margin-left: 30px; 9 | margin-right: 10px; 10 | margin-bottom: 50px; 11 | } 12 | 13 | div.books p { 14 | margin-bottom: 15px; 15 | } 16 | 17 | br.clearall { clear: both } 18 | -------------------------------------------------------------------------------- /apache/conf/sites/combust.tmpl: -------------------------------------------------------------------------------- 1 | 2 | ServerName [% config.site.combust.servername %] 3 | [% expandServerAliases( config.site.combust.aliases ) %] 4 | PerlSetVar site combust 5 | 6 | SetHandler perl-script 7 | PerlHandler PerlOrg::Control::Basic 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apache/conf/sites/perl4lib.tmpl: -------------------------------------------------------------------------------- 1 | 2 | ServerName [% config.site.perl4lib.servername %] 3 | [% expandServerAliases( config.site.perl4lib.aliases ) %] 4 | PerlSetVar site perl4lib 5 | 6 | SetHandler perl-script 7 | PerlHandler PerlOrg::Control::Basic 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /apache/conf/sites/noc.tmpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | ServerName [% config.site.noc.servername %] 4 | [% expandServerAliases( config.site.noc.aliases ) %] 5 | PerlSetVar site noc 6 | 7 | 8 | SetHandler perl-script 9 | PerlHandler PerlOrg::Control::Basic->super 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/foundation/news/2001/yapcna2001reg.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "April 3, 2001 - YAPC::America::North Registration Opens" %] 2 | [% page.title = page.banner %] 3 | 4 |

Registration for YAPC::America::North is now 5 | open! The basic registration cost is $85 USD (about $125 CAD). To 6 | register, please visit the Registration Web Site.

7 | -------------------------------------------------------------------------------- /docs/foundation/pr/index.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "Press Information" %] 2 | [% page.title = page.banner %] 3 | 4 | Writing a story about Perl, scripting languages, virtual machines, open source 5 | software, etc? We're happy to assist. Contact us at press(at)perl.org 6 | 7 |

8 | 9 | Press Kit
10 | Press Releases 11 | -------------------------------------------------------------------------------- /apache/conf/sites/debugger.tmpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | ServerName [% config.site.debugger.servername %] 4 | [% expandServerAliases( config.site.debugger.aliases ) %] 5 | PerlSetVar site debugger 6 | 7 | SetHandler perl-script 8 | PerlHandler PerlOrg::Control::Basic 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20010403-yapc__america__north_registration_opens: -------------------------------------------------------------------------------- 1 | Date: 20010403 2 | Short: yapcna2001reg 3 | Title: YAPC::America::North Registration Opens 4 | 5 |

Registration for YAPC::America::North is now 6 | open! The basic registration cost is $85 USD (about $125 CAD). To 7 | register, please visit the Registration Web Site.

8 | -------------------------------------------------------------------------------- /docs/foundation/news/2001/yapcna2001larry.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "March 13, 2001 - Larry Wall to speak at YAPC::America::North" %] 2 | [% page.title = page.banner %] 3 | 4 |

Larry Wall has confirmed that he will be speaking at 5 | YAPC::America::North 2001! We do not yet know what Larry will talk 6 | about at his keynote, but it should be entertaining and informative as 7 | always.

8 | -------------------------------------------------------------------------------- /docs/foundation/pr/old_news/index.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "Archived News" %] 2 | [% page.title = page.banner %] 3 | 4 | Old news items are archived by year: 5 |

6 | 2004 News
7 | 2003 News
8 | 2002 News
9 | 2001 News
10 | -------------------------------------------------------------------------------- /docs/foundation/tpl/news/archive_summary.html: -------------------------------------------------------------------------------- 1 | [% SET percent = '%' %] 2 | [[% percent %]# *** Generated File. Do not edit. (Or Robert will hurt you.) *** [% percent %]] 3 | [[% percent %] page.banner = "Archived News" [% percent %]] 4 | [[% percent %] page.title = page.banner [% percent %]] 5 | 6 |

Old news items are archived by year:

7 | [% INCLUDE news/archive_year_list.html %] 8 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/donors.html: -------------------------------------------------------------------------------- 1 | [% page.title = "DONORS" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/DONORS.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /apache/conf/sites/foundation.tmpl: -------------------------------------------------------------------------------- 1 | 2 | ServerName [% config.site.foundation.servername %] 3 | [% expandServerAliases( config.site.foundation.aliases ) %] 4 | PerlSetVar site foundation 5 | 6 | 7 | SetHandler perl-script 8 | PerlHandler PerlOrg::Control::Basic 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/dev/perl1/lists.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Mailing Lists" %] 2 | [% page.sidebar = INCLUDE perl1/tpl/navigation.html %] 3 | 4 |
    5 |
  • perl1-porters
    6 | The list for perl1 development.
    7 | Mail to "perl1-porters-subscribe at perl.org" to subscribe
    8 | Archive 9 |
  • 10 |
11 | -------------------------------------------------------------------------------- /docs/foundation/bod.pod: -------------------------------------------------------------------------------- 1 | =head3 Board of Directors: 2 | 3 | =over 4 | 5 | =item * Chairman - Kevin Lenzo 6 | 7 | =item * Secretary - Nathan Torkington 8 | 9 | =item * President - Bill Odom 10 | 11 | =item * Vice President/Treasurer - Kurt DeMaagd 12 | 13 | =item * Allison Randal 14 | 15 | =back 16 | -------------------------------------------------------------------------------- /docs/parrotcode/faq/imcc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "IMCC FAQ" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/imcc/imcfaq.pod', 8 | 'ttl' => 12*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | *~ 3 | *.bak 4 | *.old 5 | 6 | run 7 | runtests 8 | cbsetup 9 | 10 | # Module::Install things 11 | META.yml 12 | inc/Module/Install.pm 13 | inc/Module/Install/ 14 | 15 | Makefile 16 | cover_db/ 17 | pm_to_blib 18 | blib/ 19 | 20 | logs/ 21 | 22 | combust.conf 23 | combust.conf.testing 24 | 25 | cpan/ 26 | junit_output.xml 27 | 28 | docs/learn/faq/perlglossary.html 29 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20010313-larry_wall_to_speak_at_yapc__america__north: -------------------------------------------------------------------------------- 1 | Date: 20010313 2 | Short: yapcna2001larry 3 | Title: Larry Wall to speak at YAPC::America::North 4 | 5 |

Larry Wall has confirmed that he will be speaking at 6 | YAPC::America::North 2001! We do not yet know what Larry will talk 7 | about at his keynote, but it should be entertaining and informative as 8 | always.

9 | -------------------------------------------------------------------------------- /docs/foundation/news/2004/fontangogrant.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "January 23, 2004 - Fotango Provides Grant Money for the TPF" %] 2 | [% page.title = page.banner %] 3 | 4 |

Fotango donated money for work on new profiling tools for Perl, which 5 | will be worked on by Abhijit Menon-Sen. The full press release can be 6 | found here.

7 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/env.html: -------------------------------------------------------------------------------- 1 | [% page.title = "env PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/env.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/key.html: -------------------------------------------------------------------------------- 1 | [% page.title = "key PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/key.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/nci.html: -------------------------------------------------------------------------------- 1 | [% page.title = "nci PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/nci.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/os.html: -------------------------------------------------------------------------------- 1 | [% page.title = "os PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/os.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/ref.html: -------------------------------------------------------------------------------- 1 | [% page.title = "ref PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/ref.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/sub.html: -------------------------------------------------------------------------------- 1 | [% page.title = "sub PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/sub.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20040123-fotango_provides_grant_money_for_the_tpf: -------------------------------------------------------------------------------- 1 | Date: 20040123 2 | Short: fontangogrant 3 | Title: Fotango Provides Grant Money for the TPF 4 | 5 |

Fotango donated money for work on new profiling tools for Perl, which 6 | will be worked on by Abhijit Menon-Sen. The full press release can be 7 | found here.

8 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/core.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Core Ops" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/core.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/debug.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Debug Ops" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/debug.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/dotgnu.html: -------------------------------------------------------------------------------- 1 | [% page.title = "dotgnu ops" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/dotgnu.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/io.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot's IO API" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/io.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/pmc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "PMC Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/pmc.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/array.html: -------------------------------------------------------------------------------- 1 | [% page.title = "array PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/array.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/eval.html: -------------------------------------------------------------------------------- 1 | [% page.title = "eval PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/eval.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/file.html: -------------------------------------------------------------------------------- 1 | [% page.title = "file PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/file.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/float.html: -------------------------------------------------------------------------------- 1 | [% page.title = "float PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/float.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/hash.html: -------------------------------------------------------------------------------- 1 | [% page.title = "hash PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/hash.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/null.html: -------------------------------------------------------------------------------- 1 | [% page.title = "null PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/null.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/pair.html: -------------------------------------------------------------------------------- 1 | [% page.title = "pair PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/pair.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/role.html: -------------------------------------------------------------------------------- 1 | [% page.title = "role PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/role.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/slice.html: -------------------------------------------------------------------------------- 1 | [% page.title = "slice PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/slice.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/subs.html: -------------------------------------------------------------------------------- 1 | [% page.title = "subs PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/subs.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/super.html: -------------------------------------------------------------------------------- 1 | [% page.title = "super PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/super.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/timer.html: -------------------------------------------------------------------------------- 1 | [% page.title = "timer PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/timer.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/undef.html: -------------------------------------------------------------------------------- 1 | [% page.title = "undef PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/undef.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc2c.html: -------------------------------------------------------------------------------- 1 | [% page.title = "PMC Compiler" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/tools/build/pmc2c.pl' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/glossary.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Glossary" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/glossary.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/dev/optimizer.html: -------------------------------------------------------------------------------- 1 | [% page.title = "IMCC optimizer" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/dev/optimizer.pod' 8 | 'ttl' => 1 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/bit.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Bitwise Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/bit.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/set.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Register Loading Ops" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/set.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/var.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Variable Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/var.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd17_pmc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "PMCs" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd17_pmc.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/array.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Array base class" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pmc/array.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/bigint.html: -------------------------------------------------------------------------------- 1 | [% page.title = "bigint PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/bigint.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/lexpad.html: -------------------------------------------------------------------------------- 1 | [% page.title = "lexpad PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/lexpad.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/object.html: -------------------------------------------------------------------------------- 1 | [% page.title = "object PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/object.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/random.html: -------------------------------------------------------------------------------- 1 | [% page.title = "random PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/random.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/sarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "sarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/sarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/scalar.html: -------------------------------------------------------------------------------- 1 | [% page.title = "scalar PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/scalar.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/stmlog.html: -------------------------------------------------------------------------------- 1 | [% page.title = "stmlog PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/stmlog.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/stmref.html: -------------------------------------------------------------------------------- 1 | [% page.title = "stmref PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/stmref.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/stmvar.html: -------------------------------------------------------------------------------- 1 | [% page.title = "stmvar PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/stmvar.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/string.html: -------------------------------------------------------------------------------- 1 | [% page.title = "string PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/string.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/struct.html: -------------------------------------------------------------------------------- 1 | [% page.title = "struct PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/struct.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/tqueue.html: -------------------------------------------------------------------------------- 1 | [% page.title = "tqueue PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/tqueue.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/shared/tpl/quick_link_creator: -------------------------------------------------------------------------------- 1 | [% 2 | IF quick_link_list.size == 0; 3 | RETURN; 4 | END; 5 | -%] 6 | 16 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/cmp.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Register Comparison Ops" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/cmp.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/math.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Mathematical Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/math.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/obscure.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Obscure Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/obscure.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/python.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Python Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/python.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/string.html: -------------------------------------------------------------------------------- 1 | [% page.title = "String Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/string.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd24_events.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Events" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd24_events.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/boolean.html: -------------------------------------------------------------------------------- 1 | [% page.title = "boolean PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/boolean.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/capture.html: -------------------------------------------------------------------------------- 1 | [% page.title = "capture PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/capture.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/closure.html: -------------------------------------------------------------------------------- 1 | [% page.title = "closure PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/closure.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/compiler.html: -------------------------------------------------------------------------------- 1 | [% page.title = "compiler PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/compiler.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/complex.html: -------------------------------------------------------------------------------- 1 | [% page.title = "complex PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/complex.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/default.html: -------------------------------------------------------------------------------- 1 | [% page.title = "default PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/default.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/delegate.html: -------------------------------------------------------------------------------- 1 | [% page.title = "delegate PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/delegate.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/exporter.html: -------------------------------------------------------------------------------- 1 | [% page.title = "exporter PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/exporter.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/integer.html: -------------------------------------------------------------------------------- 1 | [% page.title = "integer PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/integer.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/intlist.html: -------------------------------------------------------------------------------- 1 | [% page.title = "intlist PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/intlist.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/iterator.html: -------------------------------------------------------------------------------- 1 | [% page.title = "iterator PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/iterator.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/lexinfo.html: -------------------------------------------------------------------------------- 1 | [% page.title = "lexinfo PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/lexinfo.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/multisub.html: -------------------------------------------------------------------------------- 1 | [% page.title = "multisub PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/multisub.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotio.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotio PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotio.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/pointer.html: -------------------------------------------------------------------------------- 1 | [% page.title = "pointer PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/pointer.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/version.html: -------------------------------------------------------------------------------- 1 | [% page.title = "version PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/version.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/testing_status.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Testing Status" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/t/TESTS.STATUS.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/www/advocacy/white_camel/2009.html: -------------------------------------------------------------------------------- 1 | [% 2 | page.import({ 3 | title = 'White Camel Awards: 2009 Recipients', 4 | section = 'events', 5 | description 6 | = 'Perl White Camel Awards 2009', 7 | }); 8 | %] 9 |

10 | 2009 Recipients 11 |

12 |

13 | Tim Bunce 14 |

15 |

16 | Philippe Bruhat 17 |

18 |

19 | Michael Schwern 20 |

21 | -------------------------------------------------------------------------------- /docs/www/tpl/sections/contribute_config.html: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | SET section_data = { 4 | quick_links_1_title => 'Related sites', 5 | quick_links_1_list => [ 6 | 'Perl 5 Core development', 7 | 'CPAN Modules', 8 | ], 9 | }; 10 | 11 | -%] 12 | -------------------------------------------------------------------------------- /lib/CPANRatings/Control/Basic.pm: -------------------------------------------------------------------------------- 1 | package CPANRatings::Control::Basic; 2 | use strict; 3 | use base qw(CPANRatings::Control Combust::Control::Basic); 4 | 5 | sub render { 6 | my $self = shift; 7 | 8 | if ($self->request->uri =~ m!^/(index\.html)?$!) { 9 | $self->tpl_param('reviews', scalar $self->schema->review->recent ); 10 | } 11 | 12 | $self->SUPER::render(@_); 13 | } 14 | 15 | 16 | 1; 17 | -------------------------------------------------------------------------------- /docs/cpannotify/i/js/yui/YAHOO.js: -------------------------------------------------------------------------------- 1 | // Copyright 2006 Yahoo! 2 | 3 | var YAHOO=function(){return{util:{},widget:{},example:{},namespace:function(sNameSpace){if(!sNameSpace||!sNameSpace.length){return null;} 4 | var levels=sNameSpace.split(".");var currentNS=YAHOO;for(var i=(levels[0]=="YAHOO")?1:0;i \my $dump_output); 8 | 9 | 10 | my $data = from_json(slurp($ARGV[0]||"lists.json")); 11 | 12 | if ($dump_output) { 13 | my $json = new JSON; 14 | $json->canonical(1); # sort keys 15 | print $json->pretty->encode($data); 16 | } 17 | 18 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/art/pp001-intro.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Writing PIR" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/art/pp001-intro.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/imcc/operation.html: -------------------------------------------------------------------------------- 1 | [% page.title = "IMCC operation" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/imcc/operation.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/sys.html: -------------------------------------------------------------------------------- 1 | [% page.title = "System Interaction Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/sys.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd18_security.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Security" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd18_security.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/iterator.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Iterator Class" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pmc/iterator.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/bound_nci.html: -------------------------------------------------------------------------------- 1 | [% page.title = "bound_nci PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/bound_nci.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/coroutine.html: -------------------------------------------------------------------------------- 1 | [% page.title = "coroutine PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/coroutine.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/deleg_pmc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "deleg_pmc PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/deleg_pmc.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/enumerate.html: -------------------------------------------------------------------------------- 1 | [% page.title = "enumerate PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/enumerate.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/exception.html: -------------------------------------------------------------------------------- 1 | [% page.title = "exception PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/exception.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/multiarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "multiarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/multiarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/namespace.html: -------------------------------------------------------------------------------- 1 | [% page.title = "namespace PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/namespace.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/sharedref.html: -------------------------------------------------------------------------------- 1 | [% page.title = "sharedref PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/sharedref.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/smop_class.html: -------------------------------------------------------------------------------- 1 | [% page.title = "smop_class PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/smop_class.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/subs.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Subs - Parrot Subroutines" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pmc/subs.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/qa/tpl/defaults: -------------------------------------------------------------------------------- 1 | [%- page.style = 'leo.html'; 2 | 3 | IF combust.request.path.match("^/phalanx/") ; 4 | page.section = "phalanx"; 5 | END; 6 | 7 | # Configuration for this site 8 | SET site = { 9 | name => 'qa.perl.org', 10 | }; 11 | 12 | PROCESS tpl/stats.html; 13 | 14 | # don't include any whitespace from here... 15 | RETURN; 16 | 17 | -%] 18 | -------------------------------------------------------------------------------- /docs/cpannotify/i/js/yui/min/YAHOO.js: -------------------------------------------------------------------------------- 1 | // Copyright 2006 Yahoo! 2 | 3 | var YAHOO=function(){return{util:{},widget:{},example:{},namespace:function(sNameSpace){if(!sNameSpace||!sNameSpace.length){return null;} 4 | var levels=sNameSpace.split(".");var currentNS=YAHOO;for(var i=(levels[0]=="YAHOO")?1:0;i 2 | 3 | Home 4 | 5 |
  • 6 | Perl 5 7 |
  • 8 |
  • 9 | Perl6.org 10 |
  • 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/object.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot's library of object ops" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/object.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd00_pdd.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Design Documents" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd00_pdd.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd28_strings.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Strings" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd28_strings.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/orderedhash.html: -------------------------------------------------------------------------------- 1 | [% page.title = "orderedhash PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/orderedhash.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotclass.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotclass PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotclass.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/vtablecache.html: -------------------------------------------------------------------------------- 1 | [% page.title = "vtablecache PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/vtablecache.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/roles.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot embedding system" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/roles_responsibilities.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/languages/index.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Languages Status" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/languages/LANGUAGES_STATUS.pod' 8 | 'ttl' => 1 *60 * 60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/cpanratings/index.html: -------------------------------------------------------------------------------- 1 | 2 | [% page.title = 'Ratings and Reviews for CPAN'; 3 | page.forcenavigation = 1; 4 | %] 5 | 6 | [% page.rss = '/index.rss' %] 7 | 8 |

    Rate a distribution

    9 | 10 | [% PROCESS search/search_form.html %] 11 | 12 |

    Recent reviews (RSS feed)

    13 | 14 | [% PROCESS display/show_list.html, reviews = reviews %] 15 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/ops/experimental.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Experimental Operations" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/ops/experimental.ops' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/parrothist.html: -------------------------------------------------------------------------------- 1 | [% page.title = "The Parrot History Records" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | 6 | [% USE ua = CacheLWPSimple %] 7 | [% data = ua.get( 'url' => 8 | 'http://svn.perl.org/parrot/trunk/docs/parrothist.pod' 9 | 'ttl' => 1*60*60 ) %] 10 | [% USE PodSimple %] 11 | [% PodSimple.parse('html', data ) %] 12 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd07_codingstd.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Coding Standards" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd07_codingstd.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd15_objects.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Objects and Classes" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd15_objects.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd21_namespaces.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Namespaces" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd21_namespaces.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd23_exceptions.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Exceptions" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd23_exceptions.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd25_concurrency.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Concurrency" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd25_concurrency.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd26_ast.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Abstract Syntax Tree" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd26_ast.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/addrregistry.html: -------------------------------------------------------------------------------- 1 | [% page.title = "addrregistry PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/addrregistry.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/continuation.html: -------------------------------------------------------------------------------- 1 | [% page.title = "continuation PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/continuation.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/fixedpmcarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "fixedpmcarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/fixedpmcarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/managedstruct.html: -------------------------------------------------------------------------------- 1 | [% page.title = "managedstruct PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/managedstruct.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotlibrary.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotlibrary PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotlibrary.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotobject.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotobject PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotobject.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotthread.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotthread PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotthread.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/www/advocacy/spoofathon/tpl/navigation.html: -------------------------------------------------------------------------------- 1 | 2 |    Home  | 3 |    Rules   | 4 |    Why  | 5 |    FAQ  | 6 |    Ideas 7 |
    8 |
    -------------------------------------------------------------------------------- /docs/parrotcode/docs/art/pp002-pmc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Programming Parrot -- PMCs" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | 6 | [% USE ua = CacheLWPSimple %] 7 | [% data = ua.get( 'url' => 8 | 'http://svn.perl.org/parrot/trunk/docs/art/pp002-pmc.pod' 9 | 'ttl' => 1*60*60 ) %] 10 | [% USE PodSimple %] 11 | [% PodSimple.parse('html', data ) %] 12 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd22_io.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Document parrot's I/O subsystem" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd22_io.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/fixedfloatarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "fixedfloatarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/fixedfloatarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/pccmethod_test.html: -------------------------------------------------------------------------------- 1 | [% page.title = "pccmethod_test PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/pccmethod_test.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/retcontinuation.html: -------------------------------------------------------------------------------- 1 | [% page.title = "retcontinuation PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/retcontinuation.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/smop_attribute.html: -------------------------------------------------------------------------------- 1 | [% page.title = "smop_attribute PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/smop_attribute.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/unmanagedstruct.html: -------------------------------------------------------------------------------- 1 | [% page.title = "unmanagedstruct PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/unmanagedstruct.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/art/pp003-oop.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Programming Parrot -- Using objects" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/art/pp003-oop.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd19_pir.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Intermediate Representation" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd19_pir.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/fixedstringarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "fixedstringarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/fixedstringarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/struct.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Structures - Accessing C Structs from Parrot" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pmc/struct.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd09_gc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Garbage Collection and Dead Object Detection" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd09_gc.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/exception_handler.html: -------------------------------------------------------------------------------- 1 | [% page.title = "exception_handler PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/exception_handler.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/fixedbooleanarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "fixedbooleanarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/fixedbooleanarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/fixedintegerarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "fixedintegerarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/fixedintegerarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotinterpreter.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotinterpreter PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotinterpreter.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/resizablepmcarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "resizablepmcarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/resizablepmcarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /lib/CPANRatings/API/Base.pm: -------------------------------------------------------------------------------- 1 | package CPANRatings::API::Base; 2 | use Moose; 3 | extends 'Combust::API::Base'; 4 | use CPANRatings::Schema; 5 | 6 | # TODO: probably should just have the controller pass in the schema 7 | # object 8 | has _schema => ( 9 | isa => 'CPANRatings::Schema', 10 | is => 'ro', 11 | lazy_build => 1, 12 | ); 13 | 14 | sub _build__schema { 15 | return CPANRatings::Schema->new; 16 | } 17 | 18 | 1; 19 | -------------------------------------------------------------------------------- /docs/foundation/tpl/news/archive.html: -------------------------------------------------------------------------------- 1 | [% SET percent = '%' %] 2 | [[% percent %]# *** Generated File. Do not edit. (Or Robert will hurt you.) *** [% percent %]] 3 | [[% percent %] page.banner = "[% year %] News Archive" [% percent %]] 4 | [[% percent %] page.title = page.banner [% percent %]] 5 | 6 | [% INCLUDE news/archive_year_list.html %] 7 | [% INCLUDE news/list.html %] 8 | 9 |
    10 | [% INCLUDE news/archive_year_list.html %] 11 | -------------------------------------------------------------------------------- /docs/ldap/tpl/quick_links_1: -------------------------------------------------------------------------------- 1 | Current Release [% ldap.version %]
    2 | 8 | -------------------------------------------------------------------------------- /docs/learn/examples/email_valid.html: -------------------------------------------------------------------------------- 1 | [%- page.import({ 2 | title => 'Validating an email address', 3 | section => 'examples', 4 | }) -%] 5 | 6 | [% WRAPPER code_chunk %] 7 | [% INCLUDE "examples/script_head.html" -%] 8 | use Email::Valid; 9 | 10 | my $email_address = 'a.n@example.com'; 11 | 12 | unless( Email::Valid->address($email_address) ) { 13 | print "Sorry, that email address is not valid!"; 14 | } 15 | 16 | [% END %] 17 | -------------------------------------------------------------------------------- /docs/parrotcode/cage-cleaners/guide.html: -------------------------------------------------------------------------------- 1 | [% page.title = "The Parrot Cage-Cleaners Guide" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/project/cage_cleaners_guide.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/parrotrunningthread.html: -------------------------------------------------------------------------------- 1 | [% page.title = "parrotrunningthread PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/parrotrunningthread.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/resizablefloatarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "resizablefloatarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/resizablefloatarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/resizablestringarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "resizablestringarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/resizablestringarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/dev/perl5/lists.html: -------------------------------------------------------------------------------- 1 | [% page.title="Mailing Lists" %] 2 | 3 |

    Some useful mailing lists if you want to get involved

    4 | 5 |

    Perl 5 Porters

    6 |

    The primary development list for perl5

    7 | 8 |

    Perl 5 Changes

    9 |

    Receive an email every time a change is committed to perl5

    10 | 11 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20030407-survey_and_proposal_forms: -------------------------------------------------------------------------------- 1 | Date: 20030407 2 | Short: surveyproposal 3 | Title: Survey and Proposal Forms 4 | 5 |

    The Perl Foundation is proud to announce its first survey and 6 | project proposal form. Help TPF establish the Perl community's 7 | funding priorities for 2003. Please participate in our survey at:

    8 |

    COMPLETED

    9 | 10 |

    And the Project Proposal Form:

    11 |

    COMPLETED

    12 | -------------------------------------------------------------------------------- /docs/foundation/news/2003/autrijus.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "July 31, 2003 - Grant Recipient Autrijus Tang Results" %] 2 | [% page.title = page.banner %] 3 | 4 |

    Autrijus was a recipient of a TPF grant for 2003 for adding pubkeys to 5 | CPAN.pm, Module::Build, and PAR. His hard work, and your donations, 6 | have paid off. The following is the results of this grant.

    7 | 8 |

    Read the full report...

    9 | -------------------------------------------------------------------------------- /docs/foundation/news/2003/yapceu2004venue.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "July 26, 2003 - YAPC::EU::2004 Venue Chosen" %] 2 | [% page.title = page.banner %] 3 | 4 | The YAPC Europe Committee has selected Belfast, Northern Ireland as 5 | the location for YAPC::Europe 2004. An excellent proposal was also 6 | received from Copenhagen.pm, and we hope they will consider giving a 7 | proposal for 2005. We're looking forward to seeing you in Belfast 8 | next year! 9 | -------------------------------------------------------------------------------- /docs/lists/category/science.html: -------------------------------------------------------------------------------- 1 | [% 2 | page.import({ 3 | title => 'Perl Science Mailing lists', 4 | section => 'science', 5 | description 6 | => 'Perl science mailing lists', 7 | }); 8 | %] 9 | 10 |

    Perl science related mailing lists

    11 | 12 | [% categories = [ 13 | 'ai', 14 | 'bioperl', 15 | ]; 16 | %] 17 | 18 | [% PROCESS tpl/category_page.html categories => categories %] 19 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/imcc/imcfaq.html: -------------------------------------------------------------------------------- 1 | [% page.title = "IMCC and Parrot Programming for Compiler Developers - FAQ" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/imcc/imcfaq.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd27_multiple_dispatch.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Multiple Dispatch" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd27_multiple_dispatch.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/resizablebooleanarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "resizablebooleanarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/resizablebooleanarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pmc/pmc/resizableintegerarray.html: -------------------------------------------------------------------------------- 1 | [% page.title = "resizableintegerarray PMC" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/src/pmc/resizableintegerarray.pmc' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /docs/perl4lib/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-top: 2em; 3 | margin-left: 5em; 4 | margin-right: 5em; 5 | margin-bottom: 2em; 6 | font-family: arial; 7 | background-color: white; 8 | color: black; 9 | } 10 | 11 | a { 12 | text-decoration: none; 13 | color: blue; 14 | } 15 | 16 | a:hover { 17 | color: red; 18 | } 19 | 20 | .code { 21 | margin: 1em; 22 | font-family: terminal; 23 | } 24 | 25 | 26 | -------------------------------------------------------------------------------- /docs/foundation/conferences.pod: -------------------------------------------------------------------------------- 1 | =head3 Conferences Committee: 2 | 3 | =over 4 | 5 | =item * Conferences Chair - Jim Brandt 6 | 7 | =item * Jeff Bisbee 8 | 9 | =item * Kevin Meltzer 10 | 11 | =item * Uri Guttman 12 | 13 | =item * Kevin Eye 14 | 15 | =item * Ask Bjorn Hansen 16 | 17 | =item * Josh McAdams 18 | 19 | =item * Pete Krawczyk 20 | 21 | =back 22 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20030726-yapc__eu__2004_venue_chosen: -------------------------------------------------------------------------------- 1 | Date: 20030726 2 | Short: yapceu2004venue 3 | Title: YAPC::EU::2004 Venue Chosen 4 | 5 | The YAPC Europe Committee has selected Belfast, Northern Ireland as 6 | the location for YAPC::Europe 2004. An excellent proposal was also 7 | received from Copenhagen.pm, and we hope they will consider giving a 8 | proposal for 2005. We're looking forward to seeing you in Belfast 9 | next year! 10 | -------------------------------------------------------------------------------- /docs/foundation/news/2003/surveyproposal.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "April 7, 2003 - Survey and Proposal Forms" %] 2 | [% page.title = page.banner %] 3 | 4 |

    The Perl Foundation is proud to announce its first survey and 5 | project proposal form. Help TPF establish the Perl community's 6 | funding priorities for 2003. Please participate in our survey at:

    7 |

    COMPLETED

    8 | 9 |

    And the Project Proposal Form:

    10 |

    COMPLETED

    11 | -------------------------------------------------------------------------------- /docs/ldap/tpl/defaults: -------------------------------------------------------------------------------- 1 | [%- 2 | 3 | page.import({ 4 | title => 'Perl LDAP', 5 | style => 'leo.html', 6 | site => 'Perl-LDAP', 7 | }); 8 | 9 | SET site = { 10 | name => 'ldap.perl.org', 11 | }; 12 | 13 | ldap = { 14 | version = "0.39" 15 | released = "October 2008" 16 | }; 17 | 18 | # don't include any whitespace from here... 19 | RETURN; 20 | -%] 21 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd03_calling_conventions.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Calling Conventions" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | [% USE ua = CacheLWPSimple %] 6 | [% data = ua.get( 'url' => 7 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd03_calling_conventions.pod' 8 | 'ttl' => 1*60*60 ) %] 9 | [% USE PodSimple %] 10 | [% PodSimple.parse('html', data ) %] 11 | -------------------------------------------------------------------------------- /lib/PerlOrg/Control/CSS.pm: -------------------------------------------------------------------------------- 1 | package PerlOrg::Control::CSS; 2 | use Moose; 3 | extends 'PerlOrg::Control', 'Combust::Control::Basic'; 4 | 5 | # $css = minify($css) unless $devel and !$self->req_param('minify'); 6 | 7 | sub render { 8 | my $self = shift; 9 | 10 | $self->force_template_processing(1); 11 | $self->fixup_static_version; 12 | 13 | my @r = $self->SUPER::render(@_); 14 | 15 | return @r; 16 | } 17 | 18 | 19 | 1; 20 | -------------------------------------------------------------------------------- /docs/foundation/news/2002/yapceu2002cfp.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "January 2, 2002 - YAPC::Europe::2002 (Munich) - Call for Papers" %] 2 | [% page.title = page.banner %] 3 | 4 |

    A Call for Papers for the 2002 edition of the European Yet Another Perl 5 | Conference has been opened. For more information on the CFP and general 6 | information on this conference, please visit the website at http://www.yapc.org/Europe/.

    8 | -------------------------------------------------------------------------------- /docs/foundation/news/2003/YAPC::EU::2004.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "Venue Chosen" %] 2 | [% page.title = page.banner %] 3 | 4 |

    July 26, 2003

    5 | The YAPC Europe Committee has selected Belfast, Northern Ireland as 6 | the location for YAPC::Europe 2004. An excellent proposal was also 7 | received from Copenhagen.pm, and we hope they will consider giving a 8 | proposal for 2005. We're looking forward to seeing you in Belfast 9 | next year! 10 | -------------------------------------------------------------------------------- /docs/learn/examples/dancer.html: -------------------------------------------------------------------------------- 1 | [%- page.import({ 2 | title => 'Sending an email with Perl', 3 | section => 'examples', 4 | }) -%] 5 | 6 | [% WRAPPER code_chunk %] 7 | use Dancer; 8 | 9 | get '/' => sub { 10 | "Hello World!" 11 | }; 12 | 13 | dance; 14 | 15 | 16 | $ perl bin/app.pl & 17 | ... 18 | $ curl http://localhost:3000/ 19 | Hello world! 20 | [% END %] 21 | 22 | http://perldancer.org/ 23 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd08_keys.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Keys" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 |

    Draft: Pending Verification

    6 | 7 | [% USE ua = CacheLWPSimple %] 8 | [% data = ua.get( 'url' => 9 | 'http://svn.perl.org/parrot/trunk/docs/pdds/draft/pdd08_keys.pod' 10 | 'ttl' => 1*60*60 ) %] 11 | [% USE PodSimple %] 12 | [% PodSimple.parse('html', data ) %] 13 | -------------------------------------------------------------------------------- /docs/qa/phalanx/make-status: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | use strict; 4 | use warnings; 5 | use CGI qw( :standard ); 6 | 7 | my @files = sort ; 8 | my @entries; 9 | 10 | for my $file ( @files ) { 11 | my $html = $file; 12 | $html =~ s[(status)/(.+)\.pod$][$1/$2.html] or die; 13 | my $distro = $2; 14 | 15 | my $entry = li( a( {href=>$html}, $distro ) ); 16 | push( @entries, $entry ); 17 | } 18 | 19 | print ul( @entries ); 20 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20030731-grant_recipient_autrijus_tang_results: -------------------------------------------------------------------------------- 1 | Date: 20030731 2 | Short: autrijus 3 | Title: Grant Recipient Autrijus Tang Results 4 | 5 |

    Autrijus was a recipient of a TPF grant for 2003 for adding pubkeys to 6 | CPAN.pm, Module::Build, and PAR. His hard work, and your donations, 7 | have paid off. The following is the results of this grant.

    8 | 9 |

    Read the full report...

    10 | -------------------------------------------------------------------------------- /docs/lists/category/db.html: -------------------------------------------------------------------------------- 1 | [% 2 | page.import({ 3 | title => 'Database Perl Mailing lists', 4 | section => 'db', 5 | description 6 | => 'Perl mailing lists about databases', 7 | }); 8 | %] 9 | 10 |

    Perl mailing lists about databases

    11 | 12 | [% categories = [ 13 | 'database', 14 | 'database-module' 15 | ]; 16 | %] 17 | 18 | [% PROCESS tpl/category_page.html categories => categories %] 19 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd13_bytecode.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Bytecode" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 |

    Draft: Pending Verification

    6 | 7 | [% USE ua = CacheLWPSimple %] 8 | [% data = ua.get( 'url' => 9 | 'http://svn.perl.org/parrot/trunk/docs/pdds/pdd13_bytecode.pod' 10 | 'ttl' => 1*60*60 ) %] 11 | [% USE PodSimple %] 12 | [% PodSimple.parse('html', data ) %] 13 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd14_numbers.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Numbers" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 |

    Draft: Pending Verification

    6 | 7 | [% USE ua = CacheLWPSimple %] 8 | [% data = ua.get( 'url' => 9 | 'http://svn.perl.org/parrot/trunk/docs/pdds/draft/pdd14_numbers.pod' 10 | 'ttl' => 1*60*60 ) %] 11 | [% USE PodSimple %] 12 | [% PodSimple.parse('html', data ) %] 13 | -------------------------------------------------------------------------------- /lib/CPANRatings/Control/RecentRSS.pm: -------------------------------------------------------------------------------- 1 | package CPANRatings::Control::RecentRSS; 2 | use strict; 3 | use base qw(CPANRatings::Control); 4 | use Combust::Constant qw(OK); 5 | 6 | sub render { 7 | my $self = shift; 8 | 9 | $self->tpl_param('header', 'Recent reviews'); 10 | 11 | my $reviews = $self->schema->review->recent; 12 | my $output = $self->as_rss($reviews); 13 | return OK, $output, 'application/rdf+xml'; 14 | } 15 | 16 | 17 | 18 | 1; 19 | -------------------------------------------------------------------------------- /sql/scripts/cpanratings.6: -------------------------------------------------------------------------------- 1 | # -*- cperl -*- 2 | eval 'exec $CBROOT/bin/perl $0 ${1+"$@"}' 3 | unless $running_under_some_shell; 4 | use strict; 5 | use warnings; 6 | use CPANRatings::Schema; 7 | use HTML::Entities qw(decode_entities); 8 | use Combust::Util qw(utf8_safe); 9 | 10 | my $schema = CPANRatings::Schema->new; 11 | 12 | my $reviews = $schema->review->search(); 13 | 14 | while (my $review = $reviews->next) { 15 | $review->update_helpful_score; 16 | } 17 | -------------------------------------------------------------------------------- /docs/foundation/data/news/20020102-yapc__europe__2002__munich____call_for_papers: -------------------------------------------------------------------------------- 1 | Date: 20020102 2 | Short: yapceu2002cfp 3 | Title: YAPC::Europe::2002 (Munich) - Call for Papers 4 | 5 |

    A Call for Papers for the 2002 edition of the European Yet Another Perl 6 | Conference has been opened. For more information on the CFP and general 7 | information on this conference, please visit the website at http://www.yapc.org/Europe/.

    9 | -------------------------------------------------------------------------------- /docs/foundation/news/2002/20022001grants.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "July 16, 2002 - 2001-2002 Perl Foundation Grant Recipients" %] 2 | [% page.title = page.banner %] 3 | 4 | We thank the Perl Community for their support in making the 2001 and 5 | 2002 grants such a success and the recipients who have worked so hard 6 | while being funded by the Perl Foundation! Read more about the 7 | 2001 and 8 | 2002 grants. 9 | -------------------------------------------------------------------------------- /docs/foundation/news/2005/20022001grants.html: -------------------------------------------------------------------------------- 1 | [% page.banner = "July 16, 2005
    2001-2002 Perl Foundation Grant Recipients" %] 2 | [% page.title = page.banner %] 3 | 4 | We thank the Perl Community for their support in making the 2001 and 5 | 2002 grants such a success and the recipients who have worked so hard 6 | while being funded by the Perl Foundation! Read more about the 7 | 2001 and 8 | 2002 grants. 9 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd10_embedding.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Embedding" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 |

    Draft: Pending Verification

    6 | 7 | [% USE ua = CacheLWPSimple %] 8 | [% data = ua.get( 'url' => 9 | 'http://svn.perl.org/parrot/trunk/docs/pdds/draft/pdd10_embedding.pod' 10 | 'ttl' => 1*60*60 ) %] 11 | [% USE PodSimple %] 12 | [% PodSimple.parse('html', data ) %] 13 | -------------------------------------------------------------------------------- /docs/learn/examples/configuration_files.html: -------------------------------------------------------------------------------- 1 | [%- page.import({ 2 | title => 'Configuration files', 3 | section => 'examples', 4 | }) -%] 5 | 6 | [% WRAPPER code_chunk %] 7 | [% INCLUDE "examples/script_head.html" -%] 8 | use Config::Any; 9 | 10 | my @files = ( 11 | 'path/to/config_file.json', 12 | 'path/to/config.pl', 13 | 'path/to/config.xml' 14 | ); 15 | 16 | my $config = Config::Any->load_files( { files => \@files } ); 17 | [% END %] 18 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd05_opfunc.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Opcode Function specs" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 |

    Draft: Pending Verification

    6 | 7 | [% USE ua = CacheLWPSimple %] 8 | [% data = ua.get( 'url' => 9 | 'http://svn.perl.org/parrot/trunk/docs/pdds/draft/pdd05_opfunc.pod' 10 | 'ttl' => 1*60*60 ) %] 11 | [% USE PodSimple %] 12 | [% PodSimple.parse('html', data ) %] 13 | -------------------------------------------------------------------------------- /docs/parrotcode/docs/pdd/pdd06_pasm.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot Assembly Language" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 |

    Draft: Pending Verification

    6 | 7 | [% USE ua = CacheLWPSimple %] 8 | [% data = ua.get( 'url' => 9 | 'http://svn.perl.org/parrot/trunk/docs/pdds/draft/pdd06_pasm.pod' 10 | 'ttl' => 1*60*60 ) %] 11 | [% USE PodSimple %] 12 | [% PodSimple.parse('html', data ) %] 13 | -------------------------------------------------------------------------------- /docs/parrotcode/faq/index.html: -------------------------------------------------------------------------------- 1 | [% page.title = "Parrot FAQ" %] 2 | [% page.style = "default.html" %] 3 | [% page.sidebar = INCLUDE "tpl/navigation.html" %] 4 | 5 | Other FAQs 6 | 8 | 9 | 10 | [% USE ua = CacheLWPSimple %] 11 | [% data = ua.get( 'url' => 12 | 'http://svn.perl.org/parrot/trunk/docs/faq.pod', 13 | 'ttl' => 12*60*60 ) %] 14 | [% USE PodSimple %] 15 | [% PodSimple.parse('html', data ) %] 16 | --------------------------------------------------------------------------------