summaryrefslogtreecommitdiffstats
path: root/lang
Commit message (Collapse)AuthorAgeFilesLines
* Added basic support for CVS and Mercurial SCMs.Jean-Philippe Lang2007-06-1212-27/+27
| | | | | | | | | Browsing, changesets fetching and diff viewing are implemented. Only tested with local repositories. Thanks to Ralph Vater for CVS specific code. git-svn-id: http://redmine.rubyforge.org/svn/trunk@559 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Japanese translation updated (Satoru KURASHIKI)Jean-Philippe Lang2007-05-301-59/+59
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@557 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added Swedish translation supplied by Thomas Habets.Jean-Philippe Lang2007-05-291-0/+478
| | | | | | English email templates suffix removed so that they are used when translated template is not available. git-svn-id: http://redmine.rubyforge.org/svn/trunk@553 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added the ability to archive projects:Jean-Philippe Lang2007-05-2711-0/+22
| | | | | | | | | * Only administrators can archive/unarchive projects. * Once archived, the project is visible on the admin project listing only. It doesn't show up anywhere else in the app. Subprojects are also archived. * Archive/unarchive preserve everything on the project (issues, members, ...). * A subproject can not be unarchived if its parent project is archived. git-svn-id: http://redmine.rubyforge.org/svn/trunk@549 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Account information can now be sent to the user when creating an account.Jean-Philippe Lang2007-05-2711-0/+11
| | | | | | ActionMailer logger set to nil for production environment to disable email contents output in production.log git-svn-id: http://redmine.rubyforge.org/svn/trunk@546 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added the ability to destroy wiki pages (content and its history are deleted ↵Jean-Philippe Lang2007-05-2511-0/+11
| | | | | | | | from the database). This permission has to be explicitly given (Roles & Permissions -> Wiki pages/Delete). git-svn-id: http://redmine.rubyforge.org/svn/trunk@540 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Dutch translation added (Linda van den Brink)Jean-Philippe Lang2007-05-241-0/+475
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@539 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed a couple of spelling errors (JT Zemp)Jean-Philippe Lang2007-05-2010-18/+18
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@537 e93f8b46-1217-0410-a6f0-8f06a7374b81
* "My projects" are now listed under the drop-down "Projects" top menu item ↵Jean-Philippe Lang2007-05-1510-0/+10
| | | | | | | | | (20 projects max.). The left menu section for "My projects" is removed. Patch by Damien McKenna (slightly edited). git-svn-id: http://redmine.rubyforge.org/svn/trunk@534 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Per project forums added.Jean-Philippe Lang2007-05-1310-0/+90
| | | | | | | | | Permissions for forums management can be set in "Admin -> Roles & Permissions". Forums can be created on the project settings screen ("Forums" tab). Once a project has a forum, a "Forums" link appears in the project menu. For now, posting messages in forums requires to be logged in. Files can be attached to messages. git-svn-id: http://redmine.rubyforge.org/svn/trunk@529 e93f8b46-1217-0410-a6f0-8f06a7374b81
* "me" value is now available in queries for "assigned to" and "author" filters.Jean-Philippe Lang2007-05-0810-0/+10
| | | | | | When executing the query, it is replaced by the currently logged in user. git-svn-id: http://redmine.rubyforge.org/svn/trunk@520 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed the order of the japanese day namesJean-Philippe Lang2007-05-081-3/+3
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@519 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Changed the length of 'language' column in users table from 2 to 5, to allow ↵Jean-Philippe Lang2007-05-0810-218/+682
| | | | | | | | | | long language codes like pt-br. Updated portuguese translation (Arthur Zapparoli). Current pt translation moved to pt-br. git-svn-id: http://redmine.rubyforge.org/svn/trunk@518 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added an option to see all versions in the roadmap view (including completed ↵Jean-Philippe Lang2007-05-079-0/+9
| | | | | | | | | | ones). On calendar and gantt, versions are now clickable and link to the corresponding entry in the roadmap. Since calendar and gantt are now cached, don't forget to empty your cache before restarting the application. git-svn-id: http://redmine.rubyforge.org/svn/trunk@516 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added autologin feature (disabled by default).Jean-Philippe Lang2007-05-069-0/+27
| | | | | | | To enable this feature, go to administration settings and choose a duration for autologin. When enabled, a checkbox on the login form lets users activate autologin. git-svn-id: http://redmine.rubyforge.org/svn/trunk@514 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Issue relations first commit (not thoroughly tested). 4 kinds of relation ↵Jean-Philippe Lang2007-05-059-1/+145
| | | | | | | | | | | | | | are available: * relates to: do nothing special. Just to know that the 2 issues are related... * duplicates: will close the related issue with the same status when closing the issue (not implemented yet) * blocks: will require to close the blocking issue before closing the blocked issue (not implemented yet) * precedes (end to start relation): start date of the related issue depends on the due date of the preceding issue (implemented). A delay can be set so that the related issue can only start n days after the end of the preceding issue. When setting dates for an issue, dates of all downstream issues are set according to these relations. To set a relation, the 2 issues have to belong to the same project (may change in the future). So if an issue is moved to another project, all its relations are removed. Circular dependencies are checked when creating a relation. git-svn-id: http://redmine.rubyforge.org/svn/trunk@506 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Bulgarian translation added (Nikolay Solakov)Jean-Philippe Lang2007-05-021-0/+444
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@502 e93f8b46-1217-0410-a6f0-8f06a7374b81
* A 403 error page is now displayed (instead of a blank page) when trying to ↵Jean-Philippe Lang2007-04-308-0/+8
| | | | | | access a protected page. git-svn-id: http://redmine.rubyforge.org/svn/trunk@495 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added an ajax indicator for all ajax calls. Also removed highlight effects ↵Jean-Philippe Lang2007-04-278-0/+8
| | | | | | on my page layout edition. git-svn-id: http://redmine.rubyforge.org/svn/trunk@485 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: 10342 Creation of Schema in OracleJean-Philippe Lang2007-04-258-8/+8
| | | | | | | | | | | | Comment is a reserved keyword for Oracle. The five 'Comment' columns are renamed to 'Commments'. Migration scripts were modified to let oracle users create the database. For the others, migration 41 will rename the columns (only if columns have the 'old' name). Fixed also a few oracle specific issues. Note: currently (in Rails 1.2.3), there's bug in Rails oracle adapter. See: http://dev.rubyonrails.org/ticket/7344 Attached patch is required for redMine to work properly. git-svn-id: http://redmine.rubyforge.org/svn/trunk@479 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Commit messages are now scanned for referenced or fixed issue IDs.Jean-Philippe Lang2007-04-248-0/+48
| | | | | | | | | | | | | Keywords and the status to apply to fixed issues can be defined in Admin -> Settings. Default keywords: - for referencing issues: refs, references, IssueID - for fixing issues: fixes,closes There's no default status defined for fixed issue. You'll have to specify it if you want to enable auto closure of issues. Example of a working commit message: "This commit references #1, #2 and fixes #3" git-svn-id: http://redmine.rubyforge.org/svn/trunk@473 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Italian translation update (Alessio Spadaro)Jean-Philippe Lang2007-04-221-56/+56
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@468 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed 10211 Wiki names can't have periods in them.Jean-Philippe Lang2007-04-228-0/+8
| | | | | | Same validations as WikiPage model now applied to wiki start page. git-svn-id: http://redmine.rubyforge.org/svn/trunk@463 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added portuguese translation (Joao Carlos Clementoni).Jean-Philippe Lang2007-04-211-0/+435
| | | | | | Email templates copied from english. git-svn-id: http://redmine.rubyforge.org/svn/trunk@458 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added a new block available for my page: "Watched issues"Jean-Philippe Lang2007-04-217-0/+7
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@456 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added "Watch" functionality on issues. It allows users to receive mail ↵Jean-Philippe Lang2007-04-217-0/+14
| | | | | | | | notifications about issue changes. For now, it's only usefull for users who are not members of the project, since members receive notifications for each issue (this behaviour will change). git-svn-id: http://redmine.rubyforge.org/svn/trunk@453 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Custom fields for issues can now be used as filters on issue list.Jean-Philippe Lang2007-04-177-0/+7
| | | | | | To use a custom field as a filter, check "Used as a filter" on the custom field edit screen. git-svn-id: http://redmine.rubyforge.org/svn/trunk@447 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Japanese lang file updated (Satoru Kurashiki)Jean-Philippe Lang2007-04-111-20/+20
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@441 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added permissions report (link available on roles list view).Jean-Philippe Lang2007-04-077-0/+7
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@433 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added a warning message on tracker list for trackers that don't have any ↵Jean-Philippe Lang2007-04-077-0/+7
| | | | | | workflow defined. git-svn-id: http://redmine.rubyforge.org/svn/trunk@430 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added the ability to easily rollback to a previous version of a wiki page.Jean-Philippe Lang2007-04-057-0/+7
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@424 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added svn:eol-style native property for various filesJean-Philippe Lang2007-04-041-431/+431
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@419 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added some attributes length validations.Jean-Philippe Lang2007-04-027-7/+21
| | | | | | Also added some information about attribute length constraints on forms. git-svn-id: http://redmine.rubyforge.org/svn/trunk@400 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added the ability to copy an existing workflow when creating a new tracker.Jean-Philippe Lang2007-04-027-0/+7
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@399 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Initial commit for svn repository management and access control:Jean-Philippe Lang2007-04-017-0/+21
| | | | | | | * Identifier attribute added on Project model. Used as the unix group name for the project * Web services (disabled by default) and scripts for repository management on a remote svn host git-svn-id: http://redmine.rubyforge.org/svn/trunk@396 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Patch #9705 Tracker filtering on Main Calendar (Jeffrey Jones)Jean-Philippe Lang2007-03-317-0/+7
| | | | | | Slightly edited. git-svn-id: http://redmine.rubyforge.org/svn/trunk@395 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added chinese simplified translation (Andy Wu)Jean-Philippe Lang2007-03-311-0/+424
| | | | | | Fixed rfpdf chinese.rb git-svn-id: http://redmine.rubyforge.org/svn/trunk@393 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Japanese lang file updated (Satoru KURASHIKI)Jean-Philippe Lang2007-03-301-41/+41
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@392 e93f8b46-1217-0410-a6f0-8f06a7374b81
* patch #9627 Add Side by Side in Diff view (Cyril Mougel)Jean-Philippe Lang2007-03-296-0/+18
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@390 e93f8b46-1217-0410-a6f0-8f06a7374b81
* german lang file updated (Thomas Löber)Jean-Philippe Lang2007-03-281-54/+54
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@389 e93f8b46-1217-0410-a6f0-8f06a7374b81
* added simple svn statistics graphs, rendered using SVG::GraphJean-Philippe Lang2007-03-256-0/+24
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@380 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Patch #9530 Progress bars for roadmap versions (Nick Read)Jean-Philippe Lang2007-03-256-0/+12
| | | | | | Slightly edited and links to issues list added git-svn-id: http://redmine.rubyforge.org/svn/trunk@379 e93f8b46-1217-0410-a6f0-8f06a7374b81
* SVN commits are now stored in the database, and added to the activity view ↵Jean-Philippe Lang2007-03-256-0/+12
| | | | | | | | | | | and the search engine. New commits are automatically retrieved and stored when consulting the repository in the app. This behaviour can be disabled by unchecking 'Autofecth commits' in configuration settings. Commits can be fetched offline by running (recommanded at least for the initial import of past commits): ruby script/runner "Repository.fetch_changesets" It will load commits for all of the repositories. git-svn-id: http://redmine.rubyforge.org/svn/trunk@377 e93f8b46-1217-0410-a6f0-8f06a7374b81
* patch #9429 Display Wiki edits in activity log (Nick Read)Jean-Philippe Lang2007-03-236-0/+12
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@370 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Simple time tracking functionality added. Time can be logged at issue or ↵Jean-Philippe Lang2007-03-236-0/+66
| | | | | | | | | | project level. There's no aggregation reports for now, it's just possible to see all time entries for a project or an issue. A new "activities" enumeration is added. Permission for a role to log time must be set (new "Time tracking" section in role permissions screen). git-svn-id: http://redmine.rubyforge.org/svn/trunk@368 e93f8b46-1217-0410-a6f0-8f06a7374b81
* native eol property set on lang filesJean-Philippe Lang2007-03-236-2383/+2383
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@363 e93f8b46-1217-0410-a6f0-8f06a7374b81
* german translation improved (thanks to Daniel Weinand)Jean-Philippe Lang2007-03-231-132/+132
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@361 e93f8b46-1217-0410-a6f0-8f06a7374b81
* added back "subproject" filter on issue listJean-Philippe Lang2007-03-196-6/+6
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@350 e93f8b46-1217-0410-a6f0-8f06a7374b81
* added a status filter on users/listJean-Philippe Lang2007-03-186-6/+24
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@347 e93f8b46-1217-0410-a6f0-8f06a7374b81
* added a setting option to set the feeds content limitJean-Philippe Lang2007-03-186-0/+6
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@346 e93f8b46-1217-0410-a6f0-8f06a7374b81