forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d49bbcc
commit ade1c31
Showing
359 changed files
with
2,897 additions
and
12,276 deletions.
There are no files selected for viewing
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,87 @@ | ||
rest: | ||
ssl: false | ||
host: localhost | ||
port: 8080 | ||
nameSpace: /server | ||
|
||
# Default Language in which the UI will be rendered if the user's browser language is not an active language | ||
defaultLanguage: pt-BR | ||
|
||
# Languages. DSpace Angular holds a message catalog for each of the following languages. | ||
# When set to active, users will be able to switch to the use of this language in the user interface. | ||
languages: | ||
- code: pt-BR | ||
label: Português do Brasil | ||
active: true | ||
- code: en | ||
label: English | ||
active: true | ||
- code: es | ||
label: Español | ||
active: true | ||
- code: fr | ||
label: Français | ||
active: true | ||
# Theme Config | ||
themes: | ||
# Add additional themes here. In the case where multiple themes match a route, the first one | ||
# in this list will get priority. It is advisable to always have a theme that matches | ||
# every route as the last one | ||
# | ||
# # A theme with a handle property will match the community, collection or item with the given | ||
# # handle, and all collections and/or items within it | ||
# - name: custom | ||
# handle: 10673/1233 | ||
# | ||
# # A theme with a regex property will match the route using a regular expression. If it | ||
# # matches the route for a community or collection it will also apply to all collections | ||
# # and/or items within it | ||
# - name: custom | ||
# regex: collections\/e8043bc2.* | ||
# | ||
# # A theme with a uuid property will match the community, collection or item with the given | ||
# # ID, and all collections and/or items within it | ||
# - name: custom | ||
# uuid: 0958c910-2037-42a9-81c7-dca80e3892b4 | ||
# | ||
# # The extends property specifies an ancestor theme (by name). Whenever a themed component is not found | ||
# # in the current theme, its ancestor theme(s) will be checked recursively before falling back to default. | ||
# - name: custom-A | ||
# extends: custom-B | ||
# # Any of the matching properties above can be used | ||
# handle: 10673/34 | ||
# | ||
# - name: custom-B | ||
# extends: custom | ||
# handle: 10673/12 | ||
# | ||
# # A theme with only a name will match every route | ||
# name: custom | ||
# | ||
# # This theme will use the default bootstrap styling for DSpace components | ||
# - name: BASE_THEME_NAME | ||
# | ||
- name: riccps | ||
headTags: | ||
- tagName: link | ||
attributes: | ||
rel: icon | ||
href: assets/dspace/images/favicons/favicon.ico | ||
sizes: any | ||
- tagName: link | ||
attributes: | ||
rel: icon | ||
href: assets/dspace/images/favicons/favicon.svg | ||
type: image/svg+xml | ||
- tagName: link | ||
attributes: | ||
rel: apple-touch-icon | ||
href: assets/dspace/images/favicons/apple-touch-icon.png | ||
- tagName: link | ||
attributes: | ||
rel: manifest | ||
href: assets/dspace/images/favicons/manifest.webmanifest | ||
|
||
info: | ||
enableEndUserAgreement: false | ||
enablePrivacyStatement: false |
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 |
---|---|---|
@@ -1,5 +1,24 @@ | ||
rest: | ||
ssl: true | ||
host: demo.dspace.org | ||
port: 443 | ||
ssl: false | ||
host: localhost | ||
port: 8080 | ||
nameSpace: /server | ||
|
||
# Default Language in which the UI will be rendered if the user's browser language is not an active language | ||
defaultLanguage: pt-BR | ||
|
||
# Languages. DSpace Angular holds a message catalog for each of the following languages. | ||
# When set to active, users will be able to switch to the use of this language in the user interface. | ||
languages: | ||
- code: pt-BR | ||
label: Português do Brasil | ||
active: true | ||
- code: en | ||
label: English | ||
active: true | ||
- code: es | ||
label: Español | ||
active: true | ||
- code: fr | ||
label: Français | ||
active: 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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
header { | ||
background-color: var(--ds-header-bg); | ||
color: white !important; | ||
} | ||
|
||
.navbar-brand img { | ||
|
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
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
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/riccps/app/admin/admin-sidebar/admin-sidebar.component.ts
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,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { AdminSidebarComponent as BaseComponent } from '../../../../../app/admin/admin-sidebar/admin-sidebar.component'; | ||
|
||
/** | ||
* Component representing the admin sidebar | ||
*/ | ||
@Component({ | ||
selector: 'ds-admin-sidebar', | ||
// templateUrl: './admin-sidebar.component.html', | ||
templateUrl: '../../../../../app/admin/admin-sidebar/admin-sidebar.component.html', | ||
// styleUrls: ['./admin-sidebar.component.scss'] | ||
styleUrls: ['../../../../../app/admin/admin-sidebar/admin-sidebar.component.scss'] | ||
}) | ||
export class AdminSidebarComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
13 changes: 13 additions & 0 deletions
13
src/themes/riccps/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.ts
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,13 @@ | ||
import { EditBitstreamPageComponent as BaseComponent } from '../../../../../app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component'; | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'ds-edit-bitstream-page', | ||
// styleUrls: ['./edit-bitstream-page.component.scss'], | ||
styleUrls: ['../../../../../app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.scss'], | ||
// templateUrl: './edit-bitstream-page.component.html', | ||
templateUrl: '../../../../../app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.html', | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class EditBitstreamPageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/riccps/app/breadcrumbs/breadcrumbs.component.ts
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,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { BreadcrumbsComponent as BaseComponent } from '../../../../app/breadcrumbs/breadcrumbs.component'; | ||
|
||
/** | ||
* Component representing the breadcrumbs of a page | ||
*/ | ||
@Component({ | ||
selector: 'ds-breadcrumbs', | ||
// templateUrl: './breadcrumbs.component.html', | ||
templateUrl: '../../../../app/breadcrumbs/breadcrumbs.component.html', | ||
// styleUrls: ['./breadcrumbs.component.scss'] | ||
styleUrls: ['../../../../app/breadcrumbs/breadcrumbs.component.scss'] | ||
}) | ||
export class BreadcrumbsComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
src/themes/riccps/app/browse-by/browse-by-date-page/browse-by-date-page.component.ts
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,17 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByDatePageComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-date-page/browse-by-date-page.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-date-page', | ||
// styleUrls: ['./browse-by-date-page.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.scss'], | ||
// templateUrl: './browse-by-date-page.component.html' | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.html' | ||
}) | ||
|
||
/** | ||
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided | ||
*/ | ||
|
||
export class BrowseByDatePageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
src/themes/riccps/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts
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,17 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByMetadataPageComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-metadata-page', | ||
// styleUrls: ['./browse-by-metadata-page.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.scss'], | ||
// templateUrl: './browse-by-metadata-page.component.html' | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.html' | ||
}) | ||
|
||
/** | ||
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided | ||
*/ | ||
|
||
export class BrowseByMetadataPageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/riccps/app/browse-by/browse-by-switcher/browse-by-switcher.component.ts
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,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseBySwitcherComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-switcher/browse-by-switcher.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-switcher', | ||
// styleUrls: ['./browse-by-switcher.component.scss'], | ||
// templateUrl: './browse-by-switcher.component.html' | ||
templateUrl: '../../../../../app/browse-by/browse-by-switcher/browse-by-switcher.component.html' | ||
}) | ||
|
||
/** | ||
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided | ||
*/ | ||
export class BrowseBySwitcherComponent extends BaseComponent {} | ||
|
Empty file.
Empty file.
15 changes: 15 additions & 0 deletions
15
src/themes/riccps/app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.ts
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,15 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByTaxonomyPageComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-taxonomy-page', | ||
// templateUrl: './browse-by-taxonomy-page.component.html', | ||
templateUrl: '../../../../../app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.html', | ||
// styleUrls: ['./browse-by-taxonomy-page.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.scss'], | ||
}) | ||
/** | ||
* Component for browsing items by metadata in a hierarchical controlled vocabulary | ||
*/ | ||
export class BrowseByTaxonomyPageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
src/themes/riccps/app/browse-by/browse-by-title-page/browse-by-title-page.component.ts
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,17 @@ | ||
import { Component } from '@angular/core'; | ||
import { BrowseByTitlePageComponent as BaseComponent } from '../../../../../app/browse-by/browse-by-title-page/browse-by-title-page.component'; | ||
|
||
@Component({ | ||
selector: 'ds-browse-by-title-page', | ||
// styleUrls: ['./browse-by-title-page.component.scss'], | ||
styleUrls: ['../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.scss'], | ||
// templateUrl: './browse-by-title-page.component.html' | ||
templateUrl: '../../../../../app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.html' | ||
}) | ||
|
||
/** | ||
* Component for determining what Browse-By component to use depending on the metadata (browse ID) provided | ||
*/ | ||
|
||
export class BrowseByTitlePageComponent extends BaseComponent { | ||
} |
Empty file.
Empty file.
Oops, something went wrong.