Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ed83-fc16-40d3-870d-fec3a6a98b5b
  • Loading branch information
guglielmo committed Jul 14, 2008
1 parent f706752 commit 643ed7a
Show file tree
Hide file tree
Showing 209 changed files with 7,108,874 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/be/config/app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# default values
#all:
4 changes: 4 additions & 0 deletions apps/be/config/cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
default:
enabled: off
with_layout: false
lifetime: 86400
8 changes: 8 additions & 0 deletions apps/be/config/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

// include project configuration
include(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');

// symfony bootstraping
require_once($sf_symfony_lib_dir.'/util/sfCore.class.php');
sfCore::bootstrap($sf_symfony_lib_dir, $sf_symfony_data_dir);
35 changes: 35 additions & 0 deletions apps/be/config/factories.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
cli:
controller:
class: sfConsoleController
request:
class: sfConsoleRequest
response:
class: sfConsoleResponse

test:
storage:
class: sfSessionTestStorage

#all:
# controller:
# class: sfFrontWebController
#
# request:
# class: sfWebRequest
#
# response:
# class: sfWebResponse
#
# user:
# class: myUser
#
# storage:
# class: sfSessionStorage
# param:
# session_name: symfony
#
# view_cache:
# class: sfFileCache
# param:
# automaticCleaningFactor: 0
# cacheDir: %SF_TEMPLATE_CACHE_DIR%
10 changes: 10 additions & 0 deletions apps/be/config/filters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
rendering: ~
web_debug: ~
security: ~

# generally, you will want to insert your own filters here

cache: ~
common: ~
flash: ~
execution: ~
7 changes: 7 additions & 0 deletions apps/be/config/i18n.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#all:
# default_culture: en
# source: XLIFF
# debug: off
# cache: on
# untranslated_prefix: "[T]"
# untranslated_suffix: "[/T]"
22 changes: 22 additions & 0 deletions apps/be/config/logging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
prod:
enabled: off
level: err
rotate: on
purge: off

#all:
# enabled: on
# level: debug
# rotate: off
# period: 7
# history: 10
# purge: on
# loggers:
# sf_web_debug:
# class: sfWebDebugLogger
# param:
# condition: %SF_WEB_DEBUG%
# sf_file_debug:
# class: sfFileLogger
# param:
# file: %SF_LOG_DIR%/%SF_APP%_%SF_ENVIRONMENT%.log
15 changes: 15 additions & 0 deletions apps/be/config/routing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# default rules
homepage:
url: /
param: { module: default, action: index }

default_symfony:
url: /symfony/:action/*
param: { module: default }

default_index:
url: /:module
param: { action: index }

default:
url: /:module/:action/*
2 changes: 2 additions & 0 deletions apps/be/config/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
default:
is_secure: off
103 changes: 103 additions & 0 deletions apps/be/config/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
prod:
.settings:
no_script_name: off

dev:
.settings:
# E_ALL | E_STRICT = 4095
error_reporting: 4095
web_debug: on
cache: off
no_script_name: off
etag: off

test:
.settings:
# E_ALL | E_STRICT & ~E_NOTICE = 2047
error_reporting: 2047
cache: off
web_debug: off
no_script_name: off
etag: off

#all:
# .actions:
# default_module: default # Default module and action to be called when
# default_action: index # A routing rule doesn't set it
#
# error_404_module: default # To be called when a 404 error is raised
# error_404_action: error404 # Or when the requested URL doesn't match any route
#
# login_module: default # To be called when a non-authenticated user
# login_action: login # Tries to access a secure page
#
# secure_module: default # To be called when a user doesn't have
# secure_action: secure # The credentials required for an action
#
# module_disabled_module: default # To be called when a user requests
# module_disabled_action: disabled # A module disabled in the module.yml
#
# unavailable_module: default # To be called when a user requests a page
# unavailable_action: unavailable # From an application disabled via the available setting below
#
# .settings:
# available: on # Enable the whole application. Switch to off to redirect all requests to the unavailable module and action.
#
# # Optional features. Deactivating unused features boots performance a bit.
# use_database: on # Enable database manager. Set to off if you don't use a database.
# use_security: on # Enable security features (login and credentials). Set to off for public applications.
# use_flash: on # Enable flash parameter feature. Set to off if you never use the set_flash() method in actions.
# i18n: off # Enable interface translation. Set to off if your application should not be translated.
# check_symfony_version: off # Enable check of symfony version for every request. Set to on to have symfony clear the cache automatically when the framework is upgraded. Set to off if you always clear the cache after an upgrade.
# use_process_cache: on # Enable symfony optimizations based on PHP accelerators. Set to off for tests or when you have enabled a PHP accelerator in your server but don't want symfony to use it internally.
# compressed: off # Enable PHP response compression. Set to on to compress the outgoing HTML via the PHP handler.
# check_lock: off # Enable the application lock system triggered by the clear-cache and disable tasks. Set to on to have all requests to disabled applications redirected to the $sf_symfony_data_dir/web/arrors/unavailable.php page.
#
# # Output escaping settings
# escaping_strategy: bc # Determines how variables are made available to templates. Accepted values: bc, both, on, off. The value off deactivates escaping completely and gives a slight boost.
# escaping_method: ESC_ENTITIES # Function or helper used for escaping. Accepted values: ESC_RAW, ESC_ENTITIES, ESC_JS, ESC_JS_NO_ENTITIES.
#
# # Routing settings
# suffix: . # Default suffix for generated URLs. If set to a single dot (.), no suffix is added. Possible values: .html, .php, and so on.
# no_script_name: off # Enable the front controller name in generated URLs
#
# # Validation settings, used for error generation by the Validation helper
# validation_error_prefix: ' &darr;&nbsp;'
# validation_error_suffix: ' &nbsp;&darr;'
# validation_error_class: form_error
# validation_error_id_prefix: error_for_
#
# # Cache settings
# cache: off # Enable the template cache
# etag: on # Enable etag handling
#
# # Logging and debugging settings
# web_debug: off # Enable the web debug toolbar
# error_reporting: 341 # Determines which events are logged. The default value is E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR = 341
#
# # Assets paths
# rich_text_js_dir: js/tiny_mce
# prototype_web_dir: /sf/prototype
# admin_web_dir: /sf/sf_admin
# web_debug_web_dir: /sf/sf_web_debug
#
# # Helpers included in all templates by default
# standard_helpers: [Partial, Cache, Form]
#
# # Activated modules from plugins or from the symfony core
# enabled_modules: [default]
#
# # Charset used for the response
# charset: utf-8
#
# # Miscellaneous
# strip_comments: on # Remove comments in core framework classes as defined in the core_compile.yml
# autoloading_functions: ~ # Functions called when a class is requested and this it is not already loaded. Expects an array of callables. Used by the framework bridges.
# timeout: 1800 # Session timeout, in seconds
# max_forwards: 5
# path_info_array: SERVER
# path_info_key: PATH_INFO
# url_format: PATH
#
# # ORM
# orm: propel
17 changes: 17 additions & 0 deletions apps/be/config/view.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
default:
http_metas:
content-type: text/html

metas:
title: OPENPARLAMENTO
robots: index, follow
description: Un progetto di Openpolis
keywords: Openparlamento, Openpolis
language: it

stylesheets: [main]

javascripts: []

has_layout: on
layout: layout
5 changes: 5 additions & 0 deletions apps/be/lib/myUser.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

class myUser extends sfBasicSecurityUser
{
}
13 changes: 13 additions & 0 deletions apps/be/modules/carica/actions/actions.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

/**
* carica actions.
*
* @package openparlamento
* @subpackage carica
* @author Your name here
* @version SVN: $Id: actions.class.php 2288 2006-10-02 15:22:13Z fabien $
*/
class caricaActions extends autocaricaActions
{
}
11 changes: 11 additions & 0 deletions apps/be/modules/carica/config/generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
generator:
class: sfPropelAdminGenerator
param:
model_class: OppCarica
theme: default

list:
title: Elenco Parlamentari
display: [id, _politico, carica, data_inizio, data_fine, legislatura, gruppo, circoscrizione]
peer_method: doSelectJoinOppPolitico
filters: [legislatura, carica]
1 change: 1 addition & 0 deletions apps/be/modules/carica/templates/_politico.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php echo $opp_carica->getOppPolitico()->getCognome().' '.$opp_carica->getOppPolitico()->getNome() ?>
13 changes: 13 additions & 0 deletions apps/be/modules/seduta/actions/actions.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

/**
* seduta actions.
*
* @package openparlamento
* @subpackage seduta
* @author Your name here
* @version SVN: $Id: actions.class.php 2288 2006-10-02 15:22:13Z fabien $
*/
class sedutaActions extends autosedutaActions
{
}
10 changes: 10 additions & 0 deletions apps/be/modules/seduta/config/generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
generator:
class: sfPropelAdminGenerator
param:
model_class: OppSeduta
theme: default

list:
title: Elenco sedute
display: [id, data, numero, legislatura, ramo]
filters: [legislatura, ramo]
13 changes: 13 additions & 0 deletions apps/be/modules/votazione/actions/actions.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

/**
* votazione actions.
*
* @package openparlamento
* @subpackage votazione
* @author Your name here
* @version SVN: $Id: actions.class.php 2288 2006-10-02 15:22:13Z fabien $
*/
class votazioneActions extends autovotazioneActions
{
}
11 changes: 11 additions & 0 deletions apps/be/modules/votazione/config/generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
generator:
class: sfPropelAdminGenerator
param:
model_class: OppVotazione
theme: default

list:
title: Elenco votazioni
display: [_ramo, _data, _legislatura, id, presenti, maggioranza, favorevoli, contrari, astenuti, esito]
peer_method: doSelectJoinOppSeduta
filters: [legislatura, ramo]
1 change: 1 addition & 0 deletions apps/be/modules/votazione/templates/_data.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php echo $opp_votazione->getOppSeduta()->getData() ?>
1 change: 1 addition & 0 deletions apps/be/modules/votazione/templates/_legislatura.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php echo $opp_votazione->getOppSeduta()->getLegislatura() ?>
1 change: 1 addition & 0 deletions apps/be/modules/votazione/templates/_ramo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php echo ($opp_votazione->getOppSeduta()->getRamo()=='C' ? 'Camera' : 'Senato' ) ?>
18 changes: 18 additions & 0 deletions apps/be/templates/layout.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>

<?php include_http_metas() ?>
<?php include_metas() ?>

<?php include_title() ?>

<link rel="shortcut icon" href="/favicon.ico" />

</head>
<body>

<?php echo $sf_data->getRaw('sf_content') ?>

</body>
</html>
15 changes: 15 additions & 0 deletions apps/fe/config/app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# default values
all:
pagination:
limit: 100

voto:
"1": "Assente"
"2": "Astenuto"
"3": "Contrario"
"4": "Favorevole"
"5": "In missione"
"6": "Partecipante votazione non valida"
"7": "Presidente di turno"
"8": "Richiedente la votazione e non votante"
"9": "Voto segreto"
4 changes: 4 additions & 0 deletions apps/fe/config/cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
default:
enabled: off
with_layout: false
lifetime: 86400
8 changes: 8 additions & 0 deletions apps/fe/config/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

// include project configuration
include(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');

// symfony bootstraping
require_once($sf_symfony_lib_dir.'/util/sfCore.class.php');
sfCore::bootstrap($sf_symfony_lib_dir, $sf_symfony_data_dir);
Loading

0 comments on commit 643ed7a

Please sign in to comment.