Quantcast
Channel: Redmine: Issues
Browsing latest articles
Browse All 57 View Live

Defect #5932 (Reopened): hook for :view_repositories_show_contextual is...

I wrote a plugin to add new commands in repository views (upload files, create directory and delete file/directory) and I noticed that :view_repositories_show_contextual hook lacks of 2 context...

View Article



Defect #6324 (New): requires_redmine_plugin should defer loading plugins if...

requires_redmine_plugin is a nice facility to track inter-plugin dependencies, however, it is useless if I do not want (or cannot) rename plugins I depend on.I propose that plugins are deferred and...

View Article

Feature #6383 (New): modifying flash from model hooks

It doesn't currently seem possible to modify the flash[:notice] (or any other type) from a model hook. In controller_issues_edit_after_save() I would like to be able to do something like:...

View Article

Defect #7104 (New): Accessing core Setting.* values in a plugin's init causes...

If you access a core value from Setting, such as host_name from a plugin's init.rb, then the plugin's settings will not be properly loaded.To reproduce, create a simple plugin that does something...

View Article

Patch #7664 (New): Allowing plugins to add an option for the default gravatar

Now redmine administrator can set the default gravatar for users which has no gravatar. I would like to use my own default gravatar.The attached patch allows plugins to add an option for the default...

View Article


Feature #8007 (New): Request for registration form hook

Redmine has: view_my_account hook - for account pageview_users_form hook - for user edit pageview_account_left_bottom hook - for user profile pageBut it misses a hook for registration form!That is if...

View Article

Defect #9219 (New): Plugin Conflicts

Plugins should include their name in the prefix of database tables to avoid conflicts. This is a regular problem when installing multiple plugins as often they use the same table names e.g.: tags. The...

View Article

Feature #9493 (New): projects tree view hook

At the moment it is only possible to hook on base layout, which affects all views.We would need a projects tree view hook, to enhance projects view via plugin.

View Article


Feature #9710 (New): Javascript repository cache , e.g. jquery

There is a feature we would really like to see. More and more plugins use js libs, which make it happen that one site can have same lib loaded several times, in worst case with different versions.Every...

View Article


Feature #9726 (New): Add the controller_timelog_edit_before_save hook to...

The controller_timelog_edit_before_save hook is available in several of the TimelogController's methods. However, since TimeEntries can be created when updating an Issue, I found myself needing the...

View Article

Feature #9915 (New): View hook just after top-menu.

I hope to add a view hook just after top-menu.(E.g. Using view hook just after top-menu is enabled to show all users site-wide message, such as maintenance information.)

View Article

Feature #10428 (New): More hooks please

I sometimes want to create very small but very helpful plugins that will contain a few javascript+html lines to help the UI in some screens.Examples:Tracker/edit : hierarchy mode button (tick/untick...

View Article

Defect #11035 (New): Doesn't patch "User" model in a plugin

Sorry for my English :)I have a plugin that works in "Redmine 1.3.0.stable.24228 (MySQL)" This plugin extend a model "User". And it worked fine.Now we have installed Redmine 2.0.0I try rewrite my...

View Article


Feature #11104 (New): Proposal for views substitution mechanism for plugins

I would like to propose to include to the Redmine as a rake task mechanism which i implemented in my Plugin views revisions plugin.In short, logic behind it eliminates necessity to create full plugins...

View Article

Feature #11425 (New): JavaScript library handler for teheming and plugins

This request is featured by an real problem i have:ProblemI wanted to make the right sidbar menu slide-in, slide-out with jqeury (javscript) using redmine themes. The first problem was that themes only...

View Article


Feature #12556 (New): Method for conditional layouts

Would be nice if we be able to override base layout using patches. It can helps selecting dynamic layouts in...

View Article

Defect #12976 (New): hook call "view_layouts_base_html_head" didn't insert...

hook call "view_layouts_base_html_head" didn't insert content in the page heder.Instead, the content is inserted into the tag "body"

View Article


Feature #13690 (New): Allow plugins to be able to add relationship types

This is somewhat related to #7849 but (I think) involves significantly less work.Firstly - can we make the TYPES constant a class variable (eg. @types)?Secondly - can the ".freeze" on the object inside...

View Article

Defect #13753 (New): Can't use helper functions in Hooks

I've upgraded to Redmine 2.3. But a few of my plugins aren't working proberly. After a little bit of research, i noticed that many of the helpers dont work when called from hook.For example, the...

View Article

Patch #13927 (New): Reduce coupling between plugins and the "plugins/" directory

Today plugins are just directories in <redmine root>/plugins/ directory. There are a few implicit assumptions in Redmine code that this is the case, which doesn't add much benefit I think. This...

View Article

Defect #15872 (New): url_for causes routing problems if a plugin uses namespaces

Redmine currently uses a hash parameter as the url to pass to url_for in many placesfor example - lib/redmine.rb (pusing items to menu)I have a complex plugin which uses namespaces for controllers and...

View Article


Patch #15986 (New): Hook for REST API

Would be nice if issue (and other API objects) will have hooks for adding specific data to the API output. call_hook(:api_issue_show, :issue => @issue)

View Article


Defect #17217 (New): Error when you try to config issue checklist plugin with...

Environment info:Environment: Redmine version 2.5.1.stable Ruby version 2.0.0-p481 (2014-05-08) [x86_64-linux] Rails version 3.2.17 Environment production Database adapter Mysql2 Mysql version...

View Article

Defect #19019 (New): Plugin patch overriding priority

Hi, In my redmine application i added some plugins while overriding a same patch in different plugin but it take priority with the top level i unable to run my bottom plugin patch.For Example:Plugin...

View Article

Feature #19084 (New): other_formats_links hook

I'd like to add the Todo.txt export format in a plugin. This would require a hook for other_formats_links.

View Article


Feature #19625 (New): Ability to disable plugin from Admin area

I think this would be really useful, rather than having to physically remove files from the server.In fact, the whole plugin install, Redmine upgrade process is rather prehistoric and needs serious...

View Article

Defect #20358 (New): In some situation, my plugin render view hook twice

I wrote a plugin for my company andI referenced offical redmine plugin develop tutorial to add hook with my plugin.I do something like this :class MyPluginHook render_on :view_projects_show_left,...

View Article

Patch #24007 (Reopened): Change plugins directory through the...

This patch adds the possibility to change the directory "plugins" of the application through the file configuration.yml.The patch has been tested with the last Trunk version (15839)

View Article

Patch #24939 (New): Changing plugin loading order

Hi,I have one plugin that depends on another, and I needed to specify the order plugins are loaded so the classes and migrations are loaded in the proper order, but the dependent plugin is loaded first...

View Article



Feature #25667 (New): Generalise implementation of view / controller hooks...

I have been developing several plugins for our Redmine, and hooks are a really good mechanism overall, but I have been struggling with the way they are partially implemented or even missing in some...

View Article

Patch #26139 (Reopened): Follow Gemfile's plugin loader as #24007

Plugin's Gemfile can't settable from Redmine::Plugin.directory yet.

View Article

Feature #26385 (New): Add a non-hook based API for adding/removing items...

This is something that has come up in several, recurring issues:#3568#23434#6497#8772#11492Instead of adding these hooks, we are most-likely way better of with a solid, API-based solution like as...

View Article

Patch #26439 (New): Plugin load order defined by plugin checks

This patch allows for a plugin to delay loading until a set of requirements is met. This could be because I need for other plugin to be loaded first.The ideia is to to have each plugin check at the top...

View Article


Feature #26908 (New): Add ability to have hooks inisde application.js and...

I'm not sure if this is a good idea or not, and I'm not sure anyone except maybe JP Lang would know the best course of action.There are already some discussions about this topicLike: Assets PipelineAnd...

View Article

Feature #27705 (New): Gemify redmine plugins

I want to install redmine plugins by adding gem name to Gemfile.local like redmine_github_hook plugin.Current installing/updating method have below cautions for me.Difficult to specify plugin version...

View Article

Defect #28133 (New): Controller patch causes Helper Patch down

Create two plugins, one named 'test_001', another is 'test_002'.test_001¶# init.rbRails.configuration.to_preparedorequire'test_issues_controller_patch'endRedmine::Plugin.register:test_001doname'Test...

View Article


Feature #28412 (New): Reject plugin same ID with registered one

Redmine can register plugin same ID with registered one.Currently, below problems exist.@registered_plugins[id] is overwritten./admin/plugins shows only one pluginbut load_path, view_path, ... are...

View Article


Defect #28529 (New): Plugin settings trouble

The problem is that now is impossible to call the option of plugin setting via symbol, only via the string.now: irb(main):006:0> Setting.plugin_redmine_ckeditor["skin"] => "kama"...

View Article

Defect #29853 (New): Default plugin value is not

Currently the default setting value is not created regarding its setting in init.rb file. Tried various ways to store but both are not working and there is no default value:settings :default => {...

View Article

Defect #29923 (New): Plugin migrations. Load order in plugin.

I am building a simple plugin which allows setting a global wiki on the homepage and also it allows adding custom links in the top menu.I have 2 problems with it because I use its own model into...

View Article

Feature #31538 (New): Allow a plugin to be installed in the directory...

After #31110, we can't install plugin tarball like "foo-plugin-x.y.z" without rename. I want install plugin only stable version. I don't want use svn trunk/git master. And I want to know plugin version...

View Article


Feature #32545 (New): Plugin API for adding a new notification

In lib/redmine/notifiable.rb, there is a TODO: Plugin API for adding a new notification?.I found out that, one can provide this API via Redmine Hooks, although I dont know if this is the correct...

View Article

Patch #32847 (New): Ability to add custom css classes to body tag

This ability is important for plugin developers to avoid unnecessary use of deface gem.If it's going to be implemented, also wiki page for plugin developers shouldbe updated, accordingly.

View Article


Defect #35199 (New): HookTest resets all listeners - core tests run...

When a test runner is invoked and the tests include either test/integration/lib/redmine/hook_test.rb or test/unit/lib/redmine/hook_test.rb, there is a side effect that all hooks classes / listeners are...

View Article

Feature #35415 (New): Unified plugin api esp. regarding patches

Many plugins use different ways to include own lib-code. A common topic I came across is applying patches and consuming hooks. Sometimes the files are require'd having something like unless...

View Article


Defect #36801 (New): Rails Autoload Paths contain plugin libs twice

Due to the way plugins are loaded by Redmine the variableActiveSupport::Dependencies.autoload_pathscontains the path to the 'lib' directory of each plugin twice, which should not happen.When Redmine...

View Article

Defect #37686 (New): Plugin migration does not work properly if called...

When testing plugin migrations it is necessary to call plugin migrations more than once, e.g.: # migrate to version A Redmine::Plugin.migrate('some_plugin', 2) # ...do some plugin specific database...

View Article

Feature #37731 (New): Add example of 'My page' block name translation to...

'My page' block name translation as added via #3057 (r2659) should be showcased in the bundled example plugin (source:/trunk/extra/sample_plugin) to decrease the need for a FAQ item (as extensive as)...

View Article

Defect #37803 (New): schema.rb dump/load does not preserve plugin migration...

When dumping Redmine db schema to *.rb file: bundle exec rake db:schema:dump current migration version is preserved for Redmine in db/schema.rb file: # This file is auto-generated from the current...

View Article


Feature #39948 (New): Add Redmine::Plugin proxy method for...

Following #39862 I wonder: wouldn't it be neater to add a dedicated proxy method to Redmine::Plugin (something like Redmine::Plugin#attachment_object_type) for...

View Article

Browsing latest articles
Browse All 57 View Live




Latest Images