Changes between Version 16 and Version 17 of CookBookDataModels
- Timestamp:
- Sep 30, 2006, 2:35:54 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBookDataModels
v16 v17 1 1 = CookBook - Data Models = 2 2 3 [wiki:CookBookMultiLevelMultiComponentDataModel Multiple "levels" & multiple components] (Pre magic) 4 5 [wiki:CookBookCategoryDataModel A "category" data model] - for use in custom documents, weblog entries, etc. 6 7 [wiki:CookBookCategoryDataModelPostMagic A "category" data model (Post Magic)] - Same as the "category" data model above, but with updated code for the magic-removal trunk. 3 [wiki:CookBookCategoryDataModelPostMagic A "category" data model] - for use in custom documents, weblog entries, etc. 8 4 9 5 [wiki:ModifiedPreorderTreeTraversal An efficient parent/child relationship] - Similar to the "category" data model above, but doesn't use recursive functions, neither multiple queries. 10 6 11 [wiki:CookBookTreeStructure] A tree DB system that is fast for insert, select and delete. Requires small change to django source.12 13 [wiki:ModelInheritance Model Inheritance]14 15 7 [wiki:UsingMarkup Using markup filters in models] - efficiently using Markdown, Textile, etc. in models 16 17 [wiki:CookBookLabels Labels/tags] for any model with a single line in the model code.18 8 19 9 [wiki:CookBookChoicesContantsClass A "Constants" class] - a neat trick to enhance the choices functionality … … 22 12 23 13 [wiki:CookBookPredicates Predicates] - or "3-tuples" or "semantically enriched many-to-many relationships". 14 15 == Pre-Magic == 16 The Pages in this section refer to older version of Django: 17 18 [wiki:CookBookMultiLevelMultiComponentDataModel] - Multiple "levels" & multiple components 19 20 [wiki:CookBookCategoryDataModel ] - A "category" data model for use in custom documents, weblog entries, etc. 21 22 [wiki:CookBookTreeStructure] - A tree DB system that is fast for insert, select and delete. Requires small change to django source. 23 24 [wiki:CookBookLabels ] - Labels/tags for any model with a single line in the model code. 25