summaryrefslogtreecommitdiffstats
path: root/vendor
Commit message (Collapse)AuthorAgeFilesLines
* Fixed: Unable to use angular braces after include word in c code ↵Jean-Philippe Lang2008-05-291-1/+1
| | | | | | highlighting (#1230). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1476 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Ability to search all projects or the projects the user belongs to (#791).Jean-Philippe Lang2008-05-181-3/+15
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1435 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Add an icon to each event on the activity view.Jean-Philippe Lang2008-04-121-6/+13
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1342 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Add a simple java scanner.Jean-Philippe Lang2008-03-182-0/+131
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1272 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fix applied to ruby-net-ldap (#608).Jean-Philippe Lang2008-02-151-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1148 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed search with all words (broken in r994).Jean-Philippe Lang2008-01-211-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1092 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Test environments cleanup.Jean-Philippe Lang2008-01-201-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1084 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: locked users should not receive email notifications.Jean-Philippe Lang2008-01-171-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1075 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added a couple of mime types so that corresponding files can be viewed in ↵Jean-Philippe Lang2008-01-162-0/+169
| | | | | | | | the browser. Added a simple (and not perfect) CodeRay scanner for php. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1070 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged IssuesController change_status and add_note actions.Jean-Philippe Lang2008-01-061-0/+21
| | | | | | | The 'Change status' specific form removed and now accessible from issue/show view with no additional request (click on 'Update' to show the form). The 'Change issue status' permission is removed. To change the status, the user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1043 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Search engine: issue custom fields can now be searched.Jean-Philippe Lang2007-12-141-2/+21
| | | | | | Each issue custom field (excepting numeric, date and boolean fields) can be marked as "Searchable" (default to false). git-svn-id: http://redmine.rubyforge.org/svn/trunk@994 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged Rails 2.0 compatibility changes.Jean-Philippe Lang2007-12-1081-0/+7832
| | | | | | Compatibility with Rails 1.2 is preserved. git-svn-id: http://redmine.rubyforge.org/svn/trunk@975 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Search engine: added a checkbox to search titles only (usefull when ↵Jean-Philippe Lang2007-10-151-6/+8
| | | | | | searching on common words). git-svn-id: http://redmine.rubyforge.org/svn/trunk@842 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Redmine acts_as_* plugins moved to vendor/plugins.Jean-Philippe Lang2007-09-296-0/+217
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@774 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Basic plugin support.Jean-Philippe Lang2007-09-231-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@752 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added polish translation (Tomasz Gawryl).Jean-Philippe Lang2007-09-221-0/+23
| | | | | | Added a gloc task to update lang files based on the english file content. git-svn-id: http://redmine.rubyforge.org/svn/trunk@749 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added javascript highlightment support (http://pastie.textmate.org/50774/)Jean-Philippe Lang2007-09-072-0/+177
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@716 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added code highlighting support in wiki, using this syntax:Jean-Philippe Lang2007-09-061-1/+7
| | | | | | | | | | | | <pre><code> <-- cut here <pre><code class="ruby"> Place you code here. </code></pre> cut here --> </pre></code> git-svn-id: http://redmine.rubyforge.org/svn/trunk@710 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added syntax highlightment for repository files (using CodeRay).Jean-Philippe Lang2007-08-1547-0/+5694
| | | | | | Supported languages: c, ruby, rhtml, yaml, html, xml. git-svn-id: http://redmine.rubyforge.org/svn/trunk@644 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added mail notification when a new message is posted in the forums.Jean-Philippe Lang2007-05-141-1/+2
| | | | | | | | | | Only users who "watch" the board receive notifications. To watch a board, go to the board and click on the "Watch" link. Notifications are sent by MessageObserver observer. GLoc was modified to use the mail template without language suffix when translated template (with language suffix) doesn't exist. Usefull when there's no hard coded text in the mail tempate. git-svn-id: http://redmine.rubyforge.org/svn/trunk@531 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added chinese simplified translation (Andy Wu)Jean-Philippe Lang2007-03-311-6/+6
| | | | | | Fixed rfpdf chinese.rb git-svn-id: http://redmine.rubyforge.org/svn/trunk@393 e93f8b46-1217-0410-a6f0-8f06a7374b81
* wiki branch merged into trunkJean-Philippe Lang2007-03-1023-0/+1472
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@323 e93f8b46-1217-0410-a6f0-8f06a7374b81
* fix for #8973: Export feature(to csv/pdf) doesn't work in JapaneseJean-Philippe Lang2007-03-011-5/+5
| | | | | | | csv and pdf encoding are know defined for each language (general_csv_encoding and general_pdf_encoding keys in lang files) added SJIS font for japanese pdf exports git-svn-id: http://redmine.rubyforge.org/svn/trunk@287 e93f8b46-1217-0410-a6f0-8f06a7374b81
* missing parenthesis added in filter.rb (net-ldap)Jean-Philippe Lang2007-02-181-7/+7
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@252 e93f8b46-1217-0410-a6f0-8f06a7374b81
* syntax error in rfpdf/makefont.rbJean-Philippe Lang2007-02-181-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@248 e93f8b46-1217-0410-a6f0-8f06a7374b81
* removed translation of error messages inside ActiveRecord moduleJean-Philippe Lang2007-02-031-23/+23
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@222 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Modified GLoc helpers to ensure compatibility with rails 1.2Jean-Philippe Lang2007-01-241-1/+14
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@173 e93f8b46-1217-0410-a6f0-8f06a7374b81
* addded ruby-net-ldap (0.0.4) dependency in vendor/plugginJean-Philippe Lang2007-01-0219-0/+3469
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@134 e93f8b46-1217-0410-a6f0-8f06a7374b81
* trunk moved from /trunk/redmine to /trunkJean-Philippe Lang2006-12-0566-0/+12349
git-svn-id: http://redmine.rubyforge.org/svn/trunk@67 e93f8b46-1217-0410-a6f0-8f06a7374b81