lib/Lemplate/Runtime/Compact.pm - lemplate

Data types defined

Source code

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

  4. # VERSION

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

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

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

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

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

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

  29. var JSON;



  30. }());
  31. ...
  32. }

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

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

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

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

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

  53. 1;

  54. __END__

  55. =encoding UTF-8

  56. =head1 NAME

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

  58. =head1 SYNOPSIS

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

  61. =head1 DESCRIPTION

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

  65. =head1 METHODS

  66. head2 kernel

  67. head2 ajax_jquery

  68. head2 ajax_xhr

  69. head2 ajax_yui

  70. head2 json_json2

  71. head2 json_yui

  72. head2 json2

  73. head2 xhr_gregory

  74. head2 xhr_ilinsky

  75. head2 xxx

  76. =head1 COPYRIGHT

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

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

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

  81. =cut