Development

Changeset 17613 for plugins/csSEOToolkitPlugin/trunk/config

You must first sign up to be able to contribute.

Show
Ignore:
Timestamp:
04/26/09 00:55:56 (4 years ago)
Author:
bshaffer
Message:

major updates

Files:

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:         integer 
    5     title:  string(255) 
    6     description:  clob 
    7     keywords:   string(255) 
    8   relations: 
    9     SeoPage: 
    10       type:         one 
    11       foreignType:  one     
     1# 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  
    11SeoPage: 
     2  actAs: [Timestampable] 
    23  columns: 
    34    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:         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        
     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#