Ondřej Košarko
Ondřej Košarko
- when I confirm an email and the system send the token, the email field should become inactive, or I should be on a page saying "we've sent you an...
Tested yesterday; but no email received. There's no trace of an email being sent in dspace logs... (Note: from the mail server logs it seems that email was actually sent,...
I'll add multiple comments regarding the missing fields `local.files.*` https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-api/src/main/java/org/dspace/content/Item.java#L1157-L1158 https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-xmlui/src/main/webapp/themes/UFAL/lib/xsl/aspect/artifactbrowser/item-list.xsl#L157 https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-xmlui/src/main/webapp/themes/UFAL/lib/xsl/aspect/artifactbrowser/item-list.xsl#L164 https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-xmlui/src/main/webapp/themes/UFALHome/lib/xsl/page-structure.xsl#L415-L432  I thought this was also used in one of the oai crosswalks, but that doesn't seem...
`local.dataProvider` https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace/config/input-forms.xml#L504 ``` dspace=# select text_value from metadatavalue where metadata_field_id in (select metadata_field_id from metadatafieldregistry where element like '%dataProvider%'); ```  the production system has these: ``` diff --git a/dspace/config/crosswalks/oai/xoai.xml...
`local.genre` **not used** (by us) no clue where it comes from edit: I guess we can drop it. But maybe some other installation uses it. What does the migration tool...
`local.additional.metadata` this is a catchall field for the metadata we got when importing LRT and which we couldn't fit anywhere else
`local.refbox.format` https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace/config/crosswalks/oai/metadataFormats/html.xsl#L31 this is filled in on imported items (nfa collection) https://github.com/ufal/lindat-repository-imports/blob/ed68ed6cead14b1ac8697381afcf5c96dd7c8bba/NFA/transformations/transform.xslt#L192-L195 and changes what's displayed in the refbox (the yellow-blue box in item view). Compare http://hdl.handle.net/11372/LRT-5118 with http://hdl.handle.net/20.500.12801/3900058-05 (the...
`local.bitstream.file` is used for the preview (archive, plaintext...) feature. See around https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-api/src/main/java/cz/cuni/mff/ufal/curation/ProcessBitstreams.java#L218 https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-xmlui/src/main/java/org/dspace/app/xmlui/objectmanager/ItemAdapter.java#L1155 Note the ItemAdapter spits out anything in `local.bitstream.*` (ie. `info` too); this https://github.com/ufal/clarin-dspace/blob/8cf3758e9f12c18a2b8a20c13d63757d8ee2d52e/dspace-xmlui/src/main/webapp/themes/UFAL/lib/xsl/aspect/artifactbrowser/item-view.xsl#L976 displays the info in...
> Thank you for the answer, but probably I'm missing something, because I still don't understand where it is used. I could see it is used in the discovery.xml, which...
@TomazErjavec, you are probably right. Not sure why the behavior is different between browsers. I thought there was some sort of onError handler that hides broken images, but that doesn't...