root / elixir / trunk / elixir

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @534 [534] 12 months ged - Fixed bad foreign key constraint generated for classes inheriting from …
(edit) @532 [532] 17 months ged cosmetic change
(edit) @531 [531] 17 months ged add some comments, FIXME, etc…
(edit) @522 [522] 2 years ged clarify "table" argument to ManyToMany.
(edit) @521 [521] 2 years ged add FIXME
(edit) @515 [515] 2 years ged - Added a new collection which can resolve entities relative to the …
(edit) @514 [514] 2 years ged remove obsolete comment
(edit) @513 [513] 2 years ged - do not leak options_defaults from a subclass into a parent class - do …
(edit) @512 [512] 2 years ged - allows abstract classes to set default options - allow mixed type …
(edit) @511 [511] 2 years ged - Entities can now be declared "abstract" so that they do not create a …
(edit) @510 [510] 2 years ged - Fixed having relationships in custom base classes (based on patch by …
(edit) @509 [509] 2 years ged don't modify entity in EntityDescriptor.init
(edit) @508 [508] 2 years ged use public accessor introduced in SA 0.5
(edit) @507 [507] 2 years ged even more properties... doh!
(edit) @506 [506] 2 years ged plug a deprecation warning in ext.associable with SA 0.6
(edit) @505 [505] 2 years ged - using_options_defaults and using_table_options statements can be used …
(edit) @504 [504] 2 years ged - Fixed custom bases classes and versioned extension when used with zope …
(edit) @502 [502] 2 years ged fix ReST markup so that API docs look good
(edit) @500 [500] 2 years ged one more old-style decorator busted
(edit) @497 [497] 2 years ged more cleanup after dropping py2.3/SA0.4
(edit) @491 [491] 2 years ged change version numbers
(edit) @490 [490] 2 years ged Dropped support for python 2.3, SQLAlchemy 0.4 and deprecated stuff from …
(edit) @488 [488] 2 years ged callable is deprecated in py3k
(edit) @484 [484] 2 years ged update all web links
(edit) @481 [481] 2 years ged - added test for migration after M2M column format change through …
(edit) @480 [480] 2 years ged - Provide our own Session.mapper equivalent to avoid SQLAlchemy 0.5.5+ …
(edit) @478 [478] 2 years ged - Default table_options (defined in options_defaultstable_options?) are …
(edit) @477 [477] 2 years ged - Added a "table_kwargs" argument on ManyToMany relationships to pass any …
(edit) @476 [476] 2 years ged formatting fix
(edit) @475 [475] 2 years ged - changed the M2M column format again (only differ from the 0.6.x naming …
(edit) @466 [466] 2 years ged deprecate autosetup option
(edit) @465 [465] 2 years ged - Fixed Elixir to work with the future SQLAlchemy 0.6 (trunk as of …
(edit) @463 [463] 2 years ged made Elixir work with SA's current trunk (future 0.6).
(edit) @460 [460] 2 years ged revert M2M column format change for now. Needs more thinking as the …
(edit) @458 [458] 2 years ged - Changed the pattern used by default to generate column names for (all) …
(edit) @455 [455] 3 years ged document order_by "load-only" behavior
(edit) @448 [448] 3 years ged Fixed using to_dict with a ManyToOne relationship in the "deep" set and …
(edit) @446 [446] 3 years ged - Fixed encrypted extension to not encrypt several times an instance …
(edit) @443 [443] 3 years ged apply patch from "Secator" to fix py2.6 warnings
(edit) @441 [441] 3 years ged better message
(edit) @440 [440] 3 years cleverdevil Fixing the docstring for the encrypted extension.
(edit) @439 [439] 3 years ged add extend method on entity collection
(edit) @437 [437] 3 years ged fixed shortnames documentation, doh!
(edit) @436 [436] 3 years ged revert part of the last commit…
(edit) @435 [435] 3 years ged simplified EntityCollection code
(edit) @433 [433] 3 years ged revert part of previous commit... SA can't possibly compute itself …
(edit) @432 [432] 3 years ged - added test for the with_polymorphic mapper argument (closes #79). - made …
(edit) @430 [430] 3 years ged update comment
(edit) @429 [429] 3 years ged added field with unique=True in field example
(edit) @428 [428] 3 years ged implemented ManyToOne relationships to plain SA-mapped classes. OneToMany …
(edit) @427 [427] 3 years ged - Deprecated act_as_list extension in favor of SQLAlchemy's orderinglist …
(edit) @426 [426] 3 years ged - Fixed filter argument on OneToMany relationship leaking the filter to …
(edit) @425 [425] 3 years ged - Added workaround for an odd mod_python behavior (class.module
(edit) @422 [422] 3 years ged delete Elixir properties as late as possible (ie in setup phase), not …
(edit) @421 [421] 3 years ged - moved all relationship options to explicit kwargs, instead of doing …
(edit) @420 [420] 3 years ged only inspect methods (fixes previous commit)
(edit) @419 [419] 3 years ged - Fixed event methods not being called when they are defined on a parent …
(edit) @418 [418] 3 years ged Fix move_to_bottom on MySQL (by issuing an extra query). Fixes #34. Added …
(edit) @417 [417] 3 years ged slightly improved documentation & exception message …
(edit) @416 [416] 3 years ged add EntityBase to all
(edit) @414 [414] 3 years ged Allow "colname" argument to be specified in addition to "primaryjoin" …
(edit) @413 [413] 3 years ged - Fixed documentation about local_colname and remote_colname arguments …
(edit) @411 [411] 3 years ged added "preload_data" extension which allows to insert data into the …
(edit) @410 [410] 3 years ged - Added new extension: perform_ddl. It allows to execute one or several …
(edit) @409 [409] 3 years ged - Added new column_names argument to the acts_as_versioned extension, …
(edit) @408 [408] 3 years ged minor cleanups
(edit) @406 [406] 3 years ged - added documentation for target_column and test for a O2M using a M2O …
(edit) @405 [405] 3 years ged Added a new "target_column" argument on ManyToOne relationships (ticket …
(edit) @403 [403] 3 years ged - Moved all methods of the "Entity" base class, to the "EntityBase" class, …
(edit) @402 [402] 3 years ged removed unused import
(edit) @401 [401] 3 years ged - fixed bug with the new "schema" argument on ManyToMany relationships (I …
(edit) @400 [400] 3 years ged - Added a new statement 'using_options_defaults' which can be used on a …
(edit) @399 [399] 3 years ged remove debug print
(edit) @398 [398] 3 years ged move the default collection class to a separate file
(edit) @397 [397] 3 years ged New features: - The local_colname and remote_colname arguments on …
(edit) @395 [395] 3 years ged fix encrypted extension for on_reconstitute renamed
(edit) @391 [391] 3 years ged follow SA on the rename of on_reconstitute to reconstructor in SA0.5 trunk
(edit) @389 [389] 3 years ged More helpful assertion message when inverse relationship types don't …
(edit) @385 [385] 4 years ged fix missing key in exception message
(edit) @384 [384] 4 years ged add documentation for the "field" argument to ManyToOne, and added …
(edit) @383 [383] 4 years ged removed support for the deprecated with_fields syntax
(edit) @382 [382] 4 years ged - extra args and kwargs to Synonym and ColumnProperty are forwarded to …
(edit) @381 [381] 4 years ged add TODO
(edit) @380 [380] 4 years ged - Allow ManyToOne relationships to use manually created fields as their …
(edit) @379 [379] 4 years ged i don't like loop bodies on the same line as the loops themselves :)
(edit) @378 [378] 4 years cleverdevil Resolved duplication in Entity.set and Entity.__init__ by having the …
(edit) @377 [377] 4 years ged bump version
(edit) @370 [370] 4 years ged added an example of a field with a default value, as per a suggestion on …
(edit) @367 [367] 4 years cleverdevil The constructor for Entity no longer called from_dict as it can lead …
(edit) @363 [363] 4 years ged - Default "target entity resolving code" changed slightly. It now uses a …
(edit) @362 [362] 4 years ged - Added support for callables for some arguments on relationships: …
(edit) @360 [360] 4 years ged - cleanup "copy properties from base class" implementation (closes #15) - …
(edit) @359 [359] 4 years ged remove outdated comment
(edit) @358 [358] 4 years ged - added add_mapper_extension helper method on EntityBuilder - minor …
(edit) @357 [357] 4 years ged cleanup cleanup_all
(edit) @356 [356] 4 years ged - better support for viewonly relationships - restore flush method on …
(edit) @355 [355] 4 years ged - Added support for viewonly relationships (OneToMany and OneToOne).
(edit) @354 [354] 4 years ged - Fixed acts_as_list extension with autoloaded entities (patch from maqr, …
(edit) @352 [352] 4 years ged Added on_reconstitute event/method decorator. The decorator is …
(edit) @350 [350] 4 years ged - added add_mapper_property and add_table_column helper method in …
Note: See TracRevisionLog for help on using the revision log.