From 87de3cbd4278661afb0798a79fe7722d860e7781 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 21 Feb 2011 17:40:54 +0000 Subject: [PATCH 1/2] Moves scm path configuration examples in comments. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4917 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- config/configuration.yml.example | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/config/configuration.yml.example b/config/configuration.yml.example index f00d97f4..51030fe9 100644 --- a/config/configuration.yml.example +++ b/config/configuration.yml.example @@ -110,12 +110,19 @@ default: # Configuration of SCM executable command. # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe) # On Windows, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. - scm_subversion_command: svn # (default: svn) - scm_mercurial_command: "\"C:\Program Files\TortoiseHg\hg.exe\"" # (default: hg) - scm_git_command: /usr/local/bin/git # (default: git) - scm_cvs_command: cvs # (default: cvs) - scm_bazaar_command: bzr.exe # (default: bzr) - scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) + # Examples: + # scm_subversion_command: svn # (default: svn) + # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg) + # scm_git_command: /usr/local/bin/git # (default: git) + # scm_cvs_command: cvs # (default: cvs) + # scm_bazaar_command: bzr.exe # (default: bzr) + # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) + scm_subversion_command: + scm_mercurial_command: + scm_git_command: + scm_cvs_command: + scm_bazaar_command: + scm_darcs_command: # specific configuration options for production environment # that overrides the default ones From fc80da59920118cfa84cfaf37c6cdbc382d238ac Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 24 Feb 2011 15:24:20 -0800 Subject: [PATCH 2/2] [#174] Change Redmine to ChiliProject in the user configuration files --- config/configuration.yml.example | 14 +++++++------- config/database.yml.example | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/config/configuration.yml.example b/config/configuration.yml.example index 51030fe9..68d5f2f0 100644 --- a/config/configuration.yml.example +++ b/config/configuration.yml.example @@ -1,4 +1,4 @@ -# = Redmine configuration file +# = ChiliProject configuration file # # Each environment has it's own configuration options. If you are only # running in production, only the production block needs to be configured. @@ -87,16 +87,16 @@ default: port: 25 domain: example.net authentication: :login - user_name: "redmine@example.net" - password: "redmine" + user_name: "chiliproject@example.net" + password: "chiliproject" # Absolute path to the directory where attachments are stored. - # The default is the 'files' directory in your Redmine instance. - # Your Redmine instance needs to have write permission on this + # The default is the 'files' directory in your ChiliProject instance. + # Your ChiliProject instance needs to have write permission on this # directory. # Examples: - # attachments_storage_path: /var/redmine/files - # attachments_storage_path: D:/redmine/files + # attachments_storage_path: /var/chiliproject/files + # attachments_storage_path: D:/chiliproject/files attachments_storage_path: # Configuration of the autologin cookie. diff --git a/config/database.yml.example b/config/database.yml.example index d4db0580..bd8f95f4 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -2,7 +2,7 @@ production: adapter: mysql - database: redmine + database: chiliproject host: localhost username: root password: @@ -10,7 +10,7 @@ production: development: adapter: mysql - database: redmine_development + database: chiliproject_development host: localhost username: root password: @@ -21,7 +21,7 @@ development: # Do not set this db to the same as development or production. test: adapter: mysql - database: redmine_test + database: chiliproject_test host: localhost username: root password: @@ -29,7 +29,7 @@ test: test_pgsql: adapter: postgresql - database: redmine_test + database: chiliproject_test host: localhost username: postgres password: "postgres"