[Apache Bloodhound] New user registration: jdreimann+test

2013-04-22 Thread Apache Bloodhound
New user registration for user jdreimann+test

--
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker



[Apache Bloodhound] Deleted User: jdreimann+test

2013-04-22 Thread Apache Bloodhound
Deleted User for user jdreimann+test

--
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker



svn commit: r1470517 - /bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

2013-04-22 Thread gjm
Author: gjm
Date: Mon Apr 22 14:00:51 2013
New Revision: 1470517

URL: http://svn.apache.org/r1470517
Log:
moves register link from the mainnav (Apps dropdown) to metanav - #321

Modified:
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: 
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1470517r1=1470516r2=1470517view=diff
==
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
(original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
Mon Apr 22 14:00:51 2013
@@ -71,6 +71,7 @@
   /py:when
   py:otherwise
 a href=${req.href.login()}${_(Login)}/a
+py:if test='register' in meta_itemsor 
${meta_items.register.label}/py:if
   /py:otherwise
 /span
 span py:if='logout' in meta_items id=nav_logout
@@ -215,7 +216,7 @@
   class=nav nav-tabs pull-right
   id=mainnav
   py:with=mainnav_show = ('wiki', 'tickets', 'browser');
-   metanav_hide = ('login', 'logout', 'prefs', 'help', 
'about')
+   metanav_hide = ('login', 'logout', 'prefs', 'help', 
'about', 'register')
 !--! TODO: Parameterize visible mainnav items in trac.ini --
 li py:if=chrome.nav.mainnav
 py:for=idx, item in enumerate(i for i in 
chrome.nav.mainnav if i.name in mainnav_show) 




Re: [Apache Bloodhound] #321: Refactor the More dropdown (was: Refactor the Apps dropdown)

2013-04-22 Thread Apache Bloodhound
#321: Refactor the More dropdown
--+--
  Reporter:  peter|  Owner:  gjm
  Type:  enhancement  | Status:  accepted
  Priority:  major|  Milestone:
 Component:  ui design|Version:
Resolution:   |   Keywords:
--+--

Old description:

 The Apps dropdown needs to be changed with following points (taken from
 dev list) in mind:

   * do not duplicate in Apps what's accessible from one of the
 navigation bars
   * do not leave in Apps important links (such as, e.g., Register)
   * do not call it Apps; I suppose, once the previous two conditions are
 met, the heading could be called Plugins or Tools or some
 similar, more obvious name.

New description:

 The More dropdown in the mainnav needs to be changed with following
 points (taken from dev list) in mind:

   * do not duplicate in Apps what's accessible from one of the
 navigation bars
   * do not leave in Apps important links (such as, e.g., Register)
   * do not call it Apps; I suppose, once the previous two conditions are
 met, the heading could be called Plugins or Tools or some
 similar, more obvious name.

--

Comment (by jdreimann):

 I've changed the name of the dropdown to 'More' in r1470511. It was 'Apps'
 previously.

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/321#comment:4
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


svn commit: r1470535 - /bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py

2013-04-22 Thread gjm
Author: gjm
Date: Mon Apr 22 14:20:04 2013
New Revision: 1470535

URL: http://svn.apache.org/r1470535
Log:
removing bhsearch from Apps (now More) menu as this is understood to be 
available as the main search - #321

Modified:
bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py

Modified: bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py?rev=1470535r1=1470534r2=1470535view=diff
==
--- bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py (original)
+++ bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py Mon Apr 22 14:20:04 
2013
@@ -236,7 +236,7 @@ class RequestParameters(object):
 
 class BloodhoundSearchModule(Component):
 Main search page
-implements(INavigationContributor, IPermissionRequestor, IRequestHandler,
+implements(IPermissionRequestor, IRequestHandler,
 ITemplateProvider, IRequestFilter
 #   IWikiSyntaxProvider #todo: implement later
 )
@@ -302,17 +302,6 @@ class BloodhoundSearchModule(Component):
 doc=Display query suggestions.
 )
 
-# INavigationContributor methods
-def get_active_navigation_item(self, req):
-# pylint: disable=unused-argument
-return 'bhsearch'
-
-def get_navigation_items(self, req):
-if SEARCH_PERMISSION in req.perm:
-yield ('mainnav', 'bhsearch',
-   tag.a(_('Bloodhound Search'), href=self.env.href.bhsearch())
-)
-
 # IPermissionRequestor methods
 def get_permission_actions(self):
 return [SEARCH_PERMISSION]




svn commit: r1470540 - /bloodhound/trunk/bloodhound_multiproduct/multiproduct/ticket/web_ui.py

2013-04-22 Thread gjm
Author: gjm
Date: Mon Apr 22 14:27:45 2013
New Revision: 1470540

URL: http://svn.apache.org/r1470540
Log:
removing products link from Apps (More) dropdown as products are available 
through the dashboard links - #321

Modified:
bloodhound/trunk/bloodhound_multiproduct/multiproduct/ticket/web_ui.py

Modified: bloodhound/trunk/bloodhound_multiproduct/multiproduct/ticket/web_ui.py
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_multiproduct/multiproduct/ticket/web_ui.py?rev=1470540r1=1470539r2=1470540view=diff
==
--- bloodhound/trunk/bloodhound_multiproduct/multiproduct/ticket/web_ui.py 
(original)
+++ bloodhound/trunk/bloodhound_multiproduct/multiproduct/ticket/web_ui.py Mon 
Apr 22 14:27:45 2013
@@ -72,10 +72,7 @@ class ProductTicketModule(TicketModule):
 
 def get_navigation_items(self, req):
 Overriding TicketModules New Ticket nav item
-if 'TICKET_CREATE' in req.perm:
-href = ProductModule.get_product_path(self.env, req, 'newticket')
-yield ('mainnav', 'newticket', 
-   tag.a(_(New Ticket), href=href, accesskey=7))
+return
 
 # ISearchSource methods
 #def get_search_filters(self, req):




svn commit: r1470547 - /bloodhound/trunk/bloodhound_multiproduct/multiproduct/web_ui.py

2013-04-22 Thread gjm
Author: gjm
Date: Mon Apr 22 14:32:42 2013
New Revision: 1470547

URL: http://svn.apache.org/r1470547
Log:
removing product link from main navigation (r1470540 was really for the new 
ticket link) - #321

Modified:
bloodhound/trunk/bloodhound_multiproduct/multiproduct/web_ui.py

Modified: bloodhound/trunk/bloodhound_multiproduct/multiproduct/web_ui.py
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_multiproduct/multiproduct/web_ui.py?rev=1470547r1=1470546r2=1470547view=diff
==
--- bloodhound/trunk/bloodhound_multiproduct/multiproduct/web_ui.py (original)
+++ bloodhound/trunk/bloodhound_multiproduct/multiproduct/web_ui.py Mon Apr 22 
14:32:42 2013
@@ -39,15 +39,7 @@ from multiproduct.hooks import PRODUCT_R
 class ProductModule(Component):
 Base Product behaviour
 
-implements(IRequestHandler, INavigationContributor)
-
-def get_active_navigation_item(self, req):
-return 'products'
-
-def get_navigation_items(self, req):
-if 'PRODUCT_VIEW' in req.perm:
-yield ('mainnav', 'products',
-   tag.a(_('Products'), href=req.href.products(), accesskey=3))
+implements(IRequestHandler)
 
 # IRequestHandler methods
 def match_request(self, req):




Re: [Apache Bloodhound] #321: Refactor the More dropdown

2013-04-22 Thread Apache Bloodhound
#321: Refactor the More dropdown
--+--
  Reporter:  peter|  Owner:  gjm
  Type:  enhancement  | Status:  accepted
  Priority:  major|  Milestone:
 Component:  ui design|Version:
Resolution:   |   Keywords:
--+--

Comment (by gjm):

 r1470517 moves the registration link to be beside the login link

 r1470535 removes the search menu item as it is already on display in the
 main view

 r1470540 removes the new ticket link (I believe the commit message is in
 error) as this is available through the Create Ticket form

 r1470547 removes the product link

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/321#comment:5
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


svn commit: r1470599 - in /bloodhound/trunk/bloodhound_theme/bhtheme/templates: bh_wiki_view.html bloodhound_theme.html

2013-04-22 Thread jdreimann
Author: jdreimann
Date: Mon Apr 22 16:03:51 2013
New Revision: 1470599

URL: http://svn.apache.org/r1470599
Log:
Changed delete version and delete page buttons on Wiki pages to the btn-link 
style to make them less prominent. Also changed cancel button in the quick 
ticket overlay to btn-link. Relates to #414

Modified:
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html?rev=1470599r1=1470598r2=1470599view=diff
==
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html 
(original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_wiki_view.html Mon 
Apr 22 16:03:51 2013
@@ -147,9 +147,9 @@
   input type=hidden name=version value=$page.version /
   div id=delete class=btn-group
 py:if test=page.version == latest_version
-  button class=btn type=submit 
name=delete_version${_('Delete this version')}/button
+  button class=btn btn-link type=submit 
name=delete_version${_('Delete this version')}/button
 /py:if
-button class=btn type=submit 
name=delete_page_button${_('Delete page')}/button
+button class=btn btn-link type=submit 
name=delete_page_button${_('Delete page')}/button
   /div
 /form
   /div

Modified: 
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1470599r1=1470598r2=1470599view=diff
==
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
(original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
Mon Apr 22 16:03:51 2013
@@ -176,7 +176,7 @@
 
 div class=controls pull-right
   button id=qct-create class=btn btn-primary 
data-target=${href()}Create/button
-  button id=qct-cancel 
class=btnCancel/button
+  button id=qct-cancel class=btn 
btn-linkCancel/button
 /div
   /py:when
   div py:otherwise= class=alert alert-info




Re: [Apache Bloodhound] #414: Change cancel buttons to btn-link style

2013-04-22 Thread Apache Bloodhound
#414: Change cancel buttons to btn-link style
--+---
  Reporter:  rjollos  |  Owner:  jdreimann
  Type:  enhancement  | Status:  accepted
  Priority:  minor|  Milestone:  Release 5
 Component:  ui design|Version:
Resolution:   |   Keywords:
--+---

Comment (by jdreimann):

 I've committed further changes in r1470599, to change the cancel button in
 the Quick Ticket dialogue and de-emphasise the delete version and delete
 page actions on wiki pages.

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/414#comment:4
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


Re: [Apache Bloodhound] #414: Change cancel buttons to btn-link style

2013-04-22 Thread Apache Bloodhound
#414: Change cancel buttons to btn-link style
--+---
  Reporter:  rjollos  |  Owner:  jdreimann
  Type:  enhancement  | Status:  closed
  Priority:  minor|  Milestone:  Release 5
 Component:  ui design|Version:
Resolution:  fixed|   Keywords:
--+---
Changes (by jdreimann):

 * status:  accepted = closed
 * resolution:   = fixed


-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/414#comment:5
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


Re: [Apache Bloodhound] #471: Merge activity feed + change history

2013-04-22 Thread Apache Bloodhound
#471: Merge activity feed + change history
--+--
  Reporter:  jdreimann|  Owner:  gjm
  Type:  enhancement  | Status:  accepted
  Priority:  major|  Milestone:  Release 6
 Component:  dashboard|Version:
Resolution:   |   Keywords:  ui, comments, change history
--+--

Comment (by jdreimann):

 I've removed the background image (vertical line) from activityfeed when
 it is of the old timeline style (everywhere apart from ticket pages) in
 r1470590

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/471#comment:10
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


Re: [Apache Bloodhound] #471: Merge activity feed + change history

2013-04-22 Thread Apache Bloodhound
#471: Merge activity feed + change history
--+--
  Reporter:  jdreimann|  Owner:  gjm
  Type:  enhancement  | Status:  accepted
  Priority:  major|  Milestone:  Release 6
 Component:  dashboard|Version:
Resolution:   |   Keywords:  ui, comments, change history
--+--

Comment (by jdreimann):

 Is this ticket ready to be closed? We should raise further improvements in
 separate tickets I reckon.

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/471#comment:11
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


svn commit: r1470612 - /bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

2013-04-22 Thread gjm
Author: gjm
Date: Mon Apr 22 16:38:18 2013
New Revision: 1470612

URL: http://svn.apache.org/r1470612
Log:
move admin link from 'More' menu to the metanav - #321

Modified:
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: 
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1470612r1=1470611r2=1470612view=diff
==
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
(original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
Mon Apr 22 16:38:18 2013
@@ -62,7 +62,8 @@
 /p
   /div
   !--! top menu (login, logout...) --
-  py:with vars=meta_items = dict([i.name, i] for i in 
chrome.nav.metanav)
+  py:with vars=meta_items = dict([i.name, i] for i in 
chrome.nav.metanav);
+ main_items = dict([i.name, i] for i in 
chrome.nav.mainnav);
 div id=usermenu class=span8
   div class=metanav pull-right
 span id=nav_login py:choose=
@@ -78,6 +79,9 @@
 span py:if='logout' in meta_items id=nav_logout
   ${meta_items.logout.label}
 /span
+span py:if='admin' in main_items
+  ${main_items.admin.label}
+/span
 span py:if='help' in meta_items
   ${meta_items.help.label}
 /span
@@ -214,6 +218,7 @@
   class=nav nav-tabs pull-right
   id=mainnav
   py:with=mainnav_show = ('wiki', 'tickets', 'browser');
+   mainnav_to_meta = ('admin',);
metanav_hide = ('login', 'logout', 'prefs', 'help', 
'about', 'register')
 !--! TODO: Parameterize visible mainnav items in trac.ini --
 li py:if=chrome.nav.mainnav
@@ -221,7 +226,7 @@
 class=${classes(first_last(idx, chrome.nav.mainnav), 
active=item.active)}${item.label}/li
 li class=dropdown ${all(not i.active for i in 
chrome.nav.mainnav if i.name in mainnav_show) and 'active' or None}
 py:if=len([i for i in chrome.nav.metanav if i.name not in 
metanav_hide] +
-   [i for i in chrome.nav.mainnav if i.name not in 
mainnav_show])
+   [i for i in chrome.nav.mainnav if i.name not in 
mainnav_show + mainnav_to_meta])
   a class=dropdown-toggle data-toggle=dropdown 
href=#Moreb class=caret/b/a
   ul class=dropdown-menu
 li py:if=chrome.nav.mainnav




svn commit: r1470615 - /bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py

2013-04-22 Thread astaric
Author: astaric
Date: Mon Apr 22 16:44:22 2013
New Revision: 1470615

URL: http://svn.apache.org/r1470615
Log:
Fixed QuickLink search in default product. Part of #450.

Modified:
bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py

Modified: bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py?rev=1470615r1=1470614r2=1470615view=diff
==
--- bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py (original)
+++ bloodhound/trunk/bloodhound_search/bhsearch/web_ui.py Mon Apr 22 16:44:22 
2013
@@ -558,7 +558,9 @@ class RequestContext(object):
 description = link.attrib.get('title', '')
 if quickjump_href:
 # Only automatically redirect to local quickjump links
-if not quickjump_href.startswith(req.base_path or '/'):
+base_path = req.base_path.replace('@', '%40')
+redirect_href = quickjump_href.replace('@', '%40')
+if not redirect_href.startswith(base_path or '/'):
 noquickjump = True
 if noquickjump:
 return {'href': quickjump_href, 'name': tag.EM(name),




[Apache Bloodhound] #507: Improvements to Quick Ticket overlay

2013-04-22 Thread Apache Bloodhound
#507: Improvements to Quick Ticket overlay
--+---
  Reporter:  jdreimann|Owner:
  Type:  enhancement  |   Status:  new
  Priority:  major|  Version:
Resolution:   |
--+---
 * Change padding to improve look
 * Move Full dialogue link to the bottom and rename it to More fields
 I would argue that this will make more sense to users but wording can
 still be improved and values should be carried over from the quick ticket
 dialogue to the new ticket page
 * Rename title to New Ticket from Create Ticket
 * Left-align action buttons
 * Declare width in bloodhound.css instead of as an inline style

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/507
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


Re: [Apache Bloodhound] #507: Improvements to Quick Ticket overlay

2013-04-22 Thread Apache Bloodhound
#507: Improvements to Quick Ticket overlay
--+
  Reporter:  jdreimann|  Owner:  nobody
  Type:  enhancement  | Status:  new
  Priority:  major|  Milestone:
 Component:  dashboard|Version:
Resolution:   |   Keywords:
--+
Changes (by jdreimann):

 * owner:   = nobody
 * component:   = dashboard


Comment:

 Committed in r1470623

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/507#comment:1
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


svn commit: r1470623 - in /bloodhound/trunk/bloodhound_theme/bhtheme: htdocs/bloodhound.css templates/bloodhound_theme.html

2013-04-22 Thread jdreimann
Author: jdreimann
Date: Mon Apr 22 17:20:10 2013
New Revision: 1470623

URL: http://svn.apache.org/r1470623
Log:
Implementing changes described in #507 to improve the look of the quick ticket 
overlay

Modified:
bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1470623r1=1470622r2=1470623view=diff
==
--- bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css (original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css Mon Apr 22 
17:20:10 2013
@@ -292,13 +292,9 @@ pre {
 
 /* @group Quick Create Ticket popup */
 
-#qct-box .linkfull {
-  position: relative;
-  bottom: 20px;
-}
-
-#qct-box .controls {
- margin-bottom: 5px;
+#qct-box {
+  width: 300px;
+  padding: 0px 0px 5px 0px;
 }
 
 #qct-box p {

Modified: 
bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1470623r1=1470622r2=1470623view=diff
==
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
(original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html 
Mon Apr 22 17:20:10 2013
@@ -144,15 +144,10 @@
 span class=visible-phonei class=icon-plus-sign 
icon-white/i/span
 span class=hidden-phoneCreate Ticketnbsp;span 
class=caret/span/span
   /a
-  div id=qct-box class=dropdown-menu style=width: 
300px;
+  div id=qct-box class=dropdown-menu
   py:choose=
 div class=popover-title
-  h3
-Create Ticket
-a class=pull-right linkfull 
href=${href.newticket()}
-  smallFull dialogue raquo;/small
-/a
-  /h3
+  h3New Ticket/h3
 /div
 div class=popover-content
   py:when test='TICKET_CREATE' in perm
@@ -178,8 +173,9 @@
   /div
 /form
 
-div class=controls pull-right
+div class=controls
   button id=qct-create class=btn btn-primary 
data-target=${href()}Create/button
+  a id=qct-cancel class=btn btn-link 
href=${href.newticket()}More fields/a
   button id=qct-cancel class=btn 
btn-linkCancel/button
 /div
   /py:when




Re: [Apache Bloodhound] #507: Improvements to Quick Ticket overlay

2013-04-22 Thread Apache Bloodhound
#507: Improvements to Quick Ticket overlay
--+
  Reporter:  jdreimann|  Owner:  nobody
  Type:  enhancement  | Status:  closed
  Priority:  major|  Milestone:
 Component:  dashboard|Version:
Resolution:  fixed|   Keywords:
--+
Changes (by jdreimann):

 * status:  new = closed
 * resolution:   = fixed


-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/507#comment:2
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


Re: [Apache Bloodhound] #471: Merge activity feed + change history

2013-04-22 Thread Apache Bloodhound
#471: Merge activity feed + change history
--+--
  Reporter:  jdreimann|  Owner:  gjm
  Type:  enhancement  | Status:  accepted
  Priority:  major|  Milestone:  Release 6
 Component:  dashboard|Version:
Resolution:   |   Keywords:  ui, comments, change history
--+--

Comment (by gjm):

 r1470622 makes sure that the dummy event is only attempted for existing
 tickets

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/471#comment:12
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


[Apache Bloodhound] #508: Backlog plugin not working in the IE browser

2013-04-22 Thread Apache Bloodhound
#508: Backlog plugin not working in the IE browser
--+-
  Reporter:  goody80  |Owner:
  Type:  defect   |   Status:  new
  Priority:  major|  Version:  0.5.3
Resolution:   |
--+-
 I would like to use the Trac plugin from the Trac-hack. But it doesn't
 works in the Theme of the Bloodhound(like a bootstrap).

 For example, Backlog plugin has not supported Drag  drop in the IE.
 And Due-date  plugin has not push the pop-up window for the calendar.
 Also White-board, Kanban-board does not working.

 If I use the Trac default Theme, it works.

 Please check this issue out :)

 Thanks.

 Ralf.

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/508
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker


Re: [Apache Bloodhound] #508: Trac plugin does not working in the Bloodhound Theme

2013-04-22 Thread Apache Bloodhound
#508: Trac plugin does not working in the Bloodhound Theme
+
  Reporter:  goody80|  Owner:  nobody
  Type:  defect | Status:  new
  Priority:  major  |  Milestone:
 Component:  dashboard  |Version:  0.5.3
Resolution: |   Keywords:
+

Comment (by rjollos):

 Just to be sure, are you referring to th:BacklogPlugin? If so, that's one
 that i maintain and i can take a quick look in the morning.

-- 
Ticket URL: https://issues.apache.org/bloodhound/ticket/508#comment:2
Apache Bloodhound https://issues.apache.org/bloodhound/
The Apache Bloodhound issue tracker