-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Integrates sonar-ui admin angular application. * Adds editor form configuration for documents, institutions and users. * Adds addresses for user in fixtures. * Adds a "local" option for bootstrap script. * Build assets in bootstrap script. * Removes webpack custom project. * Modifies JSON schemas. Co-Authored-by: Sébastien Délèze <sebastien.deleze@rero.ch>
- Loading branch information
Sébastien Délèze
committed
Dec 5, 2019
1 parent
32aaf18
commit 34c3793
Showing
31 changed files
with
1,287 additions
and
769 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# RERO ILS | ||
# Copyright (C) 2019 RERO | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as published by | ||
# the Free Software Foundation, version 3 of the License. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Affero General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Affero General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
"""JS/CSS bundles for RERO ILS theme.""" | ||
|
||
from __future__ import absolute_import | ||
|
||
from invenio_assets import NpmBundle | ||
|
||
admin_ui_js = NpmBundle( | ||
'node_modules/@rero/sonar-ui/dist/admin/runtime.js', | ||
'node_modules/@rero/sonar-ui/dist/admin/polyfills.js', | ||
'node_modules/@rero/sonar-ui/dist/admin/main.js', | ||
output='admin_ui.%(version)s.js', | ||
npm={ | ||
'@rero/sonar-ui': '~0.0.1' | ||
} | ||
) | ||
|
||
admin_ui_css = NpmBundle( | ||
'node_modules/@rero/sonar-ui/dist/admin/styles.css', | ||
output='admin_ui.%(version)s.css', | ||
npm={ | ||
'@rero/sonar-ui': '~0.0.1' | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,5 @@ | |
por='pt', | ||
rus='ru' | ||
) | ||
|
||
SONAR_APP_ENABLE_CORS = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.