Modify ↓
#10354 closed task (fixed)
Plugin needs a license
Reported by: | Ryan J Ollos | Owned by: | Malcolm Studd |
---|---|---|---|
Priority: | normal | Component: | ExtendedVersionPlugin |
Severity: | normal | Keywords: | |
Cc: | Daniela Cernea | Trac Release: | 0.12 |
Description
The plugin currently has no license. Would you allow a 3-Clause BSD license to be added to the source code? This is the same license that the Trac project uses.
Attachments (0)
Change History (5)
comment:1 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
(In [12195]) Fixes #10354: Passing the db
object to Version.select
is deprecated, and not necessary even in Trac 0.11.
comment:3 Changed 12 years ago by
(In [12229]) Refs #10354: Resolved various issues while trying to get plugin working on Trac 0.11:
extendedversion.environment
could not be enabled since the link was grayed out. It appears there may have been a conflict of the classextendedversion.environment.EnvironmentSetup
withtrac.env.EnvironmentSetup
. Renamedextendedversion.environment.EnvironmentSetup
toextendedversion.db.ExtendedVersionSetup
.- Moved
ITemplateProvider
methods to theversion
module. - FIX:
INavigationContributor
in theversion
module needs to return an empty list. Theversions
tab is still not highlighted correctly when on a version page.
comment:4 Changed 12 years ago by
Note: See
TracTickets for help on using
tickets.
(In [12194]) Fixes #10354:
commit
operation. Restored 0.11 compatibility to the trunk.navigation_item
option, in order to simplify the behavior following [10525]. It is no longer possible to specify which navigation item is highlighted when the path matchesversions
, however this option did not seem very useful anyway, since the primary use cases will be captured by theroadmap_navigation
option. Ifroadmap_navigation
is true, theRoadmap
entry in the main navigation will link to the versions page, and theRoadmap
navigation entry will be highlighted when the path matchesversions
. Ifroadmap_navigation
is false, aVersions
entry will be added to the main navigation and will link to the versions page, and theVersions
navigation entry will be highlighted when the patch matchesversions
.