Obsolete!!! Backbone’s changes for ChiliProject
Go to file
Andrew Smith a510f0a85f Updates the plugin so that it can support multiple instances.
Multiple instances need to be applied to different elements in the DOM
otherwise multiple menus will be called for each click/right click.

e.g.

jQuery(document).ContextMenu(url);

would work for any form on a page. Using this would mean that multiple
instances couldn't be used though

jQuery('#content form').eq(0).ContextMenu(url);
jQuery('#content form').eq(3).ContextMenu(url);

Using the above 2 menus will be created for the first and 4th forms on
the page. Any of forms won't response to menu clicks.

jQuery(docuemnt).ContextMenu(url);
jQuery('#content form').eq(0).ContextMenu(url);

With the above any form on the page will respond to menu clicks but the
first form will send 2 requests for the context menu.
2012-03-21 21:07:21 +01:00
app jQuery version of the issue context menu 2012-03-21 21:06:58 +01:00
config [#939] Update documentation for GMail setup 2012-03-20 22:49:37 +01:00
db Merge branch 'master' into unstable 2012-02-06 22:47:35 +01:00
doc Update Changelog for 3.0.0 release 2012-02-06 23:58:16 +01:00
extra Update copyright for 2012 2012-01-03 20:36:40 +01:00
files trunk moved from /trunk/redmine to /trunk 2006-12-05 20:45:04 +00:00
lib Switch to GitAdapter for quoting #891 2012-03-05 18:21:28 +01:00
log trunk moved from /trunk/redmine to /trunk 2006-12-05 20:45:04 +00:00
public Updates the plugin so that it can support multiple instances. 2012-03-21 21:07:21 +01:00
script Set source encoding to UTF-8 2011-10-29 14:48:03 +02:00
test [#739] Convert relative links to full links in textile 2012-03-16 00:47:18 +01: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
Gemfile [#903] Require updated tzinfo with fix for Ruby 1.9.3 2012-03-18 18:15:08 +01: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.