blob: bbc52f8be38092a10ccd9018ce4f40654f223e00 [file] [log] [blame]
# 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.
from __future__ import unicode_literals
from __future__ import absolute_import
import os
import logging
import pkg_resources
from allura.lib.helpers import iter_entry_points
log = logging.getLogger(__name__)
def register_ew_resources(manager):
manager.register_directory(
'js', pkg_resources.resource_filename('allura', 'lib/widgets/resources/js'))
manager.register_directory(
'css', pkg_resources.resource_filename('allura', 'lib/widgets/resources/css'))
manager.register_directory(
'allura', pkg_resources.resource_filename('allura', 'public/nf'))
for ep in iter_entry_points('allura'):
try:
app = ep.load()
resource_path = os.path.join('nf', ep.name.lower())
resource_cls = app.has_resource(resource_path)
if resource_cls:
manager.register_directory(
'tool/%s' % ep.name.lower(),
pkg_resources.resource_filename(
resource_cls.__module__, resource_path))
except ImportError:
log.warning('Cannot import entry point %s', ep)
raise
for ep in iter_entry_points('allura.theme'):
try:
theme = ep.load()
theme.register_ew_resources(manager, ep.name)
except ImportError:
log.warning('Cannot import entry point %s', ep)
raise