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
= 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.
Description
Languages
Ruby
82.5%
HTML
10.6%
JavaScript
3.1%
CSS
3%
Perl
0.5%
Other
0.3%