1+ # You can find more information about this file on the symfony website:
2+ # http://www.symfony-project.org/reference/1_4/en/10-Routing
3+
4+ commit :
5+ class : sfDoctrineRouteCollection
6+ options : { model: Commit }
7+
8+ change :
9+ class : sfDoctrineRouteCollection
10+ options : { model: FileChange }
11+
12+ commit_loader :
13+ url : /commit/loader
14+ param : { module: commit, action: loader }
15+
16+ commit_report :
17+ class : sfDoctrineRoute
18+ url : /commit/report/:type/:period
19+ param : { module: commit, action: report }
20+ options : { model: Commit, type: list }
21+
22+ chart_author_pie :
23+ url : /commit/charts/author
24+ param : { module: commit, action: ChartAuthorPie }
25+
26+ chart_author_week_pie :
27+ url : /commit/charts/author/week
28+ param : { module: commit, action: ChartAuthorWeekPie }
29+
30+ chart_author_activity_days :
31+ url : /commit/charts/author/activity/days
32+ param : { module: commit, action: ChartAuthorActivityDays }
33+
34+ chart_author_activity_hours :
35+ url : /commit/charts/author/activity/hours
36+ param : { module: commit, action: ChartAuthorActivityHours }
37+
38+ commit_report_param :
39+ class : sfDoctrineRoute
40+ url : /commit/report/:type/:period/:param
41+ param : { module: commit, action: report }
42+ options : { model: Commit, type: list }
43+
44+ # default rules
45+ homepage :
46+ class : sfDoctrineRoute
47+ url : /
48+ param : { module: commit, action: index }
49+ options : { model: Commit, type: list }
0 commit comments