Development

Changeset 16105

You must first sign up to be able to contribute.

Changeset 16105

Show
Ignore:
Timestamp:
03/08/09 21:55:59 (4 years ago)
Author:
boutell
Message:

Initial checkin. Surprisingly close to usable, considering we still have
to bring over lots and lots of CSS.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/pkContextCMSPlugin/cmstest/data/fixtures/fixtures.yml

    r16101 r16105  
    44# #  
    55# # See documentation for your ORM's *:data-load task for more information. 
    6 #  
    7 # User: 
    8 #   fabien: 
    9 #     username: fabien 
    10 #     password: changeme 
    11 #     name:     Fabien Potencier 
    12 #     email:    fabien.potencier@symfony-project.com 
    13 #   kris: 
    14 #     username: Kris.Wallsmith 
    15 #     password: changeme 
    16 #     name:     Kris Wallsmith 
    17 #     email:    kris.wallsmith@symfony-project.com 
     6
     7 
     8sfGuardUser: 
     9  sgu_admin: 
     10    username:       admin 
     11    password:       admin 
     12    is_super_admin: true 
     13 
     14sfGuardPermission: 
     15  sgp_admin: 
     16    name:           admin 
     17    description:    Administrator permission 
     18 
     19sfGuardGroup: 
     20  sgg_admin: 
     21    name:           admin 
     22    description:    Administrator group 
     23 
     24sfGuardGroupPermission: 
     25  sggp_admin: 
     26    sfGuardGroup:       sgg_admin 
     27    sfGuardPermission:  sgp_admin 
     28 
     29sfGuardUserGroup: 
     30  sgug_admin: 
     31    sfGuardGroup:       sgg_admin 
     32    sfGuardUser:        sgu_admin