Obsolete!!! Backbone’s changes for ChiliProject
Go to file
Andrew Smith f983b451ad Reformat CSS to use the coding standard. #947
Formatting was done mostly by hand using the following as a guide
http://gnuvince.wordpress.com/2007/02/26/reformatting-a-css-file-with-vim/

" Replace all sequences of white spaces with one space
:%s/[ \t\n]\+/ /g

" Go to the end of the command, then forward one character and insert
" a newline
]/lr^M

" Make sure there is a semi-colon before each closing bracket
:%s/\([^; ]\) *}/\1;}/g

" Add a newline after every semi-colon
:%s/;/;^M/g

" Add a newline after every opening brace and make put one space
" between it and the preceeding text
:%s/\([^ ]*\) *{/\1 {^M/g

" Add two newlines after every closing brace
:%s/}/}^M^M/g

" Remove 'trailing' spaces in front of the semi-colons
:%s/ *;/;/g

" Make sure there is only one space after a colon
:%s/: */: /g

" Make the text before the colon lowercase
:%s/\(.\{-}\):/\L\1:/g

" Remove all trailing spaces at the beginning of lines
:%s/^ \+/g

" Indent the whole file
gg=G

" Split each rule onto its own line (This also matched some
" property/value combos so needed confirming
:%s/\([a-z0-9]\+\), \+/\1,^M/gc
2012-05-21 13:45:39 +02:00
app Disable autocomplete on registragion form #844 2012-05-20 10:30:34 +02:00
config Improving French translation #967 2012-05-20 20:35:33 +02:00
db Require WikiContent directly so WikiContentJournal is loaded before it's patched. 2012-04-16 09:25:35 -07:00
doc Update changelog for v3.1.0 2012-04-04 14:21:42 +02:00
extra Reformat CSS to use the coding standard. #947 2012-05-21 13:45:39 +02:00
files trunk moved from /trunk/redmine to /trunk 2006-12-05 20:45:04 +00:00
lib scm: mercurial: fix unit adapter annotate test fails on Windows Mercurial 1.8.4+29-e597ef52a7c2. 2012-05-14 10:54:17 +02:00
log trunk moved from /trunk/redmine to /trunk 2006-12-05 20:45:04 +00:00
public Reformat CSS to use the coding standard. #947 2012-05-21 13:45:39 +02:00
script Set source encoding to UTF-8 2011-10-29 14:48:03 +02:00
test Load all required fixtures on issue unit test #863 2012-05-20 10:18:00 +02:00
tmp/test Added an empty tmp/test directory so rake test will run out of the box. 2009-06-08 02:07:30 +00:00
vendor aaj: default to don't force notes as event descriptions #933 2012-03-17 13:53:29 +01:00
.gitignore gitignore intellij project files 2012-02-24 15:45:22 +01:00
.gitmodules [#123] Removed the acts_as_journalized submodule 2011-05-13 09:49:56 -07:00
.hgignore [#290] ignoring .rvmrc files 2011-05-10 08:40:58 +02:00
.travis.yml Also test stable and unstable branches on TravisCI 2012-05-14 14:18:52 +02:00
Gemfile ChiliProject on Travis <3 <3 <3 2012-05-14 10:45:50 +02:00
README.rdoc [#211] Updating rdoc documentation 2011-02-26 13:41:32 -08:00
Rakefile [#477] Not using deprecated rake/rdoctask but rdoc/task instead 2011-06-16 11:29:25 +02:00

README.rdoc

= ChiliProject

ChiliProject is a web based project management system. It supports your team throughout the complete project life cycle, from setting up and discussing a project plan, over tracking issues and reporting work progress to collaboratively sharing knowledge.

More documentation and user guides can be found on the official website[https://www.chiliproject.org] and in the doc/ directory.

== Getting Started

We have a complete {install guide}[https://www.chiliproject.org/projects/chiliproject/wiki/Installation] online.

== Getting Help

ChiliProject is an run by a community of volunteers. We have set up different ways to get help depending on your preferences.

* Self guided help and user documentation - https://www.chiliproject.org/projects/chiliproject/wiki/Help
* Forums for specific questions - https://www.chiliproject.org/projects/chiliproject/boards
* Real time chat using IRC - https://www.chiliproject.org/projects/chiliproject/wiki/IRC
* Commercial support - https://www.chiliproject.org/projects/chiliproject/wiki/Commercial_Offerings

== Contributing

We welcome all help for the project, no task is too small.  Our documentation is editable by anyone on our wiki[https://www.chiliproject.org/projects/chiliproject/wiki], we accept patches on our {issue tracker}[https://www.chiliproject.org/projects/chiliproject/issues], and everyone is welcome to discuss the project in our forums[https://www.chiliproject.org/projects/chiliproject/boards].

More details can be found on our Contribute page[https://www.chiliproject.org/projects/chiliproject/wiki/Contribute].

== License

ChiliProject is licensed under the GNU GPL v2.  See the doc directory for more details.

ChiliProject is a fork based on Redmine. Redmine is Copyright Jean-Philippe Lang and others.