-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from CollectionBuilder/remove-cdm
Remove cdm
- Loading branch information
Showing
21 changed files
with
108 additions
and
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
Documentation for CollectionBuilder, an open source tool for creating digital collection and exhibit websites that are driven by metadata and powered by modern static web technology. | ||
|
||
This documentation covers details for CollectionBuilder-GH, CollectionBuilder-CONTENTdm, and CollectionBuilder-CSV. | ||
This documentation covers details for CollectionBuilder-GH, CollectionBuilder-Sheets, and CollectionBuilder-CSV. | ||
|
||
If you need to get in touch, feel free to email the CollectionBuilder Team (<mailto:[email protected]>) or use the [CollectionBuilder Discussion Forum](https://github.com/orgs/CollectionBuilder/discussions). | ||
|
||
|
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,11 @@ | ||
--- | ||
title: CollectionBuilder-CONTENTdm Deprecated, use CSV! | ||
release: 2023-11-03 | ||
--- | ||
|
||
The CollectionBuilder-CONTENTdm template has been fully deprecated. | ||
CB-CDM has not been actively developed for years, and use cases are better served by the more powerful and flexible [CollectionBuilder-CSV](https://github.com/CollectionBuilder/collectionbuilder-csv). | ||
Details specific to CB-CDM have been removed from the main cb-docs (see [Legacy Docs](/cb-docs/docs/legacy/) for reference). | ||
|
||
*Existing projects using CB-CDM will continue to work fine!* | ||
However, for all new projects please use CollectionBuilder-CSV. |
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
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,65 @@ | ||
--- | ||
title: CONTENTdm Config and Theme options | ||
parent: Legacy Docs | ||
nav_order: 3 | ||
--- | ||
|
||
# _config.yml values | ||
|
||
## Required Settings for CONTENTdm | ||
|
||
### cdm-collection-id: | ||
|
||
- The "collection alias" of your CONTENTdm collection | ||
- The alias is a path assigned by CONTENTdm and can be found in CONTENTdm Admin on the Collections > Profile page, or by looking at the URL of the collection on the web. For example "https://cdm17254.contentdm.oclc.org/digital/collection/ui_ep/search" the collection alias is given after "/collection/", so would be `ui_ep`. | ||
```yaml | ||
cdm-collection-id: boxing | ||
``` | ||
### cdm-url: | ||
- The full url for your public CONTENTdm instance (*with NO trailing slash!*). | ||
- Generally these follow the pattern "https://cdm" + a number + ".contentdm.oclc.org", although custom domains should also work. However, your CDM admin interface url (starting with "server", e.g. https://server12345.contentdm.oclc.org) will not work. | ||
```yaml | ||
cdm-url: https://cdm12345.contentdm.oclc.org | ||
``` | ||
------------------- | ||
# theme.yml values | ||
This section of "_data/theme.yml" configures advanced options such as image and font size, and Bootstrap themes. | ||
This is an optional section—-your site will work just fine without adjusting these variables, but they're available if you'd like the extra options for customization. | ||
## CDM image % for IIIF: | ||
**CDM-Users only**: This is a *CONTENTdm-specific* variable section for adjusting size of images used throughout the site. | ||
CollectionBuilder uses the [IIIF Image API](https://help.oclc.org/Metadata_Services/CONTENTdm/Advanced_website_customization/API_Reference/IIIF_API_reference){:target="_blank" rel="noopener"} to retrieve images using a percentage size option. | ||
The percentage must be 10% or greater. | ||
### image-percentage-large: | ||
- Default `70` | ||
|
||
```yaml | ||
image-percentage-large: 50 | ||
``` | ||
|
||
### image-percentage-medium: | ||
|
||
- Default `40` | ||
|
||
```yaml | ||
image-percentage-medium: 30 | ||
``` | ||
|
||
### image-percentage-small: | ||
|
||
- Default `20` | ||
|
||
```yaml | ||
image-percentage-small: 10 | ||
``` | ||
|
||
{:.alert .alert-green} | ||
**Pro Tip:** If your images are appearing blurry or take too long to load, try adjusting the image-sizing settings. The appropriate percentage depends on the full size of images contained in your CDM repository and may require some experimentation. |
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,9 @@ | ||
--- | ||
title: Legacy Docs | ||
has_children: true | ||
nav_order: 99 | ||
--- | ||
|
||
# Legacy Docs | ||
|
||
This section preserves access to some documentation from deprecated templates. |
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
Oops, something went wrong.