new sfRoute('/', array ( 'module' => 'home', 'action' => 'index', ), array ( ), array ( )), 'item_list' => new sfRoute('/katalog', array ( 'module' => 'item', 'action' => 'list', ), array ( ), array ( )), 'item_category_list' => new sfDoctrineRoute('/katalog/:slug', array ( 'module' => 'item', 'action' => 'list', ), array ( ), array ( 'model' => 'Category', 'type' => 'object', )), 'item_author_list' => new sfDoctrineRoute('/autor/:id', array ( 'module' => 'item', 'action' => 'author', ), array ( ), array ( 'model' => 'Author', 'type' => 'object', )), 'item_show' => new sfDoctrineRoute('/aukce/:slug', array ( 'module' => 'item', 'action' => 'show', ), array ( ), array ( 'model' => 'Item', 'type' => 'object', )), 'page_read' => new sfDoctrineRoute('/text/:slug', array ( 'module' => 'page', 'action' => 'read', ), array ( ), array ( 'model' => 'Page', 'type' => 'object', )), 'default_index' => new sfRoute('/:module', array ( 'action' => 'index', ), array ( ), array ( )), 'default' => new sfRoute('/:module/:action/*', array ( ), array ( ), array ( )), );