r21767 - in /branches/upstream/libkwiki-perl/current: Changes META.yml Makefile.PL README lib/Kwiki.pm

tincho at users.alioth.debian.org tincho at users.alioth.debian.org
Mon Jun 16 22:58:38 UTC 2008


Author: tincho
Date: Mon Jun 16 22:58:38 2008
New Revision: 21767

URL: http://svn.debian.org/wsvn/?sc=1&rev=21767
Log:
[svn-upgrade] Integrating new upstream version, libkwiki-perl (0.39)

Modified:
    branches/upstream/libkwiki-perl/current/Changes
    branches/upstream/libkwiki-perl/current/META.yml
    branches/upstream/libkwiki-perl/current/Makefile.PL
    branches/upstream/libkwiki-perl/current/README
    branches/upstream/libkwiki-perl/current/lib/Kwiki.pm

Modified: branches/upstream/libkwiki-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libkwiki-perl/current/Changes?rev=21767&op=diff
==============================================================================
--- branches/upstream/libkwiki-perl/current/Changes (original)
+++ branches/upstream/libkwiki-perl/current/Changes Mon Jun 16 22:58:38 2008
@@ -1,3 +1,9 @@
+---
+version: 0.39
+date:    Tue Mar  6 12:13:40 PST 2007
+changes:
+- Adding documentation for Kwiki 2
+- Explain that people should use Kwiki from SVN rather than CPAN for now
 ---
 version: 0.38
 date:    Mon Apr  4 07:44:29 PDT 2005

Modified: branches/upstream/libkwiki-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libkwiki-perl/current/META.yml?rev=21767&op=diff
==============================================================================
--- branches/upstream/libkwiki-perl/current/META.yml (original)
+++ branches/upstream/libkwiki-perl/current/META.yml Mon Jun 16 22:58:38 2008
@@ -1,7 +1,7 @@
 name: Kwiki
 version: 0.38
 abstract: Kwiki Wiki Framework
-author: Brian Ingerson <ingy at cpan.org>
+author: Ingy döt Net <ingy at cpan.org>
 license: perl
 distribution_type: module
 requires:

Modified: branches/upstream/libkwiki-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libkwiki-perl/current/Makefile.PL?rev=21767&op=diff
==============================================================================
--- branches/upstream/libkwiki-perl/current/Makefile.PL (original)
+++ branches/upstream/libkwiki-perl/current/Makefile.PL Mon Jun 16 22:58:38 2008
@@ -1,7 +1,7 @@
 use inc::Module::Install;
 
 name('Kwiki');
-author('Brian Ingerson <ingy at cpan.org>');
+author('Ingy döt Net <ingy at cpan.org>');
 abstract('Kwiki Wiki Framework');
 license('perl');
 version_from('lib/Kwiki.pm');

Modified: branches/upstream/libkwiki-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libkwiki-perl/current/README?rev=21767&op=diff
==============================================================================
--- branches/upstream/libkwiki-perl/current/README (original)
+++ branches/upstream/libkwiki-perl/current/README Mon Jun 16 22:58:38 2008
@@ -1,5 +1,73 @@
 NAME
     Kwiki - The Kwiki Wiki Building Framework
+
+KWIKI 2.0
+    STOP. Don't install this CPAN module! Read this section to find out
+    why...
+
+    Kwiki-0.38 and the large collection of Kwiki CPAN modules has been
+    relatively stable on CPAN for the last couple years. Being stable also
+    means being undeveloped.
+
+    In December 2006, the Kwiki community started actively developing Kwiki
+    again. We call the revitalized project Kwiki 2.0. This is not a version
+    number (at least not yet), but a code name for the effort.
+
+    Some goals of Kwiki 2.0 are:
+
+      * Make Kwiki easier to install and maintain
+      * Make Kwiki fast
+      * Make Kwiki plugins easier to develop
+      * Make Kwiki more fun
+
+    We've made a lot of headway on these goals and other goals too.
+
+    Kwiki is *really* simple to install now. _All_ the Perl dependencies
+    come with Kwiki, and are /preinstalled/. This means you just need Perl
+    5.8.3 and a web server. Well actually we give you a web server too!
+
+    NOTE: /Preinstalled/ means that the modules are all linked into a lib
+    tree that is separate from your installed Perl modules. This is good for
+    several reasons:
+
+        1) Installing modules takes a lot of time.
+        2) Kwiki is guaranteed to have module versions that work.
+        3) Kwiki doesn't change anything about your system's Perl lib.
+        4) You can delete all the modules by just deleting the Kwiki checkout.
+        5) Upgrading Kwiki is simple as 'svn update'!
+        6) You can install Kwiki without root permissions.
+
+    Also Kwiki is now smoking fast if you use Kwiki::FastCGI. There are also
+    some new caching modules that make Kwiki even faster still.
+
+    The important part is this: all the new stuff is not yet on CPAN. If you
+    want to install Kwiki, get it from our subversion repository (highly
+    recommended) or tarball downloads.
+
+    You will be amazed at how simple and fast it is to install the new Kwiki
+    which comes with nearly 500 Perl modules. The longest part is simply
+    checking out the repository. See
+    <http://www.kwiki.org/?InstallingKwiki2> for details.
+
+    Eventually all this work will make it back to CPAN, but likely not for a
+    while.
+
+    Here's a list of references for more information:
+
+        * http://www.kwiki.org                 - Main Kwiki Site
+        * http://www.kwiki.org/?KwikiNews      - Kwiki News
+        * http://svn.kwiki.org/kwiki/trunk/    - Kwiki SVN Repository
+        * http://trac.kwiki.org/trac/timeline  - Kwiki Project Management
+        * #kwiki on irc.freenode.net           - Kwiki IRC Channel
+        * http://www.kwiki.org/downloads/      - Kwiki downloads
+        * http://doolittle.kwiki.org/          - Kwiki Documentation Wiki
+
+    Finally, there are generally a good amount of helpful people on IRC.
+    Please drop by sometime!
+
+    Cheers, Ingy
+
+    Here's the old Kwiki.pm doc. It might be a little out of date...
 
 SYNOPSIS
         > kwiki -new cgi-bin/my-kwiki
@@ -80,10 +148,11 @@
     Kwiki::Command
 
 AUTHOR
-    Brian Ingerson <INGY at cpan.org>
+    Ingy döt Net <ingy at cpan.org>
 
 COPYRIGHT
-    Copyright (c) 2004. Brian Ingerson. All rights reserved.
+    Copyright (c) 2004. Brian Ingerson. All rights reserved. Copyright (c)
+    2007. Ingy döt Net. All rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.

Modified: branches/upstream/libkwiki-perl/current/lib/Kwiki.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libkwiki-perl/current/lib/Kwiki.pm?rev=21767&op=diff
==============================================================================
--- branches/upstream/libkwiki-perl/current/lib/Kwiki.pm (original)
+++ branches/upstream/libkwiki-perl/current/lib/Kwiki.pm Mon Jun 16 22:58:38 2008
@@ -1,6 +1,6 @@
 package Kwiki;
 use Spoon 0.22 -Base;
-our $VERSION = '0.38';
+our $VERSION = '0.39';
 
 const config_class => 'Kwiki::Config';
 
@@ -30,6 +30,74 @@
 
 Kwiki - The Kwiki Wiki Building Framework
 
+=head1 KWIKI 2.0
+
+STOP. Don't install this CPAN module! Read this section to find out why...
+
+Kwiki-0.38 and the large collection of Kwiki CPAN modules has been
+relatively stable on CPAN for the last couple years. Being stable also
+means being undeveloped.
+
+In December 2006, the Kwiki community started actively developing Kwiki
+again. We call the revitalized project Kwiki 2.0. This is not a version
+number (at least not yet), but a code name for the effort.
+
+Some goals of Kwiki 2.0 are:
+
+  * Make Kwiki easier to install and maintain
+  * Make Kwiki fast
+  * Make Kwiki plugins easier to develop
+  * Make Kwiki more fun
+
+We've made a lot of headway on these goals and other goals too.
+
+Kwiki is *really* simple to install now. _All_ the Perl dependencies
+come with Kwiki, and are /preinstalled/. This means you just need Perl
+5.8.3 and a web server. Well actually we give you a web server too!
+
+NOTE: /Preinstalled/ means that the modules are all linked into a lib tree
+that is separate from your installed Perl modules. This is good for several
+reasons:
+
+    1) Installing modules takes a lot of time.
+    2) Kwiki is guaranteed to have module versions that work.
+    3) Kwiki doesn't change anything about your system's Perl lib.
+    4) You can delete all the modules by just deleting the Kwiki checkout.
+    5) Upgrading Kwiki is simple as 'svn update'!
+    6) You can install Kwiki without root permissions.
+
+Also Kwiki is now smoking fast if you use Kwiki::FastCGI. There are also
+some new caching modules that make Kwiki even faster still.
+
+The important part is this: all the new stuff is not yet on CPAN. If you
+want to install Kwiki, get it from our subversion repository (highly
+recommended) or tarball downloads.
+
+You will be amazed at how simple and fast it is to install the new Kwiki
+which comes with nearly 500 Perl modules. The longest part is simply
+checking out the repository. See L<http://www.kwiki.org/?InstallingKwiki2>
+for details.
+
+Eventually all this work will make it back to CPAN, but likely not for a
+while.
+
+Here's a list of references for more information:
+
+    * http://www.kwiki.org                 - Main Kwiki Site
+    * http://www.kwiki.org/?KwikiNews      - Kwiki News
+    * http://svn.kwiki.org/kwiki/trunk/    - Kwiki SVN Repository
+    * http://trac.kwiki.org/trac/timeline  - Kwiki Project Management
+    * #kwiki on irc.freenode.net           - Kwiki IRC Channel
+    * http://www.kwiki.org/downloads/      - Kwiki downloads
+    * http://doolittle.kwiki.org/          - Kwiki Documentation Wiki
+
+Finally, there are generally a good amount of helpful people on IRC.
+Please drop by sometime!
+
+Cheers, Ingy
+
+Here's the old Kwiki.pm doc. It might be a little out of date...
+
 =head1 SYNOPSIS
 
     > kwiki -new cgi-bin/my-kwiki
@@ -117,11 +185,12 @@
 
 =head1 AUTHOR
 
-Brian Ingerson <INGY at cpan.org>
+Ingy döt Net <ingy at cpan.org>
 
 =head1 COPYRIGHT
 
 Copyright (c) 2004. Brian Ingerson. All rights reserved.
+Copyright (c) 2007. Ingy döt Net. All rights reserved.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.




More information about the Pkg-perl-cvs-commits mailing list