mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2017-01-10 and add some <!--more--> tags
This commit is contained in:
@ -17,6 +17,8 @@ tags = ["Notes"]
|
||||
0000-0002-6115-0956||0000-0002-3812-8793||0000-0001-7462-405X
|
||||
```
|
||||
|
||||
<!--more-->
|
||||
|
||||
- Hmm, with the `dc.contributor.author` column removed, DSpace doesn't detect any changes
|
||||
- With a blank `dc.contributor.author` column, DSpace wants to remove all non-ORCID authors and add the new ORCID authors
|
||||
- I added the [disclaimer text](https://github.com/ilri/DSpace/issues/234) to the About page, then added a footer link to the disclaimer's ID, but there is a Bootstrap issue that causes the page content to disappear when using in-page anchors: https://github.com/twbs/bootstrap/issues/1768
|
||||
|
@ -11,6 +11,8 @@ tags = ["Notes"]
|
||||
|
||||

|
||||
|
||||
<!--more-->
|
||||
|
||||
## 2016-11-02
|
||||
|
||||
- Migrate DSpace Test to DSpace 5.5 ([notes](https://gist.github.com/alanorth/61013895c6efe7095d7f81000953d1cf))
|
||||
|
@ -22,6 +22,8 @@ tags = ["Notes"]
|
||||
- I've raised a ticket with Atmire to ask
|
||||
- Another worrying error from dspace.log is:
|
||||
|
||||
<!--more-->
|
||||
|
||||
```
|
||||
org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.NoSuchMethodError: com.atmire.statistics.generator.DSpaceObjectDatasetGenerator.toDatasetQuery(Lorg/dspace/core/Context;)Lcom/atmire/statistics/content/DatasetQuery;
|
||||
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:972)
|
||||
|
@ -103,3 +103,19 @@ Caused by: java.net.SocketException: Broken pipe (Write failed)
|
||||
|
||||
- I tried to clean up the duplicate mappings by exporting the item's metadata to CSV, editing, and re-importing, but DSpace said "no changes were detected"
|
||||
- I've asked on the dspace-tech mailing list to see if anyone can help
|
||||
- I found an old post on the mailing list discussing a similar issue, and listing some SQL commands that might help
|
||||
- For example, this shows 186 mappings for the item, the first three of which are real:
|
||||
|
||||
```
|
||||
dspace=# select * from collection2item where item_id = '80596';
|
||||
```
|
||||
|
||||
- Then I deleted the others:
|
||||
|
||||
```
|
||||
dspace=# delete from collection2item where item_id = '80596' and id not in (90792, 90806, 90807);
|
||||
```
|
||||
|
||||
- And in the item view it now shows the correct mappings
|
||||
- I will have to ask the DSpace people if this is a valid approach
|
||||
- Finish looking at the Journal Title corrections of the top 500 Journal Titles so we can make a controlled vocabulary from it
|
||||
|
Reference in New Issue
Block a user