Commit b64e89da authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Native eol property set on config/*

git-svn-id: http://redmine.rubyforge.org/svn/trunk@772 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 66c8c1e2
...@@ -15,14 +15,14 @@ production: ...@@ -15,14 +15,14 @@ production:
development: development:
adapter: mysql adapter: mysql
database: redmine_development database: redmine_development
host: localhost host: localhost
username: root username: root
password: password:
test: test:
adapter: mysql adapter: mysql
database: redmine_test database: redmine_test
host: localhost host: localhost
username: root username: root
password: password:
...@@ -44,8 +44,8 @@ test_sqlserver: ...@@ -44,8 +44,8 @@ test_sqlserver:
adapter: sqlserver adapter: sqlserver
host: localhost,1157 host: localhost,1157
database: redmine_test database: redmine_test
demo: demo:
adapter: sqlite3 adapter: sqlite3
dbfile: db/redmine_demo.db dbfile: db/redmine_demo.db
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Uncomment below to force Rails into production mode when # Uncomment below to force Rails into production mode when
# you don't control web/app server and can't set it the proper way # you don't control web/app server and can't set it the proper way
# ENV['RAILS_ENV'] ||= 'production' # ENV['RAILS_ENV'] ||= 'production'
# Bootstrap the Rails environment, frameworks, and default configuration # Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot') require File.join(File.dirname(__FILE__), 'boot')
...@@ -41,24 +41,24 @@ Rails::Initializer.run do |config| ...@@ -41,24 +41,24 @@ Rails::Initializer.run do |config|
# (enables use of different database adapters for development and test environments) # (enables use of different database adapters for development and test environments)
# config.active_record.schema_format = :ruby # config.active_record.schema_format = :ruby
# See Rails::Configuration for more options # See Rails::Configuration for more options
# SMTP server configuration # SMTP server configuration
config.action_mailer.smtp_settings = { config.action_mailer.smtp_settings = {
:address => "127.0.0.1", :address => "127.0.0.1",
:port => 25, :port => 25,
:domain => "somenet.foo", :domain => "somenet.foo",
:authentication => :login, :authentication => :login,
:user_name => "redmine", :user_name => "redmine",
:password => "redmine", :password => "redmine",
} }
config.action_mailer.perform_deliveries = true config.action_mailer.perform_deliveries = true
# Tell ActionMailer not to deliver emails to the real world. # Tell ActionMailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the # The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array. # ActionMailer::Base.deliveries array.
#config.action_mailer.delivery_method = :test #config.action_mailer.delivery_method = :test
config.action_mailer.delivery_method = :smtp config.action_mailer.delivery_method = :smtp
# Uncomment this line if the engines plugin is installed. # Uncomment this line if the engines plugin is installed.
......
...@@ -14,8 +14,8 @@ config.action_controller.perform_caching = true ...@@ -14,8 +14,8 @@ config.action_controller.perform_caching = true
# Enable serving of images, stylesheets, and javascripts from an asset server # Enable serving of images, stylesheets, and javascripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com" # config.action_controller.asset_host = "http://assets.example.com"
# Disable mail delivery # Disable mail delivery
config.action_mailer.perform_deliveries = false config.action_mailer.perform_deliveries = false
config.action_mailer.raise_delivery_errors = false config.action_mailer.raise_delivery_errors = false
...@@ -14,9 +14,9 @@ config.action_controller.perform_caching = true ...@@ -14,9 +14,9 @@ config.action_controller.perform_caching = true
# Enable serving of images, stylesheets, and javascripts from an asset server # Enable serving of images, stylesheets, and javascripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com" # config.action_controller.asset_host = "http://assets.example.com"
# Disable delivery errors if you bad email addresses should just be ignored # Disable delivery errors if you bad email addresses should just be ignored
config.action_mailer.raise_delivery_errors = false config.action_mailer.raise_delivery_errors = false
# No email in production log # No email in production log
config.action_mailer.logger = nil config.action_mailer.logger = nil
# redMine - project management software # redMine - project management software
# Copyright (C) 2006 Jean-Philippe Lang # Copyright (C) 2006 Jean-Philippe Lang
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2 # as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version. # of the License, or (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# available languages for help pages # available languages for help pages
langs: langs:
- en - en
- fr - fr
- ja - ja
# mapping between controller/action and help pages # mapping between controller/action and help pages
# if action is not defined here, 'index' page will be displayed # if action is not defined here, 'index' page will be displayed
pages: pages:
# administration # administration
admin: admin:
index: ch01.html index: ch01.html
projects: ch01s01.html projects: ch01s01.html
mail_options: ch01s09.html mail_options: ch01s09.html
info: ch01s12.html info: ch01s12.html
users: users:
index: ch01s02.html index: ch01s02.html
roles: roles:
index: ch01s03.html index: ch01s03.html
workflow: ch01s07.html workflow: ch01s07.html
trackers: trackers:
index: ch01s04.html index: ch01s04.html
issue_statuses: issue_statuses:
index: ch01s06.html index: ch01s06.html
settings: settings:
index: ch01s11.html index: ch01s11.html
# projects # projects
projects: projects:
index: ch02.html index: ch02.html
settings: ch01s01.html settings: ch01s01.html
add: ch01s01.html add: ch01s01.html
show: ch02s01.html show: ch02s01.html
gantt: ch02s02.html gantt: ch02s02.html
calendar: ch02s02.html calendar: ch02s02.html
changelog: ch02s06.html changelog: ch02s06.html
roadmap: ch02s07.html roadmap: ch02s07.html
add_document: ch02s07.html add_document: ch02s07.html
list_documents: ch02s07.html list_documents: ch02s07.html
add_issue: ch02s03.html add_issue: ch02s03.html
list_issues: ch02s03.html list_issues: ch02s03.html
add_news: ch02s06.html add_news: ch02s06.html
list_news: ch02s06.html list_news: ch02s06.html
add_file: ch02s11.html add_file: ch02s11.html
list_files: ch02s11.html list_files: ch02s11.html
changelog: ch02s05.html changelog: ch02s05.html
issues: issues:
index: ch02s03.html index: ch02s03.html
documents: documents:
index: ch02s09.html index: ch02s09.html
news: news:
index: ch02s06.html index: ch02s06.html
versions: versions:
index: ch02s09.html index: ch02s09.html
reports: reports:
index: ch02s04.html index: ch02s04.html
# accounts # accounts
my: my:
index: ch03.html index: ch03.html
account: ch03s01.html account: ch03s01.html
page: ch03s02.html page: ch03s02.html
account: account:
index: ch03.html index: ch03.html
lost_password: ch03s03.html lost_password: ch03s03.html
register: ch03s04.html register: ch03s04.html
wiki: wiki:
index: ch02s10.html index: ch02s10.html
syntax: wiki_syntax.html syntax: wiki_syntax.html
\ No newline at end of file
...@@ -8,10 +8,10 @@ ActionController::Routing::Routes.draw do |map| ...@@ -8,10 +8,10 @@ ActionController::Routing::Routes.draw do |map|
map.home '', :controller => 'welcome' map.home '', :controller => 'welcome'
map.connect 'wiki/:id/:page/:action', :controller => 'wiki', :page => nil map.connect 'wiki/:id/:page/:action', :controller => 'wiki', :page => nil
map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow' map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow'
map.connect 'help/:ctrl/:page', :controller => 'help' map.connect 'help/:ctrl/:page', :controller => 'help'
#map.connect ':controller/:action/:id/:sort_key/:sort_order' #map.connect ':controller/:action/:id/:sort_key/:sort_order'
map.connect 'issues/:issue_id/relations/:action/:id', :controller => 'issue_relations' map.connect 'issues/:issue_id/relations/:action/:id', :controller => 'issue_relations'
map.connect 'projects/:project_id/boards/:action/:id', :controller => 'boards' map.connect 'projects/:project_id/boards/:action/:id', :controller => 'boards'
...@@ -20,7 +20,7 @@ ActionController::Routing::Routes.draw do |map| ...@@ -20,7 +20,7 @@ ActionController::Routing::Routes.draw do |map|
# Allow downloading Web Service WSDL as a file with an extension # Allow downloading Web Service WSDL as a file with an extension
# instead of a file named 'wsdl' # instead of a file named 'wsdl'
map.connect ':controller/service.wsdl', :action => 'wsdl' map.connect ':controller/service.wsdl', :action => 'wsdl'
# Install the default route as the lowest priority. # Install the default route as the lowest priority.
map.connect ':controller/:action/:id' map.connect ':controller/:action/:id'
......
# redMine - project management software # redMine - project management software
# Copyright (C) 2006-2007 Jean-Philippe Lang # Copyright (C) 2006-2007 Jean-Philippe Lang
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2 # as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version. # of the License, or (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# DO NOT MODIFY THIS FILE !!! # DO NOT MODIFY THIS FILE !!!
# Settings can be defined through the application in Admin -> Settings # Settings can be defined through the application in Admin -> Settings
app_title: app_title:
default: Redmine default: Redmine
app_subtitle: app_subtitle:
default: Project management default: Project management
welcome_text: welcome_text:
default: default:
login_required: login_required:
default: 0 default: 0
self_registration: self_registration:
default: 1 default: 1
lost_password: lost_password:
default: 1 default: 1
attachment_max_size: attachment_max_size:
format: int format: int
default: 5120 default: 5120
issues_export_limit: issues_export_limit:
format: int format: int
default: 500 default: 500
mail_from: mail_from:
default: redmine@somenet.foo default: redmine@somenet.foo
text_formatting: text_formatting:
default: textile default: textile
wiki_compression: wiki_compression:
default: "" default: ""
default_language: default_language:
default: en default: en
host_name: host_name:
default: localhost:3000 default: localhost:3000
feeds_limit: feeds_limit:
format: int format: int
default: 15 default: 15
autofetch_changesets: autofetch_changesets:
default: 1 default: 1
sys_api_enabled: sys_api_enabled:
default: 0 default: 0
commit_ref_keywords: commit_ref_keywords:
default: 'refs,references,IssueID' default: 'refs,references,IssueID'
commit_fix_keywords: commit_fix_keywords:
default: 'fixes,closes' default: 'fixes,closes'
commit_fix_status_id: commit_fix_status_id:
format: int format: int
default: 0 default: 0
# autologin duration in days # autologin duration in days
# 0 means autologin is disabled # 0 means autologin is disabled
autologin: autologin:
format: int format: int
default: 0 default: 0
# date format # date format
# 0: language based # 0: language based
# 1: ISO format # 1: ISO format
date_format: date_format:
format: int format: int
default: 0 default: 0
cross_project_issue_relations: cross_project_issue_relations:
default: 0 default: 0
notified_events: notified_events:
serialized: true serialized: true
default: -- default: --
- issue_added - issue_added
- issue_updated - issue_updated
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment