Changeset 17613 for plugins/csSEOToolkitPlugin/trunk/config
- Timestamp:
- 04/26/09 00:55:56 (4 years ago)
- Files:
-
- plugins/csSEOToolkitPlugin/trunk/config/app.yml (added)
- plugins/csSEOToolkitPlugin/trunk/config/doctrine/meta_data.yml (modified) (1 diff)
- plugins/csSEOToolkitPlugin/trunk/config/doctrine/seo_page.yml (modified) (1 diff)
- plugins/csSEOToolkitPlugin/trunk/config/doctrine/sitemap_item.yml (modified) (1 diff)
- plugins/csSEOToolkitPlugin/trunk/config/routing.yml (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/csSEOToolkitPlugin/trunk/config/doctrine/meta_data.yml
r17611 r17613 1 MetaData:2 columns:3 seo_page_id:4 type: integer5 title: string(255)6 description: clob7 keywords: string(255)8 relations:9 SeoPage:10 type: one11 foreignType: one1 # MetaData: 2 # columns: 3 # seo_page_id: 4 # type: integer 5 # title: string(255) 6 # description: clob 7 # keywords: string(255) 8 # relations: 9 # SeoPage: 10 # type: one 11 # foreignType: one plugins/csSEOToolkitPlugin/trunk/config/doctrine/seo_page.yml
r17611 r17613 1 1 SeoPage: 2 actAs: [Timestampable] 2 3 columns: 3 4 url: string(255) 5 title: string(255) 6 description: clob 7 underride_meta_data: 8 type: boolean 9 default: false 10 exclude_from_sitemap: 11 type: boolean 12 default: false 13 keywords: string(255) 14 priority: 15 type: decimal 16 default: .5 17 changeFreq: 18 type: enum 19 values: [always,hourly,daily,weekly,monthly,yearly,never] 20 default: weekly plugins/csSEOToolkitPlugin/trunk/config/doctrine/sitemap_item.yml
r17611 r17613 1 SitemapItem:2 actAs: [Timestampable]3 columns:4 seo_page_id:5 type: integer6 priority:7 type: decimal8 default: .59 changeFreq:10 type: enum11 values: [always,hourly,daily,weekly,monthly,yearly,never]12 default: weekly13 relations:14 SeoPage:15 type: one16 foreignType: one17 1 # SitemapItem: 2 # actAs: [Timestampable] 3 # columns: 4 # seo_page_id: 5 # type: integer 6 # priority: 7 # type: decimal 8 # default: .5 9 # changeFreq: 10 # type: enum 11 # values: [always,hourly,daily,weekly,monthly,yearly,never] 12 # default: weekly 13 # relations: 14 # SeoPage: 15 # type: one 16 # foreignType: one 17 #