summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext
Commit message (Expand)AuthorAgeFilesLines
* Assorted unused imports from pyflakes, docstring tweaks, formatting.Jason Kirtland2007-10-131-1/+0
* Make ActiveMapper use scoped_session instead of SessionContextPaul Johnston2007-10-121-19/+6
* Doc updates.Jason Kirtland2007-09-071-31/+97
* Small change in ActiveMapper to make it work with Python 2.3Paul Johnston2007-09-041-1/+2
* Expand custom assocproxy getter/setter support to scalar proxiesJason Kirtland2007-08-231-2/+13
* Allow custom getter/setters to be specified for a standard AssociationProxyJason Kirtland2007-08-231-7/+29
* `from foo import (name, name)` isn't valid syntax for 2.3. ah well.Jason Kirtland2007-08-211-0/+1
* ReST docstring fixJason Kirtland2007-08-191-1/+1
* 1. Module layout. sql.py and related move into a package called "sql".Mike Bayer2007-08-181-3/+3
* update activemapper backrefs for r3340Jason Kirtland2007-08-171-1/+2
* fix url for 04 docsJonathan Ellis2007-08-081-1/+1
* update SS docs to 0.4Jonathan Ellis2007-08-081-52/+35
* - sessionmaker module is out, replaced with simple function in session.pyMike Bayer2007-08-022-50/+18
* - SessionContext and assignmapper are deprecatedMike Bayer2007-08-011-2/+3
* Added EXT_CONTINUE and EXT_STOP for MapperExtensions; EXT_PASS is a synonym f...Jason Kirtland2007-08-012-4/+4
* - restored old assign_mapper monkey patched query methods but with two diffe...Gaëtan de Menten2007-07-311-2/+16
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena...Mike Bayer2007-07-277-385/+145
* - the various "engine" arguments, such as "engine", "connectable",Mike Bayer2007-07-121-2/+3
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-062-4/+4
* - forwards-compatibility with 0.4: added one(), first(), andMike Bayer2007-06-201-1/+1
* - Fixed typo blocking some assoc proxy dict assignments, added testJason Kirtland2007-06-161-1/+1
* - Iteration over dict association proxies is now dict-like, notJason Kirtland2007-06-142-23/+48
* - added filter(), filter_by() to assignmapperMike Bayer2007-06-021-1/+1
* add a couple expository notes to docs; fix a couple rst buglets. use modern ...Jonathan Ellis2007-06-011-12/+28
* Oops, Python 2.5 ternary operator snuck in.Jason Kirtland2007-05-031-3/+12
* - Test assoc proxy lazy loads, fixed __set__ race on single scalar assocsJason Kirtland2007-05-031-1/+6
* - New association proxy implementation, implementing complete proxies to list...Jason Kirtland2007-05-031-80/+584
* - added sqlalchemy.ext.orderinglist, a custom list class that synchronizes an...Jason Kirtland2007-05-021-0/+181
* - small fix to SelectResultsExt to not bypass itself duringMike Bayer2007-04-301-1/+1
* correct typo-equivalent mistakes in some comments/docstringsGaëtan de Menten2007-04-271-1/+1
* wrap __name__ settings in a try/except for 2.3 compatMike Bayer2007-04-251-2/+8
* - assign_mapper names methods according to their keys (i.e. __name__)Mike Bayer2007-04-241-0/+2
* - big fix to AssociationProxy so that multiple AssociationProxyMike Bayer2007-04-231-2/+3
* - column label and bind param "truncation" also generateMike Bayer2007-03-281-2/+2
* integrated docutils formatting into generated documentation;Mike Bayer2007-03-171-4/+5
* - the full featureset of the SelectResults extension has been mergedMike Bayer2007-03-101-0/+1
* - options() method on SelectResults now implemented "generatively"Mike Bayer2007-03-071-2/+4
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-255-187/+314
* - added selectfirst(), selectfirst_by() to assign_mapper [ticket:467]Mike Bayer2007-02-221-1/+1
* - added options() method to SelectResults, equivalent to query.options() [tic...Mike Bayer2007-02-101-0/+8
* - implemented foreign_keys argument on relation() [ticket:385]Mike Bayer2007-02-101-1/+1
* - added optional __table_opts__ dictionary to ActiveMapper, will send kw opti...Mike Bayer2007-02-071-2/+6
* - added distinct() method to SelectResults. generally should only make a dif...Mike Bayer2007-02-051-0/+6
* added 'ascii' as default encoding in case getdefaultlocale()[1] comes up with...Mike Bayer2007-02-041-1/+1
* - the "polymorphic_primaryjoin" again goes against the parent's non-polymorph...Mike Bayer2007-02-011-2/+2
* further work on insuring clear_mappers() really works. assignmapper identifiedMike Bayer2007-01-301-0/+1
* removed various print statementsMike Bayer2007-01-281-3/+0
* merged the polymorphic relationship refactoring branch in. i want to go furt...Mike Bayer2007-01-281-3/+9
* justify textJonathan Ellis2007-01-231-8/+9
* add example of joining to labeled tableJonathan Ellis2007-01-231-1/+10