Hi Alan,

if you want an easy an quick way to visualize missing data even for
users with no special rights you can use OAI

Add a context:
        <Context baseurl="curate" name="Metadata Curation - Missing
Metadata">
            <!-- Restrict access to hidden items by default -->
            <Filter ref="defaultFilter" />
            <Set ref="missingDDCSet" />
            <Format ref="oaidc"/>
            <Format ref="xoai"/>
             <Description>
                This is a context for metadata curation.
            </Description>
        </Context>
(this uses the default filter, can be changed to a filter which only
contains items with something wrong)

and then for example a set with all items which do not have a DDC
classification set

        <Filter id="missingDDCFilter">
            <Definition>
                <Not>
                    <Condition>
                        <Custom ref="ddcExistsCondition"/>
                    </Condition>
                </Not>
            </Definition>
        </Filter>

        <Set id="missingDDCSet">
            <Spec>missingDDC</Spec>
            <Name>Items without DDC Classification</Name>
            <Filter ref="missingDDCFilter"/>
        </Set>

         <CustomCondition id="ddcExistsCondition">
<Class>org.dspace.xoai.filter.DSpaceMetadataExistsFilter</Class>
            <Configuration>
                <string name="field">dc.subject.ddc</string>
            </Configuration>
        </CustomCondition>

http://YourURL/oai/curate?verb=ListIdentifiers&metadataPrefix=oai_dc&set=missingDDC
would list all the items matching the condition

Hope this helps

Claudia Jürgen


Am 08.05.2017 um 19:18 schrieb Alan Orth:
Thanks, Mark. Long term that's a good idea.

Claudia, before I sent the message to the mailing list I had a quick go at
editing the requiredmetadata task to make it always return successfully,
but failed. I haven't read/written java in fifteen years so all the try
catch catch throw stuff is really nonsense to me. :)

Cheers,

On Mon, May 8, 2017 at 4:19 PM Mark H. Wood <[email protected]> wrote:

I've filed an issue to consider adding a "report mode" to the task:
https://jira.duraspace.org/browse/DS-3591

--
You received this message because you are subscribed to the Google Groups
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
[email protected]
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist 
ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese 
E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen 
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform 
(mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen 
Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential. It is 
solely intended for the recipient. If you are not the intended recipient of 
this e-mail please contact the sender and delete this message. Thank you. 
Without prejudice of e-mail correspondence, our statements are only legally 
binding when they are made in the conventional written form (with personal 
signature) or when such documents are sent by fax.

--
You received this message because you are subscribed to the Google Groups "DSpace 
Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.

Reply via email to