src/lib/Lemplate/Runtime.pm - lemplate

Data types defined

Source code

  1. package Lemplate::Runtime;
  2. use strict;
  3. use warnings;

  4. sub main { return &kernel }
  5. sub kernel {
  6.     <<'...';
  7. ...
  8. }

  9. sub ajax_jquery {
  10.     <<'...';
  11. ...
  12. }

  13. sub ajax_xhr {
  14.     <<'...';
  15. ...
  16. }

  17. sub ajax_yui {
  18.     <<'...';
  19. ...
  20. }

  21. sub json_json2 {
  22.     <<'...';
  23. ...
  24. }

  25. sub json_json2_internal {
  26.     <<'...';
  27. ;(function(){

  28. var JSON;

  29. }());
  30. ...
  31. }

  32. sub json_yui {
  33.     <<'...';
  34. ...
  35. }

  36. sub json2 {
  37.     <<'...';
  38. ...
  39. }

  40. sub xhr_gregory {
  41.     <<'...';
  42. ...
  43. }

  44. sub xhr_ilinsky {
  45.     <<'...';
  46. ...
  47. }

  48. sub xxx {
  49.     <<'...';
  50. ...
  51. }

  52. 1;

  53. __END__

  54. =encoding UTF-8

  55. =head1 NAME

  56. Lemplate::Runtime - Perl Module containing the Lemplate JavaScript Runtime

  57. =head1 SYNOPSIS

  58.     use Lemplate::Runtime;
  59.     print Lemplate::Runtime->main;

  60. =head1 DESCRIPTION

  61. This module is auto-generated and used internally by Lemplate. It
  62. contains subroutines that simply return various parts of the Lemplate
  63. JavaScript Runtime code.

  64. =head1 METHODS

  65. head2 kernel

  66. head2 ajax_jquery

  67. head2 ajax_xhr

  68. head2 ajax_yui

  69. head2 json_json2

  70. head2 json_yui

  71. head2 json2

  72. head2 xhr_gregory

  73. head2 xhr_ilinsky

  74. head2 xxx

  75. =head1 COPYRIGHT

  76. Copyright (c) 2014. Ingy döt Net.

  77. This program is free software; you can redistribute it and/or modify it
  78. under the same terms as Perl itself.

  79. See L<http://www.perl.com/perl/misc/Artistic.html>

  80. =cut