Author: astaric
Date: Tue May 7 09:05:30 2013
New Revision: 1479822
URL: http://svn.apache.org/r1479822
Log:
Moved relations widget to bhrelations module. -- towards BEP-0006
Added:
bloodhound/trunk/bloodhound_relations/bhrelations/widgets/
bloodhound/trunk/bloodhound_relations/bhrelations/widgets/__init__.py
bloodhound/trunk/bloodhound_relations/bhrelations/widgets/relations.py
- copied unchanged from r1479567,
bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/relations.py
Removed:
bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/relations.py
Modified:
bloodhound/trunk/bloodhound_dashboard/setup.py
bloodhound/trunk/bloodhound_relations/setup.py
Modified: bloodhound/trunk/bloodhound_dashboard/setup.py
URL:
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_dashboard/setup.py?rev=1479822&r1=1479821&r2=1479822&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_dashboard/setup.py (original)
+++ bloodhound/trunk/bloodhound_dashboard/setup.py Tue May 7 09:05:30 2013
@@ -125,7 +125,6 @@ ENTRY_POINTS = r"""
bhdashboard.widgets.product = bhdashboard.widgets.product
bhdashboard.widgets.query = bhdashboard.widgets.query
bhdashboard.widgets.report = bhdashboard.widgets.report
- bhdashboard.widgets.ticketrelations =
bhdashboard.widgets.relations
bhdashboard.widgets.ticket = bhdashboard.widgets.ticket
bhdashboard.widgets.timeline = bhdashboard.widgets.timeline
bhdashboard.wiki = bhdashboard.wiki
Added: bloodhound/trunk/bloodhound_relations/bhrelations/widgets/__init__.py
URL:
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_relations/bhrelations/widgets/__init__.py?rev=1479822&view=auto
==============================================================================
--- bloodhound/trunk/bloodhound_relations/bhrelations/widgets/__init__.py
(added)
+++ bloodhound/trunk/bloodhound_relations/bhrelations/widgets/__init__.py Tue
May 7 09:05:30 2013
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+# -*- coding: UTF-8 -*-
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
Modified: bloodhound/trunk/bloodhound_relations/setup.py
URL:
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_relations/setup.py?rev=1479822&r1=1479821&r2=1479822&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_relations/setup.py (original)
+++ bloodhound/trunk/bloodhound_relations/setup.py Tue May 7 09:05:30 2013
@@ -105,8 +105,9 @@ ENTRY_POINTS = {
'trac.plugins': [
'bhrelations.api = bhrelations.api',
'bhrelations.web_ui = bhrelations.web_ui',
+ 'bhrelations.widgets.ticketrelations = bhrelations.widgets.relations',
],
- }
+}
setup(
name=DIST_NM,
version=latest,