Skip to content

Commit beb22f6

Browse files
author
Mike van Riel
committed
Importing phpCodeControl into Git
0 parents  commit beb22f6

325 files changed

Lines changed: 57663 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
nbproject
2+
log/*
3+
cache/*
4+
.svn

apps/frontend/config/app.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/11-App
3+
4+
# default values
5+
#all:

apps/frontend/config/cache.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/09-Cache
3+
4+
default:
5+
enabled: false
6+
with_layout: false
7+
lifetime: 86400

apps/frontend/config/factories.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/05-Factories
3+
4+
prod:
5+
logger:
6+
class: sfNoLogger
7+
param:
8+
level: err
9+
loggers: ~
10+
11+
test:
12+
storage:
13+
class: sfSessionTestStorage
14+
param:
15+
session_path: %SF_TEST_CACHE_DIR%/sessions
16+
17+
response:
18+
class: sfWebResponse
19+
param:
20+
send_http_headers: false
21+
22+
mailer:
23+
param:
24+
delivery_strategy: none
25+
26+
dev:
27+
mailer:
28+
param:
29+
delivery_strategy: none
30+
31+
all:
32+
routing:
33+
class: sfPatternRouting
34+
param:
35+
generate_shortest_url: true
36+
extra_parameters_as_query_string: true
37+
38+
view_cache_manager:
39+
class: sfViewCacheManager
40+
param:
41+
cache_key_use_vary_headers: true
42+
cache_key_use_host_name: true

apps/frontend/config/filters.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/12-Filters
3+
4+
rendering: ~
5+
security: ~
6+
7+
# insert your own filters here
8+
9+
cache: ~
10+
execution: ~
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
class frontendConfiguration extends sfApplicationConfiguration
4+
{
5+
public function configure()
6+
{
7+
}
8+
}

apps/frontend/config/routing.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 }

apps/frontend/config/security.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/08-Security
3+
4+
default:
5+
is_secure: false

apps/frontend/config/settings.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/04-Settings
3+
4+
prod:
5+
.settings:
6+
no_script_name: true
7+
logging_enabled: false
8+
9+
dev:
10+
.settings:
11+
error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?>
12+
web_debug: true
13+
cache: false
14+
no_script_name: false
15+
etag: false
16+
17+
test:
18+
.settings:
19+
error_reporting: <?php echo ((E_ALL | E_STRICT) ^ E_NOTICE)."\n" ?>
20+
cache: false
21+
web_debug: false
22+
no_script_name: false
23+
etag: false
24+
25+
all:
26+
.settings:
27+
# Form security secret (CSRF protection)
28+
csrf_secret: 5e397cd506c1609d3c332d37bc80a118afc2d5ea
29+
30+
# Output escaping settings
31+
escaping_strategy: true
32+
escaping_method: ESC_SPECIALCHARS
33+
34+
# Enable the database manager
35+
use_database: true
36+
i18n: on

apps/frontend/config/view.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/13-View
3+
4+
default:
5+
http_metas:
6+
content-type: text/html
7+
8+
metas:
9+
title: phpCodeControl
10+
description: SCM Tracking tool
11+
#keywords: symfony, project
12+
language: en
13+
robots: index, follow
14+
15+
stylesheets: [../sfJqueryReloadedPlugin/css/ui-lightness/jquery-ui-1.7.2.custom, main.css]
16+
17+
javascripts: [../sfJqueryReloadedPlugin/js/jquery-1.3.2.min.js, ../sfJqueryReloadedPlugin/js/plugins/jquery-ui-1.7.2.custom.min.js]
18+
19+
has_layout: true
20+
layout: layout

0 commit comments

Comments
 (0)