new framework, namespace help please!



Hello,

I've been reworking some of the base classes I've been using over the
past few years into something more publicly presentable. It's an
OO-RDBMs framework similar in ways to Class::DBI and Alzabo. It keeps
the simple idea of mapping tables directly onto objects, but differs in
that it creates two layers of classes, an API class whose goal is to
contain all the business logic around a set of related tables and a DB
class that strives to encapsulate all the actual database access. The
table objects themselves, are simple containers that really only keep
information about the table they are in and the information they
currently hold. Arbitrary complexity can be built into all subclasses
of those but they strive to make the easy/common things easier and the
hard things, if not easier at least not more difficult.

So my first release is going to be these base classes, but I hope to
add additional modules into the namespace that will build ontop of this
giving things like basic blogging engine or user management engine,
etc..

What I've been calling it is things like Deasil::Base or Deasil::Blog
or Deasil::Cal, etc.. I'd like to know if that's a reasonable thing to
upload or if I should try to wedge these classes into an existing top
level namespace?

Any thoughts are greatly appreciated.

.