Skip to content

Commit bb7f2b0

Browse files
committed
rename plugin ID, add README and release as version 1.0.0
1 parent be5cf89 commit bb7f2b0

File tree

3 files changed

+76
-21
lines changed

3 files changed

+76
-21
lines changed

README.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
Redmine Project Alias 2
2+
=======================
3+
4+
This plugin lets you create aliases for project identifiers and also lets you use the aliases as main identifier (means: renaming a project identifier and having the old identifier as alias).
5+
6+
This is a git fork of Andriy Lesyuk's [project_alias](http://projects.andriylesyuk.com/projects/project-alias) plugin which seems to be abandoned for a few years now.
7+
8+
*This plugin is listed in the [Redmine plugin directory](http://www.redmine.org/plugins/redmine_project_alias_2)*
9+
10+
11+
Compatibility
12+
-------------
13+
14+
The plugin is tested with Redmine 2.6.x, 3.0.x and 3.1.x.
15+
16+
For older version (2.5.x, 2.3.x, 2.2.x, 1.4.x) please download the [original plugin](http://www.redmine.org/plugins/project_alias2).
17+
18+
19+
Installation and setup
20+
----------------------
21+
22+
* Clone or [download](https://github.com/paginagmbh/redmine_project-alias-2/releases) this repo into your **redmine_root/plugins/** folder
23+
```
24+
$ git clone https://github.com/paginagmbh/redmine_project_alias_2.git
25+
```
26+
* If you downloaded a tarball / zip from master branch, make sure you rename the extracted folder to `redmine_project_alias_2`
27+
* You have to run the plugin rake task to provide the assets (from the Redmine root directory):
28+
```
29+
$ rake redmine:plugins:migrate RAILS_ENV=production
30+
```
31+
* Restart Redmine
32+
33+
Uninstall
34+
---------
35+
36+
If you want to uninstall and remove the plugin, do the following:
37+
38+
39+
* Run this rake task from the Redmine root directory:
40+
```
41+
$ bundle exec rake redmine:plugins NAME=redmine_project_alias_2 VERSION=0 RAILS_ENV=production
42+
```
43+
44+
* Delete the plugin folder
45+
46+
* Restart Redmine
47+
48+
**Be aware that you're loosing aliases and link redirections when uninstalling the plugin!**
49+
50+
51+
License
52+
-------
53+
54+
*redmine_project-alias-2* plugin is developed under its original [GPL License](LICENCE).

init.rb

+21-20
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,30 @@
22

33
require_dependency 'project_alias_hook'
44

5-
Rails.logger.info 'Starting Project Alias plugin for Redmine'
5+
Rails.logger.info 'Starting Project Alias 2 plugin for Redmine'
66

77
Rails.configuration.to_prepare do
8-
unless String.method_defined?(:html_safe)
9-
String.send(:include, AliasStringHTMLSafePatch)
10-
end
11-
unless Project.included_modules.include?(AliasProjectPatch)
12-
Project.send(:include, AliasProjectPatch)
13-
end
14-
unless ApplicationHelper.included_modules.include?(AliasApplicationHelperPatch)
15-
ApplicationHelper.send(:include, AliasApplicationHelperPatch)
16-
end
8+
unless String.method_defined?(:html_safe)
9+
String.send(:include, AliasStringHTMLSafePatch)
10+
end
11+
unless Project.included_modules.include?(AliasProjectPatch)
12+
Project.send(:include, AliasProjectPatch)
13+
end
14+
unless ApplicationHelper.included_modules.include?(AliasApplicationHelperPatch)
15+
ApplicationHelper.send(:include, AliasApplicationHelperPatch)
16+
end
1717
end
1818

19-
Redmine::Plugin.register :project_alias do
20-
name 'Project Alias'
21-
author 'Andriy Lesyuk & Tobias Fischer'
22-
description 'Allows adding project identifier aliases.'
23-
url 'https://github.com/paginagmbh/redmine_project-alias'
24-
version '0.2.0'
19+
Redmine::Plugin.register :redmine_project_alias_2 do
20+
name 'Project Alias 2'
21+
author 'Andriy Lesyuk & Tobias Fischer'
22+
description 'Allows adding project identifier aliases or renaming of project identifiers.'
23+
url 'https://github.com/paginagmbh/redmine_project-alias-2'
24+
version '1.0.0'
25+
requires_redmine :version_or_higher => '2.6'
2526

26-
menu :admin_menu, :project_aliases,
27-
{ :controller => 'project_aliases', :action => 'index' },
28-
:caption => :label_alias_plural,
29-
:after => :projects
27+
menu :admin_menu, :project_aliases,
28+
{ :controller => 'project_aliases', :action => 'index' },
29+
:caption => :label_alias_plural,
30+
:after => :projects
3031
end

lib/project_alias_hook.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ProjectAliasHook < Redmine::Hook::ViewListener
22

33
def view_layouts_base_html_head(context = {})
4-
tags = stylesheet_link_tag('admin', :plugin => 'project_alias')
4+
tags = stylesheet_link_tag('admin', :plugin => 'redmine_project_alias_2')
55

66
if context[:project]
77
params = {}

0 commit comments

Comments
 (0)