Skip to content

Commit

Permalink
git initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lyokato committed Oct 20, 2010
0 parents commit 39e2971
Show file tree
Hide file tree
Showing 39 changed files with 6,330 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .shipit
@@ -0,0 +1,8 @@
# auto-generated shipit config file.
steps = CommitMessageWrap, FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN

svn.tagpattern = release-%v
commit_message.format = lang/perl/Pod-ProjectDocs: %msg

# svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v
# CheckChangeLog.files = ChangeLog, MyProj.CHANGES
115 changes: 115 additions & 0 deletions Changes
@@ -0,0 +1,115 @@
Revision history for Perl extension Pod::ProjectDocs.

0.38 Thr Mar 11 01:20:00 2010
- fixed pod2projdocs typo
Thanks to Tokuhiro Matsuno and Naoki Tomita

0.36 Wed May 14 10:20:00 2008
- $json->objToJson => $json->encode
objToJson prints deprecated warnings.
Thanks to tokuhirom.

0.35 Fri Jan 18 18:10:00 2008
- removed $json->autoconv(0) because JSON doesn't have autoconv method from version 2.
RT#32408, 32409

0.34 Sat Oct 27 21:56:00 2007
- Fixed pod2projdocs bug.
Added METHOD_REGEXP, now you can control pattern that the parser consider as method.
Thanks to Ktat.

0.33 Mon Oct 15 01:55:00 2007
- Fixed document of pod2projdocs - added description for forcegen option.
Now it shows it's usage when excused without any option.
Applyed a patch that makes JSON's autoconvert functionality off.
Thanks to Ktat.

0.31 Mon Jan 29 12:00:00 2007
- Changed to use Module::Install for instllation,
and made dependency on Syntax::Highlight::Universal optional.

0.30 Tue Jan 09 12:00:00 2007
- applyed a great patch from Ankur Gupta.
Now you can see syntax highlighten source code below the document for each methods.
When the parser finds format like "=head2 method_name", it appends source code block
on HTML. Click the anchor "[Source]", and it toggles the source code block.

0.26 Tue Jul 11 02:00:00 2006
- added 'except' parameter,
Thanks to Nadim.

0.22 Tue Dec 11 02:00:00 2005
- now generated files are strict xhtml.

0.21 Tue Sep 27 13:00:00 2005
- added function highlighting matched word

0.20 Tue Sep 27 12:00:00 2005
- fixed test script

0.19 Tue Sep 27 02:00:00 2005
- fixed some bug
- added search box to index page
reported by Nadim

0.18 Tue Sep 13 22:33:00 2005
- fixed _htmlEscape in parser to prevent to put out not intended results
with double html-escaping
reported by Tatsuhiko Miyagawa

0.17 Sun Sep 4 00:07:00 2005
- fixed MANIFEST

0.16 Sun Sep 4 00:07:00 2005
- fixed Makefile.PL

0.15 Sat Sep 3 22:04:00 2005
- added option 'forcegen'
- fixed parser, now it creates link for L<foo> properly.
patched by Tatsuhiko Miyagawa.

0.14 Sat Sep 3 11:56:00 2005
- fixed mismapping in Pod::ProjectDocs::Parser
found by Tatsuhiko Miyagawa.

0.13 Sat Aug 27 14:00:00 2005
- fixed Makefile.PL, to remove bug appears in old version of Pod::Parser.
Reported by Tatsuhiko Miyagawa.

0.12 Fri Aug 26 23:00:00 2005
- add footer

0.11 Fri Aug 26 22:00:00 2005
- fixed bug in DocManager

0.1 Fri Aug 26 02:00:00 2005
- fixed bug that doesn't create 'src' directory.
- fixed parser html-building-process little bit.
- fixed bug by typo in DocManager
- add manager for trigger-scripts ('.cgi', '.pl' files)

0.09 Sat Aug 20 02:00:00 2005
- fixed problem about namespace confliction between '.pm' and '.js'.

0.08 Fri Aug 19 12:00:00 2005
- fixed not to use Pod::Xhtml.
- add manager for javascript libraries.

0.07 Thu Aug 18 23:00:00 2005
- add link to source file.
- fixed to check last modified time.

0.06 Thu Aug 18 18:00:00 2005
- fixed to handle multiple 'libroot' by patch from Tatsuhiko Miyagawa.

0.05 Fri Jun 24 18:00:00 2005
- fixed bug.
now you can set relative path for -lib and -out options.

0.02 Sat Jun 18 18:00:00 2005
- CPAN release version;

0.01 Thu Jun 16 16:52:20 2005
- original version; created by h2xs 1.23 with options
-X -A Pod::ProjectDocs

36 changes: 36 additions & 0 deletions MANIFEST
@@ -0,0 +1,36 @@
bin/pod2projdocs
Changes
inc/Module/AutoInstall.pm
inc/Module/Install.pm
inc/Module/Install/AutoInstall.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
inc/Module/Install/Fetch.pm
inc/Module/Install/Include.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
inc/Module/Install/Scripts.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
lib/Pod/ProjectDocs.pm
lib/Pod/ProjectDocs/ArrowImage.pm
lib/Pod/ProjectDocs/Config.pm
lib/Pod/ProjectDocs/CSS.pm
lib/Pod/ProjectDocs/Doc.pm
lib/Pod/ProjectDocs/DocManager.pm
lib/Pod/ProjectDocs/File.pm
lib/Pod/ProjectDocs/IndexPage.pm
lib/Pod/ProjectDocs/Parser.pm
lib/Pod/ProjectDocs/Parser/JavaScriptPod.pm
lib/Pod/ProjectDocs/Parser/PerlPod.pm
lib/Pod/ProjectDocs/Template.pm
Makefile.PL
MANIFEST
META.yml Module meta-data (added by MakeMaker)
README
t/00_compile.t
t/01_project.t
t/02_module.t
t/sample/lib/Sample/Module.pm
t/sample/lib/Sample/Project.pm
t/sample/lib2/Module.pm
13 changes: 13 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,13 @@
\bRCS\b
\bCVS\b
^MANIFEST\.
^Makefile$
~$
\.old$
^blib/
^pm_to_blib
^MakeMaker-\d
\.gz$
\.cvsignore
^9\d_.*\.t
\.svn
24 changes: 24 additions & 0 deletions META.yml
@@ -0,0 +1,24 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Pod-ProjectDocs
version: 0.30
version_from: lib/Pod/ProjectDocs.pm
installdirs: site
requires:
Class::Accessor::Fast: 0
Class::Data::Inheritable: 0
File::Basename: 0
File::Copy: 0
File::Find: 0
File::Spec: 0
JSON: 0.991
MIME::Base64: 0
Pod::Parser: 1.32
Pod::ParseUtils: 0
Readonly: 0
Syntax::Highlight::Universal: 0
Template: 0
URI::Escape: 0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30

0 comments on commit 39e2971

Please sign in to comment.