• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/CGI/H08-Oct-2008-1,378546

scripts/H08-Oct-2008-1,6251,124

t/H08-Oct-2008-2010

ChangesH A D08-Oct-200815.7 KiB499330

LICENSEH A D20-Aug-200820.1 KiB384309

MANIFESTH A D08-Oct-2008863 3837

META.ymlH A D08-Oct-2008519 1716

Makefile.PLH A D20-Aug-2008542 1712

READMEH A D20-Aug-20081.6 KiB4231

TodoH A D20-Aug-2008129 94

README

1pod2text CGI::Perljax.pm > README
2
3CGI::Perljax
4
5Perljax - a perl-specific system for writing AJAX- or
6DHTML-based web applications.
7
8
9Perljax provides a unique mechanism for using perl code
10asynchronously from javascript using AJAX to access user-written
11perl functions/methods. Perljax unburdens the user from having to
12write any javascript, except for having to associate an exported
13method with a document-defined event (such as onClick, onKeyUp,
14etc). Only in the more advanced implementations of a exported perl
15method would a user need to write custom javascript. Perljax supports
16methods that return single results, or multiple results to the web
17page. No other projects that we know of are like Perljax for the
18following reasons: 1. Perljax is targeted specifically for perl
19development. 2. Perljax shields the user from having to write any
20javascript at all (unless they want to).  3. The URL for the HTTP GET
21request is automatically generated based on HTML layout and events,
22and the page is then dynamically updated.  4. Perljax is not part
23of a Content Management System, or some other larger project.
24
25
26INSTALL
27
28perl Makefile.PL
29make
30make test
31make install
32
33*If you are on a windows box you should use 'nmake' rather than 'make'.
34
35Installation will place Perljax into the system perl @INC path, but it
36is important that you make sure mod_perl uses this path (which is
37mod_perl's default behavior, and also assuming you use mod_perl, and
38not just run perl as a CGI).
39
40Example scripts are provided in the source script directory, and can
41also be seen on the project's website, http://www.perljax.us.
42