fix Changes, remove README
David Kamholz [Fri, 10 Mar 2006 12:38:22 +0000 (12:38 +0000)]
Changes
README [deleted file]

diff --git a/Changes b/Changes
index 27f9714..835055f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,7 +5,7 @@ Revision history for DBIx::Class
         - additional speed tweaks for C3
         - allow scalarefs passed to order_by to go straight through to SQL
         - renamed insert_or_update to update_or_insert (with compat alias)
-       - hidden lots of packages from the PAUSE Indexer
+        - hidden lots of packages from the PAUSE Indexer
 
 0.05999_01 2006-03-09 18:31:44
         - renamed cols attribute to columns (cols still supported)
diff --git a/README b/README
deleted file mode 100644 (file)
index 7ff6476..0000000
--- a/README
+++ /dev/null
@@ -1,131 +0,0 @@
-NAME
-    DBIx::Class - Extensible and flexible object <-> relational mapper.
-
-SYNOPSIS
-DESCRIPTION
-    This is an SQL to OO mapper, inspired by the Class::DBI framework, and
-    meant to support compability with it, while restructuring the internals
-    and making it possible to support some new features like self-joins,
-    distinct, group bys and more.
-
-    This project is still at an early stage, so the maintainers don't make
-    any absolute promise that full backwards-compatibility will be
-    supported; however, if we can without compromising the improvements
-    we're trying to make, we will, and any non-compatible changes will merit
-    a full justification on the mailing list and a CPAN developer release
-    for people to test against.
-
-    The community can be found via -
-
-      Mailing list: http://lists.rawmode.org/mailman/listinfo/dbix-class/
-
-      SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/
-
-      Wiki: http://dbix-class.shadowcatsystems.co.uk/
-
-      IRC: irc.perl.org#dbix-class
-
-QUICKSTART
-    If you're using Class::DBI, and want an easy and fast way of migrating
-    to DBIx::Class, take a look at DBIx::Class::CDBICompat.
-
-    There are two ways of using DBIx::Class, the "simple" way and the
-    "schema" way. The "simple" way of using DBIx::Class needs less classes
-    than the "schema" way but doesn't give you the ability to easily use
-    different database connections.
-
-    Some examples where different database connections are useful are:
-
-    different users with different rights different databases with the same
-    schema.
-
-  Simple
-    First you need to create a base class which all other classes will
-    inherit from. See DBIx::Class::DB for information on how to do this.
-
-    Then you need to create a class for every table you want to use with
-    DBIx::Class. See DBIx::Class::Table for information on how to do this.
-
-  Schema
-    With this approach, the table classes inherit directly from
-    DBIx::Class::Core, although it might be a good idea to create a "parent"
-    class for all table classes that inherits from DBIx::Class::Core and
-    adds additional methods needed by all table classes, e.g. reading a
-    config file or loading auto primary key support.
-
-    Look at DBIx::Class::Schema for information on how to do this.
-
-    If you need more help, check out the introduction in the manual below.
-
-SEE ALSO
-    DBIx::Class::Core - DBIC Core Classes
-    DBIx::Class::Manual - User's manual
-    DBIx::Class::CDBICompat - Class::DBI Compat layer
-    DBIx::Class::Schema
-    DBIx::Class::ResultSet
-    DBIx::Class::ResultSource
-    DBIx::Class::Row - row-level methods
-    DBIx::Class::PK - primary key methods
-    DBIx::Class::Relationship - relationships between tables
-
-AUTHOR
-    Matt S. Trout <mst@shadowcatsystems.co.uk>
-
-CONTRIBUTORS
-    Andy Grundman <andy@hybridized.org>
-
-    Brian Cassidy <bricas@cpan.org>
-
-    Dan Kubb <dan.kubb-cpan@onautopilot.com>
-
-    Dan Sully <daniel@cpan.org>
-
-    David Kamholz <dkamholz@cpan.org>
-
-    Jules Bean
-
-    Marcus Ramberg <mramberg@cpan.org>
-
-    Paul Makepeace
-
-    CL Kao
-
-    Jess Robinson
-
-    Marcus Ramberg
-
-    Will Hawes
-
-    Todd Lipcon
-
-    Daniel Westermann-Clark <danieltwc@cpan.org>
-
-    Alexander Hartmaier <alex_hartmaier@hotmail.com>
-
-    Zbigniew Lukasiak
-
-    Nigel Metheringham <nigelm@cpan.org>
-
-    Jesper Krogh
-
-    Brandon Black
-
-    Christopher H. Laco
-
-    Scotty Allen <scotty@scottyallen.com>
-
-    sc_
-
-    Robert Sedlacek <phaylon@dunkelheit.at>
-
-    Justin Guenther <jguenther@agr.gc.ca>
-
-    Daisuke Murase <typester@cpan.org>
-
-    Scott McWhirter (konobi)
-
-    Cory Watson (gphat)
-
-LICENSE
-    You may distribute this code under the same terms as Perl itself.
-