diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-11-12 18:50:30 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-11-12 18:50:30 +0000 |
commit | 7136b85f21201b9611977ae4ff8004aeb1ba47bb (patch) | |
tree | 117bdb8bc48754c2e1a1cf82da894067144d4bb4 /redmine/config/config_custom.example.rb | |
parent | 67070347686fb914f4ceb4eda298e2b4dd7495fa (diff) | |
download | redmine-7136b85f21201b9611977ae4ff8004aeb1ba47bb.tar.gz redmine-7136b85f21201b9611977ae4ff8004aeb1ba47bb.zip |
* new report: project activity
* "start date" and "% done" fields added on issues
* project calendar added
* gantt chart added (exportable to pdf)
* multiple file upload for issues attachments
* user custom field displayed on account/show
* default configuration improved (default roles, trackers, status, permissions and workflows)
* fixed: project settings now displayed according to user's permissions
git-svn-id: http://redmine.rubyforge.org/svn/trunk@44 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'redmine/config/config_custom.example.rb')
-rw-r--r-- | redmine/config/config_custom.example.rb | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/redmine/config/config_custom.example.rb b/redmine/config/config_custom.example.rb new file mode 100644 index 000000000..689d9daec --- /dev/null +++ b/redmine/config/config_custom.example.rb @@ -0,0 +1,65 @@ +# redMine - project management software
+# Copyright (C) 2006 Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+# To set your own configuration, rename this file to config_custom.rb
+# and edit parameters below
+# Don't forget to restart the application after any change.
+
+
+# Application host name
+# Used to provide absolute links in mail notifications
+# $RDM_HOST_NAME = "somenet.foo"
+
+# File storage path
+# Directory used to store uploaded files
+# #{RAILS_ROOT} represents application's home directory
+# $RDM_STORAGE_PATH = "#{RAILS_ROOT}/files"
+
+# Set $RDM_LOGIN_REQUIRED to true if you want to force users to login
+# to access any page of the application
+# $RDM_LOGIN_REQUIRED = false
+
+# Uncomment to disable user self-registration
+# $RDM_SELF_REGISTRATION = false
+
+# Default langage ('en', 'es', 'de', 'fr' are available)
+# $RDM_DEFAULT_LANG = 'en'
+
+# Email adress used to send mail notifications
+# $RDM_MAIL_FROM = "redmine@somenet.foo"
+
+# Page title
+# $RDM_HEADER_TITLE = "Title"
+
+# Page sub-title
+# $RDM_HEADER_SUBTITLE = "Sub title"
+
+# Welcome page title
+# $RDM_WELCOME_TITLE = "Welcome"
+
+# Welcome page text
+# $RDM_WELCOME_TEXT = ""
+
+# Signature displayed in footer
+# Email adresses will be automatically displayed as a mailto link
+# $RDM_FOOTER_SIG = "admin@somenet.foo"
+
+# Textile formatting (only available if RedCloth is installed)
+# Textile formatting is automativaly disabled if RedCloth is not available
+# Set to true to manually disable.
+# $RDM_TEXTILE_DISABLED = true
|