diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8247820 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM andreptb/tomcat:6-jdk6 +# Install ANT +ENV ANT_VERSION=1.9.10 +ENV ANT_HOME=/opt/ant +WORKDIR /tmp +RUN mkdir /opt +RUN wget http://archive.apache.org/dist/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz \ + && tar -zvxf apache-ant-${ANT_VERSION}-bin.tar.gz -C /opt/ \ + && ln -s /opt/apache-ant-${ANT_VERSION} /opt/ant \ + && rm -f apache-ant-${ANT_VERSION}-bin.tar.gz \ + && rm -f apache-ant-${ANT_VERSION}-bin.tar.gz.md5 + +# add executables to path +ENV PATH ${PATH}:/opt/ant/bin +COPY . MINT2 +RUN cd MINT2 && \ + ant -Dappname=MINT2 -Denv.TOMCAT_HOME=${CATALINA_HOME} && \ + mv work/dist/MINT2 /usr/local/tomcat/webapps +RUN chgrp -R 0 "$CATALINA_HOME" && chgrp -R 0 ${ANT_HOME} +RUN chmod -R g=u "$CATALINA_HOME" && chmod -R g=u ${ANT_HOME} +WORKDIR $CATALINA_HOME +USER 1001 +CMD ["catalina.sh", "run"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..6137cd8 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Usage +- Build the dockerfile +- Run with +``` +docker run -dt \ + -p 8080:8080 \ + -e "CATALINA_OPTS=-DPOSTGRES_HOST= -DPOSTGRES_PORT= -DPOSTGRES_DATABASE= -DPOSTGRES_USERNAME= -DPOSTGRES_PASSWORD=" \ + +``` +## Updating the XSD +To update the XSD, update the schema located in schemas/VIAA. Once updated, the docker image must be rebuilt with the above command and pushed again to OS to deploy the new version + +After the new image was deployed, MINT must register this new XSD. You can do this by logging in with a user with enough rights and clicking on 'Manage XSDs' -> 'Setup new schema' -> filling in a name and choosing the XSD that you updated in the previous step. + +*Note:* All mappings are tied to an XSD. If a new XSD is added, any mappings are still tied to the older version of the XSD and migrating a mapping to a new version is not possible, thus the mapping must be made again from scratch. diff --git a/WEB-INF/src/java/gr/ntua/ivml/mint/concurrent/Validator.java b/WEB-INF/src/java/gr/ntua/ivml/mint/concurrent/Validator.java index eb3b5f1..9b66e2a 100644 --- a/WEB-INF/src/java/gr/ntua/ivml/mint/concurrent/Validator.java +++ b/WEB-INF/src/java/gr/ntua/ivml/mint/concurrent/Validator.java @@ -5,6 +5,7 @@ import gr.ntua.ivml.mint.persistent.Dataset; import gr.ntua.ivml.mint.persistent.Item; import gr.ntua.ivml.mint.persistent.XmlSchema; +import gr.ntua.ivml.mint.persistent.XpathHolder; import gr.ntua.ivml.mint.util.ApplyI; import gr.ntua.ivml.mint.util.StringUtils; @@ -15,14 +16,21 @@ import java.io.InputStream; import java.io.StringReader; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.validation.Schema; import javax.xml.validation.ValidatorHandler; +import javax.xml.xpath.XPath; +import javax.xml.xpath.XPathConstants; +import javax.xml.xpath.XPathExpression; +import javax.xml.xpath.XPathFactory; import org.apache.commons.compress.archivers.tar.TarArchiveEntry; import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream; import org.apache.commons.compress.compressors.gzip.GzipCompressorOutputStream; import org.apache.commons.io.IOUtils; import org.apache.log4j.Logger; +import org.w3c.dom.Document; import org.xml.sax.ErrorHandler; import org.xml.sax.InputSource; import org.xml.sax.SAXException; @@ -284,8 +292,23 @@ private void collectValid( Item item ) { if(!itemXml.startsWith("\n" + item.getXml(); IOUtils.write(itemXml, baos, "UTF-8" ); baos.close(); - - write( baos.toByteArray(), datasetSubdir(dataset)+"/Item_" + item.getDbID() + ".xml", tos ); + // TODO: Change all '/Item_X' to own field (dc_identifier_localid) + String filename = "Item_" + item.getDbID(); + try { + DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); + DocumentBuilder builder = factory.newDocumentBuilder(); + InputSource is = new InputSource(); + is.setCharacterStream(new StringReader(itemXml)); + Document doc = builder.parse(is); + XPathFactory xPathfactory = XPathFactory.newInstance(); + XPath xpath = xPathfactory.newXPath(); + XPathExpression expr = xpath.compile("/VIAA/dc_identifier_localid/text()"); + filename = expr.evaluate(doc, XPathConstants.STRING).toString(); + } + catch (Exception e) { + // Huehue an empty catch! + } + write( baos.toByteArray(), datasetSubdir(dataset) + "/" +filename + ".xml", tos ); } catch( Exception e ) { log.error( "Failed to collect valid item ", e ); } diff --git a/WEB-INF/src/java/hibernate.properties b/WEB-INF/src/java/hibernate.properties index baf9d0e..cfdda31 100644 --- a/WEB-INF/src/java/hibernate.properties +++ b/WEB-INF/src/java/hibernate.properties @@ -8,9 +8,9 @@ hibernate.dialect org.hibernate.dialect.PostgreSQLDialect #hibernate.connection.password db2 hibernate.connection.driver_class org.postgresql.Driver -hibernate.connection.url jdbc:postgresql://localhost:5432/mint2 -hibernate.connection.username mint2 -hibernate.connection.password mint2 +hibernate.connection.url jdbc:postgresql://${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE} +hibernate.connection.username ${POSTGRES_USERNAME} +hibernate.connection.password ${POSTGRES_PASSWORD} hibernate.connection.provider_class org.hibernate.connection.C3P0ConnectionProvider diff --git a/build.xml b/build.xml index 28f96ae..c538ce0 100644 --- a/build.xml +++ b/build.xml @@ -85,7 +85,6 @@ - appname=${appname} deploy_target=${deploy_target} build-time=${NOW} diff --git a/openshift/Jenkinsfile b/openshift/Jenkinsfile new file mode 100644 index 0000000..9da8b9a --- /dev/null +++ b/openshift/Jenkinsfile @@ -0,0 +1,201 @@ +pipeline { + agent { + kubernetes { + defaultContainer 'default' + yaml """\ + apiVersion: v1 + kind: Pod + metadata: + labels: + component: builder + lang: java6 + app: mint2 + spec: + containers: + - name: default + image: ${getImageFromDockerfile()} + command: + - cat + tty: true + - name: oc + image: image-registry.openshift-image-registry.svc:5000/ci-cd/py:3.7 + command: + - cat + tty: true + imagePullPolicy: Always + """.stripIndent() + } + } + options { + timeout(time: 45, unit: 'MINUTES') + disableConcurrentBuilds() + } + environment { + OC_PROJECT = 'etl' + BASE_IMG = "${getImageFromDockerfile()}" + BASE_IMG_NAME = "${getBaseImageName()}" + OC_URL = 'https://c113-e.private.eu-de.containers.cloud.ibm.com:30227' + JIRA_URL = 'meemoo.atlassian.net' + APP_NAME = 'mint2' + } + + stages { + stage('Calculate extra ENV vars') { + steps { + container('oc') { + script { + env.GIT_SHORT_COMMIT = sh(script: "printf \$(git rev-parse --short ${GIT_COMMIT})", returnStdout: true) + env.IMAGE_TAG = sh(script: 'git describe --tags || echo latest', returnStdout: true) + // The name used for the build config based on the image tag + // Replace '.' with '_' as '.' is not allowed. + env.BUILD_CONFIG_NAME = sh(script: 'echo "${IMAGE_TAG}" | sed -r "s/\\./\\-/g"', returnStdout: true) + } + } + } + } + stage('Test code') { + steps { + sh 'echo no tests sorry' + } + } + stage('Build code') { + when { + not { + buildingTag() + } + } + steps { + container('oc') { + script { + sh '''#!/bin/bash + oc project $OC_PROJECT + oc import-image $BASE_IMG --confirm + oc set image-lookup $BASE_IMG_NAME + oc new-build -l ref=$BRANCH_NAME --strategy=docker --name $APP_NAME-$GIT_SHORT_COMMIT --to $APP_NAME:$GIT_SHORT_COMMIT --binary --context-dir="" || echo "Probably already exists, start new build" + sleep 3 + oc annotate --overwrite buildconfig/$APP_NAME-$GIT_SHORT_COMMIT ref=$BRANCH_NAME shortcommit=$GIT_SHORT_COMMIT + oc start-build $APP_NAME-$GIT_SHORT_COMMIT --from-dir=. --wait=true + ''' + } + } + } + } + stage('Deploy INT') { + when { + anyOf { + changeRequest target: 'master' + changeRequest target: 'main' + } + } + steps { + container('oc') { + tagNewImage('int') + } + } + post { + always { + script { + env.BRANCH_NAME = env.CHANGE_BRANCH + } + jiraSendDeploymentInfo site: "${JIRA_URL}", environmentId: 'int', environmentName: 'int', environmentType: 'testing' + } + } + } + stage('Deploy QAS') { + when { + anyOf { branch 'master'; branch 'main' } + } + steps { + container('oc') { + tagNewImage('qas') + } + } + post { + always { + jiraSendDeploymentInfo site: "${JIRA_URL}", environmentId: 'qas', environmentName: 'qas', environmentType: 'staging' + } + } + } + stage('Deploy PRD') { + when { + buildingTag() + } + steps { + container('oc') { + tagNewImage('prd') + } + } + post { + always { + script { + previous_tag = sh(script: 'git describe --abbrev=0 --tags `git rev-list --tags --skip=1 --max-count=1`', returnStdout: true).trim() + echo getAllCommitsBetweenTags(previous_tag, env.TAG_NAME) + } + jiraSendDeploymentInfo site: "${JIRA_URL}", environmentId: 'prd', environmentName: 'prd', environmentType: 'production' + } + } + } + } + post { + success { + script { + if (env.BRANCH_NAME.startsWith('PR')) { + setGitHubBuildStatus('Build', 'SUCCESS') + } + } + } + failure { + script { + if (env.BRANCH_NAME.startsWith('PR')) { + setGitHubBuildStatus('Build', 'FAILURE') + } + } + } + always { + jiraSendBuildInfo site: "${JIRA_URL}" + container('default') { + // Archive tets results + script { + if (fileExists('./tests/test_results.xml')) { + junit 'tests/test_results.xml' + } else { + echo 'No test results found' + } + } + } + } + } +} + +void getImageFromDockerfile() { + return 'andreptb/tomcat:6-jdk6' +} +void getBaseImageName() { + return getImageFromDockerfile().split(':')[0] +} + +void setGitHubBuildStatus(String message, String state) { + step([ + $class: 'GitHubCommitStatusSetter', + reposSource: [$class: 'ManuallyEnteredRepositorySource', url: "${GIT_URL}"], + commitShaSource: [$class: 'ManuallyEnteredShaSource', sha: "${GIT_COMMIT}"], + errorHandlers: [[$class: 'ChangingBuildStatusErrorHandler', result: 'UNSTABLE']], + statusResultSource: [ $class: 'ConditionalStatusResultSource', results: [[$class: 'AnyBuildResult', message: message, state: state]] ] + ]) +} + +void getAllCommitsBetweenTags(String from, String to) { + commit_messages = sh(script: "git log ${from}...${to} --merges --format=%b", returnStdout: true) + + return commit_messages +} + +void tagNewImage(String environment) { + echo "Deploying to ${environment}" + sh """#!/bin/bash + oc project $OC_PROJECT + oc tag $APP_NAME:$GIT_SHORT_COMMIT $APP_NAME:${environment} + # Check the status of the rollout + oc rollout status deployment/$APP_NAME-${environment} --watch=true + """ +} diff --git a/openshift/Makefile b/openshift/Makefile new file mode 100644 index 0000000..b768510 --- /dev/null +++ b/openshift/Makefile @@ -0,0 +1,7 @@ +.ONESHELL: +SHELL = /bin/bash + +.PHONY: all test + +test: + echo Testing not implemented \ No newline at end of file diff --git a/openshift/mint2-multibranch-pipeline.xml b/openshift/mint2-multibranch-pipeline.xml new file mode 100644 index 0000000..01be224 --- /dev/null +++ b/openshift/mint2-multibranch-pipeline.xml @@ -0,0 +1,94 @@ + + + + Job for mint2 + + + + + + + + + + + + + + + false + + + + + + + true + -1 + -1 + + + false + + + + + 4aaeaf67-f71b-4c9f-8936-806fdf931f18 + https://api.github.com + meemoo-ci + viaacode + mint2 + https://github.com/viaacode/mint2 + + + 3 + + + 2 + + + + master v*.*.* PR* + + + + + + + + + + + + + + + + + master + false + + + + + -1 + 172800000 + + + true + false + + + + + + + + + + + + + openshift/Jenkinsfile + + \ No newline at end of file diff --git a/openshift/mint2-template.yml b/openshift/mint2-template.yml new file mode 100644 index 0000000..aaeca46 --- /dev/null +++ b/openshift/mint2-template.yml @@ -0,0 +1,111 @@ +apiVersion: template.openshift.io/v1 +kind: Template +metadata: + annotations: + tags: "exec" + name: "mint2" + labels: + app: "mint2" +objects: + - kind: Service + apiVersion: v1 + metadata: + name: "mint2-${env}" + namespace: "etl" + labels: + app: "mint2" + app.kubernetes.io/component: "mint2-${env}" + app.kubernetes.io/instance: "mint2-${env}" + app.kubernetes.io/name: "mint2" + app.kubernetes.io/part-of: "mint2" + app.openshift.io/runtime: "mint2" + app.openshift.io/runtime-version: "${env}" + env: ${env} + spec: + ports: + - protocol: TCP + port: ${{svc_port}} + targetPort: ${{svc_port}} + name: http + selector: + app: "mint2" + env: ${env} + clusterIP: + type: ClusterIP + sessionAffinity: None + status: + loadBalancer: {} + - kind: Deployment + apiVersion: apps/v1 + metadata: + annotations: + alpha.image.policy.openshift.io/resolve-names: "*" + name: "mint2-${env}" + namespace: "etl" + labels: + app: "mint2" + app.kubernetes.io/component: "mint2-${env}" + app.kubernetes.io/instance: "mint2-${env}" + app.kubernetes.io/name: "mint2" + app.kubernetes.io/part-of: "mint2" + app.openshift.io/runtime: "mint2" + app.openshift.io/runtime-version: ${env} + env: ${env} + spec: + replicas: 0 + selector: + matchLabels: + app: "mint2" + env: ${env} + template: + metadata: + creationTimestamp: null + labels: + app: "mint2" + deploymentconfig: "mint2-${env}" + env: ${env} + annotations: + openshift.io/generated-by: OpenShiftWebConsole + spec: + containers: + - name: "mint2-${env}" + terminationMessagePath: /dev/termination-log + resources: + limits: + cpu: '${cpu_limit}m' + memory: '${memory_limit}Mi' + requests: + cpu: '${cpu_requested}m' + memory: '${memory_requested}Mi' + ports: + - containerPort: ${{svc_port}} + protocol: TCP + imagePullPolicy: IfNotPresent + terminationMessagePolicy: File + image: >- + image-registry.openshift-image-registry.svc:5000/etl/mint2:${env} + restartPolicy: Always + terminationGracePeriodSeconds: 30 + dnsPolicy: ClusterFirst + securityContext: {} + schedulerName: default-scheduler + strategy: + type: RollingUpdate + rollingUpdate: + maxUnavailable: 25% + maxSurge: 25% + revisionHistoryLimit: 10 + progressDeadlineSeconds: 600 +parameters: + - name: env + value: "env" + - name: "memory_requested" + value: "128" + - name: "memory_limit" + value: "1024" + - name: "cpu_requested" + value: "100" + - name: "cpu_limit" + value: "900" + - name: "svc_port" + value: "8080" \ No newline at end of file diff --git a/openshift/mint2.yaml b/openshift/mint2.yaml new file mode 100644 index 0000000..4f9f204 --- /dev/null +++ b/openshift/mint2.yaml @@ -0,0 +1,153 @@ +apiVersion: v1 +kind: Template +metadata: + creationTimestamp: null + name: mint2 +objects: +- apiVersion: v1 + kind: BuildConfig + metadata: + annotations: + openshift.io/generated-by: OpenShiftNewApp + creationTimestamp: null + labels: + app: mint2 + name: mint2 + spec: + nodeSelector: null + output: + to: + kind: ImageStreamTag + name: mint2:latest + postCommit: {} + resources: {} + runPolicy: Serial + source: + git: + ref: master + uri: https://github.com/viaacode/Mint2.git + type: Git + strategy: + dockerStrategy: + from: + kind: ImageStreamTag + name: tomcat:6-jdk6 + type: Docker + triggers: + - github: + secret: Kg3-vnu4H7tMAugjt-Db + type: GitHub + - generic: + secret: OKFgBe9BF9CZv6HMYFNb + type: Generic + - type: ConfigChange + - imageChange: {} + type: ImageChange + status: + lastVersion: 0 +- apiVersion: v1 + kind: ImageStream + metadata: + annotations: + openshift.io/generated-by: OpenShiftNewApp + creationTimestamp: null + generation: 1 + labels: + app: mint2 + name: mint2 + spec: + tags: + - annotations: null + from: + kind: DockerImage + name: 172.30.130.49:5000/tools-and-services/mint2:latest + generation: null + importPolicy: {} + name: latest + status: + dockerImageRepository: "" +- apiVersion: v1 + kind: Service + metadata: + annotations: + openshift.io/generated-by: OpenShiftNewApp + creationTimestamp: null + labels: + app: mint2 + name: mint2 + spec: + ports: + - name: 8080-tcp + port: 8080 + protocol: TCP + targetPort: 8080 + selector: + app: mint2 + deploymentconfig: mint2 + sessionAffinity: None + type: ClusterIP + status: + loadBalancer: {} +- apiVersion: v1 + kind: DeploymentConfig + metadata: + annotations: + openshift.io/generated-by: OpenShiftNewApp + creationTimestamp: null + generation: 1 + labels: + app: mint2 + name: mint2 + spec: + replicas: 1 + selector: + app: mint2 + deploymentconfig: mint2 + strategy: + resources: {} + rollingParams: + intervalSeconds: 1 + maxSurge: 25% + maxUnavailable: 25% + timeoutSeconds: 600 + updatePeriodSeconds: 1 + type: Rolling + template: + metadata: + annotations: + openshift.io/generated-by: OpenShiftNewApp + creationTimestamp: null + labels: + app: mint2 + deploymentconfig: mint2 + spec: + containers: + - env: + - name: CATALINA_OPTS + value: -DPOSTGRES_HOST=do-qas-dbs-02.do.viaa.be -DPOSTGRES_PORT=5432 -DPOSTGRES_DATABASE=mint2_dieter + -DPOSTGRES_USERNAME=**** -DPOSTGRES_PASSWORD=********* -Xms512m -Xmx1024m + image: '' + imagePullPolicy: Always + name: mint2 + ports: + - containerPort: 8080 + protocol: TCP + resources: {} + terminationMessagePath: /dev/termination-log + dnsPolicy: ClusterFirst + restartPolicy: Always + securityContext: {} + terminationGracePeriodSeconds: 30 + test: false + triggers: + - type: ConfigChange + - imageChangeParams: + automatic: true + containerNames: + - mint2 + from: + kind: ImageStreamTag + name: mint2:latest + type: ImageChange + status: {} + diff --git a/schemas/DPLA v3 BN/DC.xsd b/schemas/DPLA v3 BN/DC.xsd deleted file mode 100644 index b10e17e..0000000 --- a/schemas/DPLA v3 BN/DC.xsd +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - Information about rights held in and over source resource. Typically, rights information includes a statement about various property rights associated with source resource, including intellectual property rights. - - - - - - - Entity responsible for making contributions to source resource. - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: 1995-1996 Boston, MA Type: String - - - - - - Entity primarily responsible for making source resource. - - - - - - Point or period of time associated with an event in lifecycle of source resource. - - - - - - Includes but is not limited to: an abstract, a table of contents, or a free-text account of source resource. - - - - - - - ID of source resource within a given context. - - - - - - File format, physical medium or dimensions of source resource. - - - - - - Language(s) of source resource. - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library's Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - Topic of source resource. - - - - - - Name given to source resource. - - - - - - Nature or genre of source resource. - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/DCMI.xsd b/schemas/DPLA v3 BN/DCMI.xsd deleted file mode 100644 index 63d5194..0000000 --- a/schemas/DPLA v3 BN/DCMI.xsd +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/DCTERMS.xsd b/schemas/DPLA v3 BN/DCTERMS.xsd deleted file mode 100644 index 65a26f9..0000000 --- a/schemas/DPLA v3 BN/DCTERMS.xsd +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - - - - - - - URI of collection or aggregation of which source resource is a part. - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart's Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of source resource. - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Entity responsible for making the resource available, typically the publisher of a text. - Oxford University Press - Type: String - - - - - - - - Spatial characteristics of source resource. - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer's Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - Size or duration of source resource. - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/DPLA-MAIN.xsd b/schemas/DPLA v3 BN/DPLA-MAIN.xsd deleted file mode 100644 index 4d4fed9..0000000 --- a/schemas/DPLA v3 BN/DPLA-MAIN.xsd +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - Digital Public Library of America, Metadata application profile ingestion schema, version 3 - - - - - - - - - - - - - - - - The RDF root element declaration - - - Schematron validation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class is a subclass of "edm:ProvidedCHO," which comprises the source resources [in EDM called "cultural heritage objects"] about which DPLA collects descriptions. It is here that attributes of source resources are located, not the digital representations of them. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Name of a city (literal). - - - - - - ISO 3166-2 code for a U.S. state or territory. - - - - - - Complete original record. - - - - - - Name of a U.S. county (literal). - - - - - - Name of a region, e.g., "Upstate New York". - - - - - - ISO 3166-1 code for a country. - - - - diff --git a/schemas/DPLA v3 BN/DPLA.xml b/schemas/DPLA v3 BN/DPLA.xml deleted file mode 100644 index 476c68b..0000000 --- a/schemas/DPLA v3 BN/DPLA.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - dc:contributor - dc:creator - dc:date - dc:description - dcterms:extent - dc:identifier - dc:language - - dc:format - dcterms:spatial - dcterms:publisher - dc:rights - dc:subject - dcterms:temporal - dc:title - dc:type - - diff --git a/schemas/DPLA v3 BN/DPLA.xsd b/schemas/DPLA v3 BN/DPLA.xsd deleted file mode 100644 index 36a0faf..0000000 --- a/schemas/DPLA v3 BN/DPLA.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - Digital Public Library of America, Metadata application profile ingestion schema, version 3 - - - - - - diff --git a/schemas/DPLA v3 BN/DPLA.xsd.conf b/schemas/DPLA v3 BN/DPLA.xsd.conf deleted file mode 100644 index 43cd7d4..0000000 --- a/schemas/DPLA v3 BN/DPLA.xsd.conf +++ /dev/null @@ -1,78 +0,0 @@ -{ - "version": "1.0", - "xsd": "DPLA.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "dpla": "http://dp.la/about/map/", - "edm": "http://www.europeana.eu/schemas/edm/", - "dcmi": "http://purl.org/dc/dcmitype/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "gn": "http://www.geonames.org/ontology#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "edmfp": "http://www.europeanafashion.eu/edmfp/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - - "item": { - "element": "RDF", - "prefix": "dpla" - }, - - "customization": "dplaBN.groovy", - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about" - ], - - - "navigation": [ - { - "name": "SourceResource", - "element": "SourceResource" - }, - { - "name": "Collection", - "element": "Collection" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "Agent", - "element": "Agent" - } - - ], - "preview": [{ - "jsp":"rdfview", - "label":"RDF" - }, - { - "xsl": "dpla2html_map.xsl", - "label": "DPLA preview", - "output": "html" - } - ] - -} diff --git a/schemas/DPLA v3 BN/EDM-COMMON-MAIN.xsd b/schemas/DPLA v3 BN/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 4785949..0000000 --- a/schemas/DPLA v3 BN/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,558 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - Date timespan started. - - - - - - This is the name of the country in which the Provider is based or - "Europe" in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A literal indicating the name of the collection - - - - - - Name of the state in which the source resource is held. - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - Date timespan finished. - - - - - - The EDM Content Type - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of "meetings" between people - and other things in space-time. Therefore we name this relationship as the things - the object "has met" in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the "Objects" facet in Getty's Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of "Le Temps" contributed by BNF may have as view a text of some parts of - the issue - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie "A Clockwork Orange" incorporates - Rossini's symphony from "La Gazza Ladra" in its original soundtrack. "E.A.Poe, The - Raven (poem)" is incorporated in "Emerson Lake & Palmers Tales of Mystery - (music)" which is incorporated in "Concert Recording 1973 (vinyl)". - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - An unambiguous URL reference to the digital object on the provider's web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider's web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - An unambiguous URL reference to the digital object on the provider's web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider's website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole - such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider's web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - - A reference to the Europeana cached thumbnail. - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg's edition realizes the Bible - - - - - - - Information about copyright of the digital object as specified by - isShownBy and isShownAt.The value in this element is a URL constructed according to - the specifications in the "Specifications of the controlled values for edm:rights". - The URLs are constructed by adding a code indicating the copyright status of an - object to the domain name where that status is defined. The domain will be either - the europeana.eu domain or the creativecommons.org domain. For users of Europeana.eu - this copyright information also applies to the preview specified in edm:object. In - order to allow organisations to manage the provision of this element, edm:rights has - an obligation level of "recommended" in this version of EDM. It will be changed to - "Mandatory" in a later version. - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is "TRUE" to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - A flag indicating that the specific Proxy can be used as a europeanaProxy - - - - - diff --git a/schemas/DPLA v3 BN/EDM.xsd b/schemas/DPLA v3 BN/EDM.xsd deleted file mode 100644 index 1613fb9..0000000 --- a/schemas/DPLA v3 BN/EDM.xsd +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 - 02.02.02, 1503 - 1506 (the time span of the creation of Mona Lisa) - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - The element dcterms:isPartOf should not have a literal value in the edm:WebResource context - with id: . Use an rdf:resource instead. - - - - - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/FOAF.xsd b/schemas/DPLA v3 BN/FOAF.xsd deleted file mode 100644 index de1276d..0000000 --- a/schemas/DPLA v3 BN/FOAF.xsd +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - Europeana representation of Foaf elements - - - - - - - - diff --git a/schemas/DPLA v3 BN/FP.xsd b/schemas/DPLA v3 BN/FP.xsd deleted file mode 100644 index 82d1be6..0000000 --- a/schemas/DPLA v3 BN/FP.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - A subject taken from the fashion domain. - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/GN.xsd b/schemas/DPLA v3 BN/GN.xsd deleted file mode 100644 index c18248b..0000000 --- a/schemas/DPLA v3 BN/GN.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - The main international name of a feature. The value has no xml:lang tag. - - - - - - Type of the feature, as defined in geonames taxonomy. - - - - - - A feature parent of the current one, in either administrative or physical subdivision. - - - - - - A two letters country code in the ISO 3166 list. - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/ORE.xsd b/schemas/DPLA v3 BN/ORE.xsd deleted file mode 100644 index 4d96aba..0000000 --- a/schemas/DPLA v3 BN/ORE.xsd +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - A set of related resources (Aggregated Resources), grouped together - such that the set can be treated as a single resource. This is the entity - described within the ORE interoperability framework by a Resource Map. - - - - id: An ore:Aggregation must have either - edm:isShownAt or edm:isShownBy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A proxy is a resource that stands for an aggregated resource A in - the context of a specific aggregation. The URI of a proxy then can be used - in assertions specific to the aggregated resource A in the context of that - aggregation (http://www.openarchives.org/ore/1.0/primer.html). - - - - id: - A Proxy must have a - dc:subject or dc:type or dc:coverage or dct:temporal or - dct:spatial. - id: - A Proxy must have a dc:title or - dc:description. - id: - Within a Proxy - context, dc:language is mandatory when dc:language has the value - 'TEXT'. - id: - edm:type should be present in an ore:Proxy context. - - id: - edm:type should not be present in an Europeana Proxy context - (when the edm:europeanaProxy value is present). - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/DPLA v3 BN/OWL.xsd b/schemas/DPLA v3 BN/OWL.xsd deleted file mode 100644 index 7b77a64..0000000 --- a/schemas/DPLA v3 BN/OWL.xsd +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/RDAGR2.xsd b/schemas/DPLA v3 BN/RDAGR2.xsd deleted file mode 100644 index 190d4df..0000000 --- a/schemas/DPLA v3 BN/RDAGR2.xsd +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/DPLA v3 BN/RDF.xsd b/schemas/DPLA v3 BN/RDF.xsd deleted file mode 100644 index f061b89..0000000 --- a/schemas/DPLA v3 BN/RDF.xsd +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - Empty rdf:resource attribute is not allowed for element. - - - - - - - - - - - - - - - Empty rdf:about attribute is not allowed for element. - - - - - - - - - - - - - - - Empty xml:lang attribute is not allowed for element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element should not have both rdf:resource attribute and text value populated. - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/SKOS.xsd b/schemas/DPLA v3 BN/SKOS.xsd deleted file mode 100644 index 1854416..0000000 --- a/schemas/DPLA v3 BN/SKOS.xsd +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3 BN/WGS84.xsd b/schemas/DPLA v3 BN/WGS84.xsd deleted file mode 100644 index 31d92d7..0000000 --- a/schemas/DPLA v3 BN/WGS84.xsd +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - Latitude of feature. - - - - - - Latitudinal and longitudinal coordinates for the most specific geographic location provided. - - - - - - Longitude of feature. - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/DC.xsd b/schemas/DPLA v3/DC.xsd deleted file mode 100644 index def31b3..0000000 --- a/schemas/DPLA v3/DC.xsd +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - Information about rights held in and over source resource. Typically, rights information includes a statement about various property rights associated with source resource, including intellectual property rights. - - - - - - - Entity responsible for making contributions to source resource. - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: 1995-1996 Boston, MA Type: String - - - - - - Entity primarily responsible for making source resource. - - - - - - Point or period of time associated with an event in lifecycle of source resource. - - - - - - Includes but is not limited to: an abstract, a table of contents, or a free-text account of source resource. - - - - - - - ID of source resource within a given context. - - - - - - File format, physical medium or dimensions of source resource. - - - - - - Language(s) of source resource. - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library's Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - Topic of source resource. - - - - - - Name given to source resource. - - - - - - Nature or genre of source resource. - - - \ No newline at end of file diff --git a/schemas/DPLA v3/DCMI.xsd b/schemas/DPLA v3/DCMI.xsd deleted file mode 100644 index 7f3f952..0000000 --- a/schemas/DPLA v3/DCMI.xsd +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/DCTERMS.xsd b/schemas/DPLA v3/DCTERMS.xsd deleted file mode 100644 index 315b15f..0000000 --- a/schemas/DPLA v3/DCTERMS.xsd +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - - - URI of collection or aggregation of which source resource is a part. - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart's Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of source resource. - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Entity responsible for making the resource available, typically the publisher of a text. - Oxford University Press - Type: String - - - - - - - - Spatial characteristics of source resource. - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer's Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - Size or duration of source resource. - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/DPLA-MAIN.xsd b/schemas/DPLA v3/DPLA-MAIN.xsd deleted file mode 100644 index ef7007d..0000000 --- a/schemas/DPLA v3/DPLA-MAIN.xsd +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Digital Public Library of America, Metadata application profile ingestion schema, version 3 - - - - - - - - - - - - - - - - - The RDF root element declaration - - - Schematron validation - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class is a subclass of "edm:ProvidedCHO," which comprises the source resources [in EDM called "cultural heritage objects"] about which DPLA collects descriptions. It is here that attributes of source resources are located, not the digital representations of them. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Name of a city (literal). - - - - - - ISO 3166-2 code for a U.S. state or territory. - - - - - - Complete original record. - - - - - - Name of a U.S. county (literal). - - - - - - Name of a region, e.g., "Upstate New York". - - - - - - ISO 3166-1 code for a country. - - - - diff --git a/schemas/DPLA v3/DPLA.xml b/schemas/DPLA v3/DPLA.xml deleted file mode 100644 index 476c68b..0000000 --- a/schemas/DPLA v3/DPLA.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - dc:contributor - dc:creator - dc:date - dc:description - dcterms:extent - dc:identifier - dc:language - - dc:format - dcterms:spatial - dcterms:publisher - dc:rights - dc:subject - dcterms:temporal - dc:title - dc:type - - diff --git a/schemas/DPLA v3/DPLA.xsd b/schemas/DPLA v3/DPLA.xsd deleted file mode 100644 index 36a0faf..0000000 --- a/schemas/DPLA v3/DPLA.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - Digital Public Library of America, Metadata application profile ingestion schema, version 3 - - - - - - diff --git a/schemas/DPLA v3/DPLA.xsd.conf b/schemas/DPLA v3/DPLA.xsd.conf deleted file mode 100644 index c836507..0000000 --- a/schemas/DPLA v3/DPLA.xsd.conf +++ /dev/null @@ -1,80 +0,0 @@ -{ - "version": "1.0", - "xsd": "DPLA.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "dpla": "http://dp.la/about/map/", - "edm": "http://www.europeana.eu/schemas/edm/", - "dcmi": "http://purl.org/dc/dcmitype/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "gn": "http://www.geonames.org/ontology#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "edmfp": "http://www.europeanafashion.eu/edmfp/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - - "item": { - "element": "RDF", - "prefix": "dpla" - }, - - "customization": "dpla.groovy", - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about" - ], - - - "navigation": [ - { - "name": "SourceResource", - "element": "SourceResource" - }, - { - "name": "Collection", - "element": "Collection" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "Agent", - "element": "Agent" - } - - ], - - "preview": [{ - "jsp":"rdfview", - "label":"RDF" - }, - { - "xsl": "dpla2html.xsl", - "label": "DPLA preview", - "output": "html" - } - ] - - - } diff --git a/schemas/DPLA v3/EDM-COMMON-MAIN.xsd b/schemas/DPLA v3/EDM-COMMON-MAIN.xsd deleted file mode 100644 index a671cc7..0000000 --- a/schemas/DPLA v3/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,556 +0,0 @@ - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - Date timespan started. - - - - - - This is the name of the country in which the Provider is based or - "Europe" in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A literal indicating the name of the collection - - - - - - Name of the state in which the source resource is held. - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - Date timespan finished. - - - - - - The EDM Content Type - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of "meetings" between people - and other things in space-time. Therefore we name this relationship as the things - the object "has met" in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the "Objects" facet in Getty's Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of "Le Temps" contributed by BNF may have as view a text of some parts of - the issue - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie "A Clockwork Orange" incorporates - Rossini's symphony from "La Gazza Ladra" in its original soundtrack. "E.A.Poe, The - Raven (poem)" is incorporated in "Emerson Lake & Palmers Tales of Mystery - (music)" which is incorporated in "Concert Recording 1973 (vinyl)". - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - An unambiguous URL reference to the digital object on the provider's web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider's web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - An unambiguous URL reference to the digital object on the provider's web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider's website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole - such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider's web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - - A reference to the Europeana cached thumbnail. - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg's edition realizes the Bible - - - - - - - Information about copyright of the digital object as specified by - isShownBy and isShownAt.The value in this element is a URL constructed according to - the specifications in the "Specifications of the controlled values for edm:rights". - The URLs are constructed by adding a code indicating the copyright status of an - object to the domain name where that status is defined. The domain will be either - the europeana.eu domain or the creativecommons.org domain. For users of Europeana.eu - this copyright information also applies to the preview specified in edm:object. In - order to allow organisations to manage the provision of this element, edm:rights has - an obligation level of "recommended" in this version of EDM. It will be changed to - "Mandatory" in a later version. - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is "TRUE" to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - A flag indicating that the specific Proxy can be used as a europeanaProxy - - - - - diff --git a/schemas/DPLA v3/EDM.xsd b/schemas/DPLA v3/EDM.xsd deleted file mode 100644 index 8f2cbce..0000000 --- a/schemas/DPLA v3/EDM.xsd +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 - 02.02.02, 1503 - 1506 (the time span of the creation of Mona Lisa) - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - The element dcterms:isPartOf should not have a literal value in the edm:WebResource context - with id: . Use an rdf:resource instead. - - - - - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/FOAF.xsd b/schemas/DPLA v3/FOAF.xsd deleted file mode 100644 index de1276d..0000000 --- a/schemas/DPLA v3/FOAF.xsd +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - Europeana representation of Foaf elements - - - - - - - - diff --git a/schemas/DPLA v3/FP.xsd b/schemas/DPLA v3/FP.xsd deleted file mode 100644 index 82d1be6..0000000 --- a/schemas/DPLA v3/FP.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - A subject taken from the fashion domain. - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/GN.xsd b/schemas/DPLA v3/GN.xsd deleted file mode 100644 index c18248b..0000000 --- a/schemas/DPLA v3/GN.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - The main international name of a feature. The value has no xml:lang tag. - - - - - - Type of the feature, as defined in geonames taxonomy. - - - - - - A feature parent of the current one, in either administrative or physical subdivision. - - - - - - A two letters country code in the ISO 3166 list. - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/ORE.xsd b/schemas/DPLA v3/ORE.xsd deleted file mode 100644 index 4d96aba..0000000 --- a/schemas/DPLA v3/ORE.xsd +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - A set of related resources (Aggregated Resources), grouped together - such that the set can be treated as a single resource. This is the entity - described within the ORE interoperability framework by a Resource Map. - - - - id: An ore:Aggregation must have either - edm:isShownAt or edm:isShownBy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A proxy is a resource that stands for an aggregated resource A in - the context of a specific aggregation. The URI of a proxy then can be used - in assertions specific to the aggregated resource A in the context of that - aggregation (http://www.openarchives.org/ore/1.0/primer.html). - - - - id: - A Proxy must have a - dc:subject or dc:type or dc:coverage or dct:temporal or - dct:spatial. - id: - A Proxy must have a dc:title or - dc:description. - id: - Within a Proxy - context, dc:language is mandatory when dc:language has the value - 'TEXT'. - id: - edm:type should be present in an ore:Proxy context. - - id: - edm:type should not be present in an Europeana Proxy context - (when the edm:europeanaProxy value is present). - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/DPLA v3/OWL.xsd b/schemas/DPLA v3/OWL.xsd deleted file mode 100644 index 7b77a64..0000000 --- a/schemas/DPLA v3/OWL.xsd +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/RDAGR2.xsd b/schemas/DPLA v3/RDAGR2.xsd deleted file mode 100644 index 190d4df..0000000 --- a/schemas/DPLA v3/RDAGR2.xsd +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/DPLA v3/RDF.xsd b/schemas/DPLA v3/RDF.xsd deleted file mode 100644 index f061b89..0000000 --- a/schemas/DPLA v3/RDF.xsd +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - Empty rdf:resource attribute is not allowed for element. - - - - - - - - - - - - - - - Empty rdf:about attribute is not allowed for element. - - - - - - - - - - - - - - - Empty xml:lang attribute is not allowed for element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element should not have both rdf:resource attribute and text value populated. - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/SKOS.xsd b/schemas/DPLA v3/SKOS.xsd deleted file mode 100644 index 1854416..0000000 --- a/schemas/DPLA v3/SKOS.xsd +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/DPLA v3/WGS84.xsd b/schemas/DPLA v3/WGS84.xsd deleted file mode 100644 index 31d92d7..0000000 --- a/schemas/DPLA v3/WGS84.xsd +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - Latitude of feature. - - - - - - Latitudinal and longitudinal coordinates for the most specific geographic location provided. - - - - - - Longitude of feature. - - - - \ No newline at end of file diff --git a/schemas/VIAA/QAS_MINT_VIAA_metadatamodel_update_v3_.xsd b/schemas/VIAA/QAS_MINT_VIAA_metadatamodel_update_v3_.xsd new file mode 100644 index 0000000..11183a8 --- /dev/null +++ b/schemas/VIAA/QAS_MINT_VIAA_metadatamodel_update_v3_.xsd @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/schemas/VIAA/qas_mint_viaa_metadatamodel_update_v3_.xsd b/schemas/VIAA/qas_mint_viaa_metadatamodel_update_v3_.xsd new file mode 100644 index 0000000..02eca2f --- /dev/null +++ b/schemas/VIAA/qas_mint_viaa_metadatamodel_update_v3_.xsd @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/schemas/VIAA/viaa_full_metadata.xsd b/schemas/VIAA/viaa_full_metadata.xsd new file mode 100644 index 0000000..141036f --- /dev/null +++ b/schemas/VIAA/viaa_full_metadata.xsd @@ -0,0 +1,588 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/schemas/VIAA/viaa_metadatamodel_film_update.xsd b/schemas/VIAA/viaa_metadatamodel_film_update.xsd new file mode 100644 index 0000000..70dc588 --- /dev/null +++ b/schemas/VIAA/viaa_metadatamodel_film_update.xsd @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/schemas/VIAA/viaa_metadatamodel_van_cp_naar_viaa.xsd b/schemas/VIAA/viaa_metadatamodel_van_cp_naar_viaa.xsd new file mode 100644 index 0000000..eec8645 --- /dev/null +++ b/schemas/VIAA/viaa_metadatamodel_van_cp_naar_viaa.xsd @@ -0,0 +1,518 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/schemas/VIAA/viaa_update_metadatamodel_van_cp_naar_viaa.xsd b/schemas/VIAA/viaa_update_metadatamodel_van_cp_naar_viaa.xsd new file mode 100644 index 0000000..8b7ac81 --- /dev/null +++ b/schemas/VIAA/viaa_update_metadatamodel_van_cp_naar_viaa.xsd @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/schemas/athena/athena-lido-draft-v0.9.xsd b/schemas/athena/athena-lido-draft-v0.9.xsd deleted file mode 100644 index 45127b5..0000000 --- a/schemas/athena/athena-lido-draft-v0.9.xsd +++ /dev/null @@ -1,1448 +0,0 @@ - - - - LIDO - Lightweight Information Describing Objects - This draft document may be updated, replaced, or made obsolete by other documents at any time. - LIDO DRAFT v0.9 - XML Schema for Contributing Content to Cultural Heritage Repositories - ARTstor, Collections Trust, Deutscher Museumsbund - Fachgruppe Dokumentation, Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, digiCULT Schleswig-Holstein, Institut für Museumsforschung (SMB-PK), J. Paul Getty Trust, Zuse-Institut Berlin - LIDO draft version: 2010-03-23: lido-draft-v0.9.xsd - Prepared for CIDOC Working Group Data Harvesting and Interchange, CDWA Lite/museumdat Working Group, Collections Trust and Deutscher Museumsbund - Fachgruppe Dokumentation -by: Erin Coburn (ecoburn@getty.edu), Richard Light (richard@light.demon.co.uk), Gordon McKenna (gordon@collectionstrust.org.uk), Regine Stein (r.stein@fotomarburg.de), Axel Vitzthum (avitzthum@digicult.uni-kiel.de) - - - - - - Contains identifying, indexing actor information. - - - - - - A wrapper for name elements, if there exists more than one name for a single actor, repeat Name Actor Set. - Indicates names, appellations, or other identifiers assigned to an individual, group of people, firm or other corporate body, or other entity. - CDWA Lite v1.1: nameCreatorSet is generalized into nameActorSet - museumdat v1.0: nameActorSet - - - - - National or cultural affiliation of the person or corporate body. Controlled. - CDWA Lite v1.1: nationalityCreator is generalized into nationalityActor - museumdat v1.0: nationalityActor - - - - - A description of the lifespan of the person or the existence of the corporate body, using "ca." and any other expressions of uncertainty or nuance. For Birth and Death date attributes, record years of birth and death, estimated where necessary. For a corporate body, use birthdate and deathdate to record the dates of founding and dissolution. - Although this is not a mandatory field the use of birth date and death date is strongly recommended in the case of artists. - If only a reference period (not the exact period of life) of a person is known, and the event in which the person took part cannot be exactly dated, then the reference period should be taken as the dating of the event. - CDWA Lite v1.1: vitalDatesCreator is generalized into vitalDatesActor - museumdat v1.0: vitalDatesActor - - - - - - - - - - - - - - - - - The sex of the individual. Not applicable for corporate bodies. - Data values: male, female, unknown, not applicable. - CDWA Lite v1.1: genderCreator is generalized into genderActor - museumdat v1.0: genderActor - - - - - - Indicates if the actor is an individual, a group of individuals or a corporation (firm or other corporate body). - CDWA Lite v1.1: nameCreator@type is replaced by actorType (as it characterizes the actor self and not the name) - museumdat v1.0: nameActor@type is replaced by actorType (as it characterizes the actor self and not the name) - - - - - - - - - - - - - Describes an actor with role and (if necessary) attributions related to the event the actor participated in. - CDWA Lite v1.1: indexingCreatorSet is generalized into actorInRole - museumdat v1.0: indexingActorSet - - - - - - Role of the Actor in the event. Controlled - CDWA Lite v1.1: roleCreator is generalized into roleActor - museumdat v1.0: roleActor - - - - - A qualifier used when the attribution is uncertain, is in dispute, when there is more than one actor, when there is a former attribution, or when the attribution otherwise requires explanation. - Data values: attributed to, studio of, workshop of, atelier of, office of, assistant of, associate of, pupil of, follower of, school of, circle of, style of, after copyist of, manner of... - CDWA Lite v1.1: attributionQualifierCreator is generalized into attributionQualifierActor - museumdat v1.0: attributionQualifierActor - - - - - Extent of the actor's participation in the event, if there are several actors. - Data values: design, execution, with additions by, figures, renovation by, predella, embroidery, cast by, printed by, ... - CDWA Lite v1.1: extentCreator is generalized into extentActor - museumdat v1.0: extentActor - - - - - - - Wrapper for display and index elements for an actor with role information (participating in an event). For multiple actors repeat the element. - - - - - Display element for an actor, corresponding to the following actor element. - May include name, brief biographical information, and roles (if necessary) of the named actor, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor. - May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese." - Repeat this element only for language variants! - CDWA lite v1.1: displayCreator corresponds partly / is generalized into lido:displayActor - museumdat v1.0: displayCreator corresponds partly / is generalized into lido:displayActor - - - - - - - - Wrapper for display and index elements for an actor. For multiple actors repeat this element. - - - - - Display element for an actor, corresponding to the following actor element. - May include name, brief biographical information of the named actor, presented in a syntax suitable for display to the end-user. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor. - May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese." - Repeat this element only for language variants! - CDWA lite v1.1: displayCreator corresponds partly to lido:displayActor (without role information) - museumdat v1.0: displayCreator corresponds partly to lido:displayActor (without role information) - - - - - - - - - - - - - - - - Holds the administrative metadata of an object record. - The attribute xml:lang is mandatory and specifies the language of the administrative metadata. - For fully multi-lingual resources, repeat this element once for each language represented. - If only a few data fields (e.g. creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - CDWA Lite v1.1: administrativeMetadata - museumdat v1.0: administrativeMetadata - - - - - - - - - - - - - Wrapper for a name of an entity, and its related information. If there is more than one name, repeat the appellation element. - - - - - Appellations, e.g. titles, identifying phrases, or names given to an item, but also name of a person or corporation, also place name etc. - CDWA Lite v1.1: e.g. title, nameCreator, locationName correspond to lido:appellationValue - museumdat v1.0: e.g. title, repositoryName, nameActor, nameLocation correspond to lido:appellationValue - - - - - - - - - - - - - - - The source for the appellation, generally a published source. - CDWA Lite v1.1: e.g. sourceTitle, sourceNameCreator correspond to lido:sourceAppellation - museumdat v1.0: e.g. sourceTitle, sourceNameActor correspond to lido:sourceAppellation - - - - - - - - - - - - - - - - A wrapper for classification information. - - - - - - Term used to categorize a work by grouping it together with other works on the basis of similar characteristics. The category belongs to a systematic scheme (classification) which groups objects of similar characteristics according to uniform aspects. This grouping / classification may be done according to material, form, shape, function, region of origin, cultural context, or historical or stylistic period. In addition to this systematic grouping it may also be done according to organizational divisions within a museum (e.g., according to the collection structure of a museum).If the work is assigned to multiple classifications, repeat this element. - CDWA Lite v1.1: classification (assigns a term) corresponds to lido:classification (assigns a concept with its identifiers and various terms) - museumdat v1.0: classification (assigns a term) corresponds to lido:classification (assigns a concept with its identifiers and various terms) - - - - - - - - - - - - - - - Set for identifiers and terms of a concept. - - - - - - - - - A wrapper for date specification: This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest dates. - Format of the data values is according to ISO 8601. This includes date and time specification. - For ca. and other uncertain or approximate dates, estimate the greatest possible span for indexing. Uncertainty should be indicated in the display element. - CDWA Lite v1.1: indexingDatesSet is generalized and refined into lido:dateComplexType - museumdat v1.0: indexingDates is refined into lido:dateComplexType - - - - - A year or exact date that broadly delimits the beginning of an implied date span. Format: YYYY[-MM[-DD]] - CDWA Lite v1.1: earliestDate - museumdat v1.0: earliestDate - - - - - - - - - - - - - - A year or exact date that broadly delimits the end of an implied date span. Format: YYYY[-MM[-DD]] - CDWA Lite v1.1: latestDate - museumdat v1.0: latestDate - - - - - - - - - - - - - - - - Wrapper for display and index elements for date information. - - - - - Display element for a date specification, corresponding to the following date element. - It is a concise description of the date, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. - Repeat this element only for language variants! - CDWA lite v1.1: displayCreationDate is generalized into lido:displayDate - museumdat v1.0: displayCreationDate is generalized into lido:displayDate - - - - - - - - Holds the descriptive metadata of an object record. - The attribute xml:lang is mandatory and specifies the language of the descriptive metadata. - For fully multi-lingual resources, repeat this element once for each language represented. - If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - CDWA Lite v1.1: descriptiveMetadata - museumdat v1.0: descriptiveMetadata - - - - - - - - - - - - - - A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this set. - - - - - Usually a relatively brief essay-like text that describes the entity. - - - - - The source for the descriptive note, generally a published source. - - - - - - - - A wrapper for Display State Editions - CDWA Lite v1.1: displayStateEditionWrap - museumdat v1.0: displayStateEditionWrap - - - - - - A description of the state of the work; used primarily for prints and other multiples - Formulated according to rules. For State, include state identification and known states, as appropriate. - Repeat this element only for language variants! - CDWA Lite v1.1: displayState - museumdat v1.0: displayState - - - - - A description of the edition of the work; used primarily for prints and other multiples. - Formulated according to rules. For Edition, include impression number, edition size, and edition number, or edition name, as appropriate. - Repeat this element only for language variants! - CDWA Lite v1.1: displayEdition - museumdat v1.0: displayEdition - - - - - The published source of the state or edition information. - CDWA Lite v1.1: sourceStateEdition - museumdat v1.0: sourceStateEdition - - - - - - - - - Complex type for one event related with the work and its related information. If there is more than one event described, repeat the Event Set element. - CDWA Lite v1.1: no equivalent - museumdat v1.0: indexingEventSet is extended and refined into lido:eventComplexType - - - - - - Qualifier of the event, e.g. creation, find, ... Data values to be controlled. Recommended: Defined list of subclasses of CRM entity E5 Event. - CDWA Lite v1.1: no equivalent - museumdat v1.0: eventType is refined into lido:eventType - - - - - The role played within this event by the object being recorded. - - - - - - - Name of a culture, people, or nationality participating in the event. Controlled. - CDWA Lite v1.1: culture - museumdat v1.0: culture - - - - - Date specification of the event. - - - - - A period defining the range of dates. Data values should be controlled. - - - - - Place specification of the event. - - - - - - - - - - - - The method by which the event is carried out. Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - Indicates the substances or materials used within the event (e.g. the creation of a work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - References an other object that was present at this same event. - - - - - An event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - A description of the event. - - - - - - - Wrapper for display and index elements for events (e.g. creation, find, use etc.), in which the described object participated. For multiple events repeat the element. - - - - - Display element for an event, corresponding to the following event element. - Repeat this element only for language variants! - - - - - - - - Wrapper for event sets. - CDWA Lite v1.1:no equivalent - museumdat v1.0: eventWrap corresponds to lido:eventWrap - - - - - - - - - - - GML Instantiation - - - - - - - - - - There is no controlled list of identifier types. Suggested values include, but are not limited to the following:doi (Digital Objects Identifier)guid (Globally unique identifier)hdl (Handle)isbn (International Standard Book Number)ismn (International Standard Music Number)isrc (International Standard Recording Code)issn (International Standard Serials Number)localpermalinkpurl (Persistent Uniform Resource Locator)url (Uniform Resource Locator)urn (Uniform Resource Name) - - - - - - - - - - - - - - A wrapper for information about inscriptions and other marks. - CDWA Lite v1.1: inscriptionsWrap - museumdat v1.0: inscriptionsWrap - - - - - - A description or transcription of any distinguishing or identifying physical lettering, annotations, texts, markings, or labels that are affixed, applied, stamped, written, inscribed, or attached to the work, excluding any mark or text inherent in the materials of which the work is made (record watermarks in Display Materials/Techniques). - The assigned type attribute allows to qualify text, e.g. to indicate that the text is a transcription of the inscription - CDWA Lite v1.1: inscriptions, with a newly assigned type attribute - museumdat v1.0: inscriptions, with a newly assigned type attribute - - - - - - - - - - - - - - - - Reference information to a legal body - - - - - Unambiguous identification of the institution or person. - - - - - Appellation of the institution or person. - - - - - Weblink of the institution or person. - - - - - - - Holds the metadata of an object. - CDWA Lite v1.1: cdwalite - museumdat v1.0: museumdat - - - - - - A unique lido record identification, preferably composed of an identifier for the contributor and a record identification in the contributor's (local) system. - - - - - - - - - - - Holds one or multiple object records. - The attribute relatedencoding contains the source format for the attributes encodinganalog and label (see Object type). This may be any metadata standard like Dublin Core, but also MIDAS, KNORR or system-specific formats. This attribute is optional. - CDWA Lite v1.1: cdwaliteWrap - museumdat v1.0: museumdatWrap - - - - - - - - - - - - Materials and techniques for retrieval; if multiple parts of the work require separate materials and techniques, or if you are recording media and support separately, repeat the materialsTechSet element qualifying the extent sub-element. - - - - - A term to index materials and/or technique. - Data values for Type-Attribut: technique, material, implement, mark (e.g., watermark or other mark inherent in the material) - - - - - - - - - - - - An explanation of the part of the work to which the materials or technique are applicable; included when necessary for clarity. - - - - - The source of the information about materials and technique, often used when citing a published source of watermarks. - - - - - - - Wrapper for display and index elements for materials and technique information. - Indicates the substances or materials used, as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - Display element for materials/technique, corresponding to the following materialsTech-Element. - It is presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. - Repeat this element only for language variants! - - - - - - - - Wrapper for data classifying the object. - CDWA Lite v1.1:no equivalent - museumdat v1.0: objectClassificationWrap - - - - - - - - - - - Reference to an object. - - - - - A Uri/Url-Reference representing the object in the worldwide web environment. - CDWA Lite v1.1: linkRelatedWork - museumdat v1.0: linkRelatedWork - - - - - Unique identifier of the referenced object. - CDWA Lite v1.1: locRelatedWork@relWorkID corresponds to lido:objectID - museumdat v1.0: locRelatedWork@relWorkID corresponds to lido:objectID - - - - - A descriptive identification of the object that will be meaningful to end-users, including some or all of the following information, as necessary for clarity and if known: title, object/work type, important actor, date and/or place information, potentially location of the object. - The information should ideally be generated from fields/elements in the related record. - CDWA Lite v1.1: labelRelatedWork - museumdat v1.0: labelRelatedWork - - - - - - - - - - - - - - A wrapper for Description/Descriptive Note information. - CDWA Lite v1.1: descriptiveNoteWrap - museumdat v1.0: descriptiveNoteWrap - - - - - - A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this sub-element. - Includes usually a relatively brief essay-like text that describes the content and context of the work, including comments and an interpretation that may supplement, qualify, or explain the physical characteristics, subject, circumstances of creation or discovery, or other information about the work. - Data values for the type attribute: Object history, description, catalogue text etc. - CDWA Lite v1.1: descriptiveNoteSet - museumdat v1.0: descriptiveNoteSet - - - - - - - - A Wrapper for information that identifies the object. - CDWA Lite v1.1:no equivalent - museumdat v1.0: identificationWrap corresponds to lido:objectIdentificationWrap - - - - - - - - - - - - - - - The dimensions, size, shape, scale, format, or storage configuration of the work, including volume, weight, area or running time. Measurements are formatted to allow retrieval; preferably in metric units where applicable. - CDWA Lite v1.1: indexingMeasurementsSet, with all sub-elements - museumdat v1.0: indexingMeasurementsSet, with all sub-elements - - - - - The dimensions or other measurements for one aspect of a work (e.g., width); may be combined with extent, qualifier, and other sub-elements as necessary. - Data values for value: Whole numbers or decimal fractions. - Data values for unit: cm, mm, m, g, kg, kb, Mb, Gb. - Data values for type: height, width, depth, length, diameter, circumference, stories, count, area, volume, running time, size, ... - All three attributes - unit, value and type - are mandatory attributes for the measurementsSet. - - - - - - - - - - - - - An explanation of the part of the work being measured; included when necessary for clarity. - Data values: overall, components, sheet, plate mark, chain lines, pattern repeat, lid, base, laid lines, folios, leaves, columns per page, lines per page, tessera, footprint, panel, interior, mat, window of mat, secondary support, frame, mount, ... - - - - - A word or phrase that elaborates on the nature of the measurements of the work when necessary, as when the measurements are approximate. - Data values: approximate, sight, maximum, larges, smallest, average, variable, assembled, before restoration, before restoration, at corners, rounded, framed, with base, ... - - - - - The configuration of a work, including technical formats, used as necessary. - Data values: Vignette, VHS, IMAX, DOS ... - - - - - The shape of a work, used for unusual shapes (e.g., an oval painting). - Data values: oval, round, square, rectangular, irregular, ... - - - - - An expression of the ratio between the size of the representation of something and that thing (e.g., the size of the drawn structure and the actual built work). Used for studies, record drawings, models, and other representations drawn or constructed to scale. - Data values for scale: numeric (e.g., 1 inch = 1 foot), full-size, life-size, half size,monumental. and others as recommended in CCO and CDWA. Combine this tag with Measurement Sets for numeric scales. For measurementsSet type for Scale, use "base" for the left side of the equation, and "target" for the right side of the equation). - - - - - - - Wrapper for display and index elements for object measurements. If multiple parts of the work are measured, repeat the element - Holds information about the dimensions, size, or scale of the work. It may also include the number of the parts of a complex work, series, or collection. - - - - - Display element for one object measurement, corresponding to the following objectMeasurement element. - Repeat this element only for language variants! - - - - - - - - A wrapper for the Measurements. - - - - - - - - - - Wrapper for indexing related topics and works, collections, etc. - CDWA Lite v1.1:no equivalent - museumdat v1.0: relationWrap corresponds to lido:objectRelationWrap - - - - - - - - - - - Wrapper for display and reference elements for an other object. - - - - - A free-text description of the object, corresponding to the following object element - Repeat this element only for language variants! - - - - - - - - A wrapper for Object/Work Types. - - - - - - Object Work Types are identifying the specific kind of object or work being described. For a collection, include repeating instances for identifying all of or the most important items in the collection. - CDWA Lite v1.1: objectWorkType (assigns a term) corresponds to lido:objectWorkType (assigns a concept with its identifiers and various terms) - museumdat v1.0: objectWorkType (assigns a term) corresponds to lido:objectWorkType (assigns a concept with its identifiers and various terms) - - - - - - - - Structured element for place information - CDWA Lite v1.1: locationSet corresponds partly to lido:placeComplexType - museumdat v1.0: indexingLocationWrap is refined into lido:placeComplexType - - - - - - The name of the geographic place. If there are different names of the same place, e.g. today's and historical names, repeat this element. - CDWA Lite v1.1: locationName corresponds partly to lido:namePlaceSet/lido:appellationComplexType - museumdat v1.0: nameLocationSet - - - - - GML-conformant Content - - - - - - - - - - - - Allows for indexing larger geographical entities. - - - - - A classification of the place, e.g. by geological complex, stratigraphic unit or habitat type. - - - - - - - - - - - - - Data values can include: Gemeinde, Kreis, Bundesland, Staat, Herzogtum, city, county, country, civil parish - - - - - Data values can include: Naturraum, Landschaft, natural environment, landscape - - - - - - Wrapper for display and index elements for place information. - - - - - Display element for a place specification, corresponding to the following place element. - Repeat this element only for language variants! - - - - - - - - - - - - - - - - - Wrapper for metadata information about this record. - Note: The metadata information contains the reference to the "lido"-metadata set but may also be constituted by reference to an "object data sheet" in an online database. - CDWA Lite v1.1: recordInfoWrap - museumdat v1.0: recordInfoSet - - - - - Unique ID of the metadata. Record Info ID has the same definition as Record ID but out of the context of original local system, such as a persistent identifier or an oai identifier (e.g., oai1:getty.edu:paintings/00001234 attribute type= oai). - - - - - Link of the metadata, e.g., to the object data sheet (not the same as link of the object). - - - - - Unique ID of the metadata of the related object. - - - - - Pointer(s) to other metadata (administrative, technical, structural). - - - - - Creation date or date modified of the metadata record. Format will vary depending upon implementation. - - - - - - - - - - - - - - - - A wrapper for information about the record that contains the cataloguing information. - CDWA Lite v1.1: recordWrap - museumdat v1.0: recordWrap - - - - - - A unique record identification in the contributor's (local) system. - - - - - Term establishing whether the record represents an individual item or a collection, series, or group of works. - It is required to designate the Record type. The default is item. Other data values: collection, series, group, volume, fonds, - - - - - The source of information in this record, generally the repository or other institution. - - - - - Information about rights regarding the metadata provided in this record. - - - - - - - - - A wrapper for one event related to the described event. - - - - - - A term describing the nature of the relationship between the described event and the related event. - Recommended data values: sub-event of, ... The default is "related to". - Note: For implementation of the data: Note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship. - - - - - - - A wrapper for one work, group, collection, or series that is directly related to the work at hand, including direct relationships between two works, between a work and its components, and between an item and the larger group, collection, or series of works. Objects referred to may be corresponding objects or objects created to be shown together with the object in question, but also e.g., literature (bibliographic objects) in which the object is documented or mentioned forms a "relatedWorkSet". If there is more than one object referred to the set should be repeated. - - - - - - A term describing the nature of the relationship between the work at hand and the related entity. - Recommended data values: part of, larger context for, model of, model for, study of, study forrendering of, copy of, ... The default is "related to". - Note: For implementation of the data: Note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship (e.g., one work is part of a second work, but from the point of view of the second record, the first work is the larger context for the second work). Whether or not relationships are physically reciprocal as implemented in systems is a local decision. - - - - - - - A wrapper for Related Works information. - - - - - - - - - - Wrapper for designation and identification of the institution of custody and, possibly, indication of the exact location of the object. If there are several designations known, e.g., a current one and former ones (see: type attribute), repeat the element. - CDWA Lite v1.1: locationSet is partly a subset of lido:repositorySet - museumdat v1.0: repositorySet - refined into lido:repositorySet (see repositoryName and repositoryLocation) - - - - - Unambiguous identification, designation and weblink of the institution of custody - CDWA Lite v1.1: locationName corresponds partly to lido:repositoryName - museumdat v1.0: repositoryName - refined into lido:repositoryName - - - - - An unambiguous numeric or alphanumeric identification number, assigned to the object by the institution of custody. - CDWA Lite v1.1: workID - museumdat v1.0: workID - - - - - - - - - - - - - - Location of the object, especially relevant for architecture and archaeological sites. - - - - - - - - - - - - - - - Wrapper for Repository/ Location information. - CDWA Lite v1.1: locationWrap is partly corresponding lido:repositorySet - museumdat v1.0: repositoryWrap - refined into lido:repositoryWrap (see repositoryName and repositoryLocation) - - - - - - - - - - A wrapper for sets of resource information. If there are multiple resources associated with the work, repeat the Resource Set sub-element. - CDWA Lite v1.1: resourceSet - museumdat v1.0: resourceSet - - - - - A uri/url reference that is universal in the worldwide web environment. - - - - - - - - - - - - The unique numeric or alphanumeric identification of the resource. - - - - - The relationship of an image or other resource to the work being described. - Data values: conservation image, documentary image, contextual image, historical image, reconstruction, installation image... - - - - - - - - - - - - The generic identification of the medium of the image or other resource. - Data values: Controlled. Digital image, photograph, slide, videotape, X-ray photograph, negative, - - - - - Information about rights regarding the image or other resource. Use this sub-element if the holder of the reproduction rights for the image/resource differs from the holder of rights for the work. See also Rights Work above. (E.g., the work rights are " National Museum of African Art, Smithsonian Instituition (Washing DC), " but the image rights are "Photo Frank Khoury.") - - - - - A description of the spatial, chronological, or contextual aspects of the work as captured in the view of this particular image or other resource. - - - - - - - - - - - - The specific vantage point or perspective of the view. - - - - - Terms or phrases that characterize the subject matter of the work as it is depicted in a specific image or other resource. - Data values: Controlled. E.g., IconClass, museumsvokabular.de, SWD, AAT - Recommended values for type attribute: conceptTerm, iconography, eventName, personalName, corporateBodyName, geographicName - - - - - - - - - - - - A date or range of dates associated with the creation or production of the image. This is not necessarily the same as the date of production of the resource (e.g., a print of a negative may be made years after the image was first captured on film). For the date of the resource, use Resource Date. Format will vary depending upon implementation. - - - - - - - - - - - - - - - - Identification of the agency, individual, repository, or publication from which the image or other resource was obtained, including a bibliographic citation in the case of copy photography. Include this sub-element when the source of the image/resource differs from the source named in Record Source. - - - - - - - - - - - - A reference to an image or other resource that is related to the resource in this Resource Set, generally linking a group or collection of images or other resources to members of the group or collection. For multiple related resources, repeat this element. - - - - - - A term describing the nature of the relationship between the resource at hand and the related resource. - Recommended values: part of, larger context for, related to, ... - - - - - An identification of the related image or other resource that will be meaningful to end-users. - - - - - - - - - Pointer(s) to other metadata (administrative, technical, structural). - - - - - - - - - - - - - - A wrapper for image information. An identification of an image (visual surrogate) of the work, including digital images, slides, transparencies, photographs, and moving images, but excluding items that are considered works in their own right. For works such as drawings, prints, paintings, or photographs considered art, and other works that themselves contain representations of other works, use Related Works and/or Subjects. - CDWA Lite v1.1: resourceWrap - museumdat v1.0: resourceWrap - - - - - - - - - - Information about rights management; may include copyright and other intellectual property statements. - - - - - The specific type of right being recorded. For example: copyright, publication right, data protection right, trademark. - - - - - The date on which a right is or was current. - - - - - The holder of the right. - - - - - Acknowledgement of the rights associated with the physical and/or digital object. - Repeat this element only for language variants. - - - - - - - Wrapper for rights information. - CDWA Lite v1.1: no equivalent (cdwalite:rightsWork is not wrapped) - museumdat v1.0: no equivalent (museumdat:rightsWork is not wrapped) - - - - - - Information about rights management; may include copyright and other intellectual property statements required for use of the metadata. - CDWA Lite v1.1: rightsWork / rightsResource - semantics of the simple text elements correspond to the structured lido:rightsComplexType - museumdat v1.0: rightsWork / rightsResource - semantics of the simple text elements correspond to the structured lido:rightsComplexType - - - - - - - - - A wrapper for one set of Subject Indexing information. These identify, describe, and/or interpret what is depicted in and by a work or what the work is about. If a work has multiple parts or otherwise has separate, multiple subjects, repeat this element with Extent Subject. This element may also be repeated to distinguish between subjects that reflect what a work is *of* (description and identification) from what it is *about* (interpretation). - While not required, it is highly recommended to include subject information, even for non-objective art, for which the function or purpose of the work may be included as subject. - CDWA Lite v1.1: indexingSubjectSet, but refined - museumdat v1.0: indexingSubjectSet, but refined - - - - - When there are multiple subjects, a term indicating the part of the work to which these subject terms apply. - Data values: recto, verso, side A, side B, main panel, predella, ... - CDWA Lite v1.1: extentSubject - museumdat v1.0: extentSubject - - - - - Subject terms - these may include iconography, themes from literature, or generic terms describing the material world, or topics (e.g., concepts, themes, or issues). However, references to people, events, places are indicated in the the respective sub-elements Subject: Actor, Subject: Event, Subject: Place. - Data values should be controlled, e.g. Iconclass, AAT, museumsvokabular.de, SWD. - CDWA Lite v1.1: subjectTerm, but restricted to concepts - cf. new sub-elements subjectActor, subjectEvent, subjectPlace - museumdat v1.0: subjectTerm, but restricted to concepts - cf. new sub-elements subjectActor, subjectEvent, subjectPlace - - - - - A person, group, or institution depicted in or by an object, or the object is about. - - - - - A time specification or period depicted in or by an object, or the object is about. - - - - - An event depicted in or by an object, or the object is about. - - - - - A place depicted in or by an object, or the object is about. - - - - - An object - e.g. a building or a work of art depicted in or by an object, or the object is about. - - - - - - - - A single set of subject indexing information, together with its textual equivalent. - - - - - A free-text description of the subject matter represented by/in the object, corresponding to the following subject element - Repeat this element only for language variants! - - - - - - - - A wrapper for Subject information. - - - - - - - - - - A name for a concept / term, usually from a controlled vocabulary. - The attributes are to be used as follows:pref - has allowable values: preferred | alternate. Indicates whether it is the preferred name of the concept / term, or an alternative name.xml:lang - specifies the language of the concept / term.addedSearchTerm - has allowable values: yes | no. Default is "no". imported = "yes" means that the item includes an additional item (e.g. synonym, generic term) from the standard vocabulary used, which is included only for retrieval purposes.encodinganalog and label - used to indicate the category of data from the source system from the data values were taken. encodinganalog refers to the internal label for the external field name. The reference format is specified in lidoWrap.The attributes are optional. - - - - - - - - - - - - - - Simple text element with encodinganalog and label attribute - - - - - - - - - - - - Wrapper for Object name / Title information. - CDWA Lite v1.1: titleWrap - museumdat v1.0: titleWrap - - - - - - Wrapper for one title or object name and its related information. If there is more than one title, repeat the Title Set element. - CDWA Lite v1.1: titleSet - museumdat v1.0: titleSet - - - - - - - - - - - - - - - - A uri/url reference to a web resource that describes / represents the item, e.g. a metadata record. Note that it differs from an identifier for the item itself. - - - - - - - - - - - - - diff --git a/schemas/athena/athena-lido-v0.7.xsd b/schemas/athena/athena-lido-v0.7.xsd deleted file mode 100644 index d99c0d9..0000000 --- a/schemas/athena/athena-lido-v0.7.xsd +++ /dev/null @@ -1,1363 +0,0 @@ - - - - LIDO - Lightweight Information Describing Objects - XML Schema for Contributing Content to Cultural Heritage Repositories - ARTstor, Collections Trust, Deutscher Museumsbund - Fachgruppe Dokumentation, Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, digiCULT Schleswig-Holstein, Institut für Museumsforschung (SMB-PK), J. Paul Getty Trust, Zuse-Institut Berlin - LIDO current version: 2009-08-20: lido-v0.7.xsd - LIDO v0.7 - Prepared for CDWA Lite/museumdat Working Group, Collections Trust and Deutscher Museumsbund - Fachgruppe Dokumentation -by: Richard Light (richard@light.demon.co.uk), Regine Stein - Bildarchiv Foto Marburg (r.stein@fotomarburg.de), Axel Vitzthum - digiCULT Schleswig-Holstein (avitzthum@digicult.uni-kiel.de) - 2009-08-20: version 0.7. This new schema version is proposed as common, single schema for contributing content to cultural heritage repositories. It meets the requirements articulated by CDWA Lite, museumdat and SPECTRUM - It includes additional concepts to cope with SPECTRUM requirements. created a fresh, or converted the following elements, to complex type XXXSet, with subelements displayXXX (repeatable for language variants) and XXX (optional, not repeatable; also a complex type): actordateeventmaterialsTechobjectobjectMeasurementsplacesubject (was indexingSubject)changed content model of event (formerly indexingEventSet):added roleInEventadded eventNamemodified date to eventDatemodified location to eventPlaceadded eventMethodmade thingPresent into an instance of objectrenamed eventRelated to relatedEvent, and made it an instance of relatedEventLinkthe actorInRole element has been created, representing an actor in context within an event, and containing the roleActor, attributionQualifierActor and extentActor elements which were in the previous actorSet, together with an actorSet elementadded placeClassification within place complex typedisplaySubject added to content model of indexingSubjectWrap to support unstructured content descriptionindexingSubjectSet has been renamed to subject, and extended with a number of new elements:subjectActorsubjectDatesubjectEventsubjectPlacesubjectObjectthe inscriptions element within inscriptionsWrap is assigned to the new complex type "textType", which allows a type attribute to qualify text, e.g. to indicate that the text is a transcription of the inscriptionextended rightsWorkSet so that it contains:rightsTyperightsDaterightsHoldercreditLineprovided a wrapper element rightsWorkWrap to contain rightsWorkSet for compatibility with other high-level wrapper elementsimproved modelling of relatedWorksWrap and relatedWorksSet so that multiple relationship types can be recorded - LIDO - Lightweight Information Describing Objects v0.6 / museumdat v1.6 - Prepared for CDWA Lite/museumdat Working Group and Deutscher Museumsbund - Fachgruppe Dokumentation by: Regine Stein - Bildarchiv Foto Marburg (r.stein@fotomarburg.de), Axel Vitzthum - digiCULT Schleswig-Holstein (avitzthum@digicult.uni-kiel.de) - 2009-07-20: version 0.6. This new schema version is drafted as common, single schema that meets the requirements articulated by CDWA Lite, museumdat and subsequent reviews - It is a substantial redesign and enhancement of the CDWA Lite and museumdat schemata based on:Recommendations of the CDWA Lite/museumdat Working GroupExperiences and feedback after a two-year period of practical implementation and useFurther CIDOC-CRM analysis - This includes modified element grouping, moving display elements to corresponding index elements:objectClassificationWrapObject / Work TypeClassificationobjectIdentificationWrapTitle / Name (mandatory)InscriptionsRepository / LocationState / EditionObject DescriptionMeasurementseventWrapeventSetobjectRelationWrapSubject SetRelated Worksextended content model of event (formerly indexingEventSet):added eventIDchanged content model for eventTypemoved culture element into eventSetmoved materials/technique element into eventSetadded thingRelatedadded eventRelatedadded eventDescriptionimported GML namespacechanged content model of location:added _GML elementadded partOfLocationmodified identifier handling:introduced complex type identifierreplaced termsource/termsourceID attributes by proper, and repeatable identifier element (elements/sets restructured where necessary)attached identifier element to concept level instead of term or name level (e.g. actorID instead of termsourceID for nameActor)introduced identifier for lido element - History of the schema - museumdat - Harvesting Format for Providing Core Data from Museum Holdingsmuseumdat is a harvesting format optimised for retrieval and publication, meant to deliver automatically core data to museum portals. museumdat is a CIDOC-CRM compatible generalisation of CDWA Lite - the schema specification is developed from CDWA Lite XML Schema. For further information see: http://www.museumdat.org/index.php?ln=en&t=home - CDWA Lite: XML Schema Content for Contributing Records via the OAI Harvesting Protocol (Version 2.0)CDWA Lite is an XML schema to describe core records for works of art and material culture based on the Categories for the Description of Works of Art (CDWA) and Cataloging Cultural Objects: A Guide to Describing Cultural Works and Their Images (CCO).For further information see: http://www.getty.edu/research/conducting_research/standards/cdwa/cdwalite.html - Copyrights - For LIDO: #169; 2009, ARTstor, Collections Trust, Deutscher Museumsbund - Fachgruppe Dokumentation, Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, digiCULT Schleswig-Holstein, Institut für Museumsforschung (SMB-PK), J. Paul Getty Trust, Zuse-Institut Berlin - For museumdat: - © 2006-2009 Deutscher Museumsbund - Fachgruppe Dokumentation, Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, digiCULT Schleswig-Holstein, Institut für Museumsforschung (SMB-PK), Zuse-Institut Berlin. Prepared for Deutscher Museumsbund - Fachgruppe Dokumentation by: Carlos Saro - Zuse Institute Berlin (saro@zib.de), Regine Stein - Bildarchiv Foto Marburg (r.stein@fotomarburg.de), Axel Vitzthum - digiCULT Schleswig-Holstein (avitzthum@digicult.uni-kiel.de) - For CDWA Lite: - © 2005, 2006 ARTstor and J Paul Getty Trust. - Prepared for ARTstor and the Getty Research Institute /J Paul Getty Trust - by: Ameer Ahmed - ARTstor (aahmed@artstor.org), Joseph Shubitowski - Getty Research Institute (JShubitowski@getty.edu), Karim Boughida - Getty Research Institute (KBoughida@getty.edu) - - - - - - Contains identifying, indexing actor information. - - - - - - A wrapper for name elements, if there exists more than one name for a single actor, repeat Name Actor Set. - Indicates names, appellations, or other identifiers assigned to an individual, group of people, firm or other corporate body, or other entity. - CDWA Lite v1.1: nameCreatorSet is generalized into nameActorSet - museumdat v1.0: nameActorSet - - - - - National or cultural affiliation of the person or corporate body. Controlled. - CDWA Lite v1.1: nationalityCreator is generalized into nationalityActor - museumdat v1.0: nationalityActor - - - - - - The sex of the individual. Not applicable for corporate bodies. - Data values: male, female, unknown, not applicable. - CDWA Lite v1.1: genderCreator is generalized into genderActor - museumdat v1.0: genderActor - - - - - - Indicates if the actor is an individual, a group of individuals or a corporation (firm or other corporate body). - CDWA Lite v1.1: nameCreator@type is replaced by actorType (as it characterizes the actor self and not the name) - museumdat v1.0: nameActor@type is replaced by actorType (as it characterizes the actor self and not the name) - - - - - - - - - - - - - Describes an actor with role and (if necessary) attributions related to the event the actor participated in. - CDWA Lite v1.1: indexingCreatorSet is generalized into actorInRole - museumdat v1.0: indexingActorSet - - - - - - Role of the Actor in the event. Controlled - CDWA Lite v1.1: roleCreator is generalized into roleActor - museumdat v1.0: roleActor - - - - - A qualifier used when the attribution is uncertain, is in dispute, when there is more than one actor, when there is a former attribution, or when the attribution otherwise requires explanation. - Data values: attributed to, studio of, workshop of, atelier of, office of, assistant of, associate of, pupil of, follower of, school of, circle of, style of, after copyist of, manner of... - CDWA Lite v1.1: attributionQualifierCreator is generalized into attributionQualifierActor - museumdat v1.0: attributionQualifierActor - - - - - Extent of the actor's participation in the event, if there are several actors. - Data values: design, execution, with additions by, figures, renovation by, predella, embroidery, cast by, printed by, ... - CDWA Lite v1.1: extentCreator is generalized into extentActor - museumdat v1.0: extentActor - - - - - - - Umschlag für Anzeige- und Index-Elemente zu einem Akteur mit Rolleninformation (als Beteiligter an einem Ereignis). Bei mehreren Akteuren wird das Element entsprechend oft wiederholt. - Wrapper for display and index elements for an actor with role information (participating in an event). For multiple actors repeat the element. - - - - - Display element for an actor, corresponding to the following actor element. - May include name, brief biographical information, and roles (if necessary) of the named actor, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor. - May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese." - Repeat this element only for language variants! - CDWA lite v1.1: displayCreator corresponds partly / is generalized into lido:displayActor - museumdat v1.0: displayCreator corresponds partly / is generalized into lido:displayActor - - - - - - - - Wrapper for display and index elements for an actor. For multiple actors repeat this element. - - - - - Display element for an actor, corresponding to the following actor element. - May include name, brief biographical information of the named actor, presented in a syntax suitable for display to the end-user. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor. - May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese." - Repeat this element only for language variants! - CDWA lite v1.1: displayCreator corresponds partly to lido:displayActor (without role information) - museumdat v1.0: displayCreator corresponds partly to lido:displayActor (without role information) - - - - - - - - - - - - - - - - Holds the administrative metadata of an object record. - The attribute xml:lang is mandatory and specifies the language of the administrative metadata. - For fully multi-lingual resources, repeat this element once for each language represented. - If only a few data fields (e.g. creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - CDWA Lite v1.1: administrativeMetadata - museumdat v1.0: administrativeMetadata - - - - - - - - - - - - - Wrapper for a name of an entity, and its related information. If there is more than one name, repeat the appellation element. - - - - - - - - - Appellations, e.g. titles, identifying phrases, or names given to an item, but also name of a person or corporation, also place name etc. - CDWA Lite v1.1: e.g. title, nameCreator, locationName correspond to lido:appellationValue - museumdat v1.0: e.g. title, repositoryName, nameActor, nameLocation correspond to lido:appellationValue - - - - - - - - - - - - - - - - The CRM category of which this item is an instance. - Preferably the source attribute refers to a CRM RDF version, e.g. http://cidoc.ics.forth.gr/rdfs/cidoc_crm_v5.0.1.rdfs - - - - - - - - - - - - A wrapper for classification information. - - - - - - Term used to categorize a work by grouping it together with other works on the basis of similar characteristics. The category belongs to a systematic scheme (classification) which groups objects of similar characteristics according to uniform aspects. This grouping / classification may be done according to material, form, shape, function, region of origin, cultural context, or historical or stylistic period. In addition to this systematic grouping it may also be done according to organizational divisions within a museum (e.g., according to the collection structure of a museum).If the work is assigned to multiple classifications, repeat this element. - CDWA Lite v1.1: classification (assigns a term) corresponds to lido:classification (assigns a concept with its identifiers and various terms) - museumdat v1.0: classification (assigns a term) corresponds to lido:classification (assigns a concept with its identifiers and various terms) - - - - - - - - Set for identifiers and terms of a concept. - - - - - - - - - Set for identifiers and terms of a concept, qualified by a type. - - - - - - - - - - A wrapper a date specification: This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, repeat the same date in earliest and latest dates. For ca. and other uncertain or approximate dates, estimate the greatest possible span for indexing. Uncertainty should be indicated in the display element. - CDWA Lite v1.1: indexingDatesSet is generalized and refined into lido:date - museumdat v1.0: indexingDates is refined into lido:date - - - - - - - A period name defining the range of dates. Data values should be controlled. - - - - - - - Wrapper for display and index elements for date information. - - - - - Display element for a date specification, corresponding to the following date element. - It is a concise description of the date, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. - Repeat this element only for language variants! - CDWA lite v1.1: displayCreationDate is generalized into lido:displayDate - museumdat v1.0: displayCreationDate is generalized into lido:displayDate - - - - - - - - Holds the descriptive metadata of an object record. - The attribute xml:lang is mandatory and specifies the language of the descriptive metadata. - For fully multi-lingual resources, repeat this element once for each language represented. - If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - CDWA Lite v1.1: descriptiveMetadata - museumdat v1.0: descriptiveMetadata - - - - - - - - - - - - - - A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this set. - - - - - Usually a relatively brief essay-like text that describes the entity. - - - - - The source for the descriptive note, generally a published source. - - - - - - - - A wrapper for Display State Editions - CDWA Lite v1.1: displayStateEditionWrap - museumdat v1.0: displayStateEditionWrap - - - - - - A description of the state of the work; used primarily for prints and other multiples - Formulated according to rules. For State, include state identification and known states, as appropriate. - Repeat this element only for language variants! - CDWA Lite v1.1: displayState - museumdat v1.0: displayState - - - - - A description of the edition of the work; used primarily for prints and other multiples. - Formulated according to rules. For Edition, include impression number, edition size, and edition number, or edition name, as appropriate. - Repeat this element only for language variants! - CDWA Lite v1.1: displayEdition - museumdat v1.0: displayEdition - - - - - The published source of the state or edition information. - CDWA Lite v1.1: sourceStateEdition - museumdat v1.0: sourceStateEdition - - - - - - - - A year or exact date that broadly delimits the beginning of an implied date span. Format: YYYY[-MM[-DD]] - CDWA Lite v1.1: earliestDate - museumdat v1.0: earliestDate - - - - - - - - - - - - - - - Complex type for one event related with the work and its related information. If there is more than one event described, repeat the Event Set element. - CDWA Lite v1.1: no equivalent - museumdat v1.0: indexingEventSet is extended and refined into lido:event - - - - - - Qualifier of the event, e.g. creation, find, ... Data values to be controlled. Recommended: Defined list of subclasses of CRM entity E5 Event. - CDWA Lite v1.1: no equivalent - museumdat v1.0: eventType is refined into lido:eventType - - - - - The role played within this event by the object being recorded. - - - - - - - Name of a culture, people, or nationality participating in the event. Controlled. - CDWA Lite v1.1: culture - museumdat v1.0: culture - - - - - Date specification of the event. - - - - - Place specification of the event. An event can take place only in one place! - - - - - The method by which the event is carried out. Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - Indicates the substances or materials used within the event (e.g. the creation of a work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - References an other object that was present at this same event. - - - - - An event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - A description of the event. - - - - - - - Wrapper for display and index elements for events (e.g. creation, find, use etc.), in which the described object participated. For multiple events repeat the element. - - - - - Display element for an event, corresponding to the following event element. - Repeat this element only for language variants! - - - - - - - - Wrapper for event sets. - CDWA Lite v1.1:no equivalent - museumdat v1.0: eventWrap corresponds to lido:eventWrap - - - - - - - - - - - There is no controlled list of identifier types. Suggested values include, but are not limited to the following:- doi (Digital Objects Identifier)- guid (Globally unique identifier)- hdl (Handle)- isbn (International Standard Book Number)- ismn (International Standard Music Number)- isrc (International Standard Recording Code)- issn (International Standard Serials Number)- local- permalink- purl (Persistent Uniform Resource Locator)- url (Uniform Resource Locator)- urn (Uniform Resource Name) - - - - - - - - - - - - - - A wrapper for information about inscriptions and other marks. - CDWA Lite v1.1: inscriptionsWrap - museumdat v1.0: inscriptionsWrap - - - - - - A description or transcription of any distinguishing or identifying physical lettering, annotations, texts, markings, or labels that are affixed, applied, stamped, written, inscribed, or attached to the work, excluding any mark or text inherent in the materials of which the work is made (record watermarks in Display Materials/Techniques). - The assigned type attribute allows to qualify text, e.g. to indicate that the text is a transcription of the inscription - CDWA Lite v1.1: inscriptions, with a newly assigned type attribute - museumdat v1.0: inscriptions, with a newly assigned type attribute - - - - - - - - - - - - - - - - - - - - Reference information to a legal body - - - - - Unambiguous identification of the institution or person. - - - - - Appellation of the institution or person. - - - - - Weblink of the institution or person. - - - - - - - Holds the metadata of an object. - CDWA Lite v1.1: cdwalite - museumdat v1.0: museumdat - - - - - - A unique lido record identification, preferably composed of an identifier for the contributor and a record identification in the contributor's (local) system. - - - - - - - - - - - Holds one or multiple object records. - The attribute relatedencoding contains the source format for the attributes encodinganalog and label (see I.1.1. Object type). This may be any metadata standard like DublinCore, but also MIDAS, KNORR or system-specific formats. This attribute is optional. - CDWA Lite v1.1: cdwaliteWrap - museumdat v1.0: museumdatWrap - - - - - - - - - - - A reference to an image or other resource that is related to the resource in this Resource Set, generally linking a group or collection of images or other resources to members of the group or collection. For multiple related resources, repeat this element. - - - - - - A term describing the nature of the relationship between the resource at hand and the related resource. - Recommended values: part of, larger context for, related to, ... - - - - - An identification of the related image or other resource that will be meaningful to end-users. - - - - - - - - - - Materials and techniques for retrieval; if multiple parts of the work require separate materials and techniques, or if you are recording media and support separately, repeat the materialsTechSet element qualifying the extent sub-element. - - - - - A term to index materials and/or technique. - Data values for Type-Attribut: technique, material, implement, mark (e.g., watermark or other mark inherent in the material) - - - - - An explanation of the part of the work to which the materials or technique are applicable; included when necessary for clarity. - - - - - The source of the information about materials and technique, often used when citing a published source of watermarks. - - - - - - - Wrapper for display and index elements for materials and technique information. - Indicates the substances or materials used, as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - Display element for materials/technique, corresponding to the following materialsTech-Element. - It is presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. - Repeat this element only for language variants! - - - - - - - - The dimensions or other measurements for one aspect of a work (e.g., width); may be combined with extent, qualifier, and other sub-elements as necessary. - Data values for value: Whole numbers or decimal fractions. - Data values for unit: cm, mm, m, g, kg, kb, Mb, Gb. - Data values for type: height, width, depth, length, diameter, circumference, stories, count, area, volume, running time, size, ... - All three attributes - unit, value and type - are mandatory attributes for the measurementsSet. - - - - - - - - - - - - Reference to an object. - - - - - A Uri/Url-Reference representing the object in the worldwide web environment. - CDWA Lite v1.1: linkRelatedWork - museumdat v1.0: linkRelatedWork - - - - - Unique identifier of the referenced object. - CDWA Lite v1.1: locRelatedWork@relWorkID corresponds to lido:objectID - museumdat v1.0: locRelatedWork@relWorkID corresponds to lido:objectID - - - - - A descriptive identification of the object that will be meaningful to end-users, including some or all of the following information, as necessary for clarity and if known: title, object/work type, important actor, date and/or place information, potentially location of the object. - The information should ideally be generated from fields/elements in the related record. - CDWA Lite v1.1: labelRelatedWork - museumdat v1.0: labelRelatedWork - - - - - - - Wrapper for data classifying the object. - CDWA Lite v1.1:no equivalent - museumdat v1.0: objectClassificationWrap - - - - - - - - - - - A wrapper for Description/Descriptive Note information. - CDWA Lite v1.1: descriptiveNoteWrap - museumdat v1.0: descriptiveNoteWrap - - - - - - A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this sub-element. - Includes usually a relatively brief essay-like text that describes the content and context of the work, including comments and an interpretation that may supplement, qualify, or explain the physical characteristics, subject, circumstances of creation or discovery, or other information about the work. - Data values for the type attribute: Object history, description, catalogue text etc. - CDWA Lite v1.1: descriptiveNoteSet - museumdat v1.0: descriptiveNoteSet - - - - - - - - A Wrapper for information that identifies the object. - CDWA Lite v1.1:no equivalent - museumdat v1.0: identificationWrap corresponds to lido:objectIdentificationWrap - - - - - - - - - - - - - - - The dimensions, size, shape, scale, format, or storage configuration of the work, including volume, weight, area or running time. Measurements are formatted to allow retrieval; preferably in metric units where applicable. - CDWA Lite v1.1: indexingMeasurementsSet, with all sub-elements - museumdat v1.0: indexingMeasurementsSet, with all sub-elements - - - - - - An explanation of the part of the work being measured; included when necessary for clarity. - Data values: overall, components, sheet, plate mark, chain lines, pattern repeat, lid, base, laid lines, folios, leaves, columns per page, lines per page, tessera, footprint, panel, interior, mat, window of mat, secondary support, frame, mount, ... - - - - - A word or phrase that elaborates on the nature of the measurements of the work when necessary, as when the measurements are approximate. - Data values: approximate, sight, maximum, larges, smallest, average, variable, assembled, before restoration, before restoration, at corners, rounded, framed, with base, ... - - - - - The configuration of a work, including technical formats, used as necessary. - Data values: Vignette, VHS, IMAX, DOS ... - - - - - The shape of a work, used for unusual shapes (e.g., an oval painting). - Data values: oval, round, square, rectangular, irregular, ... - - - - - An expression of the ratio between the size of the representation of something and that thing (e.g., the size of the drawn structure and the actual built work). Used for studies, record drawings, models, and other representations drawn or constructed to scale. - Data values for scale: numeric (e.g., 1 inch = 1 foot), full-size, life-size, half size,monumental. and others as recommended in CCO and CDWA. Combine this tag with Measurement Sets for numeric scales. For measurementsSet type for Scale, use "base" for the left side of the equation, and "target" for the right side of the equation). - - - - - - - Wrapper for display and index elements for object measurements. If multiple parts of the work are measured, repeat the element - Holds information about the dimensions, size, or scale of the work. It may also include the number of the parts of a complex work, series, or collection. - - - - - Display element for one object measurement, corresponding to the following objectMeasurement element. - Repeat this element only for language variants! - - - - - - - - A wrapper for the Measurements. - - - - - - - - - - Wrapper for indexing related topics and works, collections, etc. - CDWA Lite v1.1:no equivalent - museumdat v1.0: relationWrap corresponds to lido:objectRelationWrap - - - - - - - - - - - Wrapper for display and reference elements for an other object. - - - - - A free-text description of the object, corresponding to the following object element - Repeat this element only for language variants! - - - - - - - - A wrapper for Object/Work Types. - - - - - - Object Work Types are identifying the specific kind of object or work being described. For a collection, include repeating instances for identifying all of or the most important items in the collection. - CDWA Lite v1.1: objectWorkType (assigns a term) corresponds to lido:objectWorkType (assigns a concept with its identifiers and various terms) - museumdat v1.0: objectWorkType (assigns a term) corresponds to lido:objectWorkType (assigns a concept with its identifiers and various terms) - - - - - - - - Structured element for place information - CDWA Lite v1.1: locationSet corresponds partly to lido:place - museumdat v1.0: indexingLocationWrap is refined into lido:place - - - - - - The name of the geographic place. If there are different names of the same place, e.g. today's and historical names, repeat this element. - CDWA Lite v1.1: locationName corresponds partly to lido:namePlaceSet/lido:appellation - museumdat v1.0: nameLocationSet - - - - - GML-conformant Content, instantiation to be included - - - - - Allows for indexing larger geographical entities. - - - - - A classification of the place, e.g. by geological complex, stratigraphic unit or habitat type. - - - - - - Data values for politicalEntity: Gemeinde, Kreis, Bundesland, Staat, Herzogtum, ... - - - - - Data values for geographicalEntity: Naturraum, Landschaft ... - - - - - - Wrapper for display and index elements for place information. - - - - - Display element for a place specification, corresponding to the following place element. - Repeat this element only for language variants! - - - - - - - - - - - - - - - - - Wrapper for metadata information about this record. - Note: The metadata information contains the reference to the "lido"-metadata set but may also be constituted by reference to an "object data sheet" in an online database. - CDWA Lite v1.1: recordInfoWrap - museumdat v1.0: recordInfoSet - - - - - - Unique ID of the metadata. Record Info ID has the same definition as Record ID but out of the context of original local system, such as a persistent identifier or an oai identifier (e.g., oai1:getty.edu:paintings/00001234 attribute type= oai). - - - - - Link of the metadata, e.g., to the object data sheet (not the same as link of the object). - - - - - Unique ID of the metadata of the related object. - - - - - Pointer(s) to other metadata (administrative, technical, structural). - - - - - Creation date or date modified of the metadata record. Format will vary depending upon implementation. - - - - - - - - - A wrapper for information about the record that contains the cataloguing information. - CDWA Lite v1.1: recordWrap - museumdat v1.0: recordWrap - - - - - - A unique record identification in the contributor's (local) system. - - - - - Term establishing whether the record represents an individual item or a collection, series, or group of works. - It is required to designate the Record type. The default is item. Other data values: collection, series, group, volume, fonds, - - - - - The source of information in this record, generally the repository or other institution. - - - - - - - - - A wrapper for one work, group, collection, or series that is directly related to the work at hand, including direct relationships between two works, between a work and its components, and between an item and the larger group, collection, or series of works. Objects referred to may be corresponding objects or objects created to be shown together with the object in question, but also e.g., literature (bibliographic objects) in which the object is documented or mentioned forms a "relatedWorkSet". If there is more than one object referred to the set should be repeated. - - - - - - - A term describing the nature of the relationship between the work at hand and the related entity. - Recommended data values: part of, larger context for, model of, model for, study of, study forrendering of, copy of, ... The default is "related to". - Note: For implementation of the data: Note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship (e.g., one work is part of a second work, but from the point of view of the second record, the first work is the larger context for the second work). Whether or not relationships are physically reciprocal as implemented in systems is a local decision. - - - - - - - - A wrapper for Related Works information. - - - - - - - - - - Wrapper for designation and identification of the institution of custody and, possibly, indication of the exact location of the object. If there are several designations known, e.g., a current one and former ones (see: type attribute), repeat the element. - CDWA Lite v1.1: locationSet is partly a subset of lido:repositorySet - museumdat v1.0: repositorySet - refined into lido:repositorySet (see repositoryName and repositoryLocation) - - - - - - Unambiguous identification, designation and weblink of the institution of custody - CDWA Lite v1.1: locationName corresponds partly to lido:repositoryName - museumdat v1.0: repositoryName - refined into lido:repositoryName - - - - - - Location of the object, especially relevant for architecture and archaeological sites. - - - - - - - - - - - - - - - - Wrapper for Repository/ Location information. - CDWA Lite v1.1: locationWrap is partly corresponding lido:repositorySet - museumdat v1.0: repositoryWrap - refined into lido:repositoryWrap (see repositoryName and repositoryLocation) - - - - - - - - - - A wrapper for sets of resource information. If there are multiple resources associated with the work, repeat the Resource Set sub-element. - CDWA Lite v1.1: resourceSet - museumdat v1.0: resourceSet - - - - - - A uri/url reference that is universal in the worldwide web environment. - - - - - The unique numeric or alphanumeric identification of the resource. - - - - - The relationship of an image or other resource to the work being described. - Data values: conservation image, documentary image, contextual image, historical image, reconstruction, installation image... - - - - - The generic identification of the medium of the image or other resource. - Data values: Controlled. Digital image, photograph, slide, videotape, X-ray photograph, negative, - - - - - Information about rights regarding the image or other resource. Use this sub-element if the holder of the reproduction rights for the image/resource differs from the holder of rights for the work. See also Rights Work above. (E.g., the work rights are " National Museum of African Art, Smithsonian Instituition (Washing DC), " but the image rights are "Photo Frank Khoury.") - - - - - A description of the spatial, chronological, or contextual aspects of the work as captured in the view of this particular image or other resource. - - - - - The specific vantage point or perspective of the view. - - - - - Terms or phrases that characterize the subject matter of the work as it is depicted in a specific image or other resource. - Data values: Controlled. E.g., IconClass, museumsvokabular.de, SWD, AAT - Recommended values for type attribute: conceptTerm, iconography, eventName, personalName, corporateBodyName, geographicName - - - - - - Identification of the agency, individual, repository, or publication from which the image or other resource was obtained, including a bibliographic citation in the case of copy photography. Include this sub-element when the source of the image/resource differs from the source named in Record Source. - - - - - - Pointer(s) to other metadata (administrative, technical, structural). - - - - - - - - A date or range of dates associated with the creation or production of the image. This is not necessarily the same as the date of production of the resource (e.g., a print of a negative may be made years after the image was first captured on film). For the date of the resource, use Resource Date. Format will vary depending upon implementation. - - - - - - - - - - - - - - - A wrapper for image information. An identification of an image (visual surrogate) of the work, including digital images, slides, transparencies, photographs, and moving images, but excluding items that are considered works in their own right. For works such as drawings, prints, paintings, or photographs considered art, and other works that themselves contain representations of other works, use Related Works and/or Subjects. - CDWA Lite v1.1: resourceWrap - museumdat v1.0: resourceWrap - - - - - - - - - - Information about rights management; may include copyright and other intellectual property statements. - - - - - - - - Creditline: Naming specification for rights holder. - Repeat this element only for language variants. - - - - - - - Wrapper for rights information. - CDWA Lite v1.1: no equivalent (cdwalite:rightsWork is not wrapped) - museumdat v1.0: no equivalent (museumdat:rightsWork is not wrapped) - - - - - - Information about rights management; may include copyright and other intellectual property statements required for use of the metadata. - CDWA Lite v1.1: rightsWork / rightsResource - semantics of the simple text elements correspond to the structured lido:rights - museumdat v1.0: rightsWork / rightsResource - semantics of the simple text elements correspond to the structured lido:rights - - - - - - - - - The source for the appellation, generally a published source. - CDWA Lite v1.1: e.g. sourceTitle, sourceNameCreator correspond to lido:sourceAppellation - museumdat v1.0: e.g. sourceTitle, sourceNameActor correspond to lido:sourceAppellation - - - - - - - - - - - - - - A wrapper for one set of Subject Indexing information. These identify, describe, and/or interpret what is depicted in and by a work or what the work is about. If a work has multiple parts or otherwise has separate, multiple subjects, repeat this element with Extent Subject. This element may also be repeated to distinguish between subjects that reflect what a work is *of* (description and identification) from what it is *about* (interpretation). - While not required, it is highly recommended to include subject information, even for non-objective art, for which the function or purpose of the work may be included as subject. - CDWA Lite v1.1: indexingSubjectSet, but refined - museumdat v1.0: indexingSubjectSet, but refined - - - - - - When there are multiple subjects, a term indicating the part of the work to which these subject terms apply. - Data values: recto, verso, side A, side B, main panel, predella, ... - CDWA Lite v1.1: extentSubject - museumdat v1.0: extentSubject - - - - - Subject terms - these may include iconography, themes from literature, or generic terms describing the material world, or topics (e.g., concepts, themes, or issues). However, references to people, events, places are indicated in the the respective sub-elements Subject: Actor, Subject: Event, Subject: Place. - Data values should be controlled, e.g. Iconclass, AAT, museumsvokabular.de, SWD. - CDWA Lite v1.1: subjectTerm, but restricted to concepts - cf. new sub-elements subjectActor, subjectEvent, subjectPlace - museumdat v1.0: subjectTerm, but restricted to concepts - cf. new sub-elements subjectActor, subjectEvent, subjectPlace - - - - - A person, group, or institution depicted in or by an object, or the object is about. - - - - - A time specification or period depicted in or by an object, or the object is about. - - - - - An event depicted in or by an object, or the object is about. - - - - - A place depicted in or by an object, or the object is about. - - - - - An object - e.g. a building or a work of ar depicted in or by an object, or the object is about. - - - - - - - - - A single set of subject indexing information, together with its textual equivalent. - - - - - - A free-text description of the subject matter represented by/in the object, corresponding to the following subject element - Repeat this element only for language variants! - - - - - - - - - A wrapper for Subject information. - - - - - - - - - - Eine Bezeichnung für ein Konzept / einen Begriff, i.d.R. aus einem kontrollierten Vokabular. - Die Attribute sind folgendermaßen zu verwenden:pref: hat als zulässige Datenwerte: preferred | alternate, gibt an, ob es sich um die Vorzugsbezeichnung des Konzepts oder eine alternative Bezeichnung handelt.xml:lang: spezifiziert die Sprache der Bezeichnung.addedSearchTerm: hat als zulässige Datenwerte: yes | no, die Standardeinstellung ist "no". imported="yes" bedeutet, dass das Element einen Zusatzeintrag (z.B. Synonym, Oberbegriff) aus dem verwendeten Normvokabular beinhaltet, der nur für Retrievalzwecke mitgeliefert wird.encodinganalog und label dienen zur Angabe der Datenkategorie des Quellsystems, aus dem die Datenwerte übernommen wurden. encodinganalog bezieht sich dabei auf den internen, label auf den externen Feldnamen. Das Bezugsformat ist im lidoWrap angegeben. Die Attribute sind optional. - - - - - - - - - - - - - - Simple text element with encodinganalog and label attribute - - - - - - - - - - - - Text element with encodinganalog, label and type attribute - - - - - - - - - - - - - Wrapper for Object name / Title information. - CDWA Lite v1.1: titleWrap - museumdat v1.0: titleWrap - - - - - - Wrapper for one title or object name and its related information. If there is more than one title, repeat the Title Set element. - CDWA Lite v1.1: titleSet - museumdat v1.0: titleSet - - - - - - - - - A description of the lifespan of the person or the existence of the corporate body, using "ca." and any other expressions of uncertainty or nuance. For Birth and Death date attributes, record years of birth and death, estimated where necessary. For a corporate body, use birthdate and deathdate to record the dates of founding and dissolution. - Although this is not a mandatory field the use of birth date and death date is strongly recommended in the case of artists. - If only a reference period (not the exact period of life) of a person is known, and the event in which the person took part cannot be exactly dated, then the reference period should be taken as the dating of the event. - CDWA Lite v1.1: vitalDatesCreator is generalized into vitalDatesActor - museumdat v1.0: vitalDatesActor - - - - - - - - - - - - - - - - A uri/url reference to a web resource that describes / represents the item, e.g. a metadata record. Note that it differs from an identifier for the item itself. - - - - - - - - - - - - An unambiguous numeric or alphanumeric identification number, assigned to the object by the institution of custody. - CDWA Lite v1.1: workID - museumdat v1.0: workID - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/athena/athena-lido-v0.9-proxy.xsd b/schemas/athena/athena-lido-v0.9-proxy.xsd deleted file mode 100644 index 6de1e58..0000000 --- a/schemas/athena/athena-lido-v0.9-proxy.xsd +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/athena/athena-lido-v1.0.xsd b/schemas/athena/athena-lido-v1.0.xsd deleted file mode 100644 index 1584c86..0000000 --- a/schemas/athena/athena-lido-v1.0.xsd +++ /dev/null @@ -1,1829 +0,0 @@ - - - - - - - - Definition: Contains identifying and indexing actor information. - How to record: Data values of the type attribute: person, corporation, family, group. - - - - - Definition: A unique identifier for the actor. - How to record: Preferably taken from a published authority file. - - - - - Definition: A wrapper for name elements. - How to record: if there exists more than one name for a single actor, repeat Name Actor Set. - Notes: Indicates names, appellations, or other identifiers assigned to an individual, group of people, firm or other corporate body, or other entity. - - - - - Definition: National or cultural affiliation of the person or corporate body. - How to record: Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - Definition: The lifespan of the person or the existence of the corporate body or group. - How to record: For individuals, record birth date as earliest and death date as latest date, estimated where necessary. For a corporate body or group, record the dates of founding and dissolution.Although this is not a mandatory field the use of birth date and death date is strongly recommended for unambigous identification of individuals. The type attribute of earliest and latest date may specify for indiviudals, if birth and death dates or if dates of activity are recorded. Data values for type attribute may include: birthDate, deathDate, estimatedDate. - - - - - Definition: The sex of the individual. - How to record: Data values: male, female, unknown, not applicable.Repeat this element for language variants only. - Notes: Not applicable for corporate bodies. - - - - - - Definition: Indicates if the actor is an individual, a group of individuals, a family or a corporation (firm or other corporate body). - How to record: Data values: person, group, family, corporation. - - - - - - Definition: Describes an actor with role and (if necessary) attributions related to the event the actor participated in. - - - - - Definition: Contains structured identifying and indexing actor information. - - - - - Definition: Role of the Actor in the event. - How to record: Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - Definition: A qualifier used when the attribution is uncertain, is in dispute, when there is more than one actor, when there is a former attribution, or when the attribution otherwise requires explanation. - How to record: Example values: attributed to, studio of, workshop of, atelier of, office of, assistant of, associate of, pupil of, follower of, school of, circle of, style of, after copyist of, manner of... - - - - - Definition: Extent of the actor's participation in the event, if there are several actors. - How to record: Example values: design, execution, with additions by, figures, renovation by, predella, embroidery, cast by, printed by, ... - - - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating in an event). For multiple actors repeat the element. - - - - - Definition: Display element for an actor coupled with its specific role, corresponding to the following actor element. - How to record: May include name, brief biographical information, and roles (if necessary) of the named actor, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor.May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese."Repeat this element only for language variants. - - - - - Definition: Describes an actor with role and (if necessary) attributions in a structured way, consisting of the sub-elements actor, its role, attribution and extent. - - - - - - - Definition: Wrapper for display and index elements for one actor. For multiple actors repeat this element. - - - - - Definition: Display element for one actor, corresponding to the following actor element. - How to record: May include name, brief biographical information of the named actor, presented in a syntax suitable for display to the end-user. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor.May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese."Repeat this element only for language variants. - - - - - Definition: Describes and identifies an actor, i.e. a person, corporation, family or group, containing structured sub-elements for indexing and identification references. - - - - - - - How to record: Has the two values: "yes" or "no". ”yes” indicates, that the term is an additional term which is derived from an underlying controlled vocabulary (eg. synonym, generic term, superordinate term) and should be used only for retrieval."no" is default. - - - - - - - - - - - Definition: Holds the administrative metadata for an object / work record. - How to record: The attribute xml:lang is mandatory and specifies the language of the administrative metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title, creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - Definition: Holds the administrative metadata for an object / work record. - How to record: The attribute xml:lang is mandatory and specifies the language of the administrative metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title, creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - - - - - - - Definition: Wrapper for a name of an entity, and its related information. - How to record: If there is more than one name, repeat the appellation element. - - - - - Definition: Appellations, e.g. titles, identifying phrases, or names given to an item, but also name of a person or corporation, also place name etc. - How to record: Repeat this element only for language variants. - - - - - - - - - - - - - - - Definition: The source for the appellation, generally a published source. - - - - - - - - - - - - - - - - Definition: A wrapper for classification information. - - - - - - Definition: Concepts used to categorize an object / work by grouping it together with others on the basis of similar characteristics. - How to record: The category belongs to a systematic scheme (classification) which groups objects of similar characteristics according to uniform aspects. This grouping / classification may be done according to material, form, shape, function, region of origin, cultural context, or historical or stylistic period. In addition to this systematic grouping it may also be done according to organizational divisions within a museum (e.g., according to the collection structure of a museum). If the object / work is assigned to multiple classifications, repeat this element.Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - - - - - Definition: Set for identifiers and terms of a concept. - How to record: A concept describes a conceptual resource. Concepts are organized in concept schemes like thesauri, classification schemes, taxonomies, subject-heading systems, or any other type of structured controlled vocabulary. See also SKOS specifications at http://www.w3.org/2004/02/skos/ - - - - - Definition: A unique identifier for the concept. - How to record: Preferably taken from and linking to a published controlled vocabulary. - - - - - Definition: A name for the referred concept, used for indexing. - - - - - - - Definition: A wrapper for date specification. - How to record: This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest date. For ca. and other uncertain or approximate dates, estimate the greatest possible span for indexing. Uncertainty can be indicated in the type attributes of earliest and latest date, and can be characterized more precisely in the display element. - Notes: Format of the data values in sub-elements earliestDate and LatestDate is according to ISO 8601. This includes date and time specification. - - - - - Definition: A year or exact date that broadly delimits the beginning of an implied date span. - How to record: General format: YYYY[-MM[-DD]]Format is according to ISO 8601. This may include date and time specification. - - - - - - - Definition: Specification of the date, e.g. if it is an exact or an estimated earliest date. - How to record: Data values may be: exactDate, estimatedDate. - - - - - - - - - - - - Definition: A year or exact date that broadly delimits the end of an implied date span. - How to record: General format: YYYY[-MM[-DD]]Format is according to ISO 8601. This may include date and time specification. - - - - - - - Definition: Specification of the date, e.g. if it is an exact or an estimated latest date. - How to record: Data values may be: exactDate, estimatedDate. - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for date information. - - - - - Definition: Display element for a date specification, corresponding to the following date element. - How to record: It is a concise description of the date, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance.Repeat this element only for language variants. - - - - - Definition: Contains a date specification by providing a set of years as earliest and latest date delimiting the respective span of time.This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest date. - - - - - - - Definition: Holds the descriptive metadata of an object record. - How to record: The attribute xml:lang is mandatory and specifies the language of the descriptive metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - Definition: Holds the descriptive metadata of an object record. - How to record: The attribute xml:lang is mandatory and specifies the language of the descriptive metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - Definition: Wrapper for all classifying information about an object / work including the object's / work type and other classifications. - - - - - - - - - - - Definition: Wrapper for a description, including description identifer, descriptive note and sources. - How to record: If there is more than one descriptive note, repeat this set. - - - - - Definition: Identifier for an external resource describing the entity. - Notes: The referenced resource may be any kind of document, preferably web-accessible. - - - - - Definition: Usually a relatively brief essay-like text that describes the entity. - How to record: Repeat this element only for language variants. - - - - - Definition: The source for the descriptive note, generally a published source. - - - - - - - - - Definition: A wrapper for the state and edition of the object / work. - - - - - - Definition: A description of the state of the object / work. Used primarily for prints and other multiples - How to record: Formulated according to rules. For State, include state identification and known states, as appropriate.Repeat this element only for language variants. - - - - - Definition: A description of the edition of the object / work. Used primarily for prints and other multiples. - How to record: Formulated according to rules. For Edition, include impression number, edition size, and edition number, or edition name, as appropriate.Repeat this element only for language variants. - - - - - Definition: The published source of the state or edition information. - - - - - - - - How to record: Elements with data values are accompanied by the attributes encodinganalog and label to indicate the format of the data source from which the data were migrated. The attribute encodinganalog refers to the internal field label of the source database. The source format is indicated in the attribute relatedencoding of the lidoWrap - - - - - Definition: Complex type for one event associated with the object / work and its related information. - How to record: If there is more than one event repeat the Event Set element. - Notes: [none] - - - - - Definition: A unique identifier for the event. - How to record: Preferably taken from and linking to a published resource describing the event. - - - - - Definition: The nature of the event associated with an object / work. - How to record: Controlled. Recommended: Defined list of subclasses of CRM entity E5 Event.Basic event types as recorded in sub-element term include: Acquisition, Collecting, Commisioning, Creation, Designing, Destruction, Event (non-specified), Excavation, Exhibition, Finding, Loss, Modification, Move, Part addition, Part removal, Performance, Planning, Production, Provenance, Publication, Restoration, Transformation, Type assignment, Type creation, Use. - - - - - Definition: The role played within this event by the described entity. - How to record: Preferably taken from a published controlled vocabulary. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating or being present in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, cultural context, people, or also a nationality. - How to record: Preferably using a controlled vocabuarly. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period in which the event happened. - How to record: Preferably taken from a published controlled vocabulary. Repeat this element only for indicating an earliest and latest period delimiting the event. - Notes: Period concepts have delimiting character in time and space. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - How to record: Preferably taken from a published controlled vocabulary. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - How to record: Will be used most often within a production event, but also others such as excavation, restoration, etc. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: References an event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: Wrapper for a description of the event, including description identifer, descriptive note of the event and its sources. - How to record: If there is more than one descriptive note, repeat this element. - - - - - - - Definition: Wrapper for display and index elements for events (e.g. creation, find, use etc.), in which the described object participated. - How to record: For multiple events repeat the element. - - - - - Definition: Display element for an event, corresponding to the following event element. - How to record: Repeat this element only for language variants. - - - - - Definition: Identifying, descriptive and indexing information for the events in which the object participated or was present at, e.g. creation, excavation, collection, and use. - Notes: All information related to the creation of an object: creator, cutlural context, creation date, creation place, the material and techniques used are recorded here, qualified by the event type “creation”. - - - - - - - Definition: Wrapper for event sets. - - - - - - Definition: Wrapper for the display and index elements for events (e.g. creation, find, and use), in which the object participated. - How to record: For multiple events repeat the element. - - - - - - - - - - - - - - - Definition: Qualifies the type of the given place entity according to geographical structures. - How to record: Data values can include: natural environment, landscape. - - - - - Definition: Specifies the GML instantiation for georeferences. - Notes: For documentation on GML refer to http://www.opengis.net/gml/. - - - - - - - - - - How to record: There is no controlled list of identifier types. Suggested values include, but are not limited to the following: doi (Digital Objects Identifier)guid (Globally unique identifier)hdl (Handle)isbn (International Standard Book Number)ismn (International Standard Music Number)isrc (International Standard Recording Code)issn (International Standard Serials Number)localpermalinkpurl (Persistent Uniform Resource Locator)url (Uniform Resource Locator)urn (Uniform Resource Name) - - - - - - - - - - - - - - Definition: A wrapper for information about inscriptions and other marks. - - - - - - Definition: A transcription or description of any distinguishing or identifying physical lettering, annotations, texts, markings, or labels that are affixed, applied, stamped, written, inscribed, or attached to the object / work, excluding any mark or text inherent in the materials of which it is made. - Notes: Record watermarks in Display Materials/Techniques. - - - - - - Definition: Transcription of the inscription. - How to record: Repeat this element only for language variants. - - - - - Definition: Wrapper for a description of the inscription, including description identifer, descriptive note of the inscription and sources. - - - - - - - - - - - - - How to record: Elements with data values are accompanied by the attributes encodinganalog and label, to indicate the format of the data source from which the data were migrated. The attribute label refers to the external label of a data field at the visible user interface. The source format is indicated in the attribute - - - - - Definition: Reference information to a legal body. - - - - - Definition: Unambiguous identification of the institution or person referred to as legal body. - - - - - Definition: Appellation of the institution or person. - - - - - Definition: Weblink of the institution or person referred to as legal body. - - - - - - - Definition: Holds the metadata of an object / work. - How to record: Record attribute relatedencoding for this element only if it is the root element. If the document holds more than one LIDO record, assign the attribute to the lidoWrap element. - Notes: Use this element as root for the delivery of content through OAI-PMH. - - - - - Definition: Holds the metadata of an object / work. - - - - - Definition: A unique lido record identification preferably composed of an identifier for the contributor and a record identification in the contributor's (local) system. - - - - - Definition: A unique, published identification of the described object / work. - How to record: May link to authority files maintained outside of the contributor's documentation system or may be an identifier for the object published by its repository, e.g. composed of an identifier for the repository and an inventory number of the object.Preferably a dereferenceable URL. - - - - - Definition: Indicates the category of which this item is an instance, preferably referring to CIDOC-CRM concept definitions. - How to record: CIDOC-CRM concept definitions are given at http://www.cidoc-crm.org/crm-concepts/Data values in the sub-element term may often be: Man-Made Object (with conceptID "http://www.cidoc-crm.org/crm-concepts/E22"), Man-Made Feature (http://www.cidoc-crm.org/crm-concepts/E25), Collection (http://www.cidoc-crm.org/crm-concepts/E78). - - - - - - - - - - Definition: Holds one or multiple object records. - - - - - - - - - - - - - - - - - - - Definition: Materials and techniques for retrieval. - How to record: If multiple parts of the object / work require separate materials and techniques, or if media and support are being recorded separately, repeat the materialsTechSet element qualifying the extent sub-element. - - - - - Definition: A concept to index materials and/or technique. - How to record: Preferably taken from a published controlled vocabulary. - - - - - - - How to record: Example values: technique, material, implement, mark (e.g., watermark or other mark inherent in the material) - - - - - - - - - - Definition: An explanation of the part of the object / work to which the corresponding materials or technique are applicable; included when necessary for clarity. - - - - - Definition: The source of the information about materials and technique, often used when citing a published source of watermarks. - - - - - - - Definition: Wrapper for display and index elements for materials and technique information. - Notes: Indicates the substances or materials used, as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - Definition: Display element for materials/technique, corresponding to the following materialsTech element. - How to record: It is presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance.Repeat this element only for language variants. - - - - - Definition: Materials and techniques data used for indexing. - - - - - - - Definition: The dimensions or other measurements for one aspect of the item. - - - - - Definition: Indicates what kind of measurement is taken. - How to record: Data values for type: height, width, depth, length, diameter, circumference, stories, count, area, volume, running time, size.Repeat this element only for language variants. - - - - - Definition: The unit of the measurement. - How to record: E.g. cm, mm, m, g, kg, kb, Mb or Gb.Repeat this element only for language variants. - - - - - Definition: The value of the measurement. - How to record: Whole numbers or decimal fractions. - - - - - - - Definition: Wrapper for data classifying the object / work.Includes all classifying information about an object / work, such as: object / work type, style, genre, form, age, sex, and phase, or by how holding organization structures its collection (e.g. fine art, decorative art, prints and drawings, natural science, numismatics, or local history). - - - - - - Definition: A wrapper for Object/Work Types. - - - - - Definition: A wrapper for any classification used to categorize an object / work by grouping it together with others on the basis of similar characteristics. - - - - - - - - Definition: Reference to an object / work. - - - - - Definition: A URL-Reference to a description of the object / work in the worldwide web environment. - - - - - Definition: Unique identifier of the referenced object / work. - - - - - Definition: A descriptive identification of the object / work that will be meaningful to end-users, including some or all of the following information, as necessary for clarity and if known: title, object/work type, important actor, date and/or place information, potentially location of the object / work. - How to record: The information should ideally be generated from fields/elements in the related record. - - - - - - - - - - - - - - Definition: A wrapper for Description/Descriptive Note information. - - - - - - Definition: Wrapper for a description of the object, including description identifer, descriptive note and sources. - How to record: Includes usually a relatively brief essay-like text that describes the content and context of the object / work, including comments and an interpretation that may supplement, qualify, or explain the physical characteristics, subject, circumstances of creation or discovery, or other information about it.If there is more than one descriptive note, repeat this element. - Notes: A reference to a text resource holding the description may be given in description identifier. - - - - - - - - Definition: A Wrapper for information that identifies the object. - - - - - - - - - - - - - - - Definition: The dimensions, size, shape, scale, format, or storage configuration of the object / work, including volume, weight, area or running time. - How to record: Measurements are formatted to allow retrieval; preferably in metric units where applicable. - - - - - Definition: The dimensions or other measurements for one aspect of an object / work (e.g., width). - How to record: May be combined with extent, qualifier, and other sub-elements as necessary.The subelements "measurementUnit", "measurementValue" and -"measurementType" are mandatory. - - - - - - - - - - - - Definition: An explanation of the part of the object / work being measured included, when necessary, for clarity. - How to record: Example values: overall, components, sheet, plate mark, chain lines, pattern repeat, lid, base, laid lines, folios, leaves, columns per page, lines per page, tessera, footprint, panel, interior, mat, window of mat, secondary support, frame, and mount - - - - - - - - - - - - Definition: A word or phrase that elaborates on the nature of the measurements of the object / work when necessary, e.g. when the measurements are approximate. - How to record: Example values: approximate, sight, maximum, larges, smallest, average, variable, assembled, before restoration, before restoration, at corners, rounded, framed, and with base. - - - - - - - - - - - - Definition: The configuration of an object / work, including technical formats. Used as necessary. - How to record: Example values: Vignette, VHS, IMAX, and DOS - - - - - - - - - - - - Definition: The shape of an object / work. Used for unusual shapes (e.g., an oval painting). - How to record: Example values: oval, round, square, rectangular, and irregular. - - - - - - - - - - - - Definition: An expression of the ratio between the size of the representation of something and that thing (e.g., the size of the drawn structure and the actual built work). - How to record: Example values for scale: numeric (e.g., 1 inch = 1 foot), full-size, life-size, half size,monumental. and others as recommended in CCO and CDWA. Combine this tag with Measurement Sets for numeric scales. For measurementsSet type for Scale, use "base" for the left side of the equation, and "target" for the right side of the equation). - Notes: Used for studies, record drawings, models, and other representations drawn or constructed to scale. - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for object measurements. If multiple parts of the object / work are measured, repeat the element - How to record: Holds information about the dimensions, size, or scale of the object / work. It may also include the number of parts in a complex object / work, series, or collection. - - - - - Definition: Display element for one object measurement, corresponding to the following objectMeasurement element. - How to record: Repeat this element only for language variants. - - - - - Definition: Structured measurement information about the dimensions, size, or scale of the object / work. - Notes: It may also include the parts of a complex object / work, series, or collection. - - - - - - - Definition: A wrapper for the Measurements. - - - - - - Definition: Wrapper for display and index elements for object / work measurements. - How to record: If multiple parts of the object / work are measured repeat this element. - - - - - - - - - - - - - - - Definition: Wrapper for infomation about related topics and works, collections, etc. - Notes: This includes visual contents and all associated entities the object is about. - - - - - - - - - - - Definition: Wrapper for display and reference elements for an other object. - - - - - Definition: A free-text description of the object, corresponding to the following object element - How to record: Repeat this element only for language variants. - - - - - Definition: Contains identifying information and links to another object. - - - - - - - Definition: A wrapper for Object/Work Types. - - - - - - Definition: The specific kind of object / work being described. - How to record: Preferably taken from a published controlled vocabulary. For a collection, include repeating instances for identifying all of or the most important items in the collection. - - - - - - - - - - - - - - - - Definition: Structured element for place information - - - - - Definition: A unique identifier for the place. - How to record: Preferably taken from a published authority file. - - - - - Definition: The name of the geographic place. - How to record: If there are different names of the same place, e.g. today's and historical names, repeat this element. - - - - - Definition: Georeferences of the place using the GML specification. - How to record: Repeat this element only for language variants. - Notes: For further documentation on GML refer to http://www.opengis.net/gml/. - - - - - - - - - - - - Definition: Allows for indexing larger geographical entities. - - - - - Definition: A classification of the place, e.g. by geological complex, stratigraphic unit or habitat type. - - - - - - - - - - - - - Definition: Data values can include: Gemeinde, Kreis, Bundesland, Staat, Herzogtum, city, county, country, civil parish - - - - - Definition: Data values can include: Naturraum, Landschaft, natural environment, landscape - - - - - - Definition: Wrapper for display and index elements for place information. - - - - - Definition: Display element for a place specification, corresponding to the following place element. - How to record: Repeat this element only for language variants. - - - - - Definition: Contains structured identifying and indexing information for a geographical entity. - - - - - - - Definition: Qualifies the type of the given place entity according to political structures. - How to record: Data values can include: city, county, country, civil parish. - - - - - Definition: Qualifies the value as a preferred or alternative variant. - How to record: Data values: preferred, alternate - - - - - Definition: Wrapper for metadata information about this record. - Notes: The metadata information contains the reference to the "lido"-metadata set but may also be constituted by reference to an "object data sheet" in an online database. - - - - - Definition: Unique ID of the metadata. - How to record: Record Info ID has the same definition as Record ID but out of the context of original local system, such as a persistent identifier or an oai identifier (e.g., oai1:getty.edu:paintings/00001234 attribute type= oai). - - - - - Definition: Link of the metadata, e.g., to the object data sheet (not the same as link of the object). - - - - - Definition: Creation date or date modified of the metadata record. Format will vary depending upon implementation. - - - - - - - - - - - - - - - - Definition: A wrapper for information about the record that contains the cataloguing information. - Notes: Note that this section does not refer to any object or resource information, but only to the source record. - - - - - - Definition: A unique record identification in the contributor's (local) system. - - - - - Definition: Term establishing whether the record represents an individual item or a collection, series, or group of works. - How to record: Mandatory. Example values: item, collection, series, group, volume, fonds.Preferably taken from a published controlled value list. - - - - - Definition: The source of information in this record, generally the repository or other institution. - - - - - - - - - - - - - Definition: Information about rights regarding the content provided in this LIDO record. - - - - - - - - - - - - Definition: Wrapper for metadata information about this record. - - - - - - - - Definition: Indicates the format of the data source from which the data were migrated. For each sub-element with data values then the related source data fields can be referenced through the attributes encodinganalog and label. - - - - - Definition: A wrapper for one event related to the described event. - - - - - Definition: Display and index elements for the event related to the event being recorded. - - - - - Definition: A term describing the nature of the relationship between the described event and the related event. - How to record: Example values: part of, influence of, related to.Indicate a term characterizing the relationship from the perspective of the currently described event towards the related event. Preferably taken from a published controlled vocabulary. - Notes: For implementation of the data, note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship. - - - - - - - Definition: A wrapper for one object / work, group, collection, or series that is directly related to the object / work at hand, including direct relationships between the two, between an object / work and its components, and between an item and the larger group, collection, or series. - How to record: If there is more than one object / work referred to then the set should be repeated.Preferably taken from a published controlled vocabulary. - Notes: Objects referred to may be corresponding object / works or those created to be shown together with the object / work in question, but also e.g., literature (bibliographic objects) in which the object / work is documented or mentioned forms a "relatedWorkSet". - - - - - Definition: Wrapper for the display and reference elements of a related object / work. - - - - - Definition: A term describing the nature of the relationship between the object / work at hand and the related entity. - How to record: Example values: part of, larger context for, model of, model for, study of, study forrendering of, copy of, related to.Indicate a term characterizing the relationship from the perspective of the currently described object / work towards the related object / work. - Notes: For implementation of the data, note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship (e.g., one work is part of a second work, but from the point of view of the second record, the first work is the larger context for the second work). Whether or not relationships are physically reciprocal as implemented in systems is a local decision. - - - - - - - Definition: A wrapper for Related Works information. - - - - - - Definition: A wrapper for a object / work, group, collection, or series that is directly related to the object / work being recorded. - - - - - - - - - - - - - - - Definition: Wrapper for designation and identification of the institution of custody and, possibly, indication of the exact location of the object. - How to record: If there are several designations known, e.g., a current one and former ones (see: type attribute), repeat the element.Data values of the type attribute: current, former. - - - - - Definition: Unambiguous identification, designation and weblink of the institution of custody. - - - - - Definition: An unambiguous numeric or alphanumeric identification number, assigned to the object by the institution of custody. - - - - - - - - - - - - - - - Definition: Location of the object, especially relevant for architecture and archaeological sites. - - - - - - Definition: Qualifies the repository as a former or the current repository. - How to record: Data values: current, former - - - - - - - Definition: Wrapper for Repository/ Location information. - - - - - - Definition: Wrapper for designation and identification of the institution of custody, and possibly an indication of the exact location of the object. - - - - - - - - Definition: A wrapper for sets of resource information. - How to record: If there are multiple, distinct resources associated with the object / work, repeat the Resource Set element. For variants representing the same resource repeat the Resource Representation sub-element. - - - - - Definition: The unique numeric or alphanumeric identification of the original (digital or analogue) resource. - - - - - Definition: A digital representation of a resource for online presentation. - How to record: Repeat this element set for variants representing the same resource, e.g. different sizes of the same image, or a thumbnail representing an audio or video file and the digital audio or video file itself. - - - - - - Definition: A url reference in the worldwide web environment. - - - - - - - Definition: Codec information about the digital resource. - - - - - - - - - Definition: Any technical measurement information needed for online presentation of the resource. - How to record: For images provide width and height of the digital image, for audio or video resources provide duration, bit rate, frame size, and if necessary TC-IN, TC-OUT. - - - - - - - - - Definition: The generic identification of the medium of the image or other resource. - How to record: Preferably using a controlled published value list. Example values: digital image, photograph, slide, videotape, X-ray photograph, negative. - - - - - Definition: The relationship of the resource to the object / work being described. - How to record: Example values: conservation image, documentary image, contextual image, historical image, reconstruction, and installation image - - - - - Definition: The specific vantage point or perspective of the view. - - - - - Definition: A description of the spatial, chronological, or contextual aspects of the object / work as captured in this particular resource. - - - - - - - - - - - - - Definition: A date or range of dates associated with the creation or production of the original resource, e.g. the image or recording. - Notes: This is not necessarily the same as the date of production of the digital resource (e.g. a digitization of a negative is usually made years after the image was captured on film). Format will vary depending upon implementation. - - - - - Definition: Identification of the agency, individual, or repository from which the image or other resource was obtained. - How to record: Include this sub-element when the source of the image/resource differs from the source named in Record Source. - - - - - - - - - - - - - Definition: Information about rights regarding the image or other resource. - How to record: Use this sub-element if the holder of the reproduction rights for the image/resource differs from the holder of rights for the work. See also Rights Work above. (E.g., the work rights are " National Museum of African Art, Smithsonian Instituition (Washing DC), " but the image rights are "Photo Frank Khoury.") - - - - - - - - - - - - - - Definition: A wrapper for resources that are surrogates for an object / work, including digital images, videos or audio files that represent it in an online service. - - - - - - Definition: Contains sub-elements for a structured resource description. - Notes: Provides identification of a surrogate of the object / work including digital images, slides, transparencies, photographs, audio, video and moving images, but excluding items that are considered object / works in their own right. For such as drawings, prints, paintings, or photographs considered art, and other works that themselves contain representations of other works, use Related Works and/or Subjects. - - - - - - - - - - - - - - - Definition: Information about rights management; may include copyright and other intellectual property statements. - - - - - Definition: The specific type of right being recorded. - How to record: For example: copyright, publication right, data protection right, trademark.Preferably taken from a published controlled value list. - - - - - Definition: The date on which a right is or was current. - - - - - Definition: The holder of the right. - - - - - - - - - - - - Definition: Acknowledgement of the rights associated with the physical and/or digital object as requested. - How to record: Repeat this element only for language variants. - - - - - - - Definition: Wrapper for rights information about the object / work described. - Notes: Rights information for the record and for resources is recorded in the respective rights elements recordRights and rightsResource. - - - - - - Definition: Information about rights management; may include copyright and other intellectual property statements about the object / work. - - - - - - - - - - - - - - - Definition: Assigns a priority order for online presentation of the element. - How to record: Has to be a positive integer, with descending priority from 1 to x. - - - - - Definition: Source of the information given in the holding element. - - - - - Definition: A wrapper for one set of Subject Indexing information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat the superordinate Subject Set element and use Extent Subject. The superordinate Subject Set element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - Notes: While not required, it is highly recommended to include subject information, even for non-objective art, for which the function or purpose of the object / work may be included as subject. - - - - - Definition: When there are multiple subjects, a term indicating the part of the object / work to which these subject terms apply. - How to record: Example values: recto, verso, side A, side B, main panel, and predella.Repeat this element only for language variants. - - - - - Definition: Provides references to concepts related to the subject of the described object / work. - How to record: May include iconography, themes from literature, or generic terms describing the material world, or topics (e.g., concepts, themes, or issues). However, references to people, dates, events, places, objects are indicated in the the respective sub-elements Subject Actor Set, Subject Date Set, Subject Event Set, Subject Place Set, and Subject Object Set.Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - Definition: A person, group, or institution depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: A time specification depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: An event depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: A place depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: An object - e.g. a building or a work of art depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for one set of subject information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat this element and use Extent Subject in the Subject element. This element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - - - - - Definition: A free-text description of the subject matter represented by/in the object / work, corresponding to the following subject element - How to record: Repeat this element only for language variants. - - - - - Definition: Contains sub-elements for a structured subject description. These identify, describe, and/or interpret what is depicted in and by an object / work or what it is about. - - - - - - - Definition: A wrapper for Subject information. This may be the visual content (e.g. the iconography of a painting) or what the object is about. - - - - - - Definition: Wrapper for display and index elements for one set of subject information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat this element and use Extent Subject in the Subject element. This element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - - - - - - - - - - - - - - - Definition: A name for a concept / term, usually from a controlled vocabulary. - - - - - - - - - - - - - - Definition: Simple text element with encodinganalog and label attribute - - - - - - - - - - - - Definition: Wrapper for Object name / Title information. - - - - - - Definition: Wrapper for one title or object name and its source information. - How to record: Mandatory. If there is no specific title, provide an object name in the appellation value. If there is more than one title, repeat the Title Set element. - Notes: For objects from natural, technical, cultural history e.g. the object name given here and the object type, recorded in the object / work type element are often identical. - - - - - - - - - - - - - - - - Definition: Qualifies the type of information given in the holding element. - How to record: Will generally have to be populated with a given value list. - - - - - Definition: A uri/url reference to a web resource that describes / represents the item, e.g. a metadata record. - Notes: It differs from an identifier for the item itself. - - - - - - - Definition: Indicates the internet media type, e.g. the file format of the given web resource. - How to record: Data values should be taken from the official IANA list (see http://www.iana.org/assignments/media-types/). Includes: text/html, text/xml, image/jpeg, audio/mpeg, video/mpeg, application/pdf. - - - - - - - - - diff --git a/schemas/carare/carare-v1.0.2.xsd b/schemas/carare/carare-v1.0.2.xsd deleted file mode 100644 index 50ad7af..0000000 --- a/schemas/carare/carare-v1.0.2.xsd +++ /dev/null @@ -1,1342 +0,0 @@ - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - - the title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate the preferred value (or value of preference). - - - - - - - - - - - - - for the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - for the collection - - - - - associated with the collection as a whole - - - - - the organization that is the source of the collection - - - - - of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - information about how the resources being harvested were collected includes: - - - - - - when the collection was created - - - - - The query used to extract the data. - - - - - - - - of the collection - - - - - - general temporal coverage of the collection - - - - - general spatial coverage of the collection, e.g. the country covered. - - - - - - - - Use of a controlled vocabulary is recommended, and, in that case, the vocabulary used must be indicated using an attribute. The OGC URN scheme for spatial reference systems is recommended for use. - - - - - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - the type of designation or protection. - - - - - - - - - - - - the grade or level of protection. - - - - - - - - - - - - the date it came into force. - - - - - the date until which the monument will be / has been protected. - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - the observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - the date when the assessment of condition was made. - - - - - to an associated event/activity. - - - - - - - - - - - - - - - - This is a set of index information to describe the character of the monument - - - - - - classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - Information about the date and/or period of an entity. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - identification of the institution with custody of the artefact and possibly the current location. - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - the ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource - - - - - the topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - of the reference - - - - - - - - of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - the ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. - - - - - The medium or physical carrier of the resource. - - - - - The size or extent of the resource, including the unit of measurement. - - - - - The spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). - - - - - The topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - Use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - This is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL containing a thumbnail or other reduced-quality version of the resource. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Pointer to other information about the resource making the resource available - - - - - To heritage assets, other resources or to references. - - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider - - - - - This is the name of the event. - - - - - Of the event or activity which took place - - - - - The people or organisations involved in this event, may be repeated. - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - the date or time span of the event. - - - - - The location or area covered by the event. - - - - - assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - the method by which the event is carried out - - - - - the materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended. - - - - - of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - of the record. Use of a controlled vocabulary is recommended, and the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the record (the name of the organization that maintains the record) - - - - - - when created and by whom; - - - - - - - - - - - the date of the last update to the record and by whom. - - - - - - - - - - - (of the metadata record). Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - to the metadata - - - - - for the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - General copyright of the resource - - - - - - Person or organization that holds the rights of the resource. - - - - - - (statement) - - - - - - - - Rights related with access to the resource - - - - - - - - - - - - - - Rights related with the reproduction of the resource - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - this is the name of the entity. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - an identifier of an object. The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,).. - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - e.g. metres, centimetres - - - - - - - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - - Port of departure - - - - - Port of destination - - - - - of the ship - - - - - how the ship was lost - - - - - when the ship was lost - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - The earliest date in the range - - - - - The latest date in the range - - - - - - - - e.g. ‘years’ - - - - - e.g. '474' - - - - - e.g. ‘AD’, ‘BCE’, ‘BPE’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - The nature of the time span given (e.g. throughout, at some time during, etc). Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - The name given to the period in history when something occurred. Use of a controlled vocabulary, such as the Art and Architecture Thesaurus, is recommended; the vocabulary used should be indicated using an attribute. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - Date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - Information about locations or positions in space. - - - - - - - - the name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabula - - - - - - - - - - - - - - the postal address - - - - - the name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Datum, units - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - the number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - a named area within which a monument or building lies - - - - - - - - - - - - - the name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - date of birth, date of death - if known. - - - - - - the name of the person or organization) - - - - - indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - the roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - contact information if known - - - - - date of birth, date of death if known. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - title, first name, last name, other name - - - - - the particular role played by the person or organization - - - - - - the postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - of publication - - - - - of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - - - - - - - e.g. ‘is successor of’, ‘is next in sequence’, ‘has part’ - - - - - the ID number of the related heritage asset, event or resource - - - - - diff --git a/schemas/carare/carare-v1.0.2.xsd.conf b/schemas/carare/carare-v1.0.2.xsd.conf deleted file mode 100644 index 10f2076..0000000 --- a/schemas/carare/carare-v1.0.2.xsd.conf +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v1.0.2.xsd", - "namespaces": { - "car": "http://www.dcu.gr/carareSchema" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ] -} diff --git a/schemas/carare/carare-v1.0.4.xsd b/schemas/carare/carare-v1.0.4.xsd deleted file mode 100644 index bda267b..0000000 --- a/schemas/carare/carare-v1.0.4.xsd +++ /dev/null @@ -1,1398 +0,0 @@ - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested. -Content providers are strongly recommended to complete this element. - - - - - - the title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate the preferred value (or value of preference). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - for the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - for the collection - - - - - associated with the collection as a whole -Content providers are strongly recommended to complete this element. - - - - - the organization that is the source of the collection -Content providers are strongly recommended to complete this element. - - - - - of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - information about how the resources being harvested were collected includes: - - - - - - when the collection was created - - - - - The query used to extract the data. - - - - - - - - of the collection - - - - - - general temporal coverage of the collection - - - - - general spatial coverage of the collection, e.g. the country covered. - - - - - - - - Use of a controlled vocabulary is recommended, and, in that case, the vocabulary used must be indicated using an attribute. The OGC URN scheme for spatial reference systems is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - the type of designation or protection. - - - - - - - - - - - - the grade or level of protection. - - - - - - - - - - - - the date it came into force. - - - - - the date until which the monument will be / has been protected. - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - the observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - the date when the assessment of condition was made. - - - - - to an associated event/activity. - - - - - - - - - - - - - - - - This is a set of index information to describe the character of the monument -Content providers are strongly recommended to complete this element. - - - - - - classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - Information about the date and/or period of an entity. -Content providers are strongly recommended to complete this element. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - identification of the institution with custody of the artefact and possibly the current location. -Content providers are strongly recommended to complete this element. - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. -Content providers are strongly recommended to complete this element. - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - the ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource - - - - - the topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - of the reference - - - - - - - - of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - the ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. -Content providers are strongly recommended to complete this element. - - - - - The medium or physical carrier of the resource. - - - - - The size or extent of the resource, including the unit of measurement. - - - - - The spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). -Content providers are strongly recommended to complete this element. - - - - - The topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - Use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) -Content providers are strongly recommended to complete this element. - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - This is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL containing a thumbnail or other reduced-quality version of the resource. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Pointer to other information about the resource making the resource available - - - - - To heritage assets, other resources or to references. -Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider -Content providers are strongly recommended to complete this element. - - - - - This is the name of the event. -Content providers are strongly recommended to complete this element. - - - - - Of the event or activity which took place - - - - - The people or organisations involved in this event, may be repeated. - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. -Content providers are strongly recommended to complete this element. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - the date or time span of the event. - - - - - The location or area covered by the event. - - - - - assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - the method by which the event is carried out - - - - - the materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended. - - - - - of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - of the record. Use of a controlled vocabulary is recommended, and the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the record (the name of the organization that maintains the record) -Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - when created and by whom; - - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - the date of the last update to the record and by whom. - - - - - - - - - - - (of the metadata record). Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - to the metadata - - - - - for the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - General copyright of the resource - - - - - - Person or organization that holds the rights of the resource. - - - - - - (statement) -Content providers are strongly recommended to complete this element. - - - - - - - - Rights related with access to the resource - - - - - - - - - - - - - - Rights related with the reproduction of the resource - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - this is the name of the entity. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - an identifier of an object. The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,).. - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - e.g. metres, centimetres - - - - - - - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - - Port of departure - - - - - Port of destination - - - - - of the ship - - - - - how the ship was lost - - - - - when the ship was lost - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - The earliest date in the range -Content providers are strongly recommended to complete this element. - - - - - The latest date in the range -Content providers are strongly recommended to complete this element. - - - - - - - - e.g. ‘years’ - - - - - e.g. '474' - - - - - e.g. ‘AD’, ‘BCE’, ‘BPE’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - The nature of the time span given (e.g. throughout, at some time during, etc). Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - The name given to the period in history when something occurred. Use of a controlled vocabulary, such as the Art and Architecture Thesaurus, is recommended; the vocabulary used should be indicated using an attribute. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - Date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - Information about locations or positions in space. - - - - - - - - the name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - the postal address - - - - - the name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Datum, units - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - the number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - a named area within which a monument or building lies - - - - - - - - - - - - - the name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - date of birth, date of death - if known. - - - - - - the name of the person or organization) - - - - - indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - the roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - contact information if known - - - - - date of birth, date of death if known. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - title, first name, last name, other name - - - - - the particular role played by the person or organization - - - - - - the postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - of publication - - - - - of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - - - - - - Content providers are strongly recommended to complete this element. - - - - - e.g. ‘is successor of’, ‘is next in sequence’, ‘has part’ -Content providers are strongly recommended to complete this element. - - - - - the ID number of the related heritage asset, event or resource -Content providers are strongly recommended to complete this element. - - - - - \ No newline at end of file diff --git a/schemas/carare/carare-v1.0.4.xsd.conf b/schemas/carare/carare-v1.0.4.xsd.conf deleted file mode 100644 index 0388f06..0000000 --- a/schemas/carare/carare-v1.0.4.xsd.conf +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v1.0.4.xsd", - "namespaces": { - "car": "http://www.dcu.gr/carareSchema" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ] -} diff --git a/schemas/carare/carare-v1.0.5.xsd b/schemas/carare/carare-v1.0.5.xsd deleted file mode 100644 index 92d599f..0000000 --- a/schemas/carare/carare-v1.0.5.xsd +++ /dev/null @@ -1,1474 +0,0 @@ - - - - - - - The CARARE wrapper element. It wraps CARARE elements. - - - - - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested. -Content providers are strongly recommended to complete this element. - - - - - - the title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate the preferred value (or value of preference). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - for the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - - for the collection - - - - - associated with the collection as a whole -Content providers are strongly recommended to complete this element. - - - - - the organization that is the source of the collection -Content providers are strongly recommended to complete this element. - - - - - of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - information about how the resources being harvested were collected includes: - - - - - - when the collection was created - - - - - The query used to extract the data. - - - - - - - - of the collection - - - - - - general temporal coverage of the collection - - - - - general spatial coverage of the collection, e.g. the country covered. - - - - - - - - Use of a controlled vocabulary is recommended, and, in that case, the vocabulary used must be indicated using an attribute. The OGC URN scheme for spatial reference systems is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - the type of designation or protection. - - - - - - - - - - - - the grade or level of protection. - - - - - - - - - - - - the date it came into force. - - - - - the date until which the monument will be / has been protected. - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - the observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - the date when the assessment of condition was made. -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - to an associated event/activity. - - - - - - - - - - - - - - - - This is a set of index information to describe the character of the monument -Content providers are strongly recommended to complete this element. - - - - - - classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - Information about the date and/or period of an entity. -Content providers are strongly recommended to complete this element. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - identification of the institution with custody of the artefact and possibly the current location. -Content providers are strongly recommended to complete this element. - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. -Content providers are strongly recommended to complete this element. - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - the ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource - - - - - the topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - of the reference - - - - - - - - of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - the ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. -Content providers are strongly recommended to complete this element. - - - - - The medium or physical carrier of the resource. - - - - - The size or extent of the resource, including the unit of measurement. - - - - - The spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). -Content providers are strongly recommended to complete this element. - - - - - The topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - Use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) -Content providers are strongly recommended to complete this element. - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - This is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL containing a thumbnail or other reduced-quality version of the resource. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Pointer to other information about the resource making the resource available - - - - - To heritage assets, other resources or to references. -Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider -Content providers are strongly recommended to complete this element. - - - - - This is the name of the event. -Content providers are strongly recommended to complete this element. - - - - - Of the event or activity which took place - - - - - The people or organisations involved in this event, may be repeated. - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. -Content providers are strongly recommended to complete this element. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - the date or time span of the event. - - - - - The location or area covered by the event. - - - - - assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - the method by which the event is carried out - - - - - the materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended. - - - - - of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - of the record. Use of a controlled vocabulary is recommended, and the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the record (the name of the organization that maintains the record) -Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - when created and by whom; - - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - the date of the last update to the record and by whom. - - - - - - - - - - - (of the metadata record). Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - to the metadata - - - - - for the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - General copyright of the resource - - - - - - Person or organization that holds the rights of the resource. - - - - - - (statement) -Content providers are strongly recommended to complete this element. - - - - - - - - Rights related with access to the resource - - - - - - - - - - - - - - Rights related with the reproduction of the resource - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - this is the name of the entity. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - an identifier of an object. The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,).. - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - e.g. metres, centimetres - - - - - - - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - - Port of departure - - - - - Port of destination - - - - - of the ship - - - - - how the ship was lost - - - - - when the ship was lost . -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - The earliest date in the range -Content providers are strongly recommended to complete this element. - - - - - The latest date in the range -Content providers are strongly recommended to complete this element. - - - - - - - - e.g. ‘years’ - - - - - e.g. '474' - - - - - e.g. ‘AD’, ‘BCE’, ‘BPE’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - The nature of the time span given (e.g. throughout, at some time during, etc). Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - The name given to the period in history when something occurred. Use of a controlled vocabulary, such as the Art and Architecture Thesaurus, is recommended; the vocabulary used should be indicated using an attribute. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - Date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - Information about locations or positions in space. - - - - - - - - the name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - the postal address - - - - - the name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Datum, units - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - the number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - a named area within which a monument or building lies - - - - - - - - - - - - - the name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - date of birth, date of death - if known. - - - - - - the name of the person or organization) - - - - - indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - the roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - contact information if known - - - - - date of birth, date of death if known. - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - title, first name, last name, other name - - - - - the particular role played by the person or organization - - - - - - the postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - of publication - - - - - of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - - - - - - Content providers are strongly recommended to complete this element. - - - - - e.g. ‘is successor of’, ‘is next in sequence’, ‘has part’ -Content providers are strongly recommended to complete this element. - - - - - the ID number of the related heritage asset, event or resource -Content providers are strongly recommended to complete this element. - - - - - \ No newline at end of file diff --git a/schemas/carare/carare-v1.0.5.xsd.conf b/schemas/carare/carare-v1.0.5.xsd.conf deleted file mode 100644 index 9f84c7b..0000000 --- a/schemas/carare/carare-v1.0.5.xsd.conf +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v1.0.5.xsd", - "namespaces": { - "car": "http://www.dcu.gr/carareSchema" - }, - - "wrap": { - "element": "carareWrap", - "prefix": "car" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ] -} diff --git a/schemas/carare/carare-v1.0.6.1.preview.xsd b/schemas/carare/carare-v1.0.6.1.preview.xsd deleted file mode 100644 index 9a5c70b..0000000 --- a/schemas/carare/carare-v1.0.6.1.preview.xsd +++ /dev/null @@ -1,1905 +0,0 @@ - - - - - - - The CARARE wrapper element. It wraps CARARE elements. - - - - - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested. -Content providers are strongly recommended to complete this element. - - - - - - The title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate the preferred value (or value of preference). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - For the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - - For the collection - - - - - Associated with the collection as a whole -Content providers are strongly recommended to complete this element. - - - - - The organization that is the source of the collection -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Language of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - Information about how the resources being harvested were collected includes: - - - - - - When the collection was created - - - - - The query used to extract the data. - - - - - - - - Of the collection - - - - - - General temporal coverage of the collection - - - - - General spatial coverage of the collection, e.g. the country covered. - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - Free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - The type of designation or protection. - - - - - - - - - - - - The grade or level of protection. - - - - - - - - - - - - The date it came into force. - - - - - The date until which the monument will be / has been protected. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - The observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - - - - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - - - - - - - - The date when the assessment of condition was made. -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - This is the relation between the condition assessment and an associated event/activity. - - - - - - - - - - - - - - - - This is a set of index information to describe the character of the monument -Content providers are strongly recommended to complete this element. - - - - - - Classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - Information about the date and/or period of an entity. -Content providers are strongly recommended to complete this element. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - Identification of the institution with custody of the artefact and possibly the current location. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. -Content providers are strongly recommended to complete this element. - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - The ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - The medium or physical carrier of the resource. - - - - - - - - - - - - The size or extent of the resource - - - - - - - - - - - - The topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - Of the reference - - - - - - - - Of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - The ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - - - - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - The medium or physical carrier of the resource. - - - - - - - - - - - - The size or extent of the resource, including the unit of measurement. - - - - - - - - - - - - - - - The spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). -Content providers are strongly recommended to complete this element. - - - - - The topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - Use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) -Content providers are strongly recommended to complete this element. - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - - - - - - - - - This is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - - - - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL containing a thumbnail or other reduced-quality version of the resource. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Pointer to other information about the resource making the resource available - - - - - To heritage assets, other resources or to references. -Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the heritage asset or the digital resource has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, Post-processing of survey results, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider -Content providers are strongly recommended to complete this element. - - - - - This is the name of the event. -Content providers are strongly recommended to complete this element. - - - - - Of the event or activity which took place - - - - - The people or organisations involved in this event, may be repeated. - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. -Content providers are strongly recommended to complete this element. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - The date or time span of the event. - - - - - The location or area covered by the event. - - - - - Assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - the method by which the event is carried out - - - - - - - - - - - - The materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended. - - - - - - - - - - - - Of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - Of the record (the name of the organization that maintains the record) -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Content providers are strongly recommended to complete this element. - - - - - When created and by whom; - - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - The date of the last update to the record and by whom. - - - - - - - - - - - Of the metadata record. Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - To the metadata - - - - - For the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - General copyright of the resource - - - - - - Person or organization that holds the rights of the resource. - - - - - - - - - - - - - (statement) -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - Rights related with access to the resource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Rights related with the reproduction of the resource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - This is the name of the entity. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - An identifier of an object. The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,).. - - - - - - - - - - This element allows the part of the heritage asset being measured to be indicated, for example 'base' (meaning the base or bottom of the monument, building or object. - - - - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - - - - - - - - e.g. metres, centimetres - - - - - - - - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - Port of departure - - - - - - - - - - - - Port of destination - - - - - - - - - - - - Of the ship - - - - - - - - - - - - How the ship was lost - - - - - - - - - - - - When the ship was lost . -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - The earliest date in the range -Content providers are strongly recommended to complete this element. - - - - - The latest date in the range -Content providers are strongly recommended to complete this element. - - - - - - - - e.g. ‘years’ - - - - - e.g. '474' - - - - - e.g. ‘AD’, ‘BCE’, ‘BPE’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - The nature of the time span given (e.g. throughout, at some time during, etc). Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - The name given to the period in history when something occurred. Use of a controlled vocabulary, such as the Art and Architecture Thesaurus, is recommended; the vocabulary used should be indicated using an attribute. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - Date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - - - - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - Information about locations or positions in space. - - - - - - - - The name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - The postal address - - - - - The name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - - The name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - How a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - How a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Datum, units - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - The number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A named area within which a monument or building lies - - - - - - - - - - - - - The name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - Details of individuals, groups or organisations including date of birth, date of death etc - if known. - - - - - - The name of the person or organization) - - - - - - - - - - - - Indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - The roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - - - - Contact information if known - - - - - Date of birth, date of death if known. - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - Title, first name, last name, other name - - - - - - - - - - - - The particular role played by the person or organization - - - - - - - - - - - - - - - - - - - - - The postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - - - - - - - - Of publication - - - - - - - - - - - - Of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - - - - - - Content providers are strongly recommended to complete this element. - - - - - This is the relation between itemse.g. ‘isSuccessorOf’, ‘isNextInSequence’, ‘hasPart’. Please note thye inverse relationship is always inferred so that there is no need to specify, for example both 'hasPart' and 'isPartOf'. Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The ID number of the related heritage asset, event or resource -Content providers are strongly recommended to complete this element. - - - - - diff --git a/schemas/carare/carare-v1.0.6.1.preview.xsd.conf b/schemas/carare/carare-v1.0.6.1.preview.xsd.conf deleted file mode 100644 index e6dbcdd..0000000 --- a/schemas/carare/carare-v1.0.6.1.preview.xsd.conf +++ /dev/null @@ -1,61 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v1.0.6.1.xsd", - "namespaces": { - "car": "http://www.carare.eu/carareSchema" - }, - - "wrap": { - "element": "carareWrap", - "prefix": "car" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "paths": { - "item": "/carareWrap/carare"; - "label": "/carareWrap/carare/heritageAssetIdentification/appellation/name/text()"; - }, - - "preview" : [{ - "xsl": "carare2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "jsp": "eseview.jsp", - "label": "Europeana" - }] - }], - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ], - - "customization": "carare.groovy", - - "publication" : { - "type": "xsl", - "value": "carare2ese.xsl" - } -} diff --git a/schemas/carare/carare-v1.0.6.1.xsd b/schemas/carare/carare-v1.0.6.1.xsd deleted file mode 100644 index 9a5c70b..0000000 --- a/schemas/carare/carare-v1.0.6.1.xsd +++ /dev/null @@ -1,1905 +0,0 @@ - - - - - - - The CARARE wrapper element. It wraps CARARE elements. - - - - - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested. -Content providers are strongly recommended to complete this element. - - - - - - The title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate the preferred value (or value of preference). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - For the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - - For the collection - - - - - Associated with the collection as a whole -Content providers are strongly recommended to complete this element. - - - - - The organization that is the source of the collection -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Language of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - Information about how the resources being harvested were collected includes: - - - - - - When the collection was created - - - - - The query used to extract the data. - - - - - - - - Of the collection - - - - - - General temporal coverage of the collection - - - - - General spatial coverage of the collection, e.g. the country covered. - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - Free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - The type of designation or protection. - - - - - - - - - - - - The grade or level of protection. - - - - - - - - - - - - The date it came into force. - - - - - The date until which the monument will be / has been protected. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - The observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - - - - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - - - - - - - - The date when the assessment of condition was made. -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - This is the relation between the condition assessment and an associated event/activity. - - - - - - - - - - - - - - - - This is a set of index information to describe the character of the monument -Content providers are strongly recommended to complete this element. - - - - - - Classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - Information about the date and/or period of an entity. -Content providers are strongly recommended to complete this element. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - Identification of the institution with custody of the artefact and possibly the current location. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. -Content providers are strongly recommended to complete this element. - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - The ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - The medium or physical carrier of the resource. - - - - - - - - - - - - The size or extent of the resource - - - - - - - - - - - - The topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - Of the reference - - - - - - - - Of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - The ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - - - - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - The medium or physical carrier of the resource. - - - - - - - - - - - - The size or extent of the resource, including the unit of measurement. - - - - - - - - - - - - - - - The spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). -Content providers are strongly recommended to complete this element. - - - - - The topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - Use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) -Content providers are strongly recommended to complete this element. - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - - - - - - - - - This is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - - - - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL containing a thumbnail or other reduced-quality version of the resource. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Pointer to other information about the resource making the resource available - - - - - To heritage assets, other resources or to references. -Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the heritage asset or the digital resource has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, Post-processing of survey results, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider -Content providers are strongly recommended to complete this element. - - - - - This is the name of the event. -Content providers are strongly recommended to complete this element. - - - - - Of the event or activity which took place - - - - - The people or organisations involved in this event, may be repeated. - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. -Content providers are strongly recommended to complete this element. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - The date or time span of the event. - - - - - The location or area covered by the event. - - - - - Assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - the method by which the event is carried out - - - - - - - - - - - - The materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended. - - - - - - - - - - - - Of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - Of the record (the name of the organization that maintains the record) -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Content providers are strongly recommended to complete this element. - - - - - When created and by whom; - - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - The date of the last update to the record and by whom. - - - - - - - - - - - Of the metadata record. Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - To the metadata - - - - - For the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - General copyright of the resource - - - - - - Person or organization that holds the rights of the resource. - - - - - - - - - - - - - (statement) -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - Rights related with access to the resource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Rights related with the reproduction of the resource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - This is the name of the entity. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - An identifier of an object. The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,).. - - - - - - - - - - This element allows the part of the heritage asset being measured to be indicated, for example 'base' (meaning the base or bottom of the monument, building or object. - - - - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - - - - - - - - e.g. metres, centimetres - - - - - - - - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - Port of departure - - - - - - - - - - - - Port of destination - - - - - - - - - - - - Of the ship - - - - - - - - - - - - How the ship was lost - - - - - - - - - - - - When the ship was lost . -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - The earliest date in the range -Content providers are strongly recommended to complete this element. - - - - - The latest date in the range -Content providers are strongly recommended to complete this element. - - - - - - - - e.g. ‘years’ - - - - - e.g. '474' - - - - - e.g. ‘AD’, ‘BCE’, ‘BPE’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - The nature of the time span given (e.g. throughout, at some time during, etc). Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - The name given to the period in history when something occurred. Use of a controlled vocabulary, such as the Art and Architecture Thesaurus, is recommended; the vocabulary used should be indicated using an attribute. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - Date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - - - - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - Information about locations or positions in space. - - - - - - - - The name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - The postal address - - - - - The name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - - The name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - How a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - How a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - Content providers are strongly recommended to complete this element. - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Datum, units - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - The number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A named area within which a monument or building lies - - - - - - - - - - - - - The name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - Details of individuals, groups or organisations including date of birth, date of death etc - if known. - - - - - - The name of the person or organization) - - - - - - - - - - - - Indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - The roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - - - - Contact information if known - - - - - Date of birth, date of death if known. - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - Title, first name, last name, other name - - - - - - - - - - - - The particular role played by the person or organization - - - - - - - - - - - - - - - - - - - - - The postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - - - - - - - - Of publication - - - - - - - - - - - - Of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - - - - - - Content providers are strongly recommended to complete this element. - - - - - This is the relation between itemse.g. ‘isSuccessorOf’, ‘isNextInSequence’, ‘hasPart’. Please note thye inverse relationship is always inferred so that there is no need to specify, for example both 'hasPart' and 'isPartOf'. Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The ID number of the related heritage asset, event or resource -Content providers are strongly recommended to complete this element. - - - - - diff --git a/schemas/carare/carare-v1.0.6.1.xsd.conf b/schemas/carare/carare-v1.0.6.1.xsd.conf deleted file mode 100644 index 2ad659a..0000000 --- a/schemas/carare/carare-v1.0.6.1.xsd.conf +++ /dev/null @@ -1,51 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v1.0.6.1.xsd", - "namespaces": { - "car": "http://www.carare.eu/carareSchema" - }, - - "wrap": { - "element": "carareWrap", - "prefix": "car" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "paths": { - "item": "/carareWrap/carare"; - "label": "/carareWrap/carare/heritageAssetIdentification/appellation/name/text()"; - }, - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ], - - "customization": "carare.groovy", - - "publication" : { - "type": "xsl", - "value": "carare2ese.xsl" - } -} diff --git a/schemas/carare/carare-v1.0.xsd b/schemas/carare/carare-v1.0.xsd deleted file mode 100644 index de59bca..0000000 --- a/schemas/carare/carare-v1.0.xsd +++ /dev/null @@ -1,1184 +0,0 @@ - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - holds the collection-level description. - - - - - The following elements provide a collection level description of the resources being harvested - - - - - - the title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - for the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - for the collection - - - - - associated with the collection as a whole - - - - - organisation that is the source of the collection - - - - - of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - information about how the resources being harvested were collected includes: - - - - - - when the collection was created - - - - - The query used to extract the data. - - - - - - - - of the collection - - - - - - general temporal coverage of the collection - - - - - general spatial coverage of the collection, e.g. the country covered. - - - - - - - - Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. The OGC URN scheme for spatial reference systems is recommended for use. - - - - - - - - - - - - - holds the metadata for a monument, including descriptive and administrative metadata. - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - the actors involved with this monument, may be repeated. - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - the type of designation or protection. - - - - - - - - the grade or level of protection. - - - - - - - - the date from which the protection came into force. - - - - - the date until which the monument is protected. - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - the observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - A detailed assessment of the condition of a Heritage Asset and any treatment required and an estimation of the percentage of the monument affected. - - - - - the date when the assessment of condition was made. - - - - - to an associated event/activity. - - - - - - - - - - - - This is a set of index information to describe the character of the monument - - - - - - classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - (see section 11) - - - - - the basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - – this is a set of information to describe shipwrecks if any - - - - - - - - identification of the institution with custody of the artefact and possibly the current location. - - - - - - - - - - these are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - the ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource - - - - - the topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - holds the metadata about a digital resource. - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - the ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - the file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs used. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource, including the unit of measurement. - - - - - the spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). - - - - - the topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) (see section 11). - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - this is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - the URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. -Object (source = ESE v3.3) – a URL containing a thumbnail or other reduced-quality version of the resource. -IsShownAt (source = ESE v3.3) – A URL to the digital object on the content provider’s website in its full information context. - - - - - - - - - pointer to other information about the resource making the resource available - - - - - to heritage assets, other resources or to references. - - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. Source = MIDAS + POLIS DTD. - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - This is the name of the event. - - - - - of the event or activity which took place. - - - - - the people or organisations involved in this event, may be repeated. - - - - - classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - the date or time span of the event. - - - - - the location or area covered by the event. - - - - - assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - the method by which the event is carried out - - - - - the materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - of the record. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the record (the name of the organisation that maintains the record) - - - - - - when created and who by; - - - - - - - - - - - the date of the last update to the record and who by - - - - - - - - - - - (of the metadata record). Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - to the metadata - - - - - for the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - - - - - - (statement) - - - - - - - - - - - - - - - - - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - this is the name of the entity. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - an identifier of an object. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,) The element may be repeated. - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - e.g. metres, centimetres - - - - - - - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - - Port of departure - - - - - Port of destination - - - - - of the ship - - - - - how the ship was lost - - - - - when the ship was lost - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - the earliest date in the range - - - - - - - - the latest date in the range - - - - - - - - - the nature of the time span given (e.g. throughout, at some time during, etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - the name given to the period in history when something occurred. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - Information about locations or positions in space. - - - - - - - - the name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - the postal address - - - - - the name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - delivery precision (the precision of a coordinate as stored in the system, and as delivered to users). - - - - - datum, units - - - - - units - - - - - - - - how a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - the number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - a named area within which a monument or building lies - - - - - - - - - the name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - the actors involved with this monument, may be repeated. - - - - - - the name of the person or organisation) - - - - - indicates whether the actor is an individual, a group of individuals or an organisation. - - - - - - - - the roles of the actor (creator, custody, repository, curator, architect, sculptor, photographer, compiler, etc.) Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - contact information if known - - - - - date of birth, date of death if known. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - title, first name, last name, other name - - - - - the particular role played by the person or organisation - - - - - - the postal address of the person or organisation - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - of publication - - - - - of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - -• The type of relation, for example ‘is successor of’, ‘is next in sequence’, ‘has part’. -• The target of the relation (the ID number of the related heritage asset, event or resource) - -The relations which are included in the Europeana Data Model are as follows: - -• Is Derivative Of – a version of another resource -• Is Next In Sequence – the ordered parts of a resource, e.g. the pages in a book or an ordered sequence of 3D models showing the change of a monument over time. -• Is Related To – a general relationship between objects -• Is Representation Of – associates an information resource to the object that it represents, e.g. a digital image is a representation of the monument which is the target of the relation. We use it in the CARARE schema to associate a heritage asset and a Digital Resource -• Is Successor Of – the relation between the continuation of a resource and that resource, e.g. a church is successor of an earlier church on the same site. -• Occurred At – associates an event to the smallest known time span that overlaps with the occurrence of that event. -• Happened At – relates a place to the events which happened at that place. -• Was Present At – this relation associates the people, things or information sources with the Event that they were present at. -• Has Part – used for objects that incorporate other objects, e.g. a monument made up of smaller monuments or a site with a number of monuments. - -Additional CARARE properties: - -• hasEvent – associates a heritage asset with an Activity. -• Is Replica of – used for heritage assets that replicate other heritage assets, including scale models. -• Is In Front Of – a spatial relationship signifying the relative position of one monument to another. -• Is Behind – a spatial relationship signifying the relative position of one monument to another. -• Is Above – a spatial relationship signifying the relative position of one monument to another. -• Is Below – a spatial relationship signifying the relative position of one monument to another. -• Is North Of – a spatial relationship signifying the relative position of one monument to another. -• Is South Of – a spatial relationship signifying the relative position of one monument to another. -• Is East Of – a spatial relationship signifying the relative position of one monument to another. -• Is West Of – a spatial relationship signifying the relative position of one monument to another. -• Same As (source = OWL) – indicates that the two participants in the relation actually refer to the same thing. - - - - - - - - - \ No newline at end of file diff --git a/schemas/carare/carare-v1.0.xsd.conf b/schemas/carare/carare-v1.0.xsd.conf deleted file mode 100644 index 7493b88..0000000 --- a/schemas/carare/carare-v1.0.xsd.conf +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v1.0.xsd", - "namespaces": { - "car": "http://www.dcu.gr/carareSchema" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ] -} diff --git a/schemas/carare/carare-v2.0.0.xsd b/schemas/carare/carare-v2.0.0.xsd deleted file mode 100644 index 2ddbc8a..0000000 --- a/schemas/carare/carare-v2.0.0.xsd +++ /dev/null @@ -1,2022 +0,0 @@ - - - - - - - The CARARE wrapper element. It wraps CARARE elements. - - - - - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested. -Content providers are strongly recommended to complete this element. - - - - - - A unique identifier for the collection - - - - - - - - - - The title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - Organization that is the source of the collection - - - - - - - - - - - - For the collection - - - - - Associated with the collection as a whole -Content providers are strongly recommended to complete this element. - - - - - Language of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - Information about how the resources being harvested were collected includes: - - - - - - When the collection was created - - - - - The query used to extract the data. - - - - - - - - For the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - - Of the collection - - - - - - General temporal coverage of the collection - - - - - General spatial coverage of the collection, e.g. the country covered. - - - - - - - - - - - - - - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - Free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - The type of designation or protection. - - - - - - - - - - - - The grade or level of protection. - - - - - - - - - - - - The date it came into force. - - - - - The date until which the monument will be / has been protected. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - The observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - - - - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - - - - - - - - The date when the assessment of condition was made. -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - This is the relation between the condition assessment and an associated event/activity. - - - - - - - - - - - - - - - - A free-text statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. Includes the motivation of the event in which the digital object (2D, 3D, text, movies, images, etc.) was created, the design of hte digitisation process and any factors significant for its authenticity, integrity, and interpretation. - - - - - - - - - - - - This is a set of index information to describe the character of the monument -Content providers are strongly recommended to complete this element. - - - - - - Classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - Information about the date and/or period of an entity. -Content providers are strongly recommended to complete this element. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. -Content providers are strongly recommended to complete this element. - - - - - Identification of the institution with custody of the artefact and possibly the current location. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - The ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - This is the URL where users can find the reference online - - - - - - - - - - - - - The relation between a heritage asset and a digital resource in which it is represented. Give the id number of the target record or a URI - - - - - The relation between a heritage asset and an earlier one. e.g. a church is successor of an earlier church on the same site. Give the id number of the target record or a URI. - - - - - This is the relation between a heritage asset and an Activity that it was present at. e.g. a castle was present at a siege, a cross was present at a digitization event. Give the id number of the target record or a URI. - - - - - used dor heritage assets that incorporte other assets. e.g. a landscape monument has parts (is made up of) smaller monuments. Give the id number of the target record or a URI. - - - - - - The relation between a heritage asset and the larger heritage asset of which it is part. e.g. a gatehouse is part of a fortification. Give the id number of the target record or a URI. - - - - - The relation between a replica and the original heritage asset, for example a scale model and the original, or a 3D reconstruction and the original building. Give the id number of the target record or a URI. - - - - - The relation between a heritage asset and an Activity in which it was digitized. (It is a specialization of Was Present At). Give the id number of the target record or a URI). - - - - - This is for general relations from the heritage asset. Give the id number of the target record or a URI. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - The ID and the name given to the information source (see section 11). - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - - - - - - - - - The actors involved in the creation of a digital resource - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - - - - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - The medium or physical carrier of the resource. - - - - - - - - - - - - The size or extent of the resource, including the unit of measurement. - - - - - - - - - - - - - - - (see section 11) - - - - - This is the date when the resource was created - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL to a thumbnail. The data given here will allow the automatic generation of a thumbnail by Europeana for its functionality. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Content providers are strongly recommended to complete this element. - - - - - this is the relation between a digital resource and the heritage asset that it represents, e.g. a digital image is a representation of a monument. Give the id number of the target record or a URI - - - - - this is the relation between a digital resource and other digital resources which it contains, e.g. a 3D model may be related to some text documents and sound files. There is no ordered sequence between the parts. Give the id number of the target record or a URI. - - - - - this is the relation between a digital resource and the digital resources of which it forms part, e.g. an image is part of a book. There is no ordered sequence between the parts. Give the id number of the target record or a URI. - - - - - this is the relation between a digital resource and the next digital resource in the sequence, e.g. the pages in a book or an ordered sequence of 3D models showing the change of a monument over time. Give the id number of the target record or a URI. - - - - - this is the relation between a digital resource and the previous digital resource in the sequence, e.g. the pages in a book or an ordered sequence of 3D models showing the change of a monument over time. Give the id number of the target record or a URI. - - - - - this is the relation between a Digital Resource and the digital resource which it is a derivative (or version) of. Give the id number of the target record or a URI. - - - - - this is the relation between a Digital Resource and a derivative (or version) of the resource. Give the id number of the target record or a URI. - - - - - this is the relation which defines the reuse of a Digital Resource to create derivatives, e.g. during the different processing phases of digitization. It is a specialisation of Is Derivative Of. Give the id number of the target record or a URI. - - - - - this is for general relations from the Digital Resource. Give the id number of the target record or a URI. - - - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the heritage asset or the digital resource has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, Post-processing of survey results, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider -Content providers are strongly recommended to complete this element. - - - - - This is the name of the event. -Content providers are strongly recommended to complete this element. - - - - - Of the event or activity which took place - - - - - this is a free text description of the general goal or purpose of an Activity. For example this could include practicing, preparing, monitoring, researching, designing, testing etc. - - - - - - - - - - - - The people or organisations involved in this event, may be repeated. - - - - - The date or time span of the event. - - - - - The location or area covered by the event. - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. -Content providers are strongly recommended to complete this element. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - this is a repeating group of elements which allows the specific activity (or activities) that took place during the overall Event to be described. - - - - - Assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - can be used to associate an Activity to the time span that overlaps with the occurrence of that activity. Give the id number of the target record or a URI. - - - - - can be used to relate an event to the place where it happened. Give the id number of the target record or a URI. - - - - - can be used to relate an Activity to the Actors who were present. Give the id number of the target record or a URI. - - - - - this is the relation to an Activity and shorter Activity which forms part of the overall event, e.g. a war consists of a series of battles, a landscape survey consists of a series of geophysical surveys and sample excavations. Give the id number of the target record or a URI. Give the id number of the target record or a URI. - - - - - this is the relation between an Activity and the general activity of which it forms a part of, e.g. a battle is part of a war. Give the id number of the target record or a URI. - - - - - this is the relation between an Activity and a digital resource or digital file that it created; includes raw data files, processed data files and final models published online. Give the id of the target record, the file-name or a URI. - - - - - this is for general relations from the Digital Resource. Give the id number of the target record or a URI. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is mandatory to provide an ID which must be unique within the collection; but the id may follow any schema. - - - - - Of the record (the name of the organization that maintains the record) -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - in which the head office of the organisation that maintains the record is based. - - - - - When created and by whom; - - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - The date of the last update to the record and by whom. - - - - - - - - - - - Of the metadata record. Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - To the metadata - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - a statement about the rights holder and rights dates - - - - - - - - - - - - a statement about the access rights to the content. - - - - - - - - - - - - a statement about the reproduction rights including contact information. - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. this could be a page on the content providers website which includes information about copyright, access rights and reproduction rights or a link to a Creative Commons license or the public domain mark . Use as a supplement to the information above. It is always recommended that the Copyright elements are given when known. - - - - - - - - - - - - Europeana Rights – one of the 12 rights statements used by Europeana in its portal. See: http://pro.europeana.eu/web/guest/available-rights-statements. Required for content being provided to Europeana. - - - - - - - - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - this is the name of the entity. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - an identifier of an object. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,) The element may be repeated. - - - - - - - - - - This element allows the part of the heritage asset being measured to be indicated, for example 'base' (meaning the base or bottom of the monument, building or object. - - - - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - - - - - - - - e.g. metres, centimetres - - - - - - - - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - Port of departure - - - - - - - - - - - - Port of destination - - - - - - - - - - - - Of the ship - - - - - - - - - - - - How the ship was lost - - - - - - - - - - - - When the ship was lost . -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - the earliest date in the range (literal) - - - - - the latest date in the range (literal) - - - - - the nature of the time span given (e.g. throughout, at some time during, etc.) Use of a controlled vocabulary is recommended. - - - - - - - - - - - - - - - - the name given to the period in history when something occurred. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - - - - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - Information about locations or positions in space. - - - - - - - - The name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - The postal address - - - - - The name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute (e.g. WGS84). The ESPG spatial coordinate reference is recommended for use. (Mandatory where coordinates are provided) - - - - - this is the centre point - - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - height - - - - - - - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - height - - - - - height - - - - - - - - - - - - - Datum, units - - - - - - (Point, Line, Polygon) (repeating group to allow a series of points to be recorded) - - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - height - - - - - - - - free-text, the accuracy of the point in metres. - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - use for the local coordinates within a 3D model - - - - - - this is the local coordinate system in use within the particular software - - - - - a viewpoint within the 3D model, i.e. where the camera is positioned in the digitisation process - - - - - - - - - - - - - - - - - - - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - The number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A named area within which a monument or building lies - - - - - - - - - - - - - The name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - Details of individuals, groups or organisations including date of birth, date of death etc - if known. - - - - - - The name of the person or organization) - - - - - - - - - - - - Indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - The roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - - - - Contact information if known - - - - - Date of birth, date of death if known. - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - Title, first name, last name, other name - - - - - - - - - - - - The particular role played by the person or organization - - - - - - - - - - - - - - - - - - - - - The postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - - - - - - - - Of publication - - - - - - - - - - - - Of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - - - - - - Content providers are strongly recommended to complete this element. - - - - - This is the relation between itemse.g. ‘isSuccessorOf’, ‘isNextInSequence’, ‘hasPart’. Please note thye inverse relationship is always inferred so that there is no need to specify, for example both 'hasPart' and 'isPartOf'. Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The ID number of the related heritage asset, event or resource -Content providers are strongly recommended to complete this element. - - - - - - - this is a repeating group of elements which allows the specific activity (or activities) that took place during the overall Event to be described. - - - - - a free text note describing the specific goal or purpose of this activity. For example, carrying out 3D data acquisition, restoration of a part of a building, completing a survey, constructing a building, etc. - - - - - - - - - - - - the start date of the specific activity - - - - - the end date of the specific activity - - - - - the methods used in this specific activity, e.g. open area excavation, sample survey, augering, boring, stratigraphic, restoration, conservation, re-pointing, photogrammetric survey etc. Use of a controlled vocabulary is recommended. - - - - - - - - - - - - the techniques used in this specific activity. Use of a controlled vocabulary is recommended. - - - - - - - - - - - - the materials used during the event method. Use of a controlled vocabulary is recommended. - - - - - - - - - - - - the equipment used during the event method. - - - - - - - - - - - - diff --git a/schemas/carare/carare-v2.0.0.xsd.conf b/schemas/carare/carare-v2.0.0.xsd.conf deleted file mode 100644 index 40228bf..0000000 --- a/schemas/carare/carare-v2.0.0.xsd.conf +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v2.0.0.xsd", - "namespaces": { - "car": "http://www.carare.eu/carareSchema" - }, - - "wrap": { - "element": "carareWrap", - "prefix": "car" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "paths": { - "item": "/carareWrap/carare"; - "label": "/carareWrap/carare/heritageAssetIdentification/appellation/name/text()"; - }, - - "navigation": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification" - }, - { - "name": "Digital Resources", - "element": "digitalResource" - }, - { - "name": "Activities", - "element": "activity" - } - ], - - "customization": "carare.groovy" -} diff --git a/schemas/carare/carare-v2.0.1.xsd b/schemas/carare/carare-v2.0.1.xsd deleted file mode 100644 index 8117906..0000000 --- a/schemas/carare/carare-v2.0.1.xsd +++ /dev/null @@ -1,1981 +0,0 @@ - - - - - - - The CARARE wrapper element. It wraps CARARE elements. - - - - - - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - - The following elements provide a collection-level description of the resources to be harvested - - - - - The following elements provide a collection-level description of the resources to be harvested. -Content providers are strongly recommended to complete this element. - - - - - - A unique identifier for the collection - - - - - - - - - - The title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - Organization that is the source of the collection - - - - - - - - - - - - For the collection - - - - - Associated with the collection as a whole -Content providers are strongly recommended to complete this element. - - - - - Language of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - Free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - Information about how the resources being harvested were collected includes: - - - - - - When the collection was created - - - - - The query used to extract the data. - - - - - - - - For the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as the Getty Arts and Architecture Thesaurus is recommended (especially using terms from the Objects facet, and the Styles and Periods facet). The controlled vocabulary used must be indicated using an attribute. - - - - - - - - - - - - - Of the collection - - - - - - General temporal coverage of the collection - - - - - General spatial coverage of the collection, e.g. the country covered. - - - - - - - - - - - - - - - - - - - - - - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - Holds the metadata for a monument (archaeological monument, historic building, industrial monument, archaeological landscape area, shipwreck, artifact, ecofact), including descriptive and administrative metadata. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider. - - - - - - - - - - Information about the identifier (ID) and name of the monument. - - - - - Free text. The description of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - This is a broad classification of the general type of heritage asset and is intended to enable monuments, buildings and landscape areas to be distinguished from artefacts, text documents (printed materials, books, articles, etc), images (photographs, drawings etc), audio recordings, movies reference and 3D models. A fixed controlled vocabulary is proposed for use in which the term “Monument” includes archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas and shipwrecks. The proposed vocabulary is as follows: - - Monument - - Artefact - - Text - - Image - - Sound - - Movie - - 3D - - - - - - - - - - - - - The actors involved with this monument; may be repeated - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - The type of designation or protection. - - - - - - - - - - - - The grade or level of protection. - - - - - - - - - - - - The date it came into force. - - - - - The date until which the monument will be / has been protected. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - The observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - - - - - - - - A detailed assessment of the condition of a Heritage Asset, of any treatment required and an estimation of the percentage of the monument affected. - - - - - - - - - - - - The date when the assessment of condition was made. -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - This is the relation between a heritage asset and an Activity that it was present at. e.g. a castle was present at a siege, a cross was present at a digitization event. Give the id number of the target record or a URI. - - - - - - - - A free-text statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. Includes the motivation of the event in which the digital object (2D, 3D, text, movies, images, etc.) was created, the design of hte digitisation process and any factors significant for its authenticity, integrity, and interpretation. - - - - - - - - - - - - This is a set of index information to describe the character of the monument -Content providers are strongly recommended to complete this element. - - - - - - Classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. -Content providers are strongly recommended to complete this element. - - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - Information about the date and/or period of an entity. -Content providers are strongly recommended to complete this element. - - - - - The basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated with an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - Text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - This is a set of information to describe shipwrecks if any - - - - - - - - This is information about the place at which the heritage asset is located, included named places, postal address, the map coordinates and geometry of the heritage asset. -Content providers are strongly recommended to complete this element. - - - - - Identification of the institution with custody of the artefact and possibly the current location. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - These are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - The ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - This is the URL where users can find the reference online - - - - - - - - - - - - - The relation between a heritage asset and a digital resource in which it is represented. Give the id number of the target record or a URI - - - - - The relation between a heritage asset and an earlier one. e.g. a church is successor of an earlier church on the same site. Give the id number of the target record or a URI. - - - - - This is the relation between a heritage asset and an Activity that it was present at. e.g. a castle was present at a siege, a cross was present at a digitization event. Give the id number of the target record or a URI. - - - - - used dor heritage assets that incorporte other assets. e.g. a landscape monument has parts (is made up of) smaller monuments. Give the id number of the target record or a URI. - - - - - - The relation between a heritage asset and the larger heritage asset of which it is part. e.g. a gatehouse is part of a fortification. Give the id number of the target record or a URI. - - - - - The relation between a replica and the original heritage asset, for example a scale model and the original, or a 3D reconstruction and the original building. Give the id number of the target record or a URI. - - - - - The relation between a heritage asset and an Activity in which it was digitized. (It is a specialization of Was Present At). Give the id number of the target record or a URI). - - - - - This is for general relations from the heritage asset. Give the id number of the target record or a URI. - - - - - - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - The ID and the name given to the information source (see section 11). - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - - - - - - - - - The actors involved in the creation of a digital resource - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - - The file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - - - - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs (DivX, Xvid, wmv etc.) used. -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - The size or extent of the resource, including the unit of measurement. - - - - - - - - - - - - - - - (see section 11) - - - - - This is the date when the resource was created - - - - - Use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - - - - - The URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. - - - - - A URL to a thumbnail. The data given here will allow the automatic generation of a thumbnail by Europeana for its functionality. - - - - - A URL to the digital object on the content provider’s website in its full information context. - - - - - Content providers are strongly recommended to complete this element. - - - - - this is the relation between a digital resource and the heritage asset that it represents, e.g. a digital image is a representation of a monument. Give the id number of the target record or a URI - - - - - this is the relation between a digital resource and other digital resources which it contains, e.g. a 3D model may be related to some text documents and sound files. There is no ordered sequence between the parts. Give the id number of the target record or a URI. - - - - - this is the relation between a digital resource and the digital resources of which it forms part, e.g. an image is part of a book. There is no ordered sequence between the parts. Give the id number of the target record or a URI. - - - - - this is the relation between a digital resource and the next digital resource in the sequence, e.g. the pages in a book or an ordered sequence of 3D models showing the change of a monument over time. Give the id number of the target record or a URI. - - - - - this is the relation between a digital resource and the previous digital resource in the sequence, e.g. the pages in a book or an ordered sequence of 3D models showing the change of a monument over time. Give the id number of the target record or a URI. - - - - - this is the relation between a Digital Resource and the digital resource which it is a derivative (or version) of. Give the id number of the target record or a URI. - - - - - this is the relation between a Digital Resource and a derivative (or version) of the resource. Give the id number of the target record or a URI. - - - - - this is the relation which defines the reuse of a Digital Resource to create derivatives, e.g. during the different processing phases of digitization. It is a specialisation of Is Derivative Of. Give the id number of the target record or a URI. - - - - - this is for general relations from the Digital Resource. Give the id number of the target record or a URI. - - - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. - - - - - This is information about the events or activities that the heritage asset or the digital resource has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, Post-processing of survey results, etc. - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider -Content providers are strongly recommended to complete this element. - - - - - This is the name of the event. -Content providers are strongly recommended to complete this element. - - - - - Of the event or activity which took place - - - - - this is a free text description of the general goal or purpose of an Activity. For example this could include practicing, preparing, monitoring, researching, designing, testing etc. - - - - - - - - - - - - Classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. -Content providers are strongly recommended to complete this element. - - - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - The people or organisations involved in this event, may be repeated. - - - - - The date or time span of the event. - - - - - The location or area covered by the event. - - - - - this is a repeating group of elements which allows the specific activity (or activities) that took place during the overall Event to be described. - - - - - Assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - - - This is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - - - - - can be used to associate an Activity to the time span that overlaps with the occurrence of that activity. Give the id number of the target record or a URI. - - - - - can be used to relate an event to the place where it happened. Give the id number of the target record or a URI. - - - - - can be used to relate an Activity to the Actors who were present. Give the id number of the target record or a URI. - - - - - this is the relation to an Activity and shorter Activity which forms part of the overall event, e.g. a war consists of a series of battles, a landscape survey consists of a series of geophysical surveys and sample excavations. Give the id number of the target record or a URI. Give the id number of the target record or a URI. - - - - - this is the relation between an Activity and the general activity of which it forms a part of, e.g. a battle is part of a war. Give the id number of the target record or a URI. - - - - - this is the relation between an Activity and a digital resource or digital file that it created; includes raw data files, processed data files and final models published online. Give the id of the target record, the file-name or a URI. - - - - - this is for general relations from the Digital Resource. Give the id number of the target record or a URI. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is mandatory to provide an ID which must be unique within the collection; but the id may follow any schema. - - - - - Of the record (the name of the organization that maintains the record) -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - in which the head office of the organisation that maintains the record is based. - - - - - When created and by whom; - - - - - - Content providers are strongly recommended to complete this element. - - - - - - - - - The date of the last update to the record and by whom. - - - - - - - - - - - Of the metadata record. Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - To the metadata - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - a statement about the rights holder and rights dates - - - - - - - - - - - - a statement about the access rights to the content. - - - - - - - - - - - - a statement about the reproduction rights including contact information. - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. this could be a page on the content providers website which includes information about copyright, access rights and reproduction rights or a link to a Creative Commons license or the public domain mark . Use as a supplement to the information above. It is always recommended that the Copyright elements are given when known. - - - - - - - - - - - - Europeana Rights – one of the 12 rights statements used by Europeana in its portal. See: http://pro.europeana.eu/web/guest/available-rights-statements. Required for content being provided to Europeana. - - - - - - - - - - - - - - - - - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - this is the name of the entity. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - an identifier of an object. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,) The element may be repeated. - - - - - - - - - - This element allows the part of the heritage asset being measured to be indicated, for example 'base' (meaning the base or bottom of the monument, building or object. - - - - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - - - - - - - - e.g. metres, centimetres - - - - - - - - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - - - - - - - Of the ship - - - - - - Port of departure - - - - - - - - - - - - Port of destination - - - - - - - - - - - - Of the ship - - - - - - - - - - - - How the ship was lost - - - - - - - - - - - - When the ship was lost . -If this is a prehistoric date use the minus (-) sign to denote it. - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - the earliest date in the range (literal) - - - - - the latest date in the range (literal) - - - - - the nature of the time span given (e.g. throughout, at some time during, etc.) Use of a controlled vocabulary is recommended. - - - - - - - - - - - - - - - - the name given to the period in history when something occurred. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - - - - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended; the vocabulary used should be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - Information about locations or positions in space. - - - - - - - - The name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended -Content providers are strongly recommended to complete this element. - - - - - - - - - - - - - - The postal address - - - - - The name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - - - - - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute (e.g. WGS84). The ESPG spatial coordinate reference is recommended for use. (Mandatory where coordinates are provided) - - - - - this is the centre point - - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - height - - - - - - - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - height - - - - - height - - - - - - - - - - - - - Datum, units - - - - - - (Point, Line, Polygon) (repeating group to allow a series of points to be recorded) - - - - - - according to the spatial coordinate system in use - - - - - according to the spatial coordinate system in use - - - - - height - - - - - - - - free-text, the accuracy of the point in metres. - - - - - - - - GML, Well-known text (WKT). - - - - - The precision of a coordinate as stored in the system and as delivered to the users. - - - - - Units - - - - - - - - How a feature is represented on a map - - - - - use for the local coordinates within a 3D model - - - - - - this is the local coordinate system in use within the particular software - - - - - a viewpoint within the 3D model, i.e. where the camera is positioned in the digitisation process - - - - - - - - - - - - - - - - - - - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - - - - - The number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A named area within which a monument or building lies - - - - - - - - - - - - - The name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - - - - - - - - - Details of individuals, groups or organisations including date of birth, date of death etc - if known. - - - - - - The name of the person or organization) - - - - - - - - - - - - Indicates whether the actor is an individual, a group of individuals or an organization. - - - - - - - - - - - - The roles of the actor (creator, custodian, repository manager, curator, architect, sculptor, photographer, compiler, etc.). Use of a controlled vocabulary such as the Getty Art and Architecture thesaurus is recommended; the vocabulary used should be indicated using an attribute. - - - - - - - - - - - - - - - Contact information if known - - - - - Date of birth, date of death if known. - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - If this is a prehistoric date use the minus (-) sign to denote it. - - - - - - - - - - - - A free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute should be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated with an attribute. - - - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - Title, first name, last name, other name - - - - - - - - - - - - The particular role played by the person or organization - - - - - - - - - - - - - - - - - - - - - The postal address of the person or organization - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - - - - - - - - - - - - Of publication - - - - - - - - - - - - Of publication - - - - - - - - this is a repeating group of elements which allows the specific activity (or activities) that took place during the overall Event to be described. - - - - - a free text note describing the specific goal or purpose of this activity. For example, carrying out 3D data acquisition, restoration of a part of a building, completing a survey, constructing a building, etc. - - - - - - - - - - - - the start date of the specific activity - - - - - the end date of the specific activity - - - - - the methods used in this specific activity, e.g. open area excavation, sample survey, augering, boring, stratigraphic, restoration, conservation, re-pointing, photogrammetric survey etc. Use of a controlled vocabulary is recommended. - - - - - - - - - - - - the techniques used in this specific activity. Use of a controlled vocabulary is recommended. - - - - - - - - - - - - the materials used during the event method. Use of a controlled vocabulary is recommended. - - - - - - - - - - - - the equipment used during the event method. - - - - - - - - - - - - diff --git a/schemas/carare/carare-v2.0.1.xsd.conf b/schemas/carare/carare-v2.0.1.xsd.conf deleted file mode 100644 index 9e67627..0000000 --- a/schemas/carare/carare-v2.0.1.xsd.conf +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v2.0.1.xsd", - "namespaces": { - "car": "http://www.carare.eu/carareSchema" - }, - - "wrap": { - "element": "carareWrap", - "prefix": "car" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "paths": { - "item": "/carareWrap/carare"; - "label": "/carareWrap/carare/heritageAssetIdentification/appellation/name/text()"; - }, - - "navigation": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAssetIdentification" - }, - { - "name": "Digital Resources", - "element": "digitalResource" - }, - { - "name": "Activities", - "element": "activity" - } - ], - - "customization": "carare.groovy" -} diff --git a/schemas/carare/carare-v5.xsd b/schemas/carare/carare-v5.xsd deleted file mode 100644 index 2dadc8f..0000000 --- a/schemas/carare/carare-v5.xsd +++ /dev/null @@ -1,1185 +0,0 @@ - - - - - The CARARE schema start element. It wraps exactly one collection information wrapper and zero or more of each of the other global wrappers (Monument, Digital resource, Activity). - - - - - - - - - - - - - holds the collection-level description. - - - - - The following elements provide a collection level description of the resources being harvested - - - - - - the title of the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - for the collection. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - for the collection - - - - - associated with the collection as a whole - - - - - organisation that is the source of the collection - - - - - of the metadata. Specifies the default language of the records in the collection; deviations in particular records are specified in the record metadata, and deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - free text. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - information about how the resources being harvested were collected includes: - - - - - - when the collection was created - - - - - The query used to extract the data. - - - - - - - - of the collection - - - - - - general temporal coverage of the collection - - - - - general spatial coverage of the collection, e.g. the country covered. - - - - - - - - Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. The OGC URN scheme for spatial reference systems is recommended for use. - - - - - - - - - - holds the metadata for a monument, including descriptive and administrative metadata. - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - of the features of the archaeological monuments, historic buildings, industrial monuments, archaeological landscape areas, shipwreck, artefact or ecofact. - - - - - the actors involved with this monument, may be repeated. - - - - - This is information about any designations for a monument or building which provide it with protection in law. There may be more than one designation. - - - - - - the type of designation or protection. - - - - - - - - the grade or level of protection. - - - - - - - - the date from which the protection came into force. - - - - - the date until which the monument is protected. - - - - - - - - This is information about the condition of a monument or building. The element is repeatable. - - - - - - the observed condition (e.g. good, fair, bad, poor, part destroyed, under restoration.) - - - - - A detailed assessment of the condition of a Heritage Asset and any treatment required and an estimation of the percentage of the monument affected. - - - - - the date when the assessment of condition was made. - - - - - to an associated event/activity. - - - - - - - - - - - - This is a set of index information to describe the character of the monument - - - - - - classification of the monument, building, landscape feature, artefact or ecofact primarily with respect to its function or use, e.g. house. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - (see section 11) - - - - - the basic materials of which a monument is composed, e.g. brick, stone, tile. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - text inscribed on a monument or building, if any. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. The type of inscription may be indicated using an attribute. Use of a controlled vocabulary to indicate the type of inscription is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - e.g. height, length, width, depth, shape (e.g. oval) - - - - - e.g. metres, centimetres - - - - - - - - - - – this is a set of information to describe shipwrecks if any - - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - of the ship - - - - - - Port of departure - - - - - Port of destination - - - - - of the ship - - - - - how the ship was lost - - - - - when the ship was lost - - - - - - - - of the ship - - - - - - - - - - - - - - - - identification of the institution with custody of the artefact and possibly the current location. - - - - - - - - these are sources of information about the heritage asset in publications and archival sources (for example, photographs, drawings, plans, bibliographic references etc.). Digital objects (image, text, video, audio, 3D model, etc.) which are accessible online and will represent the asset in Europeana should be describe as Digital Resources, not References. - - - - - - - the ID and name given to the information source. - - - - - (creator, author, contributor, editor, etc.) - - - - - (archive, file, record, book, chapter, article etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource - - - - - - - the topic of the resource. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - of the heritage asset to other heritage assets, resources, events etc. - - - - - - - - - - holds the metadata about a digital resource. - - - - - These are digital resources (image, text, video, audio, 3D model) that are being made accessible to the service environment (e.g. CARARE, Europeana). Use this to describe those digital objects which will represent a heritage asset in Europeana. (And use Reference under Heritage Asset to describe other sources of information about the asset, e.g. bibliographic references or analogue representations of the object.) - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - the ID and the name given to the information source (see section 11). - - - - - The actors involved in the creation of a digital resource - - - - - the file format of the resource. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types (MIME). - - - - - Additional information about the file or its production that could be of use in selecting an appropriate viewer for the resource, such as specific codecs used. - - - - - the medium or physical carrier of the resource. - - - - - the size or extent of the resource, including the unit of measurement. - - - - - the topic of the resource. Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - the spatial characteristics of the digital resource (as opposed to the heritage asset it might represent). - - - - - use for dates associated with the topic of the resource, e.g. for digitised copies of historic photographs use for the date when the original photograph was taken (the date of the view of the monument) (see section 11). - - - - - (see section 11) - - - - - The nature or genre of the resource. Use of the DCMI controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. - - - - - The description of the resource, e.g. describe the view of the monument. - - - - - - this is the date when the resource was created - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. - - - - - use for the language of the resource, e.g. the language sub-titles or a voice-over in a movie or a Virtual Reality model of a monument. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - the URL of the resource. A reference to the digital object on the content provider’s web site in the best available resolution/quality. (i.e. a link to the resource as a text, image, sound, or video file, not to the webpage that contains it.) Data here will allow the full functionality of Europeana and the automatic generation of a thumbnail by them. -Object (source = ESE v3.3) – a URL containing a thumbnail or other reduced-quality version of the resource. -IsShownAt (source = ESE v3.3) – A URL to the digital object on the content provider’s website in its full information context. - - - - - - - - - pointer to other information about the resource making the resource available - - - - - to heritage assets, other resources or to references. - - - - - - - - - - - This is information about the events or activities that the monument has taken part in, for example: Field investigation; Research and analysis; Creation; Change in use; Historical events, etc. Source = MIDAS + POLIS DTD. - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - This is the name of the event. - - - - - of the event or activity which took place. - - - - - the people or organisations involved in this event, may be repeated. - - - - - classification of the type of event or activity which took place, e.g. survey, archaeological excavation, rebuilding. Use of a controlled vocabulary is recommended. - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - the date or time span of the event. - - - - - the location or area covered by the event. - - - - - assessments made of the monument during the event, e.g. of the condition of the monument. Use of a controlled vocabulary is recommended. - - - - - - this is the name/location of the controlled vocabulary from which the term is taken. - - - - - - - the method by which the event is carried out - - - - - the materials and/or techniques used during the event. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the event to other events, references, resources etc. - - - - - - - - - - The ID, language, creation information and other metadata describing the record. The ID element of this information block holds the ID assigned by the content provider, cf. section 8. - - - - - i.e. the local ID number in the content providers’ information system; it is unique within the collection, but may follow any schema. - - - - - of the record. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - of the record (the name of the organisation that maintains the record) - - - - - when created and who by; - - - - - - - - - - - the date of the last update to the record and who by - - - - - - - - - - - (of the metadata record). Specifies the default language of the record; deviations in particular elements are specified using the xml:lang attribute where allowed. Specified (like the xml:lang attribute) using ISO 639-1:2002, i.e. standard two letter language codes (en, fr, etc.). - - - - - - - - to the metadata - - - - - for the record. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. Use of a controlled vocabulary such as Getty Arts and Architecture Thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - Information about the rights associated with the object, metadata and the -digital surrogate being harvested into the service environment based on MIDAS Heritage. - - - - - - - - - - (statement) - - - - - - - - - - - - - - - - - - - - - - - - - - - - a URI indicating a license or conditions for the use of the object or data, e.g. a Creative Commons license or the public domain mark . Use as an alternative or supplement to the information above. - - - - - - - This is information about the identifier (ID) and name of the monument (see section 11). The ID sub-element is the record ID in the CARARE repository and will be generated by CARARE on ingest. The name sub-element may be repeated if a monument is known by more than one name, using the XML:lang attribute if the names are in alternate languages. A preferred/alternate attribute may be used to indicate which name is preferred. - - - - - an identifier of an object. An attribute type should be accompany this sub-element denoting the type of the identifier (URI, ISBN, etc,) The element may be repeated. - - - - - this is the name of the entity. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - Information about the date and/or period of an entity. - - - - - - - - the earliest date in the range - - - - - - - - the latest date in the range - - - - - - - - - the nature of the time span given (e.g. throughout, at some time during, etc.) Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - the name given to the period in history when something occurred. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - a free text field used to display the date or period for users (e.g. early 19th century, 1950s). The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - date according to scientific dating methods, e.g. ‘1250 bp +/-30 PBN-1675’, recorded precisely as received from the specialist. - - - - - e.g. ‘radiocarbon dating’. Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - Information about locations or positions in space. - - - - - - - - the name of a place or location which is relevant to the entity being described, for example ‘Lake Windermere’. The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - the postal address - - - - - the name of an administrative region which does not form part of the address, for example Scotland, England, Tuscany etc. May also be used for a historical geopolitical area, or an administrative unit (e.g. as defined in the INSPIRE directive). - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - - (how a feature is depicted in a GIS, e.g. point, line, polygon, multi-point, multi-line, multi-polygon). Use of a controlled vocabulary is recommended, and the vocabulary used may be indicated using an attribute. No particular common vocabulary is recommended for use. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GML, Well-known text (WKT). - - - - - delivery precision (the precision of a coordinate as stored in the system, and as delivered to users). - - - - - datum, units - - - - - units - - - - - - - - how a feature is represented on a map - - - - - - - This is the postal address for a building, contact, etc. - - - - - - - - - - - the number in a road or street used to identify a property - - - - - - - - - - - - - - - - - - - - - - a named area within which a monument or building lies - - - - - - - - - the name by which an administrative area is known, e.g. Shropshire - - - - - - - - - - - - - - - - - the actors involved with this monument, may be repeated. - - - - - - the name of the person or organisation) - - - - - indicates whether the actor is an individual, a group of individuals or an organisation. - - - - - - - - the roles of the actor (creator, custody, repository, curator, architect, sculptor, photographer, compiler, etc.) Use of a controlled vocabulary such as Getty Arts and Architecture thesaurus is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - contact information if known - - - - - date of birth, date of death if known. - - - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - Use of a controlled vocabulary such as http://www.geonames.org/ is recommended, and the vocabulary used may be indicated using an attribute. - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - Information about how a person or organisation can be contacted - - - - - title, first name, last name, other name - - - - - the particular role played by the person or organisation - - - - - - the postal address of the person or organisation - - - - - - - - - - The element may be repeated using the XML:lang attribute if the element value is available in alternate languages. A preferred/alternate attribute may be used to indicate which value is preferred. - - - - - - - - - - - - - - of publication - - - - - of publication - - - - - - - This is information about the relations between heritage assets, events or resources and other entities - -• The type of relation, for example ‘is successor of’, ‘is next in sequence’, ‘has part’. -• The target of the relation (the ID number of the related heritage asset, event or resource) - -The relations which are included in the Europeana Data Model are as follows: - -• Is Derivative Of – a version of another resource -• Is Next In Sequence – the ordered parts of a resource, e.g. the pages in a book or an ordered sequence of 3D models showing the change of a monument over time. -• Is Related To – a general relationship between objects -• Is Representation Of – associates an information resource to the object that it represents, e.g. a digital image is a representation of the monument which is the target of the relation. We use it in the CARARE schema to associate a heritage asset and a Digital Resource -• Is Successor Of – the relation between the continuation of a resource and that resource, e.g. a church is successor of an earlier church on the same site. -• Occurred At – associates an event to the smallest known time span that overlaps with the occurrence of that event. -• Happened At – relates a place to the events which happened at that place. -• Was Present At – this relation associates the people, things or information sources with the Event that they were present at. -• Has Part – used for objects that incorporate other objects, e.g. a monument made up of smaller monuments or a site with a number of monuments. - -Additional CARARE properties: - -• hasEvent – associates a heritage asset with an Activity. -• Is Replica of – used for heritage assets that replicate other heritage assets, including scale models. -• Is In Front Of – a spatial relationship signifying the relative position of one monument to another. -• Is Behind – a spatial relationship signifying the relative position of one monument to another. -• Is Above – a spatial relationship signifying the relative position of one monument to another. -• Is Below – a spatial relationship signifying the relative position of one monument to another. -• Is North Of – a spatial relationship signifying the relative position of one monument to another. -• Is South Of – a spatial relationship signifying the relative position of one monument to another. -• Is East Of – a spatial relationship signifying the relative position of one monument to another. -• Is West Of – a spatial relationship signifying the relative position of one monument to another. -• Same As (source = OWL) – indicates that the two participants in the relation actually refer to the same thing. - - - - - - - - \ No newline at end of file diff --git a/schemas/carare/carare-v5.xsd.conf b/schemas/carare/carare-v5.xsd.conf deleted file mode 100644 index a93271a..0000000 --- a/schemas/carare/carare-v5.xsd.conf +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": "1.0", - "xsd": "carare-v5.xsd", - "namespaces": { - "car": "http://www.dcu.gr/carareSchema" - }, - - "item": { - "element": "carare", - "prefix": "car" - }, - - "groups": [ - { - "name": "Collection Information", - "element": "collectionInformation" - }, - { - "name": "Heritage Assets", - "element": "heritageAsset", - "type": "wrap" - }, - { - "name": "Digital Resources", - "element": "digitalResource", - "type": "wrap" - }, - { - "name": "Activities", - "element": "activity", - "type": "wrap" - } - ] -} diff --git a/schemas/dm2e/AGGREGATION.xsd b/schemas/dm2e/AGGREGATION.xsd deleted file mode 100644 index d4863f0..0000000 --- a/schemas/dm2e/AGGREGATION.xsd +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/BIBO.xsd b/schemas/dm2e/BIBO.xsd deleted file mode 100644 index b5c4503..0000000 --- a/schemas/dm2e/BIBO.xsd +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - \ No newline at end of file diff --git a/schemas/dm2e/CONTEXTS.xsd b/schemas/dm2e/CONTEXTS.xsd deleted file mode 100644 index 01d8798..0000000 --- a/schemas/dm2e/CONTEXTS.xsd +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/DC.xsd b/schemas/dm2e/DC.xsd deleted file mode 100644 index 65c47d2..0000000 --- a/schemas/dm2e/DC.xsd +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the - lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: - String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/dm2e/DCTERMS.xsd b/schemas/dm2e/DCTERMS.xsd deleted file mode 100644 index 96b310b..0000000 --- a/schemas/dm2e/DCTERMS.xsd +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - Modification date and time of this aggregation. - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/DM2E.xsd b/schemas/dm2e/DM2E.xsd deleted file mode 100644 index 9fc646a..0000000 --- a/schemas/dm2e/DM2E.xsd +++ /dev/null @@ -1,438 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - - Subproperty of dct:creator. The author of the CHO. - - - - - - - - Subproperty of dct:creator - - - - - - - - - Subproperty of dc:identifier.The call number for some archival item. - - - - - - - - Subproperty of dct:extent. A brief description of the manuscript. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, - but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - - Description of the CHOs condition. - - - - - - - - Subproperty of dc:contributor. A person that has contributed to the CHO (but is not the only creator). - - - - - - - - - Someone who copied a CHO. - - - - - - - - The person or institution that holds the copyright. - - - - - - - - Date of remark. Can be a point in time or a timespan. - - - - - - - - The editor of a book, journal or series. Can be a person or organization. - - - - - - - - Final words of a manuscript. - - - - - - - - URL of the creator of this aggregation (e.g. library staff member). - - - - - - - - An honored person, for whom the book is published. - - - - - - - - Subproperty of dct:creator. Someone who has made the illustrations of a CHO. - - - - - - - - Opening words of a manuscript. - - - - - - - - Another agent by which the agent was influenced. - - - - - - - - "Subproperty of dc:identifier. The ISBN number for the CHO." - - - - - - - - Related resource that includes this resource. - - - - - - - - Subproperty of dct:extent. - - - - - - - - Final words of a manuscript. - - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - - Indicates the ownership of a CHO. - - - - - - - - Page size. Please do also note the unit that was used! - - - - - - - - Subproperty of dct:creator. A painter. - In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - - Subproperty of dm2e:contributor. A person who is honored within the text. - - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - - A person or institution who printed the CHO. - In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - - Subproperty of dct:spatial. The place of publication. - - - - - - - - The recipient of a CHO, e.g. a letter. - - - - - - - - References to Editions. - - - - - - - - References to Publications. - - - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - - - Other Related Publications. - - - - - - - - Description of the CHOs restoration. (MAB2 field 662e) - - - - - - - - Shelfmark location from the CHO. - - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - - A teacher of the agent. - - - - - - - - Persons who are subjects of a CHO. - - - - - - - - Subproperty of dc:title. Any form of subtitle. - - - - - - - - Subproperty of dm2e:subtitle. A subtitle transliteration. - - - - - - - - Description of the CHOs support. (MAB2 field 662d) - - - - - - - - Subproperty of dc:title. A title transliteration. - - - - - - - - Someone who translated the CHO. - - - - - - - - The CHO was studied by an Agent. - - - - - - - - The CHO was taught by an Agent. - - - - - - - - Description of the CHOs watermark. - - - - - - - - Subpropertry of dct:creator. Person who has written a CHO, e.g. a letter. - - - - - - - - Size of writing or the part of the page where something is actually written. - Please do also note the unit that was used! - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/EDM+.xsd b/schemas/dm2e/EDM+.xsd deleted file mode 100644 index bdba1a6..0000000 --- a/schemas/dm2e/EDM+.xsd +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - diff --git a/schemas/dm2e/EDM+.xsd.conf b/schemas/dm2e/EDM+.xsd.conf deleted file mode 100644 index c0aa557..0000000 --- a/schemas/dm2e/EDM+.xsd.conf +++ /dev/null @@ -1,72 +0,0 @@ -{ - "version": "1.0", - "xsd": "DM2E.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "dm2e": "http://data.dm2e.eu/schemas/edmplus/0.1/", - "bibo": "http://purl.org/ontology/bibo/" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2e.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/dm2e/EDM-COMMON-MAIN.xsd b/schemas/dm2e/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 353e244..0000000 --- a/schemas/dm2e/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,638 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - - - - - - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/dm2e/EDM-EXTERNAL-MAIN.xsd b/schemas/dm2e/EDM-EXTERNAL-MAIN.xsd deleted file mode 100644 index f7cb67f..0000000 --- a/schemas/dm2e/EDM-EXTERNAL-MAIN.xsd +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/dm2e/ENRICHMENT.xsd b/schemas/dm2e/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/dm2e/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/FOAF.xsd b/schemas/dm2e/FOAF.xsd deleted file mode 100644 index a7e6a95..0000000 --- a/schemas/dm2e/FOAF.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - - - - - - - diff --git a/schemas/dm2e/KORBO.xsd b/schemas/dm2e/KORBO.xsd deleted file mode 100644 index 2a1ba28..0000000 --- a/schemas/dm2e/KORBO.xsd +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - An HTML representation of an object can include a single named-content - (in this case it represents a single atomic piece of content, e.g. the transcription of a page) - or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity - of named-content is up to each content provider. For details on the allowed contents for this property confer the DM2E Wiki page: https://dm2e.hu-berlin.de/redmine/projects/wp3/wiki/Named_content_markup - - - - \ No newline at end of file diff --git a/schemas/dm2e/ORE.xsd b/schemas/dm2e/ORE.xsd deleted file mode 100644 index f66342f..0000000 --- a/schemas/dm2e/ORE.xsd +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/OWL.xsd b/schemas/dm2e/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/dm2e/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/dm2e/RDAGR2.xsd b/schemas/dm2e/RDAGR2.xsd deleted file mode 100644 index 51fa948..0000000 --- a/schemas/dm2e/RDAGR2.xsd +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2e/RDF.xsd b/schemas/dm2e/RDF.xsd deleted file mode 100644 index 3e1aa39..0000000 --- a/schemas/dm2e/RDF.xsd +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/SKOS.xsd b/schemas/dm2e/SKOS.xsd deleted file mode 100644 index bd60428..0000000 --- a/schemas/dm2e/SKOS.xsd +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2e/WGS84_POS.xsd b/schemas/dm2e/WGS84_POS.xsd deleted file mode 100644 index eb9d6f8..0000000 --- a/schemas/dm2e/WGS84_POS.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/AGGREGATION.xsd b/schemas/dm2ev01/AGGREGATION.xsd deleted file mode 100644 index d4863f0..0000000 --- a/schemas/dm2ev01/AGGREGATION.xsd +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/BIBO.xsd b/schemas/dm2ev01/BIBO.xsd deleted file mode 100644 index b5c4503..0000000 --- a/schemas/dm2ev01/BIBO.xsd +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/CONTEXTS.xsd b/schemas/dm2ev01/CONTEXTS.xsd deleted file mode 100644 index 01d8798..0000000 --- a/schemas/dm2ev01/CONTEXTS.xsd +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/DC.xsd b/schemas/dm2ev01/DC.xsd deleted file mode 100644 index 65c47d2..0000000 --- a/schemas/dm2ev01/DC.xsd +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the - lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: - String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/DCTERMS.xsd b/schemas/dm2ev01/DCTERMS.xsd deleted file mode 100644 index 96b310b..0000000 --- a/schemas/dm2ev01/DCTERMS.xsd +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - Modification date and time of this aggregation. - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/DM2E.xsd b/schemas/dm2ev01/DM2E.xsd deleted file mode 100644 index 9fc646a..0000000 --- a/schemas/dm2ev01/DM2E.xsd +++ /dev/null @@ -1,438 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - - Subproperty of dct:creator. The author of the CHO. - - - - - - - - Subproperty of dct:creator - - - - - - - - - Subproperty of dc:identifier.The call number for some archival item. - - - - - - - - Subproperty of dct:extent. A brief description of the manuscript. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, - but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - - Description of the CHOs condition. - - - - - - - - Subproperty of dc:contributor. A person that has contributed to the CHO (but is not the only creator). - - - - - - - - - Someone who copied a CHO. - - - - - - - - The person or institution that holds the copyright. - - - - - - - - Date of remark. Can be a point in time or a timespan. - - - - - - - - The editor of a book, journal or series. Can be a person or organization. - - - - - - - - Final words of a manuscript. - - - - - - - - URL of the creator of this aggregation (e.g. library staff member). - - - - - - - - An honored person, for whom the book is published. - - - - - - - - Subproperty of dct:creator. Someone who has made the illustrations of a CHO. - - - - - - - - Opening words of a manuscript. - - - - - - - - Another agent by which the agent was influenced. - - - - - - - - "Subproperty of dc:identifier. The ISBN number for the CHO." - - - - - - - - Related resource that includes this resource. - - - - - - - - Subproperty of dct:extent. - - - - - - - - Final words of a manuscript. - - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - - Indicates the ownership of a CHO. - - - - - - - - Page size. Please do also note the unit that was used! - - - - - - - - Subproperty of dct:creator. A painter. - In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - - Subproperty of dm2e:contributor. A person who is honored within the text. - - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - - A person or institution who printed the CHO. - In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - - Subproperty of dct:spatial. The place of publication. - - - - - - - - The recipient of a CHO, e.g. a letter. - - - - - - - - References to Editions. - - - - - - - - References to Publications. - - - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - - - Other Related Publications. - - - - - - - - Description of the CHOs restoration. (MAB2 field 662e) - - - - - - - - Shelfmark location from the CHO. - - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - - A teacher of the agent. - - - - - - - - Persons who are subjects of a CHO. - - - - - - - - Subproperty of dc:title. Any form of subtitle. - - - - - - - - Subproperty of dm2e:subtitle. A subtitle transliteration. - - - - - - - - Description of the CHOs support. (MAB2 field 662d) - - - - - - - - Subproperty of dc:title. A title transliteration. - - - - - - - - Someone who translated the CHO. - - - - - - - - The CHO was studied by an Agent. - - - - - - - - The CHO was taught by an Agent. - - - - - - - - Description of the CHOs watermark. - - - - - - - - Subpropertry of dct:creator. Person who has written a CHO, e.g. a letter. - - - - - - - - Size of writing or the part of the page where something is actually written. - Please do also note the unit that was used! - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/EDM+.xsd b/schemas/dm2ev01/EDM+.xsd deleted file mode 100644 index bdba1a6..0000000 --- a/schemas/dm2ev01/EDM+.xsd +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - diff --git a/schemas/dm2ev01/EDM+.xsd.conf b/schemas/dm2ev01/EDM+.xsd.conf deleted file mode 100644 index c0aa557..0000000 --- a/schemas/dm2ev01/EDM+.xsd.conf +++ /dev/null @@ -1,72 +0,0 @@ -{ - "version": "1.0", - "xsd": "DM2E.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "dm2e": "http://data.dm2e.eu/schemas/edmplus/0.1/", - "bibo": "http://purl.org/ontology/bibo/" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2e.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/dm2ev01/EDM-COMMON-MAIN.xsd b/schemas/dm2ev01/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 353e244..0000000 --- a/schemas/dm2ev01/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,638 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - - - - - - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/dm2ev01/EDM-EXTERNAL-MAIN.xsd b/schemas/dm2ev01/EDM-EXTERNAL-MAIN.xsd deleted file mode 100644 index 3983f5d..0000000 --- a/schemas/dm2ev01/EDM-EXTERNAL-MAIN.xsd +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/dm2ev01/ENRICHMENT.xsd b/schemas/dm2ev01/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/dm2ev01/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/FOAF.xsd b/schemas/dm2ev01/FOAF.xsd deleted file mode 100644 index a7e6a95..0000000 --- a/schemas/dm2ev01/FOAF.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - - - - - - - diff --git a/schemas/dm2ev01/KORBO.xsd b/schemas/dm2ev01/KORBO.xsd deleted file mode 100644 index 2a1ba28..0000000 --- a/schemas/dm2ev01/KORBO.xsd +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - An HTML representation of an object can include a single named-content - (in this case it represents a single atomic piece of content, e.g. the transcription of a page) - or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity - of named-content is up to each content provider. For details on the allowed contents for this property confer the DM2E Wiki page: https://dm2e.hu-berlin.de/redmine/projects/wp3/wiki/Named_content_markup - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/ORE.xsd b/schemas/dm2ev01/ORE.xsd deleted file mode 100644 index f66342f..0000000 --- a/schemas/dm2ev01/ORE.xsd +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/OWL.xsd b/schemas/dm2ev01/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/dm2ev01/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/RDAGR2.xsd b/schemas/dm2ev01/RDAGR2.xsd deleted file mode 100644 index 51fa948..0000000 --- a/schemas/dm2ev01/RDAGR2.xsd +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev01/RDF.xsd b/schemas/dm2ev01/RDF.xsd deleted file mode 100644 index 3e1aa39..0000000 --- a/schemas/dm2ev01/RDF.xsd +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/SKOS.xsd b/schemas/dm2ev01/SKOS.xsd deleted file mode 100644 index bd60428..0000000 --- a/schemas/dm2ev01/SKOS.xsd +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev01/WGS84_POS.xsd b/schemas/dm2ev01/WGS84_POS.xsd deleted file mode 100644 index eb9d6f8..0000000 --- a/schemas/dm2ev01/WGS84_POS.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/BIBO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/BIBO.xsd deleted file mode 100644 index 4ccd086..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/BIBO.xsd +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/DC.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/DC.xsd deleted file mode 100644 index ab63bb9..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/DC.xsd +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/DCTERMS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/DCTERMS.xsd deleted file mode 100644 index 7b64d9e..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/DCTERMS.xsd +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - An account of the resource. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/DM2E.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/DM2E.xsd deleted file mode 100644 index 6d07ffd..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/DM2E.xsd +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - - Original version from which this object has been derived. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Someone who copied a CHO. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - Indicates the ownership of a CHO. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person who is honored within the text. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that includes this Web resource. - - - - - - - Another agent by which the agent was influenced. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM+.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM+.xsd.conf b/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM+.xsd.conf deleted file mode 100644 index 1ec4186..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM+.xsd.conf +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.0/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_0.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 5f8aebd..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,563 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/FOAF.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/FOAF.xsd deleted file mode 100644 index d900579..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/FOAF.xsd +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/KORBO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/KORBO.xsd deleted file mode 100644 index 11af3b0..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/KORBO.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/ORE.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/ORE.xsd deleted file mode 100644 index f076737..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/ORE.xsd +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/PRO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/PRO.xsd deleted file mode 100644 index 5cb8f28..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/PRO.xsd +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/RDAGR2.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/RDAGR2.xsd deleted file mode 100644 index c9fa12c..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/RDF.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/RDF.xsd deleted file mode 100644 index 6ebdb06..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/RDF.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/SKOS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/SKOS.xsd deleted file mode 100644 index 14550ca..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/VOID.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/VOID.xsd deleted file mode 100644 index ed15ba5..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/VOID.xsd +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v1/WGS84_POS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v1/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v1/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/BIBO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/BIBO.xsd deleted file mode 100644 index 971505f..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/BIBO.xsd +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/DC.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/DC.xsd deleted file mode 100644 index a1f6895..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/DC.xsd +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/DCTERMS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/DCTERMS.xsd deleted file mode 100644 index 7277abb..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/DCTERMS.xsd +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - An account of the resource. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/DM2E.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/DM2E.xsd deleted file mode 100644 index b7033d3..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/DM2E.xsd +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - - Original version from which this object has been derived. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Someone who copied a CHO. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - Indicates the ownership of a CHO. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person who is honored within the text. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that includes this Web resource. - - - - - - - Another agent by which the agent was influenced. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM+.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM+.xsd.conf b/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM+.xsd.conf deleted file mode 100644 index 1ec4186..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM+.xsd.conf +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.0/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_0.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM-COMMON-MAIN.xsd deleted file mode 100644 index f96fba8..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,559 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/FOAF.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/FOAF.xsd deleted file mode 100644 index d900579..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/FOAF.xsd +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/KORBO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/KORBO.xsd deleted file mode 100644 index 11af3b0..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/KORBO.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/ORE.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/ORE.xsd deleted file mode 100644 index f076737..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/ORE.xsd +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/PRO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/PRO.xsd deleted file mode 100644 index 95b883f..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/PRO.xsd +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/RDAGR2.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/RDAGR2.xsd deleted file mode 100644 index c9fa12c..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/RDF.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/RDF.xsd deleted file mode 100644 index 6ebdb06..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/RDF.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/SKOS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/SKOS.xsd deleted file mode 100644 index 14550ca..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/VOID.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/VOID.xsd deleted file mode 100644 index ed15ba5..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/VOID.xsd +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v2/WGS84_POS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v2/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v2/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/BIBO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/BIBO.xsd deleted file mode 100644 index 971505f..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/BIBO.xsd +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/DC.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/DC.xsd deleted file mode 100644 index a1f6895..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/DC.xsd +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/DCTERMS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/DCTERMS.xsd deleted file mode 100644 index 7277abb..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/DCTERMS.xsd +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - An account of the resource. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/DM2E.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/DM2E.xsd deleted file mode 100644 index b7033d3..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/DM2E.xsd +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - - Original version from which this object has been derived. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Someone who copied a CHO. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - Indicates the ownership of a CHO. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person who is honored within the text. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that includes this Web resource. - - - - - - - Another agent by which the agent was influenced. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM+.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM+.xsd.conf b/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM+.xsd.conf deleted file mode 100644 index 1ec4186..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM+.xsd.conf +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.0/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_0.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 4c833df..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,601 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/FOAF.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/FOAF.xsd deleted file mode 100644 index d900579..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/FOAF.xsd +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/KORBO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/KORBO.xsd deleted file mode 100644 index 11af3b0..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/KORBO.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/ORE.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/ORE.xsd deleted file mode 100644 index f076737..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/ORE.xsd +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/PRO.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/PRO.xsd deleted file mode 100644 index 95b883f..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/PRO.xsd +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/RDAGR2.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/RDAGR2.xsd deleted file mode 100644 index c9fa12c..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/RDF.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/RDF.xsd deleted file mode 100644 index 6ebdb06..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/RDF.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/SKOS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/SKOS.xsd deleted file mode 100644 index 14550ca..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/VOID.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/VOID.xsd deleted file mode 100644 index ed15ba5..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/VOID.xsd +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 Fixed Ranges - Short v3/WGS84_POS.xsd b/schemas/dm2ev1.0 Fixed Ranges - Short v3/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.0 Fixed Ranges - Short v3/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/BIBO.xsd b/schemas/dm2ev1.0 FixedRanges/BIBO.xsd deleted file mode 100644 index 971505f..0000000 --- a/schemas/dm2ev1.0 FixedRanges/BIBO.xsd +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/DC.xsd b/schemas/dm2ev1.0 FixedRanges/DC.xsd deleted file mode 100644 index a1f6895..0000000 --- a/schemas/dm2ev1.0 FixedRanges/DC.xsd +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/DCTERMS.xsd b/schemas/dm2ev1.0 FixedRanges/DCTERMS.xsd deleted file mode 100644 index 8c1657e..0000000 --- a/schemas/dm2ev1.0 FixedRanges/DCTERMS.xsd +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity and interpretation. This may include a description of any changes successive custodians made to the resource. - - - - - - An account of the resource. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/DM2E.xsd b/schemas/dm2ev1.0 FixedRanges/DM2E.xsd deleted file mode 100644 index b7033d3..0000000 --- a/schemas/dm2ev1.0 FixedRanges/DM2E.xsd +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - - Original version from which this object has been derived. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Someone who copied a CHO. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - Indicates the ownership of a CHO. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person who is honored within the text. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that includes this Web resource. - - - - - - - Another agent by which the agent was influenced. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/EDM+.xsd b/schemas/dm2ev1.0 FixedRanges/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.0 FixedRanges/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.0 FixedRanges/EDM+.xsd.conf b/schemas/dm2ev1.0 FixedRanges/EDM+.xsd.conf deleted file mode 100644 index 1ec4186..0000000 --- a/schemas/dm2ev1.0 FixedRanges/EDM+.xsd.conf +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.0/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_0.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.0 FixedRanges/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.0 FixedRanges/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 2aa8375..0000000 --- a/schemas/dm2ev1.0 FixedRanges/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 FixedRanges/FOAF.xsd b/schemas/dm2ev1.0 FixedRanges/FOAF.xsd deleted file mode 100644 index 8baa227..0000000 --- a/schemas/dm2ev1.0 FixedRanges/FOAF.xsd +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 FixedRanges/KORBO.xsd b/schemas/dm2ev1.0 FixedRanges/KORBO.xsd deleted file mode 100644 index 11af3b0..0000000 --- a/schemas/dm2ev1.0 FixedRanges/KORBO.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/ORE.xsd b/schemas/dm2ev1.0 FixedRanges/ORE.xsd deleted file mode 100644 index f076737..0000000 --- a/schemas/dm2ev1.0 FixedRanges/ORE.xsd +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/PRO.xsd b/schemas/dm2ev1.0 FixedRanges/PRO.xsd deleted file mode 100644 index 95b883f..0000000 --- a/schemas/dm2ev1.0 FixedRanges/PRO.xsd +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/RDAGR2.xsd b/schemas/dm2ev1.0 FixedRanges/RDAGR2.xsd deleted file mode 100644 index c9fa12c..0000000 --- a/schemas/dm2ev1.0 FixedRanges/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0 FixedRanges/RDF.xsd b/schemas/dm2ev1.0 FixedRanges/RDF.xsd deleted file mode 100644 index 6ebdb06..0000000 --- a/schemas/dm2ev1.0 FixedRanges/RDF.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/SKOS.xsd b/schemas/dm2ev1.0 FixedRanges/SKOS.xsd deleted file mode 100644 index 14550ca..0000000 --- a/schemas/dm2ev1.0 FixedRanges/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/VOID.xsd b/schemas/dm2ev1.0 FixedRanges/VOID.xsd deleted file mode 100644 index ed15ba5..0000000 --- a/schemas/dm2ev1.0 FixedRanges/VOID.xsd +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0 FixedRanges/WGS84_POS.xsd b/schemas/dm2ev1.0 FixedRanges/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.0 FixedRanges/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/BIBO.xsd b/schemas/dm2ev1.0/BIBO.xsd deleted file mode 100644 index 86e3374..0000000 --- a/schemas/dm2ev1.0/BIBO.xsd +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - An agent that receives a communication document. - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/DC.xsd b/schemas/dm2ev1.0/DC.xsd deleted file mode 100644 index 34632b5..0000000 --- a/schemas/dm2ev1.0/DC.xsd +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/DCTERMS.xsd b/schemas/dm2ev1.0/DCTERMS.xsd deleted file mode 100644 index c4979c2..0000000 --- a/schemas/dm2ev1.0/DCTERMS.xsd +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - An account of the resource. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/DM2E.xsd b/schemas/dm2ev1.0/DM2E.xsd deleted file mode 100644 index fca0177..0000000 --- a/schemas/dm2ev1.0/DM2E.xsd +++ /dev/null @@ -1,543 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - Original version from which this object has been derived. - - - - - - - Original version from which this object has been derived. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - A place of which this place is part of. - - - - - - Related resource that includes this resource. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - The CHO was taught by an Agent. - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - Someone who copied a CHO. - - - - - - - Someone who copied a CHO. - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - Indicates the ownership of a CHO. - - - - - - - Indicates the ownership of a CHO. - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person who is honored within the text. - - - - - - - A person who is honored within the text. - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - A resource that includes this Web resource. - - - - - - - A resource that includes this Web resource. - - - - - - Another agent by which the agent was influenced. - - - - - - - Another agent by which the agent was influenced. - - - - - - A teacher of the agent.. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/EDM+.xsd b/schemas/dm2ev1.0/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.0/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.0/EDM+.xsd.conf b/schemas/dm2ev1.0/EDM+.xsd.conf deleted file mode 100644 index 3623d4b..0000000 --- a/schemas/dm2ev1.0/EDM+.xsd.conf +++ /dev/null @@ -1,108 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.0/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_0.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Dataset", - "element": "Dataset" - }, - { - "name": "DataResource", - "element": "DataResource" - }, - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Person", - "element": "Person" - }, - { - "name": "Organisation", - "element": "Organisation" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Event", - "element": "Event" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.0/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.0/EDM-COMMON-MAIN.xsd deleted file mode 100644 index e3bb7af..0000000 --- a/schemas/dm2ev1.0/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,569 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0/FOAF.xsd b/schemas/dm2ev1.0/FOAF.xsd deleted file mode 100644 index 29c967f..0000000 --- a/schemas/dm2ev1.0/FOAF.xsd +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0/KORBO.xsd b/schemas/dm2ev1.0/KORBO.xsd deleted file mode 100644 index 5dd5b56..0000000 --- a/schemas/dm2ev1.0/KORBO.xsd +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/ORE.xsd b/schemas/dm2ev1.0/ORE.xsd deleted file mode 100644 index 4edae5f..0000000 --- a/schemas/dm2ev1.0/ORE.xsd +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/PRO.xsd b/schemas/dm2ev1.0/PRO.xsd deleted file mode 100644 index 5b78be5..0000000 --- a/schemas/dm2ev1.0/PRO.xsd +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - The author of the CHO. - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/RDAGR2.xsd b/schemas/dm2ev1.0/RDAGR2.xsd deleted file mode 100644 index eddf384..0000000 --- a/schemas/dm2ev1.0/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.0/RDF.xsd b/schemas/dm2ev1.0/RDF.xsd deleted file mode 100644 index 3e1aa39..0000000 --- a/schemas/dm2ev1.0/RDF.xsd +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/SKOS.xsd b/schemas/dm2ev1.0/SKOS.xsd deleted file mode 100644 index d285c46..0000000 --- a/schemas/dm2ev1.0/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/VOID.xsd b/schemas/dm2ev1.0/VOID.xsd deleted file mode 100644 index d8fc428..0000000 --- a/schemas/dm2ev1.0/VOID.xsd +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.0/WGS84_POS.xsd b/schemas/dm2ev1.0/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.0/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/BIBO.xsd b/schemas/dm2ev1.1 Fixed Ranges/BIBO.xsd deleted file mode 100644 index 971505f..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/BIBO.xsd +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/DC.xsd b/schemas/dm2ev1.1 Fixed Ranges/DC.xsd deleted file mode 100644 index a1f6895..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/DC.xsd +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/DCTERMS.xsd b/schemas/dm2ev1.1 Fixed Ranges/DCTERMS.xsd deleted file mode 100644 index 8c1657e..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/DCTERMS.xsd +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity and interpretation. This may include a description of any changes successive custodians made to the resource. - - - - - - An account of the resource. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/DM2E.xsd b/schemas/dm2ev1.1 Fixed Ranges/DM2E.xsd deleted file mode 100644 index ba7b91a..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/DM2E.xsd +++ /dev/null @@ -1,361 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - The property dm2e:hasAnnotatableVersionAt holds an URL which leads to an HTML representation or to an image of the content, i.e. of the CHO aggregated by the current Aggregation. The URL of the HTML content or image file must be stable. The type of the WebResource must be further specified as “text/html-named-content”, “text/plain”, “image/gif”, “image/jpeg” or “image/png”. - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - - Original version from which this object has been derived. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Description of the cover of the CHO, e.g. the cover’s type of material. - - - - - - Description of the type of material of the physical CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Someone who copied a CHO. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - Indicates the ownership of a CHO. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person who is honored within the text. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that includes this Web resource. - - - - - - - Another agent by which the agent was influenced. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/EDM+.xsd b/schemas/dm2ev1.1 Fixed Ranges/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.1 Fixed Ranges/EDM+.xsd.conf b/schemas/dm2ev1.1 Fixed Ranges/EDM+.xsd.conf deleted file mode 100644 index cdce04a..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/EDM+.xsd.conf +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.1/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_1.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.1 Fixed Ranges/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.1 Fixed Ranges/EDM-COMMON-MAIN.xsd deleted file mode 100644 index d9dbdbe..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - diff --git a/schemas/dm2ev1.1 Fixed Ranges/FOAF.xsd b/schemas/dm2ev1.1 Fixed Ranges/FOAF.xsd deleted file mode 100644 index 89c9d08..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/FOAF.xsd +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.1 Fixed Ranges/KORBO.xsd b/schemas/dm2ev1.1 Fixed Ranges/KORBO.xsd deleted file mode 100644 index 11af3b0..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/KORBO.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/ORE.xsd b/schemas/dm2ev1.1 Fixed Ranges/ORE.xsd deleted file mode 100644 index dac820e..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/ORE.xsd +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/PRO.xsd b/schemas/dm2ev1.1 Fixed Ranges/PRO.xsd deleted file mode 100644 index 95b883f..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/PRO.xsd +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/RDAGR2.xsd b/schemas/dm2ev1.1 Fixed Ranges/RDAGR2.xsd deleted file mode 100644 index c9fa12c..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.1 Fixed Ranges/RDF.xsd b/schemas/dm2ev1.1 Fixed Ranges/RDF.xsd deleted file mode 100644 index 6ebdb06..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/RDF.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/SKOS.xsd b/schemas/dm2ev1.1 Fixed Ranges/SKOS.xsd deleted file mode 100644 index 14550ca..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/VOID.xsd b/schemas/dm2ev1.1 Fixed Ranges/VOID.xsd deleted file mode 100644 index ed15ba5..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/VOID.xsd +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1 Fixed Ranges/WGS84_POS.xsd b/schemas/dm2ev1.1 Fixed Ranges/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.1 Fixed Ranges/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/BIBO.xsd b/schemas/dm2ev1.1/BIBO.xsd deleted file mode 100644 index 86e3374..0000000 --- a/schemas/dm2ev1.1/BIBO.xsd +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - The number of pages contained in a document. - - - - - - The number of volumes contained in a collection of documents (usually a series, periodical, etc.). - - - - - - A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. - - - - - - A volume number. - - - - - - The ISBN number for the CHO of type book. - - - - - - The ISSN number for the CHO of type book. - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - - A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication - - - - - - An agent that receives a communication document. - - - - - - - An agent that receives a communication document. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/DC.xsd b/schemas/dm2ev1.1/DC.xsd deleted file mode 100644 index 34632b5..0000000 --- a/schemas/dm2ev1.1/DC.xsd +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - The property dc:type provides a specific type that applies to the CHO. By type we mean either a physical form (e.g. book) or logical form (e.g. paragraph) as they are specified as subclasses of edm:PhysicalThing and skos:Concept respectively. At least one dc:type must be provided. - - - - - - Identifier of the resource. - - - - - - URL of a resource describing licensing rights of the CHO. - - - - - - Subject of the CHO. Can be taken from another vocabulary. May also relate to a person that is the subject of a CHO. - - - - - - The file format, physical medium, or dimensions of the resource. - - - - - - The property dc:language holds the most prominent language of the CHO. If an edm:type property with the value “TEXT” has been given, only then it is mandatory to provide at least one language. If several languages are present in the CHO then repeat dc:language for each language. ISO 639-2 should be used for this - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:contributor holds the name or identifier of the agent (a person or organisation) who contributed to the creation of the aggregation, i.e. the original source metadata record. - - - - - - A significant date associated with this agent. The date should be described with edm:Event. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/DCTERMS.xsd b/schemas/dm2ev1.1/DCTERMS.xsd deleted file mode 100644 index 62fec9b..0000000 --- a/schemas/dm2ev1.1/DCTERMS.xsd +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - - - The property dcterms:rightsHolder holds the name or identifier of the agent (a person or organisation) who owns or manages the rights of the physical object (the CHO) which is described in the source. - - - - - - The property dcterms:created holds the creation date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:created holds the modification date and time of the aggregation, i.e. the original source metadata record. - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - - The property dcterms:creator holds the name or identifier of the agent (a person or organisation) who created the aggregation, i.e. the original source metadata record. - - - - - - - The property dcterms:titles gives the main title of the CHO. It is mandatory to provide either a dcterms:title or a dcterms:description for the CHO. - - - - - - An alternative name for the resource. Should not be used for subtitles in DM2E. Can be used if title and subtitle are in one field. - - - - - - An account of the resource. - - - - - - Is used for mixed provenance data that cannot be mapped to another property. - - - - - - Date of publication (of the described CHO, usually the original one). - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - This property can be used for not further specified places. If the place of publication or printing should be indicated, use dm2e:publishedAt or dme2e:printedAt instead. - - - - - - The size or duration of the resource. - - - - - - Any kind of table of contents for the CHO. - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. - - - - - - Another CHO referenced in the content of this CHO. - - - - - - - Another CHO referenced in the content of this CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/DM2E.xsd b/schemas/dm2ev1.1/DM2E.xsd deleted file mode 100644 index 5bbd9dc..0000000 --- a/schemas/dm2ev1.1/DM2E.xsd +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - The property dm2e:hasAnnotatableVersionAt holds an URL which leads to an HTML representation or to an image of the content, i.e. of the CHO aggregated by the current Aggregation. The URL of the HTML content or image file must be stable. The type of the WebResource must be further specified as “text/html-named-content”, “text/plain”, “image/gif”, “image/jpeg” or “image/png”. - - - - - - - - - - - - - - - - A title transliteration. - - - - - - Description of the cover of the CHO, e.g. the cover’s type of material. - - - - - - Description of the type of material of the physical CHO. - - - - - - Any form of a subtitle. - - - - - - A subtitle transliteration. - - - - - - Opening words of a manuscript. - - - - - - Final words of a manuscript. - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - - The place of a physical publication or the Web resource of a Web publication. - - - - - - Indicates the place where the CHO was printed. - - - - - - - Indicates the place where the CHO was printed. - - - - - - The call number for some archival item. - - - - - - Shelfmark location from the CHO. - - - - - - The property holds additional information about the genesis of the CHO. Sometimes there are unfinished works or there are only drafts. This could be described more in detail here. - - - - - - Original version from which this object has been derived. - - - - - - - Original version from which this object has been derived. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - - Reference to a part of this CHO, e.g. a chapter of a book. - - - - - - A place of which this place is part of. - - - - - - - A place of which this place is part of. - - - - - - A place of which this place is part of. - - - - - - - A place of which this place is part of. - - - - - - Related resource that includes this resource. - - - - - - - Related resource that includes this resource. - - - - - - Contains a description of the CHOs condition. - - - - - - Contains a description of a watermark which the CHO carries. - - - - - - Generic description of illustrations in the CHO. - - - - - - Contains a information about the restoration status of the CHO. - - - - - - Page size. Please do also note the unit that was used! - - - - - - Size of writing or the part of the page where something is actually written. Please do also note the unit that was used! - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - - A person or CHO that is explicitly or implicitly mentioned in the (textual) CHO. - - - - - - The CHO was studied by an Agent. - - - - - - - The CHO was studied by an Agent. - - - - - - The CHO was taught by an Agent. - - - - - - - The CHO was taught by an Agent. - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - An artist that has created (e.g. painted) the CHO. - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - - Person who has composed a CHO (e.g. a letter). Can be the same as the person who wrote the letter, but can also be a different person, e.g. someone who has dictated but not wrote the letter. - - - - - - Someone who copied a CHO. - - - - - - - Someone who copied a CHO. - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - An honored person, for whom the CHO is published or created. - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - - A person or institution that is explicitly mentioned in the (textual) CHO. - - - - - - An honored person, for whom the CHO is published or created. - - - - - - - A person that is portrayed in the (textual or painted) CHO by its creator. - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - - A person or institution that is mentioned as the creator of the CHO although he is not the creator. - - - - - - Indicates the ownership of a CHO. - - - - - - - Indicates the ownership of a CHO. - - - - - - A person or an institution that has owned the CHO before. - - - - - - - A person or an institution that has owned the CHO before. - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A painter. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person who is honored within the text. - - - - - - - A person who is honored within the text. - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - - A person or an institution that gave the order to create the CHO. - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - - A person or an institution who has sponsored (parts) of the CHOs creation. - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - - A person who has written a CHO, e.g. a letter. - - - - - - A person that is responsible for making contributions to the resource. - - - - - - - A person that is responsible for making contributions to the resource. - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - - A related resource from which this Web resource is derived in whole or in part (not the name of the content holder). - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - - A resource that is included physically or logically in the WebResource, e.g. an image.. - - - - - - A resource that includes this Web resource. - - - - - - - A resource that includes this Web resource. - - - - - - Another agent by which the agent was influenced. - - - - - - - Another agent by which the agent was influenced. - - - - - - A teacher of the agent.. - - - - - - - A teacher of the agent.. - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/EDM+.xsd b/schemas/dm2ev1.1/EDM+.xsd deleted file mode 100644 index a40a2a5..0000000 --- a/schemas/dm2ev1.1/EDM+.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - diff --git a/schemas/dm2ev1.1/EDM+.xsd.conf b/schemas/dm2ev1.1/EDM+.xsd.conf deleted file mode 100644 index 581739b..0000000 --- a/schemas/dm2ev1.1/EDM+.xsd.conf +++ /dev/null @@ -1,108 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM+.xsd", - "namespaces": { - "bibo": "http://purl.org/ontology/bibo/", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "dm2e": "http://onto.dm2e.eu/schemas/dm2e/1.1/", - "edm": "http://www.europeana.eu/schemas/edm/", - "foaf": "http://xmlns.com/foaf/0.1/", - "korbo": "http://purl.org/net7/korbo/vocab#", - "ore": "http://www.openarchives.org/ore/terms/", - "pro": "http://purl.org/spar/pro/", - "rdaGr2": "http://RDVocab.info/ElementsGr2/", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "void": "http://rdfs.org/ns/void#", - "wgs84_pos": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "dm2ev1_1.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://data.dm2e.eu/data/" - }, - "collection": { - "type": "constant", - "value": "dm2e" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "Dataset", - "element": "Dataset" - }, - { - "name": "DataResource", - "element": "DataResource" - }, - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Person", - "element": "Person" - }, - { - "name": "Organisation", - "element": "Organisation" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Event", - "element": "Event" - } - ], - - "preview" : [{ - "jsp":"rdfview", - "label":"RDF" - }] -} diff --git a/schemas/dm2ev1.1/EDM-COMMON-MAIN.xsd b/schemas/dm2ev1.1/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 0a5f607..0000000 --- a/schemas/dm2ev1.1/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,570 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - - - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - Connects an event to the place where this event happened at. An event may only happen at one place whereas a place may be involved in many different events. - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - Connects an event to a time span which overlaps with the occurrence of that event. The occurrence in time of an event may overlap with 0 to many disjoint time spans, and a time span may have 0 to many events whose occurrences overlap with it. - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - Preceding same-level CHO, e.g. previous chapter. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - - The property edm:aggregatedCHO connects the ore:Aggregation with exactly one edm:ProvidedCHO. The property expresses what the Aggregation is about. - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - - The property edm:provider holds the name or identifier of the organisation (foaf:Organization, see below) that provided the data, i.e. the aggregation, to Europeana. Note that this organisation is not necessarily owning the original or digitized object. Typically, edm:provider is an aggregator. The owner of the metadata record is recorded in edm:dataProvider. The values in edm:provider and edm:dataProvider can be the same. Note: In the context of DM2E the value for edm:provider is always “DM2E”. - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - - The property edm:dataProvider holds the name or identifier of the organisation (foaf:Organization, see below) that provided and owns the source metadata record for this aggregation. Note that this organisation is not necessarily owning the physical object which is described in the metadata record. - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - - The property edm:hasView holds the URL of a edm:WebResource which shows, depicts or otherwise contains any kind of view of the ProvidedCHO. - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - - The property edm:isShownBy holds the URL of a edm:WebResource which leads to a “plain“ image with any kind of view of the edm:ProvidedCHO. “Plain“ image means that the image must be without any information context, for example, the URL points to a plain JPG-image. Either edm:isShownBy or edm:isShownAt must be provided. - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - - The property edm:isShownAt holds the URL of a edm:WebResource which leads to a view of the digital object on the provider’s web site in its full information context (e.g. in a viewer application). Either edm:isShownBy or edm:isShownAt must be provided - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - - The property edm:object holds the URL of a edm:WebResource which leads to a thumbnail representing the digital object or, if there is no such thumbnail, the URL of the digital object in the best resolution available on the web site of the data provider from which a thumbnail could be generated. This will often be the same URL as given in edm:isShownBy. - - - - - - The Europeana material type of the resource. Must be one of the following: TEXT, VIDEO, SOUND, IMAGE, 3D. - - - - - - - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - - Current location of physical CHO, possibly a library building. If possible, use a resource here. - - - - - - Any other related resource. - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - - Unites properties with the range edm:Agent like dcterms:creator or dc:contributor. - - - - - - URL of a resource describing licensing rights from the Guidelines for the Rights in Objects submitted to Europeana - - - - - - An event where the agent was present at. - - - - - - An event where the agent was present at. - - - - - - The beginning of a timespan. - - - - - - The end of a timespan. - - - - - - An enumeration stating the type of EDM content provided - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - - - - - - - - - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9) - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - - - - - - - - - - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - The EDM Definitions 5.2.3 describe the ProvidedCHO as follows: “This class comprises the Cultural Heritage objects that Europeana collects descriptions about.” (Definition of the Europeana Data Model elements Version 5.2.3, 2012:14). The resource representing the described cultural heritage object (CHO) must be an instance of edm:ProvidedCHO. - - - - - - According to the EDM Definitions 5.2.3, WebResources are “Information Resources that have at least one Web Representation and at least a URI.” (EDM Definitions 5.2.3, 2012:15). The resource, which resembles any kind of view of the described CHO, is an instance of the class edm:WebResource. There must be at least one WebResource for each CHO. This mandatory WebResources is connected to the Aggregation via edm:isShownBy or edm:isShownAt. - - - - - - “This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.” (EDM Definitions 5.2.3, 2012:9). - - - - - - “An ‘extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:13). - - - - - - “An event is a change ‘of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena’ (E5 Event in CIDOC CRM) or a ‘set of coherent phenomena or cultural manifestations bounded in time and space” (E4 Period in CIDOC CRM).’ (EDM Definitions 5.2.3, 2012:11). Note that Europeana to date (March 2013) does not support event-based modelling. - - - - - - “The class of ‘abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration’ (CIDOC CRM)” (EDM Definitions 5.2.3, 2012:14). - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.1/FOAF.xsd b/schemas/dm2ev1.1/FOAF.xsd deleted file mode 100644 index 6448918..0000000 --- a/schemas/dm2ev1.1/FOAF.xsd +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - “The Organization class represents a kind of Agent corresponding to social institutions such as companies, societies etc.” (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Person class represents people. Something is a Person if it is a person. We don't nitpic about whether they're alive, dead, real, or imaginary. The Person class is a sub-class of the Agent class, since all people are considered 'agents' in FOAF.“ (FOAF Vocabulary Specification 0.98 (http://xmlns.com/foaf/spec/)). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.1/KORBO.xsd b/schemas/dm2ev1.1/KORBO.xsd deleted file mode 100644 index 5dd5b56..0000000 --- a/schemas/dm2ev1.1/KORBO.xsd +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - - - - The property korbo:hasAnnotableVersionAt holds a URL which leads to a HTML representations of their content, i.e. of the CHO aggregated by the current Aggregation, including markup to identify named-content (Annotable Versions). An HTML representation of an object can include a single named-content (in this case it represents a single atomic piece of content, e.g. the transcription of a page) or multiple named contents (e.g. marking up each single paragraph or picture). Deciding the granularity of named-content is up to each content provider. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/ORE.xsd b/schemas/dm2ev1.1/ORE.xsd deleted file mode 100644 index faf8bf3..0000000 --- a/schemas/dm2ev1.1/ORE.xsd +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - EDM+ v 1: ORE - - - - - - - - - - - - - A data resource is a non-abstract information resource that provides RDF data. Therefore, it is a specialization of a foaf:Document. In DM2E, every dm2e:DataResource is connected to a void:Dataset by means of void:inDataset. - - - - - - - - - - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - - This relationship asserts that the subject (a Resource Map) describes the object (an Aggregation). - - - - - - The class ore:Aggregation aggregates Web resources (edm:WebResource) as well as CHOs (edm:ProvidedCHO). Additionally, it can provide information about the data provider, metadata rights etc. As ore:Aggregation is an abstract resource, there will be a 303 redirect to an ore:ResourceMap that contains the RDF description of the aggregation and the CHO. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/PRO.xsd b/schemas/dm2ev1.1/PRO.xsd deleted file mode 100644 index 5b78be5..0000000 --- a/schemas/dm2ev1.1/PRO.xsd +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - EDM+ v 1: DM2E - - - - - - The author of the CHO. - - - - - - - The author of the CHO. - - - - - - Someone who has made the illustrations of a CHO. - - - - - - - Someone who has made the illustrations of a CHO. - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - - A person or institution who printed the CHO. In the manuscript context especially used in works of the 16th and 17th century (rare books). - - - - - - A person or institution that translated the CHO. - - - - - - - A person or institution that translated the CHO. - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/RDAGR2.xsd b/schemas/dm2ev1.1/RDAGR2.xsd deleted file mode 100644 index eddf384..0000000 --- a/schemas/dm2ev1.1/RDAGR2.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - EDM+ v 1: DM2E - - - - - - - - - The date the person was born. - - - - - - The date the person died. - - - - - - The date the institution was established. - - - - - - The date the institution was terminated. - - - - - - The profession or occupation in which the person works or has worked. - - - - - - Information related to the biography of the agent. - - - - - - - Information related to the biography of the agent. - - - - - - - - - - - - - diff --git a/schemas/dm2ev1.1/RDF.xsd b/schemas/dm2ev1.1/RDF.xsd deleted file mode 100644 index 3e1aa39..0000000 --- a/schemas/dm2ev1.1/RDF.xsd +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/SKOS.xsd b/schemas/dm2ev1.1/SKOS.xsd deleted file mode 100644 index d285c46..0000000 --- a/schemas/dm2ev1.1/SKOS.xsd +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - The preferred name of the agent, preferably in a normalized form. Only one preferred label per language tag is allowed! - - - - - - An alternative name, e.g. a former name or the name in another form. - - - - - - Information related to the resource that cannot be modelled with other properties of the class. - - - - - - Non-standard forms of the name, e.g. misspellings. - - - - - - - - - “A unit of thought or meaning that comes from an organised knowledge base (such as subject terms from a thesaurus or controlled vocabulary) where URIs or local identifiers have been created to represent each concept.” (EDM Mapping Guidelines v1.0.1, p. 23) - - - - - - - - - - - - - - - If available: A notation of the concept. - - - - - - ID of the broader concept. - - - - - - ID of the narrower concept. - - - - - - The URI of a concept scheme. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/VOID.xsd b/schemas/dm2ev1.1/VOID.xsd deleted file mode 100644 index d8fc428..0000000 --- a/schemas/dm2ev1.1/VOID.xsd +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - EDM+ v 1: VOID - - - - - - - - - A void:Dataset represents a stable version of an RDF graph that contains descriptions of ore:Aggregations and edm:providedCHOs of one data provider. A dataset is typically not accessed directly, if dereferenced, a 303 redirect to an RDF description of the dataset is performed (NOT to the content of the dataset). - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - The dataset that contains the RDF statements provided in via this data resource. - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/dm2ev1.1/WGS84_POS.xsd b/schemas/dm2ev1.1/WGS84_POS.xsd deleted file mode 100644 index 9711377..0000000 --- a/schemas/dm2ev1.1/WGS84_POS.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM+ v 1: VOID - - - - - - - - The latitude of a place (decimal degree). - - - - - - The longitude of a place (decimal degree). - - - - - - The altitude of a place (decimal metres above the reference). - - - - \ No newline at end of file diff --git a/schemas/dpla/dpla.V0.1.xsd b/schemas/dpla/dpla.V0.1.xsd deleted file mode 100644 index cdb5c2b..0000000 --- a/schemas/dpla/dpla.V0.1.xsd +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - The item's call number. Exact matching. - - - - - The item's physical height. Exact matching. - - - - - The number of pages contained in the item. Exact matching - - - - - - A link to the item's content. Exact matching. - - - - - - The contributing partner. Exact matching. - - - - - The resource's type. Common values include item and collection. Exact matching. - - - - - - - - - - - The item's ISBN. Exact matching. - - - - - The item's OCLC identifier. Exact matching. - - - - - The item's LCCN. Exact matching. - - - - - - - - - Comment describing your root element - - - - - - - - diff --git a/schemas/dpla/dpla.V0.1.xsd.conf b/schemas/dpla/dpla.V0.1.xsd.conf deleted file mode 100644 index d520fc9..0000000 --- a/schemas/dpla/dpla.V0.1.xsd.conf +++ /dev/null @@ -1,44 +0,0 @@ -{ - "version": "1.0", - "xsd": "dpla.V0.1.xsd", - "namespaces": { - "dpla": "http://dp.la", - "dcterms": "http://purl.org/dc/terms/", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "wrap": { - "element": "Metadata", - "prefix": "dpla" - }, - - "item": { - "element": "record", - "prefix": "dpla" - }, - - "navigation": [ - { - "type": "group", - "name": "DPLA", - "label": "DPLA" - } - ], - - "groups": [ - { - "name": "DPLA", - "element": "record" - }], - - "preview" : [{ - "xsl": "dpla2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] -} diff --git a/schemas/ebu/EBU_CORE_20110915.xsd b/schemas/ebu/EBU_CORE_20110915.xsd deleted file mode 100644 index 6e053ed..0000000 --- a/schemas/ebu/EBU_CORE_20110915.xsd +++ /dev/null @@ -1,2214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The following Creative Commons Rights apply to the use of this EBU resource: - http://creativecommons.org/licenses/by-nc-sa/3.0/ Owner: EBU Technical Department - Author: Jean-Pierre Evain Contact: evain@ebu.ch - - - - ebuCoreMain is the root of a document using the EBU Core metadata set - - - - - - The body of ebucore descriptive metadata - - - - - Identifies the metadata provider, e.g. the contributing archive. - The organisation Id or name provide the archive ID or name required for e.g. - OAI metadata harvesting operation. - - - - - - The name of the schema for e.g. OAI management. - - - - - The version of the schema for e.g. OAI management. - - - - - The date of edition of the metadata instance for e.g. OAI management - - - - - - The unique Identifier of the metadata instance for e.g. OAI - management - - - - - An attribute to specify the dominant language used to express - metadata information in the document, which can be superceded each time an - language attribute or element is available a different levels of description - granularity - - - - - - The document containing all the core descriptive information regarding - the resource - - - - - - A Title is the ‘main’ name given to a resource e.g. a media - item, a media object, or a sequence as specified by the associated title - type. It corresponds for a series to the series title, for a programme - to the programme title, for an item to the item title, etc. Titles are - recorded as they appear. The Title is the name by which a resource is - formally known and that everyone should use to refer to or search for - that particular resource. The Title may be provided in several - languages. If present, the attributionDate attribute indicates when the - Title was attributed. A Title is the ‘main’ name given to a resource - e.g. a media item, a media object, or a sequence as specified by the - associated title type. It corresponds for a series to the series title, - for a programme to the programme title, for an item to the item title, - etc. Titles are recorded as they appear. The Title is the name by which - a resource is formally known and that everyone should use to refer to or - search for that particular resource. The Title may be provided in - several languages. If present, the attributionDate attribute indicates - when the Title was attributed. - - - - - An Alternative Title is the name other than the ‘main’ Title - given to a resource. The type of title is defined by the typeGroup of - attributes. The status of the title is defined by the statusGroup of - attributes. Alternative Titles are recorded as they appear. An - Alternative Title may be attributed to a resource for several reasons - described using the status (e.g. working title) and type (e.g. series - title) attributes. The alternativeTitle may be provided in several - languages. It is sometimes common practice to put dates into the - alternativeTitle. If present, the attributionDate (indicating when the - alternativeTitle was attributed) in the date attribute should be - consistent. - - - - - - The descriptor creator identifies an ‘entity’ (a person, group - of persons or organisation) primarily responsible for creating the content - of the resource - behind the camera. Different roles may be considered as - representing a creator, e.g. a producer, an author, etc. Creator is a - sub-class of Contributor. - - - - - The generalised topic that represents the intellectual content - of the resource. Typically, a subject is expressed by keywords, key phrases. - Free text, controlled vocabularies, authorities, or formal classification - schemes (codes) may be employed when selecting descriptive subject terms. - Persons as subjects are also placed here. Genre of the content is defined - under element “ebucore:type/ebucore:genre” - - - - - Free-form text or a narrative to report general notes, abstracts, - or summaries about the intellectual content of a resource. The information - may be in the form of a paragraph giving an individual program description, - anecdotal interpretations, or brief content reviews. The description may - also consist of outlines, lists, bullet points, edit decision lists, - indexes, or tables of content, a reference to a graphical representation of - content or even a pointer (URI, URL) to an external resource. A running - order can also be provided as a description. For a Radio or television - programme a running order can be used as description. A description can be - provided in different languages. - - - - - A publisher is a person, an organization, or a service. - Typically, the name of a Publisher should be used to indicate the entity - primarily responsible for distributing or making a resource available to - others e.g. by broadcasting, selling, leasing, renting and other modes of - distribution. - - - - - The descriptor contributor identifies a person or organization - that has made substantial creative contributions to the content of a - resource. Refers particularly (but not only) to participation in front of - the camera. If in doubt whether an entity is a creator or contributor use - the element contributor. - - - - - Dates associated with events occurring during the life of the - resource. Typically, Date will be associated with the creation, modification - or availability of the resource. - - - - - The nature or genre of the resource. Type includes terms - describing general categories, functions, genres, or aggregation levels for - content. Recommended best practice is to select a value from a controlled - vocabulary. To describe the physical or digital manifestation of the - resource, use the FORMAT element. - - - - - The physical or digital manifestation of the resource. Use the - descriptor Format to identify the format of a particular resource as it - exists in its physical or digital form. Physical form = an actual physical - form that occupies physical space, e.g. a tape. Digital form = a digital - file residing on a server or hard drive. Format may be used to determine the - software, hardware or other equipment needed to display or operate the - resource. - - - - - A unique, unambiguous reference or identifier for a resource - within a given context. Best practice is to identify the resource (whether - analogue or digital) by means of a string or number corresponding to an - established or formal identification system if one exists. Otherwise, use an - identification method that is in use within your agency, station, production - company, office, or institution. It is also possible to enter more than one, - different but still unique, identifier for the same - resource. - - - - - Reference to the resource (s) from which the current resource is - derived in whole or in part. If no label or number is available, the title - and/or the statement of responsibility etc. of the digitized recording is - recorded here. For a digitized radio programme the production number is - normally given here. The Recommended best practice is to use a unique - identifier to identify the physical source that has been used to create the - digital resource. In the case of a digitized analogue recording, it is the - recording used for digitization which is the source. For commercial - recordings the label and number is normally given here. Example: Eurovision - feed 2007-07-16T19:20:30.45+01:00 - - - - - Identifies languages and their use in the intellectual content - of the resource. Recommended best practice for the values of the Language - element is defined by RFC 1766, which includes a two-letter Language Code - (taken from the ISO Standard 639), followed optionally, by a two-letter - Country Code (taken from the ISO Standard 3166). For example, 'en' for - English, 'fr' for French, or 'en-uk' for English used in the United Kingdom. - More contextual information can be provided using the “note” - attribute. - - - - - Recommended best practice is to reference the resource (to which - the current resource under description is related) by means of a string or - number conforming to a formal identification system. Relation is used to - show the relation in content to another resource. For example, "IsPartOf" is - used to show the relation between a part of a radio programme and the whole - programme or between a track and a record album. A resource can be - identified by its title, or an identifier (possibly a URI). The related item - has its own separate metadata record. Relation is used to provide a name, an - identification number or ID, or a locator where the related item can be - found. - - - - - A reference to the resource that the current resource is a - version of - - - - - A reference to another version of the resource - - - - - A reference to a resource replacing the current resource - - - - - - A reference to a resource that the current resource replaces - - - - - - A reference to a resource requiring the current resource - - - - - - A reference to a resource that the current resource requires - - - - - - A reference to a resource that the current resource is a part of - - - - - - A reference to a resource that forms part of the current - resource - - - - - An element to identify a part of a track by a title, a start - time and an end time in both the media source and media destination - - - - - - - - - - - - - - - - - - - A reference to a resource that references the current resource - - - - - - A reference to a resource that the current resource references - - - - - - A reference to a resource with which the current resource shares - a format - - - - - A format in which the resource is also available - - - - - - A reference to a series the current resource is an episode of - - - - - - A reference to a group e.g. a brand, the current resource is an - member of - - - - - Coverage is used to show various time and place aspects of the - subject of the content. Coverage will typically include spatial location (a - place name or geographic coordinates), temporal period (a period label, - date, or date range) or jurisdiction (such as a named administrative - entity). Recommended best practice is to select a value from a controlled - vocabulary (for example, the Thesaurus of Geographic Names) and that, where - appropriate, named places or time periods be used in preference to numeric - identifiers such as sets of coordinates or date ranges. - - - - - An all-purpose field to identify information (rights management - statement or reference to a service providing such information e.g. via a - URL) about copyright, intellectual property rights or other property rights - held in and over a resource, stating whether access is open or restricted in - some way. If dates, times, territories and availability periods are - associated with a right, they should be included. If the Rights element is - absent, no assumptions can be made about the status of these and other - rights with respect to the resource. - - - - - UK Version, US Version, home video version, etc. - Mapping to Dublin Core would be made using a description - element - - - - - To provide information on the publication history. - - - - - - An element to provide rating values attributed to the media - resource. - - - - - To identify parts/segments/fragments within the - resource. - - - - - - - - - - - - - - - - The name given to a resource e.g. a media item, media object, sequence. - For a series – use the series title; for a programme – a programme title; for an - item – an item title. etc. Titles are recorded as they appear. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free-text to provide the main title by which the resource is known. - The title can be provided in different languages. The language in which the - title is provided can be provided using elementType’s lang attribute. - Example: ‘the fifth element’ - - - - - - Defines the date of attribution of this Title. - - - - - Optional additional contextual information. - - - - - - The name given to a resource e.g. a media item, media object, sequence. - For a series – use the series title; for a programme – a programme title; for an - item – an item title. etc. Titles are recorded as they appear. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free-text to provide alternative titles by which the resource is - known. The language in which the title is provided can be provided using - elementType’s lang attribute. Example: ‘the fifth element’ - - - - - - The typeGroup is used to define the type of alternative title. This - can be an associated title like a series title. - - - - - The statusGroup is used to define the status of the Title such as - short, long, full, abridged, working, transmission, published, international, - subtitle, original, secondary, alternative, pledged, etc. The name of the format - can be provided in the form of a text label, or a link to a code of a - classification scheme, optionally accompanied by a definition. the status 'main' - shall not be used for alternativeTitle as this applies to the Title - only. - - - - - Defines the date of attribution of this Title. - - - - - Optional additional contextual information. - - - - - - A unique, unambiguous reference or identifier for a resource within a - given context. Best practice is to identify the resource (whether analogue or - digital) by means of a string or number corresponding to an established or formal - identification system if one exists. Otherwise, use an identification method that is - in use within your agency, station, production company, office, or institution. It - is also possible to enter different but unique identifiers for the same resource. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide an identifier. Example: 06.0A.2B.34.01.01.01.01 - - - - - - To identify the source of attribution of the - identifier. - - - - - - The typeGroup is used to define the type of Identifier e.g. Main or - Alternative - - - - - Use to define the format and possibly syntax of the identifier. Used - in combination with the resource Identifier. It can denote the agency or - institution which specified or assigned it e.g. SMPTE UMID, ISO ISAN, IETF URI, - ISRC, custom. - - - - - Optional additional contextual information. - - - - - - The generalised topic of that represents the intellectual content of the - resource. Typically, a subject is expressed by keywords, key phrases, or even - specific classification codes. Controlled vocabularies, authorities, or formal - classification schemes may be employed when selecting descriptive subject terms. It - is possible to employ both keywords, derived from a formal classification scheme, - such as Dewey or UDC, and genres/subgenres such as those produced by TV-Anytime or - Escort, to cover Subject(s) and Genre(s) and enter as appropriate Subject Type - below. Persons as subjects are also placed here. Genre of the content is placed - under element Type. - - - - - To express the subject in the form of free text. - - - - - To alternatively express the subject using predefined terms - expressed by classification codes. Reference data: - Library of Congress - Subject Heading (LCSH), Library of Congress Classification (LCC), Medical - Subject Headings (MeSH), Dewey Decimal Classification (DDC), Dansk - decimalklassedeling 5.utgave (DK5), Klassifikasjonssystem för svenska - bibliotek (SAB), Universal Decimal Classification (UDC), Norske emneord - - http://cv.iptc.org/newscodes/subjectcode/. Example: - http://cv.iptc.org/newscodes/subjectcode/#15065000 - - - - - An optional definition. Example: ‘the subject is about tennis - (sport, game)’ - - - - - To identify the source of attribution of the - subject/tag. - - - - - - To define the source of reference for subject such as a reference - document or classification scheme or the framework within which a tag has been - attributed. - - - - - Optional additional contextual information. - - - - - - The nature or genre of the content of the resource. Type includes terms - describing general categories, functions, genres, or aggregation levels for content. - Recommended best practice is to select a value from a controlled vocabulary. To - describe the physical or digital manifestation of the resource, use the FORMAT - element. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - A type element specifically dedicated to the description of a - resource genre - - - - - To define the Type reference data. - - - - - - - A type element specifically dedicated to the description of type - of resource being describe e.g. programme, item, episode - - - - - To define the Type reference data. - - - - - - - A type element specifically dedicated to the description of a - resource target audience e.g. parental guidance or geographical/occupational - group - - - - - To define the Type reference data. - - - - - - - - Optional additional contextual information. - - - - - - Free-form text or a narrative to report general notes, abstracts, or - summaries about the intellectual content of a resource. The information may be in - the form of a paragraph giving an individual program description, anecdotal - interpretations, or brief content reviews. The description may also consist of - outlines, lists, bullet points, edit decision lists, indexes, or tables of content, - a reference to a graphical representation of content or even a pointer (URI, URL) to - an external resource. For a Radio or television programme a running order can be - used as description. A description can be provided in different languages. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide a description of the resource. The description - can be repeated in different languages as specified by the entityType’s lang - attribute. The type of description is defined in the type group of - attributes. - - - - - - To define the form of presentation for the information: Annotation, - abstract, summary, review, table of content, synopsis, shot list, edit decision - list, promotional information, purpose, script, outline, rundown, - selection/excerpt, transcript, bookmarks, theme, highlights, running order, etc. - - - - - - Optional additional contextual information. - - - - - - Coverage will typically include spatial location (a place name or - geographic coordinates), temporal period (a period label, date, or date range) or - jurisdiction (such as a named administrative entity). Recommended best practice is - to select a value from a controlled vocabulary (for example, the Thesaurus of - Geographic Names) and that, where appropriate, named places or time periods be used - in preference to numeric identifiers such as sets of coordinates or date - ranges. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - Temporal characteristics of the content of the resource. To - indicate e.g. specific date, time or period aspects of the subject of the - resource in complement to Description. - - - - - - - - The period of time depicted in the - resource. - - - - - - - - To precise the type of temporal information - provided. - - - - - Optional additional contextual information. - - - - - - An identifier to support the management of time periods - (e.g. historical or repetitive event) in databases and - RDF - - - - - - - Spatial characteristics of the content of the resource. To - indicate e.g. specific place and location aspects of the subject of the - resource in complement to Description. - - - - - - To indicate e.g. specific place and location aspects - of the resource in complement to Description. - - - - - - Any location name in free - text - - - - - Optional geospatial coordinates. 'posy' - is the latitude. 'posx' is the longitude. Both are - expressed in digital degrees - - - - - - - - - - - - A location identified by a code from a - predefined list of locations. - - - - - - To precise the type of place and - location. - - - - - To provide additional information on the type - of location described, e.g. countries, regions, - cities - - - - - An identifier to support the management of - location in databases and RDF - - - - - - - - - - - - - An all-purpose field to identify information (rights management statement - or reference to a service providing such information e.g. via a URL) about - copyright, intellectual property rights or other property rights held in and over a - resource, stating whether open access or restricted in some way. If dates, times, - territories and availability periods are associated with a right, they should be - included. If the Rights element is absent, no assumptions can be made about the - status of these and other rights with respect to the resource. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. An element to express any form of rights related - matters. - - - - - A url pointing to a declaration of rights - - - - - To identify the person or organisation holding or managing the - rights related to the resource. - - - - - Use to state any other restrictions, such as non-rights ones, - e.g. legal. State by media, territory, scope (restriction on whole item or - extracts) and possibly language. The presence of this information can be - used by asset management system implementing traffic lights like mechanism - to signal that content may be subject to particular restrictions to be - clarified before exploitation. - - - - - Specifies a specific start date, end date or period for the - availability of the item or the date from which the rights or exploitation - issues apply. It may refer to start dates for the availability of an item - that is used within a particular geographical area e.g. broadcast locally, - regionally, nationally or internationally, or for web-based distribution. A - specific time may also be associated with the date. - - - - - A flag to signal if content is subject to rights open issues - - - - - - A field for a disclaimer about the content, its content, and its - use. - - - - - A identifier related to rights, e.g. attributed for a particular - purpose by a specific agency in the context of use and exploitation. - - - - - - Minimum information providing means to further identify and - contact the rights manager for the resource in the organisation. - - - - - - - To define the type of rights information provided. - - - - - Optional additional contextual information. - - - - - - A list of ID references identifying formats in which the content is available and to which the set of rights apply. - - - - - - - The physical or digital manifestation of the resource. Use the descriptor - Format to identify the format of a particular resource as it exists in its physical - or digital form. Physical form = an actual physical form that occupies physical - space, e.g. a tape. Digital form = a digital file residing on a server or hard - drive. Format may be used to determine the software, hardware or other equipment - needed to display or operate the resource. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide information on the format. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - The width of an image, video or document. - - - - - The height of an image, video or document. - - - - - The material or physical carrier of the resource. If a file, it - should be the carrier format. - - - - - - - - Define the main MIME type as defined by IANA: e.g. audio, video, - text, application - - - - - - - - used ot list the characteristics of an image - - - - - used to list all the characteristics of the video signal - - - - - - used to list all the characteristics of the audio signal - - - - - - - - To provide information on the wrapper format in complement to the - stream encoding information provided in 'channel', e.g. mp3, wave, - Quicktime, ogg. - - - - - - - - - Used to provide information on the signing format and purpose - - - - - To provide information to the language used for signing and - its purpose - - - - The track number - - - - - The track name - - - - - - - To specify the format of signing being used e.g. living - person or avatar - - - - - A pointer to the file with the signing in available as a - separte resource. - - - - - - - - - - The beginning point for playback of a time-based media item, such - as digital video or audio. Use in combination with end or duration to - identify a sequence or segment of a media item that has a fixed start time - and end time. - - - - - - The ending point for playback of a time-based media item, - such as digital video or audio. - - - - - The duration of the resource or part of a - resource. - - - - - - To indicate the storage requirements or file size of a digital - resource. The file size is expressed in bytes. - - - - - The name of the file as it appears in the location path or url. - - - - - - An "address for a resource". For an organisation or producer - acting as caretaker for a media resource, Format Location may contain - information about a specific shelf location for an asset, including an - organisation's name, departmental name, shelf id. and contact information. - The Format Location for a data file or web page may include a complete URI - with a domain, path, filename or html URL. Examples: "Archives Building A, - Row J, Shelf 2", "d://playout/server/content.mpg", - "http://www.ebu.ch/CorporateVideo.avi". - - - - - - - The typeGroup can be used to define e.g. the - storage type from a predefined list. or as a term. The - definition can be used to provide any additional information - as deemed necessary e.g. on the location and/ or managing - entity. - - - - - - - - - An element to provide a description of a document - - - - - - - - - - - - - - - - - - - - - Recommended best practice is to reference the resource by means of a - string or number conforming to a formal identification system. Relation is used to - show the relation in content to another resource. For example, "IsPartOf" is used to - show the relation between a part of a radio programme and the whole programme, or - between a track and a record album. A resource can be identified by its title, or - preferably by an identifier. Relation is used to provide a name, locator, accession, - identification number or ID where the related item can be obtained or found. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. A title would be given using this element. - - - - - An identifier would be given using this element. - - - - - - A link to related material. - - - - - - To show the type of relation to another resource, e.g. identifies - ways in which the resource is related by intellectual content to some other - resource. - - - - - If exists, it provides the ranking/running order within an ordered - list. - - - - - Optional additional contextual information. - - - - - - MODIF VERSION 1.2 - Identifies languages and their use in the intellectual content of the - resource. Recommended best practice for the values of the Language element is - defined by RFC 1766, which includes a two-letter Language Code (taken from the ISO - Standard 639), followed optionally, by a two-letter Country Code (taken from the ISO - Standard 3166). For example, 'en' for English, 'fr' for French, or 'en-UK' for - English used in the United Kingdom. The usage of the language is also defined. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - - Indicates the purpose of the language described by the Language - element e.g. Main original language, main dubbed language, additional original - language, additional dubbed language, descriptive video information, - supplemental commentary, Director's commentary, audio description, supplementary - audio programme, educational notes, voice over, original commentary, dubbed - commentary, original narration, dubbed narration, dubbed dialogue, interviewer - language, interviewee language, text description for the hard-of-hearing, - titles, subtitles, song lyrics, sign language, dubbed sign language, transcript, - caption, open caption, closed caption. - - - - - Optional additional contextual information. - - - - - - - Dates associated with events occurring during the life of the resource. - Typically, Date will be associated e.g. with the creation or availability of the - resource. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - To specify the creation date for a particular version or - rendition of a resource across its life cycle. It is the moment in time that - the resource was finalized during its production process and is forwarded to - other divisions or agencies to make it ready for publication or - distribution. A specific time may also be associated with the - date. - - - - - - - - Date of formal issuance (e.g. publication) of the resource. - Specifies the formal date for a particular version or rendition of a - resource has been made ready or officially released for distribution, - publication or consumption, e.g. the broadcasting date of a radio programme. - A specific time may also be associated with the date. - - - - - - - - The date when the resource was last modified - - - - - - - - The date when the resource was digitised - - - - - - - - An alternative particular date for which the type can be - defined. - - - - - - - - - - - To provide information about the publication history which falls outside - the entries under transmission date/times below. - - - - - The first transmission date - - - - - The first transmission time - - - - - The channel on which the title was first - transmitted - - - - - - - - - - - - - The date on which content was re-transmitted - - - - - The time on which content was re-transmitted - - - - - The channel on which the resource was - re-transmitted - - - - - - - - - - - - - - - - To identify a person, group of persons or organisation - - - - - Minimum information providing means to further identify and - contact the entity. - - - - - Minimum information providing means to further identify and - contact the entity as an organisation. Cardinality is '1'. Only one - organisation is acting as an entity or only one organisation is associated - to a person in relation to is occupation in the context of the current - content description - - - - - Used to identify the function fulfilled by the person, group or - organisation described as an entity. This is used to detail the role of a - 'contributor'. This also applies to e.g. 'creator' as several functions can - be seen as participating to the creative process - - - - - - - - - - - - - - - - - - - - - The job function of the contact - - - - - - For example, in the case the contact is a performing - actor/actress, the stage name will be the fictitious character's - name - - - - - This is used to identify contacts related to the contact being - described - - - - - - - - - - - To identify one or more production area / department / service - where the resource was created/originated, in free text - - - - - - - - - - - - - Useful to provide contact information particularly is no other - person information is otherwise provided. - - - - - - - - - - The e-mail address through which the contact can be directly - accessed - - - - - The web address where additional information can be found - regarding the company - - - - - The organisation address is also the professional address of the - contact in the context of the content being described and in relation to the - contact occupation provided in the contact details - - - - - - - - - - Provides address details for an organisation - - - - - - - - - - - - - - - - - A complex type to express a number of edit units. An editUnit is the - inverse of the edit rate, or corrected edit rate as the result of - editUnit=1/(editrate*(factorNumerator/factorDenominator)) - - - - - - The base number of frames or samples per seconds. This base - number can be corrected by a factor calculated as the result of - 'factorNumerator/factorDenominator' - - - - - The numerator of the correction factor - - - - - The denominator of the correction factor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An attribute to specify the unit in which the width is - expressed. - - - - - - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - To express the width of an image - - - - - To express the height of an image - - - - - To express the orientation of the image - - - - - - - - - - - Used to express the encoding parameters of the resource e.g. - jpg. - - - - - - - - - - - - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - - To define the width of a video image - - - - - To define the height of a video image - - - - - A string to define e.g. the ratio of the picture (the width by - the height), for instance '4:3' or '16 9' (rational). The format of the - aspect ratio is precised in the format attributes - - - - - - - To define the type of format used to represent - the aspect ratio and an example in the definition e.g. - formatLabel='rational' and formatDefinition='e.g. 16 9 - (number, space, number)' - - - - - - - - - - Used to express the encoding parameters of the resource e.g. - H264 for a video channel. - - - - - - - - To describe the main features of video tracks such as in - mutliview systems - - - - - The track ID or track number - - - - - The track name - - - - - The type of video track e.g. particular view angle. - - - - - - - - - - - - - - - - To define the audio compression format of the resource e.g. AAC - for an audio channel. - - - - - - - - To define the audio track configuration. Used to express the - arrangement or audio tracks e.g. 'stereo', '2+1', 'surround', 'surround - (7+1)' - - - - - - - - To describe the track allocation e.g. in conformance with EBU - R123 - - - - - The track language - - - - - The track number - - - - - The track name - - - - - The track type - - - - - - - - - - - - - - - - Used to provide information on the captioning format - and purpose - - - - To provide information to the language used for - captioning and its purpose - - - - The track number - - - - - The track name - - - - - - To specify the format of captioning / - subtitling being used - - - - - - A pointer to the file with the captioning / - subtitling. - - - - - - - - - Used to provide information on ancillary data format - and purpose. This type provides inforamtion on the Ancillary - Data packet type. See SMPTE 291M, SMPTE 436M - - - - - - ANC DID Value. - - - - - ANC SDID Value. - - - - - Video line number containing the ANC - packets of this type. - - - - - Indicates HANC or VANC, and what field in - which packets should be stored. See SMPTE 436M for - legal values. - - - - - - - - - - - - - - - - - - To provide a word count for the document - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - The width of an image, video or document. - - - - - The height of an image, video or document. - - - - - - - - - - - - - - - To express the start time using timecode compliant with SMPTE ST - 12-1:2008 - - - - - - - - - - To express the start time in the format - HH:MM:SS.S - - - - - The express the start time as a number of edit Units - - - - - - To express the start time in a user defined time - format - - - - - - - - - - - - - - - - To express the duration using timecode compliant with SMPTE ST - 2021-1:2009 - - - - - - - - - - To express the duration in the format HH:MM:SS.S - - - - - The express the duration as a number of edit Units - - - - - - To express the duration in a user defined time - format - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - FrameLayout, VideoSamplingRaster, VideoEncoding - - - - - - - - - - - - - IEEE 754 floating point number - Floating - Point - - - - - - - - - - - - IEEE 754 floating point number - Floating - Point - - - - - - - - - - - - Signed 8 bit integer - Int8 - - - - - - - - - - - - Signed 16 bit integer - Int16 - - - - - - - - - - - - Signed 32 bit integer - Int32 - - - - - - - - - - - - Signed 64 bit integer - Int64 - - - - - - - - - - - - Unsigned 8 bit integer - UInt8 - - - - - - - - - - - - Unsigned 16 bit integer - UInt16 - - - - - - - - - - - - Unsigned 32 bit integer - Uint32 - - - - - - - - - - - - Unsigned 64 bit integer - Uint64 - - - - - - - - - - - - - - - A complex Type defining the structure of a technical attribute ot type - rational - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/ebu/EBU_CORE_20110915.xsd.conf b/schemas/ebu/EBU_CORE_20110915.xsd.conf deleted file mode 100644 index 48986b0..0000000 --- a/schemas/ebu/EBU_CORE_20110915.xsd.conf +++ /dev/null @@ -1,105 +0,0 @@ -{ - "xsd": "EBU_CORE_20110915.xsd", - "namespaces": { - "ebucore": "urn:ebu:metadata-schema:ebuCore_2011", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "item": { - "element": "ebuCoreMain", - "prefix": "ebucore" - }, - - "paths": { - "item": "/ebuCoreMain"; - "label": "/ebuCoreMain/coreMetadata/title/text()"; - }, - - "version": "1.0", - - "groups": [ - { - "name": "Core Metadata", - "element": "coreMetadata" - }, - { - "name": "Metadata Provider", - "element": "metadataProvider" - } - ], - - "navigation": [ - { - "type": "template" - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Descriptive", - "include": [ -"ebucore:title", -"ebucore:alternativeTitle", -"ebucore:creator", -"ebucore:subject", -"ebucore:description", -"ebucore:publisher", -"ebucore:contributor", -"ebucore:date", -"ebucore:type", -"ebucore:identifier", -"ebucore:language", -"ebucore:coverage", -"ebucore:version", -"ebucore:publicationHistory", -"ebucore:rating" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Rights", - "include": [ -"ebucore:rights" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Technical", - "include": [ -"ebucore:format" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Relations", - "include": [ -"dc:source", -"ebucore:relation", -"ebucore:isVersionOf", -"ebucore:hasVersion", -"ebucore:hasPart", -"ebucore:isPartOf", -"ebucore:isReplacedBy", -"ebucore:replaces", -"ebucore:isRequiredBy", -"ebucore:requires", -"ebucore:hasTrackPart", -"ebucore:isReferencedBy", -"ebucore:references", -"ebucore:isFormatOf", -"ebucore:hasFormat", -"ebucore:isEpisodeOf", -"ebucore:isMemberOf" - ] - }, - { - "type": "group", - "name": "Metadata Provider" - } - ], - - "preview" : [], - "customization": "ebucore.groovy" -} diff --git a/schemas/ebu/EBU_CORE_20111101.xsd b/schemas/ebu/EBU_CORE_20111101.xsd deleted file mode 100644 index 2039651..0000000 --- a/schemas/ebu/EBU_CORE_20111101.xsd +++ /dev/null @@ -1,2295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - The following Creative Commons Rights apply to the use of this EBU resource: - http://creativecommons.org/licenses/by-nc-sa/3.0/ Owner: EBU Technical Department - Author: Jean-Pierre Evain Contact: evain@ebu.ch - - - - ebuCoreMain is the root of a document using the EBU Core metadata set - - - - - - The body of ebucore descriptive metadata - - - - - Identifies the metadata provider, e.g. the contributing archive. - The organisation Id or name provide the archive ID or name required for e.g. - OAI metadata harvesting operation. - - - - - - The name of the schema for e.g. OAI management. - - - - - The version of the schema for e.g. OAI management. - - - - - The date of edition of the metadata instance for e.g. OAI management - - - - - - The unique Identifier of the metadata instance for e.g. OAI - management - - - - - An attribute to specify the dominant language used to express - metadata information in the document, which can be superceded each time an - language attribute or element is available a different levels of description - granularity - - - - - - The document containing all the core descriptive information regarding - the resource - - - - - - A Title is the ‘main’ name given to a resource e.g. a media - item, a media object, or a sequence as specified by the associated title - type. It corresponds for a series to the series title, for a programme - to the programme title, for an item to the item title, etc. Titles are - recorded as they appear. The Title is the name by which a resource is - formally known and that everyone should use to refer to or search for - that particular resource. The Title may be provided in several - languages. If present, the attributionDate attribute indicates when the - Title was attributed. A Title is the ‘main’ name given to a resource - e.g. a media item, a media object, or a sequence as specified by the - associated title type. It corresponds for a series to the series title, - for a programme to the programme title, for an item to the item title, - etc. Titles are recorded as they appear. The Title is the name by which - a resource is formally known and that everyone should use to refer to or - search for that particular resource. The Title may be provided in - several languages. If present, the attributionDate attribute indicates - when the Title was attributed. - - - - - An Alternative Title is the name other than the ‘main’ Title - given to a resource. The type of title is defined by the typeGroup of - attributes. The status of the title is defined by the statusGroup of - attributes. Alternative Titles are recorded as they appear. An - Alternative Title may be attributed to a resource for several reasons - described using the status (e.g. working title) and type (e.g. series - title) attributes. The alternativeTitle may be provided in several - languages. It is sometimes common practice to put dates into the - alternativeTitle. If present, the attributionDate (indicating when the - alternativeTitle was attributed) in the date attribute should be - consistent. - - - - - - The descriptor creator identifies an ‘entity’ (a person, group - of persons or organisation) primarily responsible for creating the content - of the resource - behind the camera. Different roles may be considered as - representing a creator, e.g. a producer, an author, etc. Creator is a - sub-class of Contributor. - - - - - The generalised topic that represents the intellectual content - of the resource. Typically, a subject is expressed by keywords, key phrases. - Free text, controlled vocabularies, authorities, or formal classification - schemes (codes) may be employed when selecting descriptive subject terms. - Persons as subjects are also placed here. Genre of the content is defined - under element “ebucore:type/ebucore:genre” - - - - - Free-form text or a narrative to report general notes, abstracts, - or summaries about the intellectual content of a resource. The information - may be in the form of a paragraph giving an individual program description, - anecdotal interpretations, or brief content reviews. The description may - also consist of outlines, lists, bullet points, edit decision lists, - indexes, or tables of content, a reference to a graphical representation of - content or even a pointer (URI, URL) to an external resource. A running - order can also be provided as a description. For a Radio or television - programme a running order can be used as description. A description can be - provided in different languages. - - - - - A publisher is a person, an organization, or a service. - Typically, the name of a Publisher should be used to indicate the entity - primarily responsible for distributing or making a resource available to - others e.g. by broadcasting, selling, leasing, renting and other modes of - distribution. - - - - - The descriptor contributor identifies a person or organization - that has made substantial creative contributions to the content of a - resource. Refers particularly (but not only) to participation in front of - the camera. If in doubt whether an entity is a creator or contributor use - the element contributor. - - - - - Dates associated with events occurring during the life of the - resource. Typically, Date will be associated with the creation, modification - or availability of the resource. - - - - - The nature or genre of the resource. Type includes terms - describing general categories, functions, genres, or aggregation levels for - content. Recommended best practice is to select a value from a controlled - vocabulary. To describe the physical or digital manifestation of the - resource, use the FORMAT element. - - - - - The physical or digital manifestation of the resource. Use the - descriptor Format to identify the format of a particular resource as it - exists in its physical or digital form. Physical form = an actual physical - form that occupies physical space, e.g. a tape. Digital form = a digital - file residing on a server or hard drive. Format may be used to determine the - software, hardware or other equipment needed to display or operate the - resource. - - - - - A unique, unambiguous reference or identifier for a resource - within a given context. Best practice is to identify the resource (whether - analogue or digital) by means of a string or number corresponding to an - established or formal identification system if one exists. Otherwise, use an - identification method that is in use within your agency, station, production - company, office, or institution. It is also possible to enter more than one, - different but still unique, identifier for the same - resource. - - - - - Reference to the resource (s) from which the current resource is - derived in whole or in part. If no label or number is available, the title - and/or the statement of responsibility etc. of the digitized recording is - recorded here. For a digitized radio programme the production number is - normally given here. The Recommended best practice is to use a unique - identifier to identify the physical source that has been used to create the - digital resource. In the case of a digitized analogue recording, it is the - recording used for digitization which is the source. For commercial - recordings the label and number is normally given here. Example: Eurovision - feed 2007-07-16T19:20:30.45+01:00 - - - - - Identifies languages and their use in the intellectual content - of the resource. Recommended best practice for the values of the Language - element is defined by RFC 1766, which includes a two-letter Language Code - (taken from the ISO Standard 639), followed optionally, by a two-letter - Country Code (taken from the ISO Standard 3166). For example, 'en' for - English, 'fr' for French, or 'en-uk' for English used in the United Kingdom. - More contextual information can be provided using the “note” - attribute. - - - - - Recommended best practice is to reference the resource (to which - the current resource under description is related) by means of a string or - number conforming to a formal identification system. Relation is used to - show the relation in content to another resource. For example, "IsPartOf" is - used to show the relation between a part of a radio programme and the whole - programme or between a track and a record album. A resource can be - identified by its title, or an identifier (possibly a URI). The related item - has its own separate metadata record. Relation is used to provide a name, an - identification number or ID, or a locator where the related item can be - found. - - - - - A reference to the resource that the current resource is a - version of - - - - - A reference to another version of the resource - - - - - A reference to a resource replacing the current resource - - - - - - A reference to a resource that the current resource replaces - - - - - - A reference to a resource requiring the current resource - - - - - - A reference to a resource that the current resource requires - - - - - - A reference to a resource that the current resource is a part of - - - - - - A reference to a resource that forms part of the current - resource - - - - - An element to identify a part of a track by a title, a start - time and an end time in both the media source and media destination - - - - - - - - - - - - - - - - - - - A reference to a resource that references the current resource - - - - - - A reference to a resource that the current resource references - - - - - - A reference to a resource with which the current resource shares - a format - - - - - A format in which the resource is also available - - - - - - A reference to a series the current resource is an episode of - - - - - - A reference to a group e.g. a brand, the current resource is an - member of - - - - - Coverage is used to show various time and place aspects of the - subject of the content. Coverage will typically include spatial location (a - place name or geographic coordinates), temporal period (a period label, - date, or date range) or jurisdiction (such as a named administrative - entity). Recommended best practice is to select a value from a controlled - vocabulary (for example, the Thesaurus of Geographic Names) and that, where - appropriate, named places or time periods be used in preference to numeric - identifiers such as sets of coordinates or date ranges. - - - - - An all-purpose field to identify information (rights management - statement or reference to a service providing such information e.g. via a - URL) about copyright, intellectual property rights or other property rights - held in and over a resource, stating whether access is open or restricted in - some way. If dates, times, territories and availability periods are - associated with a right, they should be included. If the Rights element is - absent, no assumptions can be made about the status of these and other - rights with respect to the resource. - - - - - UK Version, US Version, home video version, etc. - Mapping to Dublin Core would be made using a description - element - - - - - To provide information on the publication history. - - - - - - An element to provide rating values attributed to the media - resource. - - - - - To identify parts/segments/fragments within the - resource. - - - - - - - - The beginning point for playback of a time-based media item, such - as digital video or audio. Use in combination with end or duration to - identify a sequence or segment of a media item that has a fixed start time - and end time. - - - - - - The ending point for playback of a time-based media item, - such as digital video or audio. - - - - - The duration of the resource or part of a - resource. - - - - - - - - - - - - - - - - - The name given to a resource e.g. a media item, media object, sequence. - For a series – use the series title; for a programme – a programme title; for an - item – an item title. etc. Titles are recorded as they appear. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free-text to provide the main title by which the resource is known. - The title can be provided in different languages. The language in which the - title is provided can be provided using elementType’s lang attribute. - Example: ‘the fifth element’ - - - - - - Defines the date of attribution of this Title. - - - - - Optional additional contextual information. - - - - - - The name given to a resource e.g. a media item, media object, sequence. - For a series – use the series title; for a programme – a programme title; for an - item – an item title. etc. Titles are recorded as they appear. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free-text to provide alternative titles by which the resource is - known. The language in which the title is provided can be provided using - elementType’s lang attribute. Example: ‘the fifth element’ - - - - - - The typeGroup is used to define the type of alternative title. This - can be an associated title like a series title. - - - - - The statusGroup is used to define the status of the Title such as - short, long, full, abridged, working, transmission, published, international, - subtitle, original, secondary, alternative, pledged, etc. The name of the format - can be provided in the form of a text label, or a link to a code of a - classification scheme, optionally accompanied by a definition. the status 'main' - shall not be used for alternativeTitle as this applies to the Title - only. - - - - - Defines the date of attribution of this Title. - - - - - Optional additional contextual information. - - - - - - A unique, unambiguous reference or identifier for a resource within a - given context. Best practice is to identify the resource (whether analogue or - digital) by means of a string or number corresponding to an established or formal - identification system if one exists. Otherwise, use an identification method that is - in use within your agency, station, production company, office, or institution. It - is also possible to enter different but unique identifiers for the same resource. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide an identifier. Example: 06.0A.2B.34.01.01.01.01 - - - - - - To identify the source of attribution of the - identifier. - - - - - - The typeGroup is used to define the type of Identifier e.g. Main or - Alternative - - - - - Use to define the format and possibly syntax of the identifier. Used - in combination with the resource Identifier. It can denote the agency or - institution which specified or assigned it e.g. SMPTE UMID, ISO ISAN, IETF URI, - ISRC, custom. - - - - - Optional additional contextual information. - - - - - - The generalised topic of that represents the intellectual content of the - resource. Typically, a subject is expressed by keywords, key phrases, or even - specific classification codes. Controlled vocabularies, authorities, or formal - classification schemes may be employed when selecting descriptive subject terms. It - is possible to employ both keywords, derived from a formal classification scheme, - such as Dewey or UDC, and genres/subgenres such as those produced by TV-Anytime or - Escort, to cover Subject(s) and Genre(s) and enter as appropriate Subject Type - below. Persons as subjects are also placed here. Genre of the content is placed - under element Type. - - - - - To express the subject in the form of free text. - - - - - To alternatively express the subject using predefined terms - expressed by classification codes. Reference data: - Library of Congress - Subject Heading (LCSH), Library of Congress Classification (LCC), Medical - Subject Headings (MeSH), Dewey Decimal Classification (DDC), Dansk - decimalklassedeling 5.utgave (DK5), Klassifikasjonssystem för svenska - bibliotek (SAB), Universal Decimal Classification (UDC), Norske emneord - - http://cv.iptc.org/newscodes/subjectcode/. Example: - http://cv.iptc.org/newscodes/subjectcode/#15065000 - - - - - An optional definition. Example: ‘the subject is about tennis - (sport, game)’ - - - - - To identify the source of attribution of the - subject/tag. - - - - - - To define the source of reference for subject such as a reference - document or classification scheme or the framework within which a tag has been - attributed. - - - - - Optional additional contextual information. - - - - - - The nature or genre of the content of the resource. Type includes terms - describing general categories, functions, genres, or aggregation levels for content. - Recommended best practice is to select a value from a controlled vocabulary. To - describe the physical or digital manifestation of the resource, use the FORMAT - element. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - A type element specifically dedicated to the description of a - resource genre - - - - - To define the Type reference data. - - - - - - - A type element specifically dedicated to the description of type - of resource being describe e.g. programme, item, episode - - - - - To define the Type reference data. - - - - - - - A type element specifically dedicated to the description of a - resource target audience e.g. parental guidance or geographical/occupational - group - - - - - To define the Type reference data. - - - - - - - - Optional additional contextual information. - - - - - - Free-form text or a narrative to report general notes, abstracts, or - summaries about the intellectual content of a resource. The information may be in - the form of a paragraph giving an individual program description, anecdotal - interpretations, or brief content reviews. The description may also consist of - outlines, lists, bullet points, edit decision lists, indexes, or tables of content, - a reference to a graphical representation of content or even a pointer (URI, URL) to - an external resource. For a Radio or television programme a running order can be - used as description. A description can be provided in different languages. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide a description of the resource. The description - can be repeated in different languages as specified by the entityType’s lang - attribute. The type of description is defined in the type group of - attributes. - - - - - - To define the form of presentation for the information: Annotation, - abstract, summary, review, table of content, synopsis, shot list, edit decision - list, promotional information, purpose, script, outline, rundown, - selection/excerpt, transcript, bookmarks, theme, highlights, running order, etc. - - - - - - Optional additional contextual information. - - - - - - Coverage will typically include spatial location (a place name or - geographic coordinates), temporal period (a period label, date, or date range) or - jurisdiction (such as a named administrative entity). Recommended best practice is - to select a value from a controlled vocabulary (for example, the Thesaurus of - Geographic Names) and that, where appropriate, named places or time periods be used - in preference to numeric identifiers such as sets of coordinates or date - ranges. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - Temporal characteristics of the content of the resource. To - indicate e.g. specific date, time or period aspects of the subject of the - resource in complement to Description. - - - - - - - - - - - The period of time depicted in the - resource. - - - - - - - - To precise the type of temporal information - provided. - - - - - Optional additional contextual information. - - - - - - An identifier to support the management of time periods - (e.g. historical or repetitive event) in databases and - RDF - - - - - - - Spatial characteristics of the content of the resource. To - indicate e.g. specific place and location aspects of the subject of the - resource in complement to Description. - - - - - - To indicate e.g. specific place and location aspects - of the resource in complement to Description. - - - - - - Any location name in free - text - - - - - Optional geospatial coordinates. 'posy' - is the latitude. 'posx' is the longitude. Both are - expressed in digital degrees - - - - - - - - - - - - A location identified by a code from a - predefined list of locations. - - - - - - To precise the type of place and - location. - - - - - To provide additional information on the type - of location described, e.g. countries, regions, - cities - - - - - An identifier to support the management of - location in databases and RDF - - - - - - - - - - - - - An all-purpose field to identify information (rights management statement - or reference to a service providing such information e.g. via a URL) about - copyright, intellectual property rights or other property rights held in and over a - resource, stating whether open access or restricted in some way. If dates, times, - territories and availability periods are associated with a right, they should be - included. If the Rights element is absent, no assumptions can be made about the - status of these and other rights with respect to the resource. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. An element to express any form of rights related - matters. - - - - - A url pointing to a declaration of rights - - - - - To identify the person or organisation holding or managing the - rights related to the resource. - - - - - Use to state any other restrictions, such as non-rights ones, - e.g. legal. State by media, territory, scope (restriction on whole item or - extracts) and possibly language. The presence of this information can be - used by asset management system implementing traffic lights like mechanism - to signal that content may be subject to particular restrictions to be - clarified before exploitation. - - - - - Specifies a specific start date, end date or period for the - availability of the item or the date from which the rights or exploitation - issues apply. It may refer to start dates for the availability of an item - that is used within a particular geographical area e.g. broadcast locally, - regionally, nationally or internationally, or for web-based distribution. A - specific time may also be associated with the date. - - - - - A flag to signal if content is subject to rights open issues - - - - - - A field for a disclaimer about the content, its content, and its - use. - - - - - A identifier related to rights, e.g. attributed for a particular - purpose by a specific agency in the context of use and exploitation. - - - - - - Minimum information providing means to further identify and - contact the rights manager for the resource in the organisation. - - - - - - - To define the type of rights information provided. - - - - - Optional additional contextual information. - - - - - - A list of ID references identifying formats in which the content is available and to which the set of rights apply. - - - - - - - The physical or digital manifestation of the resource. Use the descriptor - Format to identify the format of a particular resource as it exists in its physical - or digital form. Physical form = an actual physical form that occupies physical - space, e.g. a tape. Digital form = a digital file residing on a server or hard - drive. Format may be used to determine the software, hardware or other equipment - needed to display or operate the resource. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide information on the format. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - The width of an image, video or document. - - - - - The height of an image, video or document. - - - - - The material or physical carrier of the resource. If a file, it - should be the carrier format. - - - - - - - - - Define the main MIME type as defined by IANA: e.g. audio, video, - text, application - - - - - - - - used ot list the characteristics of an image - - - - - used to list all the characteristics of the video signal - - - - - - used to list all the characteristics of the audio signal - - - - - - - - To provide information on the wrapper format in complement to the - stream encoding information provided in 'channel', e.g. mp3, wave, - Quicktime, ogg. - - - - - - - - - Used to provide information on the signing format and purpose - - - - - To provide information to the language used for signing and - its purpose - - - - The track number - - - - - The track name - - - - - - - To specify the format of signing being used e.g. living - person or avatar - - - - - A pointer to the file with the signing in available as a - separte resource. - - - - - - - - - - The beginning point for playback of a time-based media item, such - as digital video or audio. Use in combination with end or duration to - identify a sequence or segment of a media item that has a fixed start time - and end time. - - - - - - The ending point for playback of a time-based media item, - such as digital video or audio. - - - - - The duration of the resource or part of a - resource. - - - - - - To indicate the storage requirements or file size of a digital - resource. The file size is expressed in bytes. - - - - - The name of the file as it appears in the location path or url. - - - - - - An "address for a resource". For an organisation or producer - acting as caretaker for a media resource, Format Location may contain - information about a specific shelf location for an asset, including an - organisation's name, departmental name, shelf id. and contact information. - The Format Location for a data file or web page may include a complete URI - with a domain, path, filename or html URL. Examples: "Archives Building A, - Row J, Shelf 2", "d://playout/server/content.mpg", - "http://www.ebu.ch/CorporateVideo.avi". - - - - - - - The typeGroup can be used to define e.g. the - storage type from a predefined list. or as a term. The - definition can be used to provide any additional information - as deemed necessary e.g. on the location and/ or managing - entity. - - - - - - - - - An element to provide a description of a document - - - - - - - - - - - - - - - - - - - - - Recommended best practice is to reference the resource by means of a - string or number conforming to a formal identification system. Relation is used to - show the relation in content to another resource. For example, "IsPartOf" is used to - show the relation between a part of a radio programme and the whole programme, or - between a track and a record album. A resource can be identified by its title, or - preferably by an identifier. Relation is used to provide a name, locator, accession, - identification number or ID where the related item can be obtained or found. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. A title would be given using this element. - - - - - An identifier would be given using this element. - - - - - - A link to related material. - - - - - - To show the type of relation to another resource, e.g. identifies - ways in which the resource is related by intellectual content to some other - resource. - - - - - If exists, it provides the ranking/running order within an ordered - list. - - - - - - - Optional additional contextual information. - - - - - - MODIF VERSION 1.2 - Identifies languages and their use in the intellectual content of the - resource. Recommended best practice for the values of the Language element is - defined by RFC 1766, which includes a two-letter Language Code (taken from the ISO - Standard 639), followed optionally, by a two-letter Country Code (taken from the ISO - Standard 3166). For example, 'en' for English, 'fr' for French, or 'en-UK' for - English used in the United Kingdom. The usage of the language is also defined. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - - Indicates the purpose of the language described by the Language - element e.g. Main original language, main dubbed language, additional original - language, additional dubbed language, descriptive video information, - supplemental commentary, Director's commentary, audio description, supplementary - audio programme, educational notes, voice over, original commentary, dubbed - commentary, original narration, dubbed narration, dubbed dialogue, interviewer - language, interviewee language, text description for the hard-of-hearing, - titles, subtitles, song lyrics, sign language, dubbed sign language, transcript, - caption, open caption, closed caption. - - - - - Optional additional contextual information. - - - - - - - Dates associated with events occurring during the life of the resource. - Typically, Date will be associated e.g. with the creation or availability of the - resource. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - To specify the creation date for a particular version or - rendition of a resource across its life cycle. It is the moment in time that - the resource was finalized during its production process and is forwarded to - other divisions or agencies to make it ready for publication or - distribution. A specific time may also be associated with the - date. - - - - - - - - Date of formal issuance (e.g. publication) of the resource. - Specifies the formal date for a particular version or rendition of a - resource has been made ready or officially released for distribution, - publication or consumption, e.g. the broadcasting date of a radio programme. - A specific time may also be associated with the date. - - - - - - - - The date when the resource was last modified - - - - - - - - The date when the resource was digitised - - - - - - - - An alternative particular date for which the type can be - defined. - - - - - - - - - - - To provide information about the publication history which falls outside - the entries under transmission date/times below. - - - - - - - The first transmission date - - - - - The first transmission time - - - - - - The first transmission date and time - - - - - - The service to which the channel is attached - - - - - - the medium used for publication e.g. online, Internet, terrestrial broadcast - - - - - - - - - The channel on which the title was first - transmitted - - - - - - - - - - - - - - - The date on which content was re-transmitted - - - - - The time on which content was re-transmitted - - - - - - The date and time on which content was re-transmitted - - - - - - - - - - - - The channel on which the resource was - re-transmitted - - - - - - - - - - - - - - - To identify a person, group of persons or organisation - - - - - Minimum information providing means to further identify and - contact the entity. - - - - - Minimum information providing means to further identify and - contact the entity as an organisation. Cardinality is '1'. Only one - organisation is acting as an entity or only one organisation is associated - to a person in relation to is occupation in the context of the current - content description - - - - - Used to identify the function fulfilled by the person, group or - organisation described as an entity. This is used to detail the role of a - 'contributor'. This also applies to e.g. 'creator' as several functions can - be seen as participating to the creative process - - - - - - - - - - - - - - - - - - - - - - - - The job function of the contact - - - - - - For example, in the case the contact is a performing - actor/actress, the stage name will be the fictitious character's - name - - - - - This is used to identify contacts related to the contact being - described - - - - - - - - - - - - - To identify one or more production area / department / service - where the resource was created/originated, in free text - - - - - - - - - - - - - Useful to provide contact information particularly is no other - person information is otherwise provided. - - - - - - - - - - - The e-mail address through which the contact can be directly - accessed - - - - - The web address where additional information can be found - regarding the company - - - - - The organisation address is also the professional address of the - contact in the context of the content being described and in relation to the - contact occupation provided in the contact details - - - - - - - - - - Provides address details for an organisation - - - - - - - - - - - - - - - - - A complex type to express a number of edit units. An editUnit is the - inverse of the edit rate, or corrected edit rate as the result of - editUnit=1/(editrate*(factorNumerator/factorDenominator)) - - - - - - The base number of frames or samples per seconds. This base - number can be corrected by a factor calculated as the result of - 'factorNumerator/factorDenominator' - - - - - The numerator of the correction factor - - - - - The denominator of the correction factor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An attribute to specify the unit in which the width is - expressed. - - - - - - - - - - - - An attribute to specify the unit in which the width is - expressed. - - - - - - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - To express the width of an image - - - - - To express the height of an image - - - - - To express the orientation of the image - - - - - - - - - - - Used to express the encoding parameters of the resource e.g. - jpg. - - - - - - - - - - - - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - - To define the width of a video image - - - - - To define the height of a video image - - - - - A string to define e.g. the ratio of the picture (the width by - the height), for instance '4:3' or '16 9' (rational). The format of the - aspect ratio is precised in the format attributes - - - - - - - To define the type of format used to represent - the aspect ratio and an example in the definition e.g. - formatLabel='rational' and formatDefinition='e.g. 16 9 - (number, space, number)' - - - - - - - - - - Used to express the encoding parameters of the resource e.g. - H264 for a video channel. - - - - - - - - To describe the main features of video tracks such as in - mutliview systems - - - - - The track ID or track number - - - - - The track name - - - - - The type of video track e.g. particular view angle. - - - - - - - - - - - - - - - - To define the audio compression format of the resource e.g. AAC - for an audio channel. - - - - - - - - To define the audio track configuration. Used to express the - arrangement or audio tracks e.g. 'stereo', '2+1', 'surround', 'surround - (7+1)' - - - - - - - - To describe the track allocation e.g. in conformance with EBU - R123 - - - - - The track language - - - - - The track number - - - - - The track name - - - - - The track type - - - - - - - - - - - - - - - - Used to provide information on the captioning format - and purpose - - - - To provide information to the language used for - captioning and its purpose - - - - The track number - - - - - The track name - - - - - - To specify the format of captioning / - subtitling being used - - - - - - A pointer to the file with the captioning / - subtitling. - - - - - - - - - Used to provide information on ancillary data format - and purpose. This type provides inforamtion on the Ancillary - Data packet type. See SMPTE 291M, SMPTE 436M - - - - - - ANC DID Value. - - - - - ANC SDID Value. - - - - - Video line number containing the ANC - packets of this type. - - - - - Indicates HANC or VANC, and what field in - which packets should be stored. See SMPTE 436M for - legal values. - - - - - - - - - - - - - - - - - - To provide a word count for the document - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - The width of an image, video or document. - - - - - The height of an image, video or document. - - - - - - - - - - - - - - - To express the start time using timecode compliant with SMPTE ST - 12-1:2008 - - - - - - - - - - To express the start time in the format - HH:MM:SS.S - - - - - The express the start time as a number of edit Units - - - - - - To express the start time in a user defined time - format - - - - - - - - - - - - - - - - To express the duration using timecode compliant with SMPTE ST - 2021-1:2009 - - - - - - - - - - To express the duration in the format HH:MM:SS.S - - - - - The express the duration as a number of edit Units - - - - - - To express the duration in a user defined time - format - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - FrameLayout, VideoSamplingRaster, VideoEncoding - - - - - - - - - - - - - IEEE 754 floating point number - Floating - Point - - - - - - - - - - - - IEEE 754 floating point number - Floating - Point - - - - - - - - - - - - Signed 8 bit integer - Int8 - - - - - - - - - - - - Signed 16 bit integer - Int16 - - - - - - - - - - - - Signed 32 bit integer - Int32 - - - - - - - - - - - - Signed 64 bit integer - Int64 - - - - - - - - - - - - Unsigned 8 bit integer - UInt8 - - - - - - - - - - - - Unsigned 16 bit integer - UInt16 - - - - - - - - - - - - Unsigned 32 bit integer - Uint32 - - - - - - - - - - - - Unsigned 64 bit integer - Uint64 - - - - - - - - - - - - - - - - A complex Type defining the structure of a technical attribute ot type - rational - - - - - - - - - - - - A complex Type defining the structure of a technical attribute ot type - rational - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/ebu/EBU_CORE_20111101.xsd.conf b/schemas/ebu/EBU_CORE_20111101.xsd.conf deleted file mode 100644 index f5af115..0000000 --- a/schemas/ebu/EBU_CORE_20111101.xsd.conf +++ /dev/null @@ -1,105 +0,0 @@ -{ - "xsd": "EBU_CORE_20111101.xsd", - "namespaces": { - "ebucore": "urn:ebu:metadata-schema:ebuCore_2012", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "item": { - "element": "ebuCoreMain", - "prefix": "ebucore" - }, - - "paths": { - "item": "/ebuCoreMain"; - "label": "/ebuCoreMain/coreMetadata/title/text()"; - }, - - "version": "1.0", - - "groups": [ - { - "name": "Core Metadata", - "element": "coreMetadata" - }, - { - "name": "Metadata Provider", - "element": "metadataProvider" - } - ], - - "navigation": [ - { - "type": "template" - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Descriptive", - "include": [ -"ebucore:title", -"ebucore:alternativeTitle", -"ebucore:creator", -"ebucore:subject", -"ebucore:description", -"ebucore:publisher", -"ebucore:contributor", -"ebucore:date", -"ebucore:type", -"ebucore:identifier", -"ebucore:language", -"ebucore:coverage", -"ebucore:version", -"ebucore:publicationHistory", -"ebucore:rating" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Rights", - "include": [ -"ebucore:rights" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Technical", - "include": [ -"ebucore:format" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Relations", - "include": [ -"dc:source", -"ebucore:relation", -"ebucore:isVersionOf", -"ebucore:hasVersion", -"ebucore:hasPart", -"ebucore:isPartOf", -"ebucore:isReplacedBy", -"ebucore:replaces", -"ebucore:isRequiredBy", -"ebucore:requires", -"ebucore:hasTrackPart", -"ebucore:isReferencedBy", -"ebucore:references", -"ebucore:isFormatOf", -"ebucore:hasFormat", -"ebucore:isEpisodeOf", -"ebucore:isMemberOf" - ] - }, - { - "type": "group", - "name": "Metadata Provider" - } - ], - - "preview" : [], - "customization": "ebucore.groovy" -} diff --git a/schemas/ebu/EBU_CORE_20130107.xsd b/schemas/ebu/EBU_CORE_20130107.xsd deleted file mode 100644 index 6f47ce4..0000000 --- a/schemas/ebu/EBU_CORE_20130107.xsd +++ /dev/null @@ -1,2845 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The following Creative Commons Rights apply to the use of this EBU resource: - http://creativecommons.org/licenses/by-nc-sa/3.0/ Owner: EBU Technical Department - Author: Jean-Pierre Evain Contact: evain@ebu.ch - - - - ebuCoreMain is the root of a document using the EBU Core metadata set - - - - - - The body of ebucore descriptive metadata - - - - - Identifies the metadata provider, e.g. the contributing archive. - The organisation Id or name provide the archive ID or name required for e.g. - OAI metadata harvesting operation. - - - - - - The name of the schema for e.g. OAI management. - - - - - The version of the schema for e.g. OAI management. - - - - - The date of edition of the metadata instance for e.g. OAI management - - - - - - The unique Identifier of the metadata instance for e.g. OAI - management - - - - - A location at which the document containing the metadata instance - can be found - - - - - An attribute to specify the dominant language used to express - metadata information in the document, which can be superceded each time an - language attribute or element is available a different levels of description - granularity - - - - - - The document containing all the core descriptive information regarding - the resource - - - - - A Title is the ‘main’ name given to a resource e.g. a media item, - a media object, or a sequence as specified by the associated title type. It - corresponds for a series to the series title, for a programme to the - programme title, for an item to the item title, etc. Titles are recorded as - they appear. The Title is the name by which a resource is formally known and - that everyone should use to refer to or search for that particular resource. - The Title may be provided in several languages. If present, the - attributionDate attribute indicates when the Title was attributed. A Title - is the ‘main’ name given to a resource e.g. a media item, a media object, or - a sequence as specified by the associated title type. It corresponds for a - series to the series title, for a programme to the programme title, for an - item to the item title, etc. Titles are recorded as they appear. The Title - is the name by which a resource is formally known and that everyone should - use to refer to or search for that particular resource. The Title may be - provided in several languages. If present, the attributionDate attribute - indicates when the Title was attributed. - - - - - An Alternative Title is the name other than the ‘main’ Title - given to a resource. The type of title is defined by the typeGroup of - attributes. The status of the title is defined by the statusGroup of - attributes. Alternative Titles are recorded as they appear. An Alternative - Title may be attributed to a resource for several reasons described using - the status (e.g. working title) and type (e.g. series title) attributes. The - alternativeTitle may be provided in several languages. It is sometimes - common practice to put dates into the alternativeTitle. If present, the - attributionDate (indicating when the alternativeTitle was attributed) in the - date attribute should be consistent. - - - - - The descriptor creator identifies an ‘entity’ (a person, group - of persons or organisation) primarily responsible for creating the content - of the resource - behind the camera. Different roles may be considered as - representing a creator, e.g. a producer, an author, etc. Creator is a - sub-class of Contributor. - - - - - The generalised topic that represents the intellectual content - of the resource. Typically, a subject is expressed by keywords, key phrases. - Free text, controlled vocabularies, authorities, or formal classification - schemes (codes) may be employed when selecting descriptive subject terms. - Persons as subjects are also placed here. Genre of the content is defined - under element “ebucore:type/ebucore:genre” - - - - - Free-form text or a narrative to report general notes, abstracts, - or summaries about the intellectual content of a resource. The information - may be in the form of a paragraph giving an individual program description, - anecdotal interpretations, or brief content reviews. The description may - also consist of outlines, lists, bullet points, edit decision lists, - indexes, or tables of content, a reference to a graphical representation of - content or even a pointer (URI, URL) to an external resource. A running - order can also be provided as a description. For a Radio or television - programme a running order can be used as description. A description can be - provided in different languages. - - - - - A publisher is a person, an organization, or a service. - Typically, the name of a Publisher should be used to indicate the entity - primarily responsible for distributing or making a resource available to - others e.g. by broadcasting, selling, leasing, renting and other modes of - distribution. - - - - - The descriptor contributor identifies a person or organization - that has made substantial creative contributions to the content of a - resource. Refers particularly (but not only) to participation in front of - the camera. If in doubt whether an entity is a creator or contributor use - the element contributor. - - - - - Dates associated with events occurring during the life of the - resource. Typically, Date will be associated with the creation, modification - or availability of the resource. - - - - - The nature or genre of the resource. Type includes terms - describing general categories, functions, genres, or aggregation levels for - content. Recommended best practice is to select a value from a controlled - vocabulary. To describe the physical or digital manifestation of the - resource, use the FORMAT element. - - - - - The physical or digital manifestation of the resource. Use the - descriptor Format to identify the format of a particular resource as it - exists in its physical or digital form. Physical form = an actual physical - form that occupies physical space, e.g. a tape. Digital form = a digital - file residing on a server or hard drive. Format may be used to determine the - software, hardware or other equipment needed to display or operate the - resource. - - - - - A unique, unambiguous reference or identifier for a resource - within a given context. Best practice is to identify the resource (whether - analogue or digital) by means of a string or number corresponding to an - established or formal identification system if one exists. Otherwise, use an - identification method that is in use within your agency, station, production - company, office, or institution. It is also possible to enter more than one, - different but still unique, identifier for the same - resource. - - - - - Reference to the resource (s) from which the current resource is - derived in whole or in part. If no label or number is available, the title - and/or the statement of responsibility etc. of the digitized recording is - recorded here. For a digitized radio programme the production number is - normally given here. The Recommended best practice is to use a unique - identifier to identify the physical source that has been used to create the - digital resource. In the case of a digitized analogue recording, it is the - recording used for digitization which is the source. For commercial - recordings the label and number is normally given here. Example: Eurovision - feed 2007-07-16T19:20:30.45+01:00 - - - - - Identifies languages and their use in the intellectual content - of the resource. Recommended best practice for the values of the Language - element is defined by RFC 1766, which includes a two-letter Language Code - (taken from the ISO Standard 639), followed optionally, by a two-letter - Country Code (taken from the ISO Standard 3166). For example, 'en' for - English, 'fr' for French, or 'en-uk' for English used in the United Kingdom. - More contextual information can be provided using the “note” - attribute. - - - - - Recommended best practice is to reference the resource (to which - the current resource under description is related) by means of a string or - number conforming to a formal identification system. Relation is used to - show the relation in content to another resource. For example, "IsPartOf" is - used to show the relation between a part of a radio programme and the whole - programme or between a track and a record album. A resource can be - identified by its title, or an identifier (possibly a URI). The related item - has its own separate metadata record. Relation is used to provide a name, an - identification number or ID, or a locator where the related item can be - found. - - - - - A reference to the resource that the current resource is a - version of - - - - - A reference to another version of the resource - - - - - A reference to a resource replacing the current resource - - - - - - A reference to a resource that the current resource replaces - - - - - - A reference to a resource requiring the current resource - - - - - - A reference to a resource that the current resource requires - - - - - - A reference to a resource that the current resource is a part of - - - - - - A reference to a resource that forms part of the current - resource - - - - - An element to identify a part of a track by a title, a start - time and an end time in both the media source and media destination - - - - - - - - - - - - - - - - - - - - - A reference to a resource that references the current resource - - - - - - A reference to a resource that the current resource references - - - - - - A reference to a resource with which the current resource shares - a format - - - - - A format in which the resource is also available - - - - - - A reference to a series the current resource is an episode of - - - - - - A reference to a group e.g. a brand, the current resource is an - member of - - - - - A reference to members of a group - - - - - Coverage is used to show various time and place aspects of the - subject of the content. Coverage will typically include spatial location (a - place name or geographic coordinates), temporal period (a period label, - date, or date range) or jurisdiction (such as a named administrative - entity). Recommended best practice is to select a value from a controlled - vocabulary (for example, the Thesaurus of Geographic Names) and that, where - appropriate, named places or time periods be used in preference to numeric - identifiers such as sets of coordinates or date ranges. - - - - - An all-purpose field to identify information (rights management - statement or reference to a service providing such information e.g. via a - URL) about copyright, intellectual property rights or other property rights - held in and over a resource, stating whether access is open or restricted in - some way. If dates, times, territories and availability periods are - associated with a right, they should be included. If the Rights element is - absent, no assumptions can be made about the status of these and other - rights with respect to the resource. - - - - - UK Version, US Version, home video version, etc. - Mapping to Dublin Core would be made using a description element. There can - be mutiple type fo version references. - - - - - To provide information on the publication history. - - - - - - An element to provide rating values attributed to the media - resource. - - - - - To identify parts/segments/fragments within the - resource. - - - - - - - - - - - - - - - - - - - - - - - - - The name given to a resource e.g. a media item, media object, sequence. - For a series – use the series title; for a programme – a programme title; for an - item – an item title. etc. Titles are recorded as they appear. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free-text to provide the main title by which the resource is known. - The title can be provided in different languages. The language in which the - title is provided can be provided using elementType’s lang attribute. - Example: ‘the fifth element’ - - - - - - Defines the date of attribution of this Title. - - - - - Optional additional contextual information. - - - - - - The name given to a resource e.g. a media item, media object, sequence. - For a series – use the series title; for a programme – a programme title; for an - item – an item title. etc. Titles are recorded as they appear. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free-text to provide alternative titles by which the resource is - known. The language in which the title is provided can be provided using - elementType’s lang attribute. Example: ‘the fifth element’ - - - - - - The typeGroup is used to define the type of alternative title. This - can be an associated title like a series title. - - - - - The statusGroup is used to define the status of the Title such as - short, long, full, abridged, working, transmission, published, international, - subtitle, original, secondary, alternative, pledged, etc. The name of the format - can be provided in the form of a text label, or a link to a code of a - classification scheme, optionally accompanied by a definition. the status 'main' - shall not be used for alternativeTitle as this applies to the Title - only. - - - - - Defines the date of attribution of this Title. - - - - - Optional additional contextual information. - - - - - - A unique, unambiguous reference or identifier for a resource within a - given context. Best practice is to identify the resource (whether analogue or - digital) by means of a string or number corresponding to an established or formal - identification system if one exists. Otherwise, use an identification method that is - in use within your agency, station, production company, office, or institution. It - is also possible to enter different but unique identifiers for the same resource. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide an identifier. Example: 06.0A.2B.34.01.01.01.01 - - - - - - To identify the source of attribution of the - identifier. - - - - - - The typeGroup is used to define the type of Identifier e.g. Main or - Alternative - - - - - Use to define the format and possibly syntax of the identifier. Used - in combination with the resource Identifier. It can denote the agency or - institution which specified or assigned it e.g. SMPTE UMID, ISO ISAN, IETF URI, - ISRC, custom. - - - - - Optional additional contextual information. - - - - - - The generalised topic of that represents the intellectual content of the - resource. Typically, a subject is expressed by keywords, key phrases, or even - specific classification codes. Controlled vocabularies, authorities, or formal - classification schemes may be employed when selecting descriptive subject terms. It - is possible to employ both keywords, derived from a formal classification scheme, - such as Dewey or UDC, and genres/subgenres such as those produced by TV-Anytime or - Escort, to cover Subject(s) and Genre(s) and enter as appropriate Subject Type - below. Persons as subjects are also placed here. Genre of the content is placed - under element Type. - - - - - To express the subject in the form of free text. - - - - - To alternatively express the subject using predefined terms - expressed by classification codes. Reference data: - Library of Congress - Subject Heading (LCSH), Library of Congress Classification (LCC), Medical - Subject Headings (MeSH), Dewey Decimal Classification (DDC), Dansk - decimalklassedeling 5.utgave (DK5), Klassifikasjonssystem för svenska - bibliotek (SAB), Universal Decimal Classification (UDC), Norske emneord - - http://cv.iptc.org/newscodes/subjectcode/. Example: - http://cv.iptc.org/newscodes/subjectcode/#15065000 - - - - - An optional definition. Example: ‘the subject is about tennis - (sport, game)’ - - - - - To identify the source of attribution of the - subject/tag. - - - - - - To define the source of reference for subject such as a reference - document or classification scheme or the framework within which a tag has been - attributed. - - - - - Optional additional contextual information. - - - - - - The nature or genre of the content of the resource. Type includes terms - describing general categories, functions, genres, or aggregation levels for content. - Recommended best practice is to select a value from a controlled vocabulary. To - describe the physical or digital manifestation of the resource, use the FORMAT - element. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - A type element specifically dedicated to the description of a - resource genre - - - - - To define the Type reference data. - - - - - - - A type element specifically dedicated to the description of type - of resource being describe e.g. programme, item, episode - - - - - To define the Type reference data. - - - - - - - A type element specifically dedicated to the description of a - resource target audience e.g. parental guidance or geographical/occupational - group - - - - - - - - To define the Type reference data. - - - - - An attribute to optionnally explain why this target - audience has been selected - - - - - A link to a visual representation of the target audience - rating, if available - - - - - A flag to signal that content has not been rated (if set to - "true") - - - - - A flag to signal if content is adult content (if set to - "true") or not for easy identification - - - - - - - - Optional additional contextual information. - - - - - - Free-form text or a narrative to report general notes, abstracts, or - summaries about the intellectual content of a resource. The information may be in - the form of a paragraph giving an individual program description, anecdotal - interpretations, or brief content reviews. The description may also consist of - outlines, lists, bullet points, edit decision lists, indexes, or tables of content, - a reference to a graphical representation of content or even a pointer (URI, URL) to - an external resource. For a Radio or television programme a running order can be - used as description. A description can be provided in different languages. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide a description of the resource. The description - can be repeated in different languages as specified by the entityType’s lang - attribute. The type of description is defined in the type group of - attributes. - - - - - - To define the form of presentation for the information: Annotation, - abstract, summary, review, table of content, synopsis, shot list, edit decision - list, promotional information, purpose, script, outline, rundown, - selection/excerpt, transcript, bookmarks, theme, highlights, running order, etc. - - - - - - Optional additional contextual information. - - - - - - Coverage will typically include spatial location (a place name or - geographic coordinates), temporal period (a period label, date, or date range) or - jurisdiction (such as a named administrative entity). Recommended best practice is - to select a value from a controlled vocabulary (for example, the Thesaurus of - Geographic Names) and that, where appropriate, named places or time periods be used - in preference to numeric identifiers such as sets of coordinates or date - ranges. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - Temporal characteristics of the content of the resource. To - indicate e.g. specific date, time or period aspects of the subject of the - resource in complement to Description. - - - - - - - - To precise the type of temporal information - provided. - - - - - Optional additional contextual information. - - - - - - An identifier to support the management of time periods - (e.g. historical or repetitive event) in databases and - RDF - - - - - - - Spatial characteristics of the content of the resource. To - indicate e.g. specific place and location aspects of the subject of the - resource in complement to Description. - - - - - - - - - - - - To indicate e.g. specific place and location aspects - of the resource in complement to Description. - - - - - Any location name in free - text - - - - - Optional geospatial coordinates. 'posy' - is the latitude. 'posx' is the longitude. Both are - expressed in digital degrees - - - - - - - - - - - - A location identified by a code from a - predefined list of locations. - - - - - A location specifically defined as a - region, i.e. a country or countryRegion - - - - - - - To precise the type of place and - location. - - - - - To provide additional information on the type - of location described, e.g. countries, regions, - cities - - - - - An identifier to support the management of - location in databases and RDF - - - - - - - - - - The period of time depicted in the - resource. - - - - - - An all-purpose field to identify information (rights management statement - or reference to a service providing such information e.g. via a URL) about - copyright, intellectual property rights or other property rights held in and over a - resource, stating whether open access or restricted in some way. If dates, times, - territories and availability periods are associated with a right, they should be - included. If the Rights element is absent, no assumptions can be made about the - status of these and other rights with respect to the resource. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. An element to express any form of rights related - matters. - - - - - A url pointing to a declaration of rights - - - - - To identify the person or organisation holding or managing the - rights related to the resource. - - - - - Use to state any other restrictions, such as non-rights ones, - e.g. legal. State by media, territory, scope (restriction on whole item or - extracts) and possibly language. The presence of this information can be - used by asset management system implementing traffic lights like mechanism - to signal that content may be subject to particular restrictions to be - clarified before exploitation. - - - - - Use to report any copyright statement, specifically - - - - - Specifies a specific start date, end date or period for the - availability of the item or the date from which the rights or exploitation - issues apply. It may refer to start dates for the availability of an item - that is used within a particular geographical area e.g. broadcast locally, - regionally, nationally or internationally, or for web-based distribution. A - specific time may also be associated with the date. - - - - - A flag to signal if content is subject to rights open issues - - - - - - A field for a disclaimer about the content, its content, and its - use. - - - - - A identifier related to rights, e.g. attributed for a particular - purpose by a specific agency in the context of use and exploitation. - - - - - - Minimum information providing means to further identify and - contact the rights manager for the resource in the organisation. - - - - - - - To define the type of rights information provided. - - - - - Optional additional contextual information. - - - - - A list of ID references identifying formats in which the content is - available and to which the set of rights apply. - - - - - An ID to be used as reference to the associated rights - - - - - - - Recommended best practice is to reference the resource by means of a - string or number conforming to a formal identification system. Relation is used to - show the relation in content to another resource. For example, "IsPartOf" is used to - show the relation between a part of a radio programme and the whole programme, or - between a track and a record album. A resource can be identified by its title, or - preferably by an identifier. Relation is used to provide a name, locator, accession, - identification number or ID where the related item can be obtained or found. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. A title would be given using this element. - - - - - An identifier would be given using this element. - - - - - - A link to related material. - - - - - - To show the type of relation to another resource, e.g. identifies - ways in which the resource is related by intellectual content to some other - resource. - - - - - If exists, it provides the ranking/running order within an ordered - list. - - - - - - - Optional additional contextual information. - - - - - - MODIF VERSION 1.2 - Identifies languages and their use in the intellectual content of the - resource. Recommended best practice for the values of the Language element is - defined by RFC 1766, which includes a two-letter Language Code (taken from the ISO - Standard 639), followed optionally, by a two-letter Country Code (taken from the ISO - Standard 3166). For example, 'en' for English, 'fr' for French, or 'en-UK' for - English used in the United Kingdom. The usage of the language is also defined. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - - Indicates the purpose of the language described by the Language - element e.g. Main original language, main dubbed language, additional original - language, additional dubbed language, descriptive video information, - supplemental commentary, Director's commentary, audio description, supplementary - audio programme, educational notes, voice over, original commentary, dubbed - commentary, original narration, dubbed narration, dubbed dialogue, interviewer - language, interviewee language, text description for the hard-of-hearing, - titles, subtitles, song lyrics, sign language, dubbed sign language, transcript, - caption, open caption, closed caption. - - - - - Optional additional contextual information. - - - - - - - Dates associated with events occurring during the life of the resource. - Typically, Date will be associated e.g. with the creation or availability of the - resource. - - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. - - - - - To specify the creation date for a particular version or - rendition of a resource across its life cycle. It is the moment in time that - the resource was finalized during its production process and is forwarded to - other divisions or agencies to make it ready for publication or - distribution. A specific time may also be associated with the - date. - - - - - - - - Date of formal issuance (e.g. publication) of the resource. - Specifies the formal date for a particular version or rendition of a - resource has been made ready or officially released for distribution, - publication or consumption, e.g. the broadcasting date of a radio programme. - A specific time may also be associated with the date. - - - - - - - - The date and optionally time when the resource was last - modified - - - - - - - - The date and optionally time when the resource was - digitised - - - - - - - - The date and optionally time when the resource was - released - - - - - - - - The date and optionally time when the resource was - copyrighted - - - - - - - - An alternative particular date and optionally time for which the - type can be defined. - - - - - - - - - - - To provide information about the publication history which falls outside - the entries under transmission date/times below. - - - - - - - - - - The first transmission date - - - - - The transmission time - - - - - The service to which the channel is attached - - - - - - - - - - - - - - - to identify the format in which content has been - published - - - - - to identify all the rights associated with the publication - event - - - - - - - - - - - - A logo to identifiy the publication service - - - - - - - The medium on which the title was published - - - - - - - To provide additional information on the type of medium on - which the title was published - - - - - - - - The channel on which the title was transmitted - - - - - - - To provide additional information on the type of channel on - which the title was published by the service e.g. online, - broadcast - - - - - - A logo to identifiy the publication channel - - - - - - - - - The physical or digital manifestation of the resource. Use the descriptor - Format to identify the format of a particular resource as it exists in its physical - or digital form. Physical form = an actual physical form that occupies physical - space, e.g. a tape. Digital form = a digital file residing on a server or hard - drive. Format may be used to determine the software, hardware or other equipment - needed to display or operate the resource. - - - - - The EBU core metadata set is built as a refinement of the Dublin - Core. Free text to provide information on the format. - - - - - The material or physical carrier of the resource. If a file, it - should be the carrier format. - - - - - - - - - used ot list the characteristics of an image - - - - - used to list all the characteristics of the video signal - - - - - - used to list all the characteristics of the audio signal - - - - - - To provide information on the wrapper format in complement to the - stream encoding information provided in 'channel', e.g. mp3, wave, - Quicktime, ogg. - - - - - - - - - - - - Used to provide information on the signing format and purpose - - - - - To provide information to the language used for signing and - its purpose - - - - - - - The track number - - - - - The track name - - - - - A pointer to the file with the signing in available as a - separte resource. - - - - - - - To specify the format of signing being used e.g. living - person or avatar - - - - - - - The beginning point for playback of a time-based media item, such - as digital video or audio. Use in combination with end or duration to - identify a sequence or segment of a media item that has a fixed start time - and end time. - - - - - The ending point for playback of a time-based media item, such as - digital video or audio. - - - - - The duration of the resource or part of a - resource. - - - - - - An element to provide a description of a document - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To identify a person, group of persons or organisation - - - - - Minimum information providing means to further identify and - contact the entity. - - - - - Minimum information providing means to further identify and - contact the entity as an organisation. Cardinality is '1'. Only one - organisation is acting as an entity or only one organisation is associated - to a person in relation to is occupation in the context of the current - content description - - - - - Used to identify the function fulfilled by the person, group or - organisation described as an entity. This is used to detail the role of a - 'contributor'. This also applies to e.g. 'creator' as several functions can - be seen as participating to the creative process - - - - - - An attribute to associated an entity to a cost centre in - the framework of the defined role/job - - - - - - - - - - - - - The contact name is optional as a contact maybe identified by - its contactId. The name is aa cobination of different elements of - information for a specific purpose, e.g. type of name such as the - display name or else. - - - - - - - - - - - - - - The job function of the contact - - - - - - For example, in the case the contact is a performing - actor/actress, the stage name will be the fictitious character's - name - - - - - A flag to indicate if the contact contribution/appearance was as - a guest - - - - - An element to facilitate filtering / search on gender, e.g. male - or female - - - - - - - - - - - - - - This is used to identify contacts related to the contact being - described - - - - - - - - - - - The organization name is optional as a contact maybe identified - by its contactId. The name is aa cobination of different elements of - information for a specific purpose, e.g. type of name such as the display - name or else. - - - - - - To identify one or more production area / department / service - where the resource was created/originated, in free text - - - - - - - - - - - - - - - - - - - - - - Useful to provide contact information particularly is no other - person information is otherwise provided. - - - - - - - - - A logo to identifiy an organisation - - - - - - - - - The e-mail address through which the contact can be directly - accessed - - - - - The web address where additional information can be found - regarding the company - - - - - The organisation address is also the professional address of the - contact in the context of the content being described and in relation to the - contact occupation provided in the contact details - - - - - - - - - - Provides address details for an organisation - - - - - - - - - - - - - - - - - To allow the definition of a compound name combining different elements - of information for a usage defined by the typeGroup attributes and in a format - defined by the formatGroup attributes. For use for contact and organization names. - - - - - - - - - - - - A copmplexType to define a region as a country and / or one or more - regions (e.g. administrative regions or states) within a country. - - - - - A country defined as a typeLabel, i.e. a free text, or a - typeLink pointing to a term within a controlled vocabulary, classification - scheme or taxonomy - - - - - - - - A region, state or other geographical subdivision defined as a - typeLabel, i.e. free text, or a typeLink pointing to a term within a - controlled vocabulary, classification scheme or taxonomy - - - - - - - - - - A complex type to express a number of edit units. An editUnit is the - inverse of the edit rate, or corrected edit rate as the result of - editUnit=1/(editrate*(factorNumerator/factorDenominator)) - - - - - - The base number of frames or samples per seconds. This base - number can be corrected by a factor calculated as the result of - 'factorNumerator/factorDenominator' - - - - - The numerator of the correction factor - - - - - The denominator of the correction factor - - - - - - - - - - The value of rating as free text optionnally ina specified - language - - - - - The maximum rating value in the system in use (see typeGroup), - as free text optionnally ina specified language - - - - - The minimum rating value in the system in use (see typeGroup), - as free text optionnally ina specified language - - - - - - - - - - An attribute to optionnally explain why this target audience has been - selected - - - - - A link to a visual representation of the target audience rating, if - available - - - - - A flag to signal that content has not been rated (if set to "true") - - - - - A flag to signal if content is adult content (if set to "true") or - not for easy identification - - - - - - - - - - - - - - - - - - - - - - - - - - - - An attribute to specify the unit in which the width is - expressed. - - - - - - - - - - - An attribute to specify the unit in which the width is - expressed. - - - - - - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - To express the width of an image - - - - - To express the height of an image - - - - - To express the orientation of the image - - - - - - - - - - - A string to define e.g. the ratio of the picture (the width by - the height), for instance '4:3' or '16:9' (rational). - - - - - Used to express the encoding parameters of the resource e.g. - jpg. - - - - - - - - - - - - - - - - - - - - - - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - - To define different widths of a video image e.g. display, active or else - - - - - - - - - - - - - To define different heights of a video image e.g. display, active or else - - - - - - - - - - - - The number of lines or resolution height e.g. 1080, 720, - etc. - - - - - the frequencey at which frames are sampled in frame per - second - - - - - A string to define e.g. the ratio of the picture (the width by - the height), for instance '4:3' or '16:9' (rational). - - - - - Used to express the encoding parameters of the resource e.g. - H264 for a video channel. - - - - - - - - To identify the product (hardware / software) used to encode - content in the specified encoding format - - - - - the video bit rate in bits per second - - - - - the video maximum bit rate in bits per second - - - - - To indicate if if the bit rate is constant or - variable - - - - - - - - - - - - - - - - - - - - - the order in which the image is scanned - - - - - - - - - - - - a flag to indicate if a noise filter has been - used - - - - - To describe the main features of video tracks such as in - mutliview systems - - - - - The track ID or track number - - - - - The track name - - - - - The type of video track e.g. particular view angle. - - - - - - - - A flag to indicate if the visual content is for stereoscopic - rendering - - - - - - - - - - - - - - - - - - - - - - - - To define the audio compression format of the resource e.g. AAC - for an audio channel. - - - - - - - - To identify the hardware / software used - - - - - To define the audio track configuration. Used to express the - arrangement or audio tracks e.g. 'stereo', '2+1', 'surround', 'surround - (7+1)' - - - - - - - - the frequency at which audio is being sampled in samples per - second - - - - - The size of each audio sample - - - - - The type of audio sample - - - - - - - - - - - the audio bit rate in bits per second - - - - - the audio maximum bit rate in bits per second - - - - - To indicate if if the bit rate is constant or - variable - - - - - - - - - - - - To describe the track allocation e.g. in conformance with EBU - R123 - - - - - The track language - - - - - The track number - - - - - The track name - - - - - The track type - - - - - - - the total number of audio channels - - - - - - - - - - - - - - - - - - - - - - - Used to provide information on the captioning format and purpose - - - - - To provide information to the language used for captioning - and its purpose - - - - - - The track number - - - - - The track name - - - - - A pointer to the file with the captioning / - subtitling. - - - - - - - Closed captioning if true - - - - - - To specify the purpose for captioning - - - - - To specify the captioning format - - - - - - - Used to provide information on the subtitling format and purpose, e.g. translation in a different language - - - - - To provide information to the language used for subtitling - and its purpose - - - - - - The track number - - - - - The track name - - - - - A pointer to the file with the captioning / - subtitling. - - - - - - - Closed subtitling if true - - - - - - To specify the purpose for subtitling - - - - - To specify the subtitling format - - - - - - - Used to provide information on ancillary data format and purpose. - This type provides inforamtion on the Ancillary Data packet type. See SMPTE - 291M, SMPTE 436M - - - - - - ANC DID Value. - - - - - ANC SDID Value. - - - - - Video line number containing the ANC packets of this - type. - - - - - Indicates HANC or VANC, and what field in which - packets should be stored. See SMPTE 436M for legal values. - - - - - - - - - - - - - - - - - - - - - - - - - - The track number - - - - - The track name - - - - - - - - - To provide a word count for the document - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimX uses the same unit as width. - - - - - The identification of a region in a document, an image or a video - is done by defining the coordinates of the bottom left corner of the region. - The region is defined from this point of reference using the width and - height properties. regionDelimY uses the same unit as - height. - - - - - The width of an image, video or document. - - - - - The height of an image, video or document. - - - - - - - - - - - - - - - - - - - - - - - - - the commercial name of the codec used - - - - - the commercial name of the codec used - - - - - the name of the vendor - - - - - the version of the product - - - - - the family of products to which the codec belongs - to - - - - - - - - - To express the start time using timecode compliant with SMPTE ST - 12-1:2008 - - - - - - - - - - To express the start time as a number of second in the form - HH:MM:SS.S - - - - - The express the start time as a number of edit Units - - - - - - To express the start time in a user defined time format e.g. in a - number of seconds - - - - - - - - - - - - - - - - - To express the duration using timecode compliant with SMPTE ST - 2021-1:2009 - - - - - - - - - - To express the duration in the format HH:MM:SS.S - - - - - The express the duration as a number of edit Units - - - - - - To express the duration in a user defined time format e.g. in a - number seconds - - - - - - - - - - - - - - - - - The value calculated for the hash code using the hash function - - - - - - The algorythm used to calculate the hash code associated with an - essence file - - - - - - - - - - - - To indicate the storage requirements or file size of a digital - resource. The file size is expressed in bytes. - - - - - The name of the file as it appears in the location path or url. - - - - - - Define the main MIME type as defined by IANA: e.g. audio, video, - text, application, or a container MIME type - - - - - - - - An "address for a resource". For an organisation or producer - acting as caretaker for a media resource, Format Location may contain - information about a specific shelf location for an asset, including an - organisation's name, departmental name, shelf id. and contact information. - The Format Location for a data file or web page may include a complete URI - with a domain, path, filename or html URL. Examples: "Archives Building A, - Row J, Shelf 2", "d://playout/server/content.mpg", - "http://www.ebu.ch/CorporateVideo.avi". The storage structure to be found at - the locator address may be complex and form of sub-directories e.g. for - video, audio and data. - - - - - - - The typeGroup can be used to define e.g. the - storage type from a predefined list. or as a term. The - definition can be used to provide any additional information - as deemed necessary e.g. on the location and/ or managing - entity. - - - - - - - - - A hash code to verify the integrity of an essence - file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - FrameLayout, VideoSamplingRaster, VideoEncoding - - - - - - - - - - - - - IEEE 754 floating point number - Boolean - - - - - - - - - - - - IEEE 754 floating point number - Floating - Point - - - - - - - - - - - - Signed 8 bit integer - Int8 - - - - - - - - - - - - Signed 16 bit integer - Int16 - - - - - - - - - - - - Signed 32 bit integer - Int32 - - - - - - - - - - - - Signed 64 bit integer - Int64 - - - - - - - - - - - - Unsigned 8 bit integer - UInt8 - - - - - - - - - - - - Unsigned 16 bit integer - UInt16 - - - - - - - - - - - - Unsigned 32 bit integer - Uint32 - - - - - - - - - - - - Unsigned 64 bit integer - Uint64 - - - - - - - - - - - - - - - A complex Type defining the structure of a technical attribute ot type - rational - - - - - - - - - - - - A complex Type defining the structure of a technical attribute ot type - rational - - - - - - - - - - - A complex Type defining the structure of a technical attribute ot type - rational - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/ebu/EBU_CORE_20130107.xsd.conf b/schemas/ebu/EBU_CORE_20130107.xsd.conf deleted file mode 100644 index e607314..0000000 --- a/schemas/ebu/EBU_CORE_20130107.xsd.conf +++ /dev/null @@ -1,113 +0,0 @@ -{ - "xsd": "EBU_CORE_20130107.xsd", - "namespaces": { - "ebucore": "urn:ebu:metadata-schema:ebuCore_2012", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "item": { - "element": "ebuCoreMain", - "prefix": "ebucore" - }, - - "paths": { - "item": "/ebuCoreMain"; - "label": "/ebuCoreMain/coreMetadata/title/text()"; - }, - - "version": "1.0", - - "groups": [ - { - "name": "Core Metadata", - "element": "coreMetadata" - }, - { - "name": "Metadata Provider", - "element": "metadataProvider" - } - ], - - "navigation": [ - { - "type": "template" - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Descriptive", - "include": [ - "ebucore:title", - "ebucore:alternativeTitle", - "ebucore:creator", - "ebucore:subject", - "ebucore:description", - "ebucore:publisher", - "ebucore:contributor", - "ebucore:date", - "ebucore:type", - "ebucore:identifier", - "ebucore:language", - "ebucore:coverage", - "ebucore:version", - "ebucore:publicationHistory", - "ebucore:rating" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Rights", - "include": [ - "ebucore:rights" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Technical", - "include": [ - "ebucore:format" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Relations", - "include": [ - "dc:source", - "ebucore:relation", - "ebucore:isVersionOf", - "ebucore:hasVersion", - "ebucore:hasPart", - "ebucore:isPartOf", - "ebucore:isReplacedBy", - "ebucore:replaces", - "ebucore:isRequiredBy", - "ebucore:requires", - "ebucore:hasTrackPart", - "ebucore:isReferencedBy", - "ebucore:references", - "ebucore:isFormatOf", - "ebucore:hasFormat", - "ebucore:isEpisodeOf", - "ebucore:isMemberOf" - ] - }, - { - "type": "group", - "name": "Core Metadata", - "label": "Part", - "include": [ - "ebucore:part" - ] - }, - { - "type": "group", - "name": "Metadata Provider" - } - ], - - "preview" : [], - "customization": "ebucore.groovy" -} diff --git a/schemas/ebu/simpledc20021212.xsd b/schemas/ebu/simpledc20021212.xsd deleted file mode 100644 index 755ae7f..0000000 --- a/schemas/ebu/simpledc20021212.xsd +++ /dev/null @@ -1,76 +0,0 @@ - - - - - Simple DC XML Schema, 2002-10-09 - by Pete Johnston (p.johnston@ukoln.ac.uk), - Carl Lagoze (lagoze@cs.cornell.edu), Andy Powell (a.powell@ukoln.ac.uk), - Herbert Van de Sompel (hvdsomp@yahoo.com). - This schema defines terms for Simple Dublin Core, i.e. the 15 - elements from the http://purl.org/dc/elements/1.1/ namespace, with - no use of encoding schemes or element refinements. - Default content type for all elements is xs:string with xml:lang - attribute available. - - Supercedes version of 2002-03-12. - Amended to remove namespace declaration for http://www.w3.org/XML/1998/namespace namespace, - and to reference lang attribute via built-in xml: namespace prefix. - xs:appinfo also removed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/ebu/xml.xsd b/schemas/ebu/xml.xsd deleted file mode 100644 index 273b245..0000000 --- a/schemas/ebu/xml.xsd +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - See http://www.w3.org/XML/1998/namespace.html and - http://www.w3.org/TR/REC-xml for information about this namespace. - - This schema document describes the XML namespace, in a form - suitable for import by other schema documents. - - Note that local names in this namespace are intended to be defined - only by the World Wide Web Consortium or its subgroups. The - following names are currently defined in this namespace and should - not be used with conflicting semantics by any Working Group, - specification, or document instance: - - base (as an attribute name): denotes an attribute whose value - provides a URI to be used as the base for interpreting any - relative URIs in the scope of the element on which it - appears; its value is inherited. This name is reserved - by virtue of its definition in the XML Base specification. - - lang (as an attribute name): denotes an attribute whose value - is a language code for the natural language of the content of - any element; its value is inherited. This name is reserved - by virtue of its definition in the XML specification. - - space (as an attribute name): denotes an attribute whose - value is a keyword indicating what whitespace processing - discipline is intended for the content of the element; its - value is inherited. This name is reserved by virtue of its - definition in the XML specification. - - Father (in any context at all): denotes Jon Bosak, the chair of - the original XML Working Group. This name is reserved by - the following decision of the W3C XML Plenary and - XML Coordination groups: - - In appreciation for his vision, leadership and dedication - the W3C XML Plenary on this 10th day of February, 2000 - reserves for Jon Bosak in perpetuity the XML name - xml:Father - - - - - This schema defines attributes and an attribute group - suitable for use by - schemas wishing to allow xml:base, xml:lang or xml:space attributes - on elements they define. - - To enable this, such a schema must import this schema - for the XML namespace, e.g. as follows: - <schema . . .> - . . . - <import namespace="http://www.w3.org/XML/1998/namespace" - schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> - - Subsequently, qualified reference to any of the attributes - or the group defined below will have the desired effect, e.g. - - <type . . .> - . . . - <attributeGroup ref="xml:specialAttrs"/> - - will define a type which will schema-validate an instance - element with any of those attributes - - - - In keeping with the XML Schema WG's standard versioning - policy, this schema document will persist at - http://www.w3.org/2001/03/xml.xsd. - At the date of issue it can also be found at - http://www.w3.org/2001/xml.xsd. - The schema document at that URI may however change in the future, - in order to remain compatible with the latest version of XML Schema - itself. In other words, if the XML Schema namespace changes, the version - of this document at - http://www.w3.org/2001/xml.xsd will change - accordingly; the version at - http://www.w3.org/2001/03/xml.xsd will not change. - - - - - - In due course, we should install the relevant ISO 2- and 3-letter - codes as the enumerated possible values . . . - - - - - - - - - - - - - - - See http://www.w3.org/TR/xmlbase/ for - information about this attribute. - - - - - - - - - - diff --git a/schemas/eclap/dc.xsd b/schemas/eclap/dc.xsd deleted file mode 100644 index 02330e6..0000000 --- a/schemas/eclap/dc.xsd +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - DCMES 1.1 XML Schema - XML Schema for http://purl.org/dc/elements/1.1/ namespace - - Created 2008-02-11 - - Created by - - Tim Cole (t-cole3@uiuc.edu) - Tom Habing (thabing@uiuc.edu) - Jane Hunter (jane@dstc.edu.au) - Pete Johnston (p.johnston@ukoln.ac.uk), - Carl Lagoze (lagoze@cs.cornell.edu) - - This schema declares XML elements for the 15 DC elements from the - http://purl.org/dc/elements/1.1/ namespace. - - It defines a complexType SimpleLiteral which permits mixed content - and makes the xml:lang attribute available. It disallows child elements by - use of minOcccurs/maxOccurs. - - However, this complexType does permit the derivation of other complexTypes - which would permit child elements. - - All elements are declared as substitutable for the abstract element any, - which means that the default type for all elements is dc:SimpleLiteral. - - - - - - - - This is the default type for all of the DC elements. - It permits text content only with optional - xml:lang attribute. - Text is allowed because mixed="true", but sub-elements - are disallowed because minOccurs="0" and maxOccurs="0" - are on the xs:any tag. - - This complexType allows for restriction or extension permitting - child elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The name given to the resource. Typically, a Title will be a name by which the resource is formally known. The title of the original analog or born digital object. - - - - - An entity primarily responsible for making the content of the resource. Examples of a Creator include a person, an organization, or a service. Typically the name of the Creator should be used to indicate the entity. In ECLAP, the name of Partner uploading is kept automatically in a separate field. This is the name of the creator of the original analog or born digital object. - - - - - The topic of the content of the resource. Typically, a Subject will be expressed as keywords or key phrases or classification codes that describe the topic of the resource. Recommended best practice is to select a value from your own classification scheme. This is the subject of the original analog or born digital object. - - - - - An account of the content of the resource. Description may include but is not limited to: an abstract, table of contents, reference to a graphical representation of content or a free-text account of the content. A description of the original analog or born digital object. - - - - - The entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. In ECLAP, the name of Partner that has provided the content is automatically tracked and stored in a different field. The name of the publisher of the original analog or born digital object. - - - - - An entity responsible for making contributions to the content of the resource. Examples of a Contributor include a person, an organization or a service. Typically, the name of a Contributor should be used to indicate the entity. In most cases, the authors of a document are listed here. The name of contributors to the original analog or born digital object. This could be a person, an organisation or a service. - - - - - A date associated with an event in the life cycle of the resource. Typically, Date will be associated with the creation or availability of the resource. Recommended best practice for encoding the date value is defined in a profile of ISO 8601 [Date and Time Formats, W3C Note, http://www.w3.org/TR/NOTE-datetime] and follows the YYYY-MM-DD format. If the full date is unknown, month and year (YYYY-MM) or just year (YYYY) may be used. Many other schemes are possible, but if used, they may not be easily interpreted by users or software. Use for a significant date in the life of the original analog or born digital object. Use dcterms:temporal (or dc:coverage) if the date is associated with the topic of the resource. - - - - - The nature or genre of the content of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Recommended best practice is to select a value from a controlled vocabulary (for example, the DCMIType vocabulary http://dublincore.org/documents/dcmi-type-vocabulary/ ). To describe the physical or digital manifestation of the resource, use the FORMAT element. The type of the original analog or born digital object as recorded by the content holder, this element typically includes values such as photograph, painting, sculpture etc. - - - - - The physical or digital manifestation of the resource. Typically, Format may include the media-type or dimensions of the resource. Examples of dimensions include size and duration. Format may be used to determine the software, hardware or other equipment needed to display or operate the resource. Recommended best practice is to select a value from a controlled vocabulary (for example, the list of Internet Media Types [http://www.iana.org/ assignments/media-types/] defining computer media formats). The unqualified element includes file format, physical medium or dimensions of the original and/or digital object. Use this element for the file format of the digital object or born digital originals. Internet Media Types [MIME] are highly recommended (http://www.iana.org/assignments/media-types/). Use of the more specific elements dcterms:extent (dimensions) and dcterms:medium (physical medium) is preferred where appropriate. - - - - - An unambiguous reference to the resource within a given context. Recommended best practice is to identify the resource by means of a string or number conforming to a formal identification system. Examples of formal identification systems include the Uniform Resource Identifier (URI) (including the Uniform Resource Locator (URL), the Digital Object Identifier (DOI) and the International Standard Book Number (ISBN). This is the identifier for the original analog or born digital object. - - - - - A Reference to a resource from which the present resource is derived. The present resource may be derived from the Source resource in whole or part. Recommended best practice is to reference the resource by means of a string or number conforming to a formal identification system. In general, include in this area information about a resource that is related intellectually to the described resource but does not fit easily into a Relation element. In ECLAP, this value should be the URL or the filename of the original resource. The file uploaded and the URL provided in the upload form are tracked automatically in different fields. This element can be used for several different types of source that are related to the object (such as reference sources). The name of the content holder should no longer be recorded here as a new element. - - - - - A language of the resource. The recommended best practice is to use a controlled vocabulary such as RFC 4646 (http://www.rfc-archive.org/getrfc.php?rfc=4646) which, in conjunction with ISO 639, defines two- and three-letter primary language tags. Either a coded value or text string can be represented here. Use this element for the language of textual objects and also where there is a language aspect to other objects e.g. sound recordings, posters, newspapers etc). If there is no language aspect to the digital object (e.g. a photograph), please ignore this element. This element is not for the language of the metadata of a resource, which may be described in xml:lang attribute. - - - - - A reference to a related resource. Recommended best practice is to reference the resource by means of a string or number conforming to a formal identification system. This is information about resources that are related to the original analog or born digital object. - - - - - The extent or scope of the content of the resource. Coverage will typically include spatial location (a place name or geographic co-ordinates), temporal period (a period label, date, or date range) or jurisdiction (such as a named administrative entity). Recommended best practice is to select a value from a controlled vocabulary (for example, the Thesaurus of Geographic Names [Getty Thesaurus of Geographic Names, http://www. getty.edu/research/tools/vocabulary/tgn/]). Where appropriate, named places or time periods should be used in preference to numeric identifiers such as sets of co-ordinates or date ranges. Coverage is the unqualified spatial or temporal coverage of the original analog or born digital object. Use of the more specific dcterms:spatial and dcterms:temporal elements is preferred where possible. - - - - - Information about rights held in and over the resource. Typically a Rights element will contain a rights management statement for the resource, or reference a service providing such information. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the rights element is absent, no assumptions can be made about the status of these and other rights with respect to the resource. This is a free text element and should be used for information about intellectual property rights or access arrangements for the digital object that is additional to the controlled value provided in europeana:rights. - - - - - - This group is included as a convenience for schema authors - who need to refer to all the elements in the - http://purl.org/dc/elements/1.1/ namespace. - - - - - - - - - - - - This complexType is included as a convenience for schema authors who need to define a root - or container element for all of the DC elements. - - - - - - - diff --git a/schemas/eclap/dcmitype.xsd b/schemas/eclap/dcmitype.xsd deleted file mode 100644 index fbaef24..0000000 --- a/schemas/eclap/dcmitype.xsd +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - DCMI Type Vocabulary XML Schema - XML Schema for http://purl.org/dc/dcmitype/ namespace - - Created 2008-02-11 - - Created by - - Tim Cole (t-cole3@uiuc.edu) - Tom Habing (thabing@uiuc.edu) - Jane Hunter (jane@dstc.edu.au) - Pete Johnston (p.johnston@ukoln.ac.uk), - Carl Lagoze (lagoze@cs.cornell.edu) - - This schema defines a simpleType which enumerates - the allowable values for the DCMI Type Vocabulary. - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/eclap/dcterms.xsd b/schemas/eclap/dcterms.xsd deleted file mode 100644 index 124a8b5..0000000 --- a/schemas/eclap/dcterms.xsd +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - DCterms XML Schema - XML Schema for http://purl.org/dc/terms/ namespace - - Created 2008-02-11 - - Created by - - Tim Cole (t-cole3@uiuc.edu) - Tom Habing (thabing@uiuc.edu) - Jane Hunter (jane@dstc.edu.au) - Pete Johnston (p.johnston@ukoln.ac.uk), - Carl Lagoze (lagoze@cs.cornell.edu) - - This schema declares XML elements for the DC elements and - DC element refinements from the http://purl.org/dc/terms/ namespace. - - It reuses the complexType dc:SimpleLiteral, imported from the dc.xsd - schema, which permits simple element content, and makes the xml:lang - attribute available. - - This complexType permits the derivation of other complexTypes - which would permit child elements. - - XML elements corresponding to DC elements are declared as substitutable for the abstract element dc:any, and - XML elements corresponding to DC element refinements are defined as substitutable for the base elements - which they refine. - - This means that the default type for all XML elements (i.e. corresponding to all DC elements and - element refinements) is dc:SimpleLiteral. - - Encoding schemes are defined as complexTypes which are restrictions - of the dc:SimpleLiteral complexType. These complexTypes restrict - values to an appropriates syntax or format using data typing, - regular expressions, or enumerated lists. - - In order to specify one of these encodings an xsi:type attribute must - be used in the instance document. - - Also, note that one shortcoming of this approach is that any type can be - applied to any of the elements or refinements. There is no convenient way - to restrict types to specific elements using this approach. - - Changes in 2008-02-11 version: - - Add element declarations corresponding to 15 new dcterms URIs, and amend use of substitutionGroups. - - Add compexType definitions corresponding to ISO639-3, RFC4646. - - - - - - - - - - - - - - - - - - - - - - - - An alternative name given to the resource. Typically, an Alternative title will be a name by which the resource is alternatively referred and it is different from the formal Title. Any alternative title by which the original analog or born digital object is known. This can include abbreviations or translations of the title. - - - - - A list of subunits of the resource. A list of the units within the original analog or born digital resource object. - - - - - An account of the content of the resource. Abstract is limited to a free-text account of the content. - - - - - Date of creation of the resource. This is the date when the original analog or born digital object was created. - - - - - Date (often a range) of validity of a resource. - - - - - - Date of formal issuance (e.g., publication) of the resource. The date when the original analog or born digital object was issued or published. - - - - - - Date of acceptance of the resource. Examples of resources to which a Date Accepted may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal). - - - - - - - The size or duration of the resource. Refinement of format. Size or duration of the digital object and the original object may be recorded. - - - - - The material or physical carrier of the resource. Refinement of dc:format. - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in content rather than differences in format. Refinement of dc:relation. See also dcterms:hasVersion. - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in content rather than differences in format. Refinement of dc:relation. See also dcterms:isVersionOf. Use dcterms:hasFormat for differences in format. - - - - - A related resource that supplants, displaces, or supersedes the described resource. - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. - - - - - A related resource that requires the described resource to support its function, delivery, or coherence. - - - - - A related resource that is required by the described resource to support its function, delivery, or coherence. - - - - - Is Part Of - A related resource in which the described resource is physically or logically included. Use for the name of the collection which the digital object is part of. - - - - - A related resource that is included either physically or logically in the described resource. Refinement of dc:relation. See also dcterms:isPartOf. - - - - - Is Referenced By: A related resource that references, cites, or otherwise points to the described resource. - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource. - - - - - A related resource that is substantially the same as the described resource, but in another format. Refinement of dc:relation. See also dcterms:hasFormat. - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Refinement of dc:relation. See also dcterms:isFormatOf. Use dcterms:hasVersion for differences in version. - - - - - An established standard to which the described resource conforms. Refinement of dc:relation. The names of standards that the digital object (digitized or born digital) complies with and which are useful for the use of the object. - - - - - Spatial characteristics of the resource. Information about the spatial characteristics of the original analog or born digital object, i.e. what the resource represents or depicts in terms of space. This may be a named place, a location, a spatial coordinate or a named administrative entity. - - - - - Temporal characteristics of the resource. The temporal characteristics of the original analog or born digital object i.e. what the resource is about or depicts in terms of time. This may be a period, date or date range. - - - - - A class of entity for whom the resource is intended or useful. A class of entity may be determined by the creator or the publisher or by a third party. Audience terms are best utilized in the context of formal or informal controlled vocabularies. None are presently recommended or registered by DCMI, but several communities of interest are engaged in setting up audience vocabularies. In the absence of recommended controlled vocabularies, implementors are encouraged to develop local lists of values, and to use them consistently. - - - - - - - - A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. Instructional Method will typically include ways of presenting instructional materials or conducting instructional activities, patterns of learner-to-learner and learner-to-instructor interactions, and mechanisms by which group and individual levels of learning are measured. Instructional methods include all aspects of the instruction and learning processes from planning and implementation through evaluation and feedback. - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. The statement may include a description of any changes successive custodians made to the resource. This relates to the ownership and custody of the original analog or born digital object. - - - - - A person or organization owning or managing rights over the resource. - - - - - An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. - - - - - - - A legal document giving official permission to do something with the resource. Reference or inclusion of the text. Typically a reference. In ECLAP, this field is strongly similar to the Europeana.rights that has a specific limited number of possible values. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This group is included as a convenience for schema authors - who need to refer to all the DC elements and element refinements - in the http://purl.org/dc/elements/1.1/ and - http://purl.org/dc/terms namespaces. - N.B. Refinements available via substitution groups. - - - - - - - - - - - - This is included as a convenience for schema authors who need to define a root - or container element for all of the DC elements and element refinements. - - - - - - - diff --git a/schemas/eclap/dcterms.xsd.conf b/schemas/eclap/dcterms.xsd.conf deleted file mode 100644 index 3bdbe9f..0000000 --- a/schemas/eclap/dcterms.xsd.conf +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": "1.0", - "xsd": "dcterms.xsd", - "namespaces": { - "dcterms": "http://purl.org/dc/terms/" - }, - - "item": { - "element": "record", - "prefix": "dc" - }, - - "groups": [ - { - "name": "Record", - "element": "record" - } - ] -} diff --git a/schemas/eclap/eclap-ingestion-v0-4.xsd b/schemas/eclap/eclap-ingestion-v0-4.xsd deleted file mode 100644 index 15f6046..0000000 --- a/schemas/eclap/eclap-ingestion-v0-4.xsd +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - type of content, basic, playlist or collection - - - - - - - - - - - - partner acronim providing the data - - - - - identifier of the content for the provider (used for aggregations) - - - - - url or filename of the content - - - - - identifier that may be used to aggregate different content e.g. content related to the same performance or to the same piece - - - - - name of the aggregation if not provided the aggregation id is used - - - - - free ID identifying the IPR model to be used for the content, content with same ID will use the same IPR model - - - - - information (e.g. email or url) to be shown to users to get detailed information on IPR of the content - - - - - the europeana rights url - - - - - - - - - - - - Name of the group performing - - - - - summary of the plot - - - - - - name of professional people in charge of specific roles - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Objects used in the performance, (i.e. Sets, Costumes, Props, Programs, Prints, Drawings,...) - - - - - The genre in which the work can be categorized - - - - - - Historical period in which a work has been created - - - - - Artistic movement and acting styles in which the work can be categorized - - - - - - Date of creaion of the digital object - - - - - Credits for the audio or video recording - - - - - Credits for the text or image - - - - - Credits of the production team - - - - - - - - - - name of the theatre or venue where the performance took place - - - - - name of the city where the performance took place - - - - - name of the country where the performance took place - - - - - date of the performance - - - - - diff --git a/schemas/eclap/eclap-ingestion-v0-4.xsd.conf b/schemas/eclap/eclap-ingestion-v0-4.xsd.conf deleted file mode 100644 index 0c36465..0000000 --- a/schemas/eclap/eclap-ingestion-v0-4.xsd.conf +++ /dev/null @@ -1,83 +0,0 @@ -{ - "version": "1.0", - "xsd": "eclap-ingestion-v0-4.xsd.conf", - "namespaces": { - "eclap": "http://www.eclap.eu/ECLAPSchemaV0", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/" - }, - - "wrap": { - "element": "ECLAPObjectWrap", - "prefix": "eclap" - }, - - "item": { - "element": "ECLAPObject", - "prefix": "eclap" - }, - - "paths": { - "item": "/ECLAPObjectWrap/ECLAPObject"; - "label": "/ECLAPObjectWrap/ECLAPObject/DC/title/text()"; - }, - - - "groups": [ - { - "name": "DC", - "element": "DC" - }, - { - "name": "DCTERMS", - "element": "DCTERMS" - }, - { - "name": "Technical Metadata", - "element": "TechnicalMetadata" - }, - { - "name": "Performing Arts Metadata", - "element": "PerformingArtsMetadata" - } - ], - - "navigation": [ - { - "type": "group", - "name": "DC" - }, - { - "type": "group", - "name": "DCTERMS" - }, - { - "type": "group", - "name": "Technical Metadata" - }, - { - "type": "group", - "name": "Performing Arts Metadata" - } - ], - - "preview": [ - { - "type": "xsl", - "xsl": "edm2ese.xsl", - "label": "ESE", - "preview": [ - { - "type": "html", - "label": "Europeana", - "class": "ESE2HTML" - } - ] - }, - { - "type": "rdf", - "label": "EDM RDF", - "class": "gr.ntua.ivml.mint.rdf.edm.EDM2RDFTransform" - } - ] -} diff --git a/schemas/eclap/eclap-ingestion-v0-5.xsd b/schemas/eclap/eclap-ingestion-v0-5.xsd deleted file mode 100644 index 939cace..0000000 --- a/schemas/eclap/eclap-ingestion-v0-5.xsd +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - type of content, basic, playlist or collection - - - - - - - - - - - - partner acronim providing the data - - - - - - - - - - - - - - - - - - - - - - - - - - - - - optional name of content provider (to be used if OTHER is set as ProviderID) - - - - - identifier of the content for the provider (used for aggregations) - - - - - url or filename of the content, use filename if you are providing content via HardDisk - - - - - identifier that may be used to aggregate different content e.g. content related to the same performance or to the same piece - - - - - name of the aggregation if not provided the aggregation id is used - - - - - free ID identifying the IPR model to be used for the content, content with same ID will use the same IPR model - - - - - information (e.g. email or url) to be shown to users to get detailed information on IPR of the content - - - - - the europeana rights url - - - - - - - - - - - - Name of the group performing - - - - - summary of the plot - - - - - - name of professional people in charge of specific roles - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Objects used in the performance, (i.e. Sets, Costumes, Props, Programs, Prints, Drawings,...) - - - - - The genre in which the work can be categorized - - - - - - Historical period in which a work has been created - - - - - Artistic movement and acting styles in which the work can be categorized - - - - - - Date of creaion of the digital object - - - - - Credits for the audio or video recording - - - - - Credits for the text or image - - - - - Credits of the production team - - - - - - - - - - name of the theatre or venue where the performance took place - - - - - name of the city where the performance took place - - - - - name of the country where the performance took place - - - - - date of the performance - - - - - diff --git a/schemas/eclap/eclap-ingestion-v0-5.xsd.conf b/schemas/eclap/eclap-ingestion-v0-5.xsd.conf deleted file mode 100644 index 1ca19b4..0000000 --- a/schemas/eclap/eclap-ingestion-v0-5.xsd.conf +++ /dev/null @@ -1,57 +0,0 @@ -{ - "version": "1.0", - "xsd": "eclap-ingestion-v0-5.xsd.conf", - "namespaces": { - "eclap": "http://www.eclap.eu/ECLAPSchemaV0", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/" - }, - "wrap": { - "element": "ECLAPObjectWrap", - "prefix": "eclap" - }, - "item": { - "element": "ECLAPObject", - "prefix": "eclap" - }, - "paths": { - "item": "/ECLAPObjectWrap/ECLAPObject", - "label": "/ECLAPObjectWrap/ECLAPObject/DC/title/text()" - }, - "groups": [ - { - "name": "DC", - "element": "DC" - }, - { - "name": "DCTERMS", - "element": "DCTERMS" - }, - { - "name": "Technical Metadata", - "element": "TechnicalMetadata" - }, - { - "name": "Performing Arts Metadata", - "element": "PerformingArtsMetadata" - } - ], - "navigation": [ - { - "type": "group", - "name": "DC" - }, - { - "type": "group", - "name": "DCTERMS" - }, - { - "type": "group", - "name": "Technical Metadata" - }, - { - "type": "group", - "name": "Performing Arts Metadata" - } - ] -} diff --git a/schemas/eclap/eclap-ingestion-v0-6a.xsd b/schemas/eclap/eclap-ingestion-v0-6a.xsd deleted file mode 100644 index 8450b2b..0000000 --- a/schemas/eclap/eclap-ingestion-v0-6a.xsd +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - type of content, basic, playlist or collection - - - - - - - - - - - - partner acronim providing the data - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - optional name of content provider (to be used if OTHER is set as ProviderID) - - - - - identifier of the content for the provider (used for aggregations) - - - - - url or filename of the content, use filename if you are providing content via HardDisk - - - - - identifier that may be used to aggregate different content e.g. content related to the same performance or to the same piece - - - - - name of the aggregation if not provided the aggregation id is used - - - - - free ID identifying the IPR model to be used for the content, content with same ID will use the same IPR model - - - - - information (e.g. email or url) to be shown to users to get detailed information on IPR of the content - - - - - the europeana rights url - - - - - - - - - - - - Name of the group performing - - - - - summary of the plot - - - - - Members of the cast, use if cannot use Professional - - - - - Performers and Crew for the performance, use if cannot use Professional - - - - - name of professional people in charge of specific roles - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Objects used in the performance, (i.e. Sets, Costumes, Props, Programs, Prints, Drawings,...) - - - - - The genre in which the work can be categorized - - - - - - Historical period in which a work has been created - - - - - Artistic movement and acting styles in which the work can be categorized - - - - - - Date of creaion of the digital object - - - - - Credits for the audio or video recording - - - - - Credits for the text or image - - - - - Credits of the production team - - - - - - - - - - name of the theatre or venue where the performance took place - - - - - name of the city where the performance took place - - - - - name of the country where the performance took place - - - - - date of the performance - - - - - diff --git a/schemas/eclap/eclap-ingestion-v0-6a.xsd.conf b/schemas/eclap/eclap-ingestion-v0-6a.xsd.conf deleted file mode 100644 index feb8b15..0000000 --- a/schemas/eclap/eclap-ingestion-v0-6a.xsd.conf +++ /dev/null @@ -1,57 +0,0 @@ -{ - "version": "1.0", - "xsd": "eclap-ingestion-v0-6a.xsd.conf", - "namespaces": { - "eclap": "http://www.eclap.eu/ECLAPSchemaV0", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/" - }, - "wrap": { - "element": "ECLAPObjectWrap", - "prefix": "eclap" - }, - "item": { - "element": "ECLAPObject", - "prefix": "eclap" - }, - "paths": { - "item": "/ECLAPObjectWrap/ECLAPObject", - "label": "/ECLAPObjectWrap/ECLAPObject/DC/title/text()" - }, - "groups": [ - { - "name": "DC", - "element": "DC" - }, - { - "name": "DCTERMS", - "element": "DCTERMS" - }, - { - "name": "Technical Metadata", - "element": "TechnicalMetadata" - }, - { - "name": "Performing Arts Metadata", - "element": "PerformingArtsMetadata" - } - ], - "navigation": [ - { - "type": "group", - "name": "DC" - }, - { - "type": "group", - "name": "DCTERMS" - }, - { - "type": "group", - "name": "Technical Metadata" - }, - { - "type": "group", - "name": "Performing Arts Metadata" - } - ] -} diff --git a/schemas/eclap/xml.xsd b/schemas/eclap/xml.xsd deleted file mode 100644 index 273b245..0000000 --- a/schemas/eclap/xml.xsd +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - See http://www.w3.org/XML/1998/namespace.html and - http://www.w3.org/TR/REC-xml for information about this namespace. - - This schema document describes the XML namespace, in a form - suitable for import by other schema documents. - - Note that local names in this namespace are intended to be defined - only by the World Wide Web Consortium or its subgroups. The - following names are currently defined in this namespace and should - not be used with conflicting semantics by any Working Group, - specification, or document instance: - - base (as an attribute name): denotes an attribute whose value - provides a URI to be used as the base for interpreting any - relative URIs in the scope of the element on which it - appears; its value is inherited. This name is reserved - by virtue of its definition in the XML Base specification. - - lang (as an attribute name): denotes an attribute whose value - is a language code for the natural language of the content of - any element; its value is inherited. This name is reserved - by virtue of its definition in the XML specification. - - space (as an attribute name): denotes an attribute whose - value is a keyword indicating what whitespace processing - discipline is intended for the content of the element; its - value is inherited. This name is reserved by virtue of its - definition in the XML specification. - - Father (in any context at all): denotes Jon Bosak, the chair of - the original XML Working Group. This name is reserved by - the following decision of the W3C XML Plenary and - XML Coordination groups: - - In appreciation for his vision, leadership and dedication - the W3C XML Plenary on this 10th day of February, 2000 - reserves for Jon Bosak in perpetuity the XML name - xml:Father - - - - - This schema defines attributes and an attribute group - suitable for use by - schemas wishing to allow xml:base, xml:lang or xml:space attributes - on elements they define. - - To enable this, such a schema must import this schema - for the XML namespace, e.g. as follows: - <schema . . .> - . . . - <import namespace="http://www.w3.org/XML/1998/namespace" - schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> - - Subsequently, qualified reference to any of the attributes - or the group defined below will have the desired effect, e.g. - - <type . . .> - . . . - <attributeGroup ref="xml:specialAttrs"/> - - will define a type which will schema-validate an instance - element with any of those attributes - - - - In keeping with the XML Schema WG's standard versioning - policy, this schema document will persist at - http://www.w3.org/2001/03/xml.xsd. - At the date of issue it can also be found at - http://www.w3.org/2001/xml.xsd. - The schema document at that URI may however change in the future, - in order to remain compatible with the latest version of XML Schema - itself. In other words, if the XML Schema namespace changes, the version - of this document at - http://www.w3.org/2001/xml.xsd will change - accordingly; the version at - http://www.w3.org/2001/03/xml.xsd will not change. - - - - - - In due course, we should install the relevant ISO 2- and 3-letter - codes as the enumerated possible values . . . - - - - - - - - - - - - - - - See http://www.w3.org/TR/xmlbase/ for - information about this attribute. - - - - - - - - - - diff --git a/schemas/edm-old/AGGREGATION.xsd b/schemas/edm-old/AGGREGATION.xsd deleted file mode 100644 index 9f6dd62..0000000 --- a/schemas/edm-old/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/CONTEXTS.xsd b/schemas/edm-old/CONTEXTS.xsd deleted file mode 100644 index b04f067..0000000 --- a/schemas/edm-old/CONTEXTS.xsd +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible. Example:Leonardo da - Vinci, the British Museum, W3C - - - - - - - - - - - - - - An “extent in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter” (CIDOC CRM) Example:the region of - space occupied by Rome today, the region of space occupied by the United Kingdom today, the region of space occupied by the Republic of Crimea in 1945 - - - - - - - - - - - - - - - - The class of “abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration” (CIDOC CRM) Example:2001-12-31, 01.01.01 – 02.02.02, 1503 – - 1506 (the time span of the creation of Mona Lisa) - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/DC.xsd b/schemas/edm-old/DC.xsd deleted file mode 100644 index 68b5a86..0000000 --- a/schemas/edm-old/DC.xsd +++ /dev/null @@ -1 +0,0 @@ - EDM First Implementation Schema: DC Technical contact: Borys Omelayenko Modelling contact: An entity responsible for making contributions to the resource. Example: Maria Callas Type: String The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: 1995-1996 Boston, MA Type: String An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: Shakespeare, William Type: String A point or period of time associated with an event in the lifecycle of the resource. Example: 17th century (For example the date when an object was repaired) Type: String An account of the resource. Example: Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low visibility conditions. Type: String identifier The file format, physical medium or dimensions of the resource. Example: image/jpeg Type: String A language of the resource. Example: it Type: String An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: Oxford University Press Type: String A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: maps.crace.1/33 (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String A related resource from which the described resource is derived in whole or in part. Example: Security Magazine pp 3-12 BAM portal Type: String The topic of the resource. Example: submarine Type: String A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: Taal vitaal Type: String The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: painting photograph coin Type: String Information about copyright of the original object. Example: Creative Commons Attribution 3.0 License Type: String \ No newline at end of file diff --git a/schemas/edm-old/DCTERMS.xsd b/schemas/edm-old/DCTERMS.xsd deleted file mode 100644 index 8a062de..0000000 --- a/schemas/edm-old/DCTERMS.xsd +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/EDM-MAIN.xsd b/schemas/edm-old/EDM-MAIN.xsd deleted file mode 100644 index e95b0ce..0000000 --- a/schemas/edm-old/EDM-MAIN.xsd +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/EDM.xml b/schemas/edm-old/EDM.xml deleted file mode 100644 index a342079..0000000 --- a/schemas/edm-old/EDM.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - Important art object - Paris - First sample EDM object - Medieval - Acryl Painter - WRONG - IMAGE - - - - Free access granted by Small Art Museum - - - - - Painter The Great - - - - Paris - - - - Middle Ages - - - - Horse - - - - Another important art object - Lyon - Second sample EDM object - Modern - Oil Painter - - IMAGE - - - \ No newline at end of file diff --git a/schemas/edm-old/EDM.xsd b/schemas/edm-old/EDM.xsd deleted file mode 100644 index 6455162..0000000 --- a/schemas/edm-old/EDM.xsd +++ /dev/null @@ -1 +0,0 @@ - EDM First Implementation Schema: wrapped up as RDF/XML Technical contact: Borys Omelayenko \ No newline at end of file diff --git a/schemas/edm-old/EDM.xsd.conf b/schemas/edm-old/EDM.xsd.conf deleted file mode 100644 index 43e084c..0000000 --- a/schemas/edm-old/EDM.xsd.conf +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "customization": "edm.groovy", - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/edm-old/ENRICHMENT.xsd b/schemas/edm-old/ENRICHMENT.xsd deleted file mode 100644 index bfb7006..0000000 --- a/schemas/edm-old/ENRICHMENT.xsd +++ /dev/null @@ -1 +0,0 @@ - EDM First Implementation Schema: Who-What-When-Where enrichments Technical contact: Borys Omelayenko \ No newline at end of file diff --git a/schemas/edm-old/OWL.xsd b/schemas/edm-old/OWL.xsd deleted file mode 100644 index 0f62e6a..0000000 --- a/schemas/edm-old/OWL.xsd +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - Technical contact: Borys Omelayenko - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/RDF.xsd b/schemas/edm-old/RDF.xsd deleted file mode 100644 index 4dd47e0..0000000 --- a/schemas/edm-old/RDF.xsd +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/SKOS.xsd b/schemas/edm-old/SKOS.xsd deleted file mode 100644 index 5d0de99..0000000 --- a/schemas/edm-old/SKOS.xsd +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm-old/WGS84.xsd b/schemas/edm-old/WGS84.xsd deleted file mode 100644 index 96b7fe7..0000000 --- a/schemas/edm-old/WGS84.xsd +++ /dev/null @@ -1 +0,0 @@ - EDM First Implementation Schema: WGS84 coordinates Technical contact: Borys Omelayenko \ No newline at end of file diff --git a/schemas/edm/CONTEXTS.xsd b/schemas/edm/CONTEXTS.xsd deleted file mode 100644 index c5d6f4e..0000000 --- a/schemas/edm/CONTEXTS.xsd +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 - 02.02.02, 1503 - 1506 (the time span of the creation of Mona Lisa) - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - The element dcterms:isPartOf should not have a literal value in the edm:WebResource context - with id: . Use an rdf:resource instead. - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/DC.xsd b/schemas/edm/DC.xsd deleted file mode 100644 index 9b27773..0000000 --- a/schemas/edm/DC.xsd +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library's Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/edm/DCTERMS.xsd b/schemas/edm/DCTERMS.xsd deleted file mode 100644 index 4d76bfd..0000000 --- a/schemas/edm/DCTERMS.xsd +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart's Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer's Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/EDM-COMMON-MAIN.xsd b/schemas/edm/EDM-COMMON-MAIN.xsd deleted file mode 100644 index 6d29a5b..0000000 --- a/schemas/edm/EDM-COMMON-MAIN.xsd +++ /dev/null @@ -1,577 +0,0 @@ - - - - - - - - - - - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - The beginning of a temporal period - - - - - - This is the name of the country in which the Provider is based or - "Europe" in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A literal indicating the name of the collection - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - The ending of a temporal period - - - - - - The EDM Content Type - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of "meetings" between people - and other things in space-time. Therefore we name this relationship as the things - the object "has met" in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the "Objects" facet in Getty's Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of "Le Temps" contributed by BNF may have as view a text of some parts of - the issue - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie "A Clockwork Orange" incorporates - Rossini's symphony from "La Gazza Ladra" in its original soundtrack. "E.A.Poe, The - Raven (poem)" is incorporated in "Emerson Lake & Palmers Tales of Mystery - (music)" which is incorporated in "Concert Recording 1973 (vinyl)". - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - An unambiguous URL reference to the digital object on the provider's web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider's web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - An unambiguous URL reference to the digital object on the provider's web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider's website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole - such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider's web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - - A reference to the Europeana cached thumbnail. - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg's edition realizes the Bible - - - - - - - Information about copyright of the digital object as specified by - isShownBy and isShownAt.The value in this element is a URL constructed according to - the specifications in the "Specifications of the controlled values for edm:rights". - The URLs are constructed by adding a code indicating the copyright status of an - object to the domain name where that status is defined. The domain will be either - the europeana.eu domain or the creativecommons.org domain. For users of Europeana.eu - this copyright information also applies to the preview specified in edm:object. In - order to allow organisations to manage the provision of this element, edm:rights has - an obligation level of "recommended" in this version of EDM. It will be changed to - "Mandatory" in a later version. - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is "TRUE" to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - A flag indicating that the specific Proxy can be used as a europeanaProxy - - - - - diff --git a/schemas/edm/EDM-EXTERNAL-MAIN.xsd b/schemas/edm/EDM-EXTERNAL-MAIN.xsd deleted file mode 100644 index ffbe6ee..0000000 --- a/schemas/edm/EDM-EXTERNAL-MAIN.xsd +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - The RDF root element declaration - - - Schematron validation - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana - collects descriptions about. - - - - - - id: - - A ProvidedCHO must have a dc:subject or dc:type or dc:coverage or dct:temporal or dct:spatial. - - - id: - A ProvidedCHO must have a dc:title or dc:description. - - - id: - dc:language is mandatory for TEXT objects. - - - - - - - - - - - - - - - diff --git a/schemas/edm/EDM-INTERNAL-MAIN.xsd b/schemas/edm/EDM-INTERNAL-MAIN.xsd deleted file mode 100644 index 13afc08..0000000 --- a/schemas/edm/EDM-INTERNAL-MAIN.xsd +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - The RDF root element declaration - - - Schematron validation - - - - - - - - - - - - - - - - - - - - - - - - - - The set of resources related to a single cultural heritage object that - collectively represent that object in Europeana. Such set consists of: all - descriptions about the object that Europeana collects from (possibly different) - content providers, including thumbnails and other forms of abstractions, as well as - of the description of the object Europeana builds. - - - - - Empty rdf:about values are not allowed - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that - Europeana collects descriptions about. - - - - - - - - - diff --git a/schemas/edm/EDM-INTERNAL.xsd b/schemas/edm/EDM-INTERNAL.xsd deleted file mode 100644 index eedf248..0000000 --- a/schemas/edm/EDM-INTERNAL.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML (For Europeana Internal Use Only) - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/EDM-INTERNAL.xsd.conf b/schemas/edm/EDM-INTERNAL.xsd.conf deleted file mode 100644 index 2ab47bb..0000000 --- a/schemas/edm/EDM-INTERNAL.xsd.conf +++ /dev/null @@ -1,81 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM-INTERNAL.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - "item": { - "element": "RDF", - "prefix": "edm" - }, - "customization": "edm.groovy", - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about", - "/RDF/Proxy/@about" - ], - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - }, - { - "name": "Proxy", - "element": "Proxy" - }, - { - "name": "EuropeanaAggregation", - "element": "EuropeanaAggregation" - } - ], - "preview": [ - { - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "hide": true, - "preview": [ - { - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - } - ] - } - ] -} diff --git a/schemas/edm/EDM.xml b/schemas/edm/EDM.xml deleted file mode 100644 index 134ce50..0000000 --- a/schemas/edm/EDM.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - #ULEI:M0003309 - - ca. 1890/1930 - Kessel aus einem Stück, mit Loch am Boden sowie am oberen Rand mit 6 eingeschraubten Ösen. Kessel auf einer Höhe von 150 (von unten) nach innen gebogen, so dass - sich ein breiter Rand ergibt. Fell über einen Wickelreifen gelegt. Separater Spannreifen Messing, mit 6 Ösen und Spannschrauben. Schrauben mit Vierkantkopf. Spuren einer Halterung mit - 4 Niten vorhanden (Instrument war sicher am Gürtel oder am Pferdesattel o.ä. befestigt).Birgit Heise, Volker F.Seumel - kleine Pauke - Kesselpäuklein - - - IMAGE - - - © Museum für Musikinstrumente der Universität Leipzig, Foto: Karin Kranich - - - - Asien - wohl Asien - - - Kettledrum - - - 211.11 (Separate) vessel drums - - - - Museum für Musikinstrumente der Universität Leipzig - - - - - MIMO - Musical Instrument Museums Online - - - diff --git a/schemas/edm/EDM.xsd b/schemas/edm/EDM.xsd deleted file mode 100644 index 1fa4258..0000000 --- a/schemas/edm/EDM.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/edm/EDM.xsd.conf b/schemas/edm/EDM.xsd.conf deleted file mode 100644 index 0818a88..0000000 --- a/schemas/edm/EDM.xsd.conf +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "customization": "edm.groovy", - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about" - ], - - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2html.xsl", - "label": "Europeana", - "output": "html" - }] -} diff --git a/schemas/edm/EDMApproach1.xml b/schemas/edm/EDMApproach1.xml deleted file mode 100644 index 966d1b3..0000000 --- a/schemas/edm/EDMApproach1.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - 108_0851b - The Parthenon - IMAGE - - - - - - IVML - - - Petros Katsaros - - - diff --git a/schemas/edm/ENRICHMENT.xsd b/schemas/edm/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/edm/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/FOAF.xsd b/schemas/edm/FOAF.xsd deleted file mode 100644 index 0af9903..0000000 --- a/schemas/edm/FOAF.xsd +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - diff --git a/schemas/edm/KNOWNISSUES.txt b/schemas/edm/KNOWNISSUES.txt deleted file mode 100644 index 3707e56..0000000 --- a/schemas/edm/KNOWNISSUES.txt +++ /dev/null @@ -1,32 +0,0 @@ -Issues and comments on EDM schema XSD files, 12-07-04 --- Antoine Isaac - -====================== Disclaimer - -This document just draws a flat lists the issues and questions raised, in a flat way. Some issues are merely cosmetic, like the presence of element type, which are in fact not used. Others are more important, as they should impact (marginally, though) the way we communicate on EDM with data providers. - - -====================== Cardinality - -- problem of cardinality and order of sub-elements. Our templates specify min and max occurrences [1]. To represent them in XML schema, one must also constrain the order of the elements representing these properties, which is done in NTUA's schema. Personally, I'd favor dropping all occurrence constraints so as NOT to have an order constraint on elements. But some (Borys and Nicola) seem to prefer keeping the constraints, and putting a sequence. -Note that we can make different decisions, for different parts of the schema. -[1] http://europeanalabs.eu/wiki/EDMObjectTemplatesProviders - -For contextual resources: --- skos:prefLabel (currently maxOccurs="unbounded" minOccurs="0") should have a miximum occurrence of 1 *per language tag*. This might be just impossible to implement in XML schema in fact. - -======================= Documentation regarding usage in external tools -- Add specific information to the providers regarding the use of the EDM XSD schema in various tools or APIs - -- Validating a file in Oxygen XML editor -Select the Document/Validate/Validation Options menu entry. There in the XML Parser Features sections check the -"http://apache.org/xml/features/honour-all-schemaLocations" option. This instructs the parser to include the elements declared in all other files that are imported by EDM.xsd. -Then select the EDM.xml file and "Document/Validate/Validate with" option and poit it to the localy stored or remote URI location of the EDM.xsd file. - -- Validating an XML Document via the JAXP Java API -If you are using JAXP to validate your EDM data in you application, you should set the same values. - -DocumentBuilderFactory factory= DocumentBuilderFactory.newInstance(); - -factory.setFeature("http://apache.org/xml/features/validation/schema-full-checking", false); -factory.setFeature("http://apache.org/xml/features/honour-all-schemaLocations", true); \ No newline at end of file diff --git a/schemas/edm/LIDO2EDM.xml b/schemas/edm/LIDO2EDM.xml deleted file mode 100644 index 559d152..0000000 --- a/schemas/edm/LIDO2EDM.xml +++ /dev/null @@ -1,182 +0,0 @@ - - - - - Daum fivérek üveggyára, Nancy - Michel, Eugéne - - Daum fivérek üveggyára, Nancy - 1890/1900 - NTUA test description - Περιγραφή - - 53.382.1. - - Daum fivérek üveggyára, Nancy publisher - NTUA - Rights Work Wrap - - subject - Díszüveg - - - Classification - Classification 2 - szecesszió - - - glassware - glassware PPRefiningObjectType - Alternative Díszüveg - 1890/1900 - - - üveg material - üveg - Museum of Applied Arts, Budapest - Nancy - Nancy - IMAGE - - - - - Daum fivérek üveggyára, Nancy publisher - Michel, Eugéne publisher - - - Daum fivérek üveggyára, Nancy - Michel, Eugéne - - - Daum fivérek üveggyára, Nancy - Michel, Eugéne - - - glassware - - - glassware PPRefiningObjectType - - - Classification - - - Classification 2 - - - üveg material - - - üveg - - - üveg technique - - - subject - - - - Museum of Applied Arts, Budapest - - - - Partage Plus - - - - - Daum fivérek üveggyára, Nancy - Michel, Eugéne - - Daum fivérek üveggyára, Nancy - 1890/1900 - NTUA test description - - 53.382.1. - - Daum fivérek üveggyára, Nancy publisher - NTUA - Rights Work Wrap - - subject - Díszüveg - - - Classification - Classification 2 - szecesszió - - - glassware - glassware PPRefiningObjectType - Alternative Díszüveg - 1890/1900 - - - üveg material - üveg - Museum of Applied Arts, Budapest - Nancy - Nancy - IMAGE - - - - - Daum fivérek üveggyára, Nancy publisher - Michel, Eugéne publisher - - - Daum fivérek üveggyára, Nancy - Michel, Eugéne - - - Daum fivérek üveggyára, Nancy - Michel, Eugéne - - - glassware - - - glassware PPRefiningObjectType - - - Classification - - - Classification 2 - - - üveg material - - - üveg - - - üveg technique - - - subject - - - - Museum of Applied Arts, Budapest - - - - Partage Plus - - - diff --git a/schemas/edm/ORE.xsd b/schemas/edm/ORE.xsd deleted file mode 100644 index 9b6d6ac..0000000 --- a/schemas/edm/ORE.xsd +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - A set of related resources (Aggregated Resources), grouped together - such that the set can be treated as a single resource. This is the entity - described within the ORE interoperability framework by a Resource Map. - - - - id: An ore:Aggregation must have either - edm:isShownAt or edm:isShownBy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A proxy is a resource that stands for an aggregated resource A in - the context of a specific aggregation. The URI of a proxy then can be used - in assertions specific to the aggregated resource A in the context of that - aggregation (http://www.openarchives.org/ore/1.0/primer.html). - - - - id: - A Proxy must have a - dc:subject or dc:type or dc:coverage or dct:temporal or - dct:spatial. - id: - A Proxy must have a dc:title or - dc:description. - id: - Within a Proxy - context, dc:language is mandatory when dc:language has the value - 'TEXT'. - id: - edm:type should be present in an ore:Proxy context. - - id: - edm:type should not be present in an Europeana Proxy context - (when the edm:europeanaProxy value is present). - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/edm/OWL.xsd b/schemas/edm/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/edm/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/edm/RDAGR2.xsd b/schemas/edm/RDAGR2.xsd deleted file mode 100644 index a0a06dc..0000000 --- a/schemas/edm/RDAGR2.xsd +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/edm/RDF.xsd b/schemas/edm/RDF.xsd deleted file mode 100644 index c70b051..0000000 --- a/schemas/edm/RDF.xsd +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - EDM First Implementation Schema: RDF resources and literals - - - - - - - - - - - - Empty rdf:resource attribute is not allowed for element. - - - - - - - - - - - - - - - Empty rdf:about attribute is not allowed for element. - - - - - - - - - - - - - - - Empty xml:lang attribute is not allowed for element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Element should not have both rdf:resource attribute and text value populated. - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/SKOS.xsd b/schemas/edm/SKOS.xsd deleted file mode 100644 index 1d16b22..0000000 --- a/schemas/edm/SKOS.xsd +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/The Parthenon2EDM.xml b/schemas/edm/The Parthenon2EDM.xml deleted file mode 100644 index 473274e..0000000 --- a/schemas/edm/The Parthenon2EDM.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - The Parthenon - - IMAGE - - - - - Petros Katsaros - - - IVML - - - Athens, Greece - - - 2013-09-14 - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edm/WGS84.xsd b/schemas/edm/WGS84.xsd deleted file mode 100644 index c97079d..0000000 --- a/schemas/edm/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/AGGREGATION.xsd b/schemas/edmApproach1/AGGREGATION.xsd deleted file mode 100644 index 9f6dd62..0000000 --- a/schemas/edmApproach1/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/CONTEXTS.xsd b/schemas/edmApproach1/CONTEXTS.xsd deleted file mode 100644 index 6006a6c..0000000 --- a/schemas/edmApproach1/CONTEXTS.xsd +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/DC.xsd b/schemas/edmApproach1/DC.xsd deleted file mode 100644 index 165924c..0000000 --- a/schemas/edmApproach1/DC.xsd +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/DCTERMS.xsd b/schemas/edmApproach1/DCTERMS.xsd deleted file mode 100644 index b47c80c..0000000 --- a/schemas/edmApproach1/DCTERMS.xsd +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/EDM-COMMON-MAIN_Approach1.xsd b/schemas/edmApproach1/EDM-COMMON-MAIN_Approach1.xsd deleted file mode 100644 index 562cc7d..0000000 --- a/schemas/edmApproach1/EDM-COMMON-MAIN_Approach1.xsd +++ /dev/null @@ -1,487 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/edmApproach1/EDM-EXTERNAL-MAIN_Approach1.xsd b/schemas/edmApproach1/EDM-EXTERNAL-MAIN_Approach1.xsd deleted file mode 100644 index f84c796..0000000 --- a/schemas/edmApproach1/EDM-EXTERNAL-MAIN_Approach1.xsd +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/edmApproach1/EDM-MAIN.xsd b/schemas/edmApproach1/EDM-MAIN.xsd deleted file mode 100644 index e95b0ce..0000000 --- a/schemas/edmApproach1/EDM-MAIN.xsd +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/EDM_Approach1.xsd b/schemas/edmApproach1/EDM_Approach1.xsd deleted file mode 100644 index 736ed23..0000000 --- a/schemas/edmApproach1/EDM_Approach1.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/edmApproach1/EDM_Approach1.xsd.conf b/schemas/edmApproach1/EDM_Approach1.xsd.conf deleted file mode 100644 index 85b7851..0000000 --- a/schemas/edmApproach1/EDM_Approach1.xsd.conf +++ /dev/null @@ -1,81 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDMApproach1.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "customization": "edm.groovy", - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ "http://dummyUri/", { type: "id" } ], - "/RDF/Aggregation/@about": [ "http://dummyUri/", "Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ "http://dummyUri/", { type: "id" } ] - }, - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about", - "/RDF/Aggregation/aggregatedCHO" - ], - - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/edmApproach1/ENRICHMENT.xsd b/schemas/edmApproach1/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/edmApproach1/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/FOAF.xsd b/schemas/edmApproach1/FOAF.xsd deleted file mode 100644 index 0af9903..0000000 --- a/schemas/edmApproach1/FOAF.xsd +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - diff --git a/schemas/edmApproach1/ORE.xsd b/schemas/edmApproach1/ORE.xsd deleted file mode 100644 index dd3276e..0000000 --- a/schemas/edmApproach1/ORE.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/OWL.xsd b/schemas/edmApproach1/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/edmApproach1/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/RDAGR2.xsd b/schemas/edmApproach1/RDAGR2.xsd deleted file mode 100644 index edd284e..0000000 --- a/schemas/edmApproach1/RDAGR2.xsd +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/edmApproach1/RDF.xsd b/schemas/edmApproach1/RDF.xsd deleted file mode 100644 index 4ee7cdb..0000000 --- a/schemas/edmApproach1/RDF.xsd +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/SKOS.xsd b/schemas/edmApproach1/SKOS.xsd deleted file mode 100644 index 5d0e4fd..0000000 --- a/schemas/edmApproach1/SKOS.xsd +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach1/WGS84.xsd b/schemas/edmApproach1/WGS84.xsd deleted file mode 100644 index 9a4995e..0000000 --- a/schemas/edmApproach1/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/AGGREGATION.xsd b/schemas/edmApproach2/AGGREGATION.xsd deleted file mode 100644 index 8828df7..0000000 --- a/schemas/edmApproach2/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/CONTEXTS.xsd b/schemas/edmApproach2/CONTEXTS.xsd deleted file mode 100644 index ae8eee6..0000000 --- a/schemas/edmApproach2/CONTEXTS.xsd +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/DC.xsd b/schemas/edmApproach2/DC.xsd deleted file mode 100644 index 93647e6..0000000 --- a/schemas/edmApproach2/DC.xsd +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/DCTERMS.xsd b/schemas/edmApproach2/DCTERMS.xsd deleted file mode 100644 index 8429eee..0000000 --- a/schemas/edmApproach2/DCTERMS.xsd +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/EDM-COMMON-MAIN_Approach2.xsd b/schemas/edmApproach2/EDM-COMMON-MAIN_Approach2.xsd deleted file mode 100644 index c651e6e..0000000 --- a/schemas/edmApproach2/EDM-COMMON-MAIN_Approach2.xsd +++ /dev/null @@ -1,531 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/edmApproach2/EDM-EXTERNAL-MAIN_Approach2.xsd b/schemas/edmApproach2/EDM-EXTERNAL-MAIN_Approach2.xsd deleted file mode 100644 index e1b96c4..0000000 --- a/schemas/edmApproach2/EDM-EXTERNAL-MAIN_Approach2.xsd +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/edmApproach2/EDM-EXTERNAL-MAIN_Approach2Final.xsd b/schemas/edmApproach2/EDM-EXTERNAL-MAIN_Approach2Final.xsd deleted file mode 100644 index 8bad264..0000000 --- a/schemas/edmApproach2/EDM-EXTERNAL-MAIN_Approach2Final.xsd +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/edmApproach2/EDM-MAIN.xsd b/schemas/edmApproach2/EDM-MAIN.xsd deleted file mode 100644 index a5d4d2b..0000000 --- a/schemas/edmApproach2/EDM-MAIN.xsd +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/EDM_Approach2.xsd b/schemas/edmApproach2/EDM_Approach2.xsd deleted file mode 100644 index 17c0bb0..0000000 --- a/schemas/edmApproach2/EDM_Approach2.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/edmApproach2/EDM_Approach2.xsd.conf b/schemas/edmApproach2/EDM_Approach2.xsd.conf deleted file mode 100644 index 5a1331a..0000000 --- a/schemas/edmApproach2/EDM_Approach2.xsd.conf +++ /dev/null @@ -1,81 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM_Approach2.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "customization": "edm.groovy", - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ "http://dummyUri/", { type: "id" } ], - "/RDF/Aggregation/@about": [ "http://dummyUri/", "Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ "http://dummyUri/", { type: "id" } ] - }, - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about", - "/RDF/Aggregation/aggregatedCHO" - ], - - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/edmApproach2/EDM_Approach21.xml b/schemas/edmApproach2/EDM_Approach21.xml deleted file mode 100644 index 32309f6..0000000 --- a/schemas/edmApproach2/EDM_Approach21.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - dcterms:alternative - - edm:hasMet - - - - - - - edm:isRelatedTo - - - - - TEXT - - - - dc:description - dc:format - dc:rights - dc:source - dcterms:extent - dcterms:issued - dcterms:conformsTo - dcterms:created - dcterms:isFormatOf - dcterms:hasPart - - edm:rights - - - - - dc:date - dc:identifier - edm:hasMet - edm:isRelatedTo - p:name - - p2:biographicalInformation - p2:dateOfBirth - p2:dateOfEstablishment - p2:dateOfTermination - p2:gender - p2:professionOrOccupation - skos:altLabel - skos:note - skos:prefLabel - - - dcterms:hasPart - dcterms:isPartOf - - skos:altLabel - skos:note - skos:prefLabel - p3:alt - 0.0 - 0.0 - - - - - dcterms:isPartOf - dcterms:hasPart - - skos:altLabel - skos:note - skos:prefLabel - 0.0 - 0.0 - - - skos:altLabel - - - - - - skos:notation - skos:note - skos:prefLabel - - - - dc:rights - - - - - - - - edm:rights - true - - diff --git a/schemas/edmApproach2/EDM_Approach22.xml b/schemas/edmApproach2/EDM_Approach22.xml deleted file mode 100644 index 8e09727..0000000 --- a/schemas/edmApproach2/EDM_Approach22.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - dcterms:alternative - - - - - edm:hasMet - - - - - edm:isRelatedTo - - - - - TEXT - - - - dc:description - dc:format - dc:rights - dc:source - dcterms:extent - dcterms:issued - dcterms:conformsTo - dcterms:created - dcterms:isFormatOf - dcterms:hasPart - - edm:rights - - - - - dc:date - dc:identifier - edm:hasMet - edm:isRelatedTo - p:name - - p2:biographicalInformation - p2:dateOfBirth - p2:dateOfEstablishment - p2:dateOfTermination - p2:gender - p2:professionOrOccupation - skos:altLabel - skos:note - skos:prefLabel - - - dcterms:hasPart - dcterms:isPartOf - - skos:altLabel - skos:note - skos:prefLabel - p3:alt - 0.0 - 0.0 - - - - - dcterms:isPartOf - dcterms:hasPart - - skos:altLabel - skos:note - skos:prefLabel - 0.0 - 0.0 - - - skos:altLabel - - - - - - skos:notation - skos:note - skos:prefLabel - - - - dc:rights - - - - - - - - edm:rights - true - - diff --git a/schemas/edmApproach2/EDM_Approach2Final.xsd b/schemas/edmApproach2/EDM_Approach2Final.xsd deleted file mode 100644 index 6f422c3..0000000 --- a/schemas/edmApproach2/EDM_Approach2Final.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/edmApproach2/EDM_Approach2Final.xsd.conf b/schemas/edmApproach2/EDM_Approach2Final.xsd.conf deleted file mode 100644 index 6fae4c2..0000000 --- a/schemas/edmApproach2/EDM_Approach2Final.xsd.conf +++ /dev/null @@ -1,81 +0,0 @@ -{ - "version": "1.0", - "xsd": "EDM_Approach2Final.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "customization": "edm.groovy", - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ "http://dummyUri/", { type: "id" } ], - "/RDF/Aggregation/@about": [ "http://dummyUri/", "Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ "http://dummyUri/", { type: "id" } ] - }, - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about", - "/RDF/Aggregation/aggregatedCHO" - ], - - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/edmApproach2/ENRICHMENT.xsd b/schemas/edmApproach2/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/edmApproach2/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/FOAF.xsd b/schemas/edmApproach2/FOAF.xsd deleted file mode 100644 index 0af9903..0000000 --- a/schemas/edmApproach2/FOAF.xsd +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - diff --git a/schemas/edmApproach2/ORE.xsd b/schemas/edmApproach2/ORE.xsd deleted file mode 100644 index 30de88e..0000000 --- a/schemas/edmApproach2/ORE.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/OWL.xsd b/schemas/edmApproach2/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/edmApproach2/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/RDAGR2.xsd b/schemas/edmApproach2/RDAGR2.xsd deleted file mode 100644 index edd284e..0000000 --- a/schemas/edmApproach2/RDAGR2.xsd +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/edmApproach2/RDF.xsd b/schemas/edmApproach2/RDF.xsd deleted file mode 100644 index 2ef6ab9..0000000 --- a/schemas/edmApproach2/RDF.xsd +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/SKOS.xsd b/schemas/edmApproach2/SKOS.xsd deleted file mode 100644 index 3bbf78e..0000000 --- a/schemas/edmApproach2/SKOS.xsd +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/The ParthenonOutput.xml b/schemas/edmApproach2/The ParthenonOutput.xml deleted file mode 100644 index afc5d0a..0000000 --- a/schemas/edmApproach2/The ParthenonOutput.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - - IVML - - - - - - - - - - - Petros Katsaros - - - - - \ No newline at end of file diff --git a/schemas/edmApproach2/WGS84.xsd b/schemas/edmApproach2/WGS84.xsd deleted file mode 100644 index 9a4995e..0000000 --- a/schemas/edmApproach2/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/AGGREGATION.xsd b/schemas/edmNtua/AGGREGATION.xsd deleted file mode 100644 index 904cf45..0000000 --- a/schemas/edmNtua/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/CONTEXTS.xsd b/schemas/edmNtua/CONTEXTS.xsd deleted file mode 100644 index 1f652b5..0000000 --- a/schemas/edmNtua/CONTEXTS.xsd +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/DC.xsd b/schemas/edmNtua/DC.xsd deleted file mode 100644 index 0e6ec20..0000000 --- a/schemas/edmNtua/DC.xsd +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/edmNtua/DCTERMS.xsd b/schemas/edmNtua/DCTERMS.xsd deleted file mode 100644 index 9ccda11..0000000 --- a/schemas/edmNtua/DCTERMS.xsd +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/EDM-COMMON-MAIN_Approach2V2.xsd b/schemas/edmNtua/EDM-COMMON-MAIN_Approach2V2.xsd deleted file mode 100644 index 7cd3e95..0000000 --- a/schemas/edmNtua/EDM-COMMON-MAIN_Approach2V2.xsd +++ /dev/null @@ -1,582 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/edmNtua/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd b/schemas/edmNtua/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd deleted file mode 100644 index 29194b8..0000000 --- a/schemas/edmNtua/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/edmNtua/EDM-MAIN.xsd b/schemas/edmNtua/EDM-MAIN.xsd deleted file mode 100644 index a5d4d2b..0000000 --- a/schemas/edmNtua/EDM-MAIN.xsd +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/ENRICHMENT.xsd b/schemas/edmNtua/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/edmNtua/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/FOAF.xsd b/schemas/edmNtua/FOAF.xsd deleted file mode 100644 index 1a5aa18..0000000 --- a/schemas/edmNtua/FOAF.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - - - - - - - diff --git a/schemas/edmNtua/ORE.xsd b/schemas/edmNtua/ORE.xsd deleted file mode 100644 index 0968cd2..0000000 --- a/schemas/edmNtua/ORE.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/OWL.xsd b/schemas/edmNtua/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/edmNtua/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/edmNtua/RDAGR2.xsd b/schemas/edmNtua/RDAGR2.xsd deleted file mode 100644 index 11e796c..0000000 --- a/schemas/edmNtua/RDAGR2.xsd +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/edmNtua/RDF.xsd b/schemas/edmNtua/RDF.xsd deleted file mode 100644 index 05714a7..0000000 --- a/schemas/edmNtua/RDF.xsd +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/SKOS.xsd b/schemas/edmNtua/SKOS.xsd deleted file mode 100644 index 523caad..0000000 --- a/schemas/edmNtua/SKOS.xsd +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/The ParthenonOutput.xml b/schemas/edmNtua/The ParthenonOutput.xml deleted file mode 100644 index d080577..0000000 --- a/schemas/edmNtua/The ParthenonOutput.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - - - - - - - IVML - - - - - - - - - - - Petros Katsaros - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/WGS84.xsd b/schemas/edmNtua/WGS84.xsd deleted file mode 100644 index 9a4995e..0000000 --- a/schemas/edmNtua/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/edmNtua/edmNtua.xsd b/schemas/edmNtua/edmNtua.xsd deleted file mode 100644 index 74967de..0000000 --- a/schemas/edmNtua/edmNtua.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/edmNtua/edmNtua.xsd.conf b/schemas/edmNtua/edmNtua.xsd.conf deleted file mode 100644 index 9e8bd51..0000000 --- a/schemas/edmNtua/edmNtua.xsd.conf +++ /dev/null @@ -1,72 +0,0 @@ -{ - "version": "1.0", - "xsd": "Fashion.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#", - "mrel": "http://id.loc.gov/vocabulary/relators/", - "gr": "http://www.heppnetz.de/ontologies/goodrelations/v1#", - "edmfp": "http://www.europeanafashion.eu/edmfp/" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "parameters": { - "baseURI": { - "type": "constant", - "value": "http://fashion.image.ece.ntua.gr/" - }, - "collection": { - "type": "constant", - "value": "europeana-fashion" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/edmNtua/edmNtuaTest.xml b/schemas/edmNtua/edmNtuaTest.xml deleted file mode 100644 index 7065b0e..0000000 --- a/schemas/edmNtua/edmNtuaTest.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - dcterms:alternative - - TEXT - - - - dc:rights - - - - 1981 - 2057 - - - A concept - - - dc:relation - dc:identifier - - - Athens - - - - - - - rdagr2:biographicalInformation - Male - Nikos - Simou - - - - - dc:rights - - - - - - dc:rights - - - - - - dc:rights - - - - - - dc:rights - - - - - - 1981 - 2057 - - - - dc:relation - dc:identifier - - - - - - - - rdagr2:biographicalInformation - Male - skos:altLabel - skos:prefLabel - - - - true - - diff --git a/schemas/ese/ESE-V3.2.xsd b/schemas/ese/ESE-V3.2.xsd deleted file mode 100644 index 8a9d6b5..0000000 --- a/schemas/ese/ESE-V3.2.xsd +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - Europeana Semantic Elements V3.2 XML Schema - Version: 3.2 - Date: 2009-08-07 - Used to validate XML instances of Data Sets to be submitted to Europeana - - The ESE v3.2 Schema doesn't accept the following elements (Europeana office is responsible for providing all these elements): - europeana:country - europeana:hasObject - europeana:language - europeana:uri - europeana:usertag - europeana:year - - The values for the following elements must be valid URI: - europeana:isShownBy - europeana:isShownAt - europeana:object - - The values for europeana:type element must be one of the following: - TEXT - IMAGE - SOUND - VIDEO - - While DC elements can appear in a user preferred order, in the instances of documents, the Europena elements must appear after all DC elements and in the following order: - europeana:unstored - europeana:object - europeana:provider - europeana:type - europeana:isShownBy - europeana:isShownAt - - The europeana:isShownBy and europeana:isShownAt elements may appear in any order (one of the two is mandatory) after the europeana:type element. - - Publisher: Europeana (http://www.europeana.eu) - - *** Comments, questions, and error reports should be sent to info@europeana.eu - with subject line: XMLSchema *** - - Editor: - Nicola Aloia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/ese/ESE-V3.2.xsd.conf b/schemas/ese/ESE-V3.2.xsd.conf deleted file mode 100644 index 8b0654a..0000000 --- a/schemas/ese/ESE-V3.2.xsd.conf +++ /dev/null @@ -1,11 +0,0 @@ -{ - "xsd": "ESE-V3.2.xsd", - "namespace": "ese", - "root": "dc:record", - "groups": [ - { - "name": "Record", - "element": "record" - } - ] -} diff --git a/schemas/ese/ESE-V3.3.xsd b/schemas/ese/ESE-V3.3.xsd deleted file mode 100644 index d08f0cc..0000000 --- a/schemas/ese/ESE-V3.3.xsd +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - Europeana Semantic Elements V3.3 XML Schema - Version: 3.3 - Date: 2010-06-28 - Used to validate XML instances of Data Sets to be submitted to Europeana - - The following elements must be provided in the XML instances: - europeana:provider - europeana:type - europeana:isShownBy and/or europeana:isShownAt - - The values for the following elements must be valid URI: - europeana:isShownBy - europeana:isShownAt - europeana:object - europeana:rights - - The values for europeana:type element must be one of the following: - TEXT - IMAGE - SOUND - VIDEO - - While DC elements can appear in a user preferred order, in the instances of documents, the Europena elements must appear after all DC elements and in the following order: - europeana:unstored - europeana:object - europeana:provider - europeana:type - europeana:rights - europeana:dataProvider - europeana:isShownBy - europeana:isShownAt - - The europeana:isShownBy and europeana:isShownAt elements may appear in any order (one of the two is mandatory) after the europeana:type element. - - The ESE v3.3 Schema doesn't accept the following elements (Europeana office is responsible for providing all these elements): - europeana:country - europeana:hasObject - europeana:language - europeana:uri - europeana:usertag - europeana:year - - Extra note on DC terms elements and ESE conformance: The XML schema checks for basic conformance to the "Europeana Semantic Elements specifications", document available at http://version1.europeana.eu/web/europeana-project/provide-content. Note however that it is an extension of the DC terms schema and will therefore accept all DC terms - even those that are not importable into the portal. Please include in your metadata only the elements defined in the specification. - - Publisher: Europeana (http://www.europeana.eu) - - *** Comments, questions, and error reports should be sent to info@europeana.eu - with subject line: XMLSchema *** - - Editor: - Nicola Aloia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/ese/ESE-V3.3.xsd.conf b/schemas/ese/ESE-V3.3.xsd.conf deleted file mode 100644 index d2c6473..0000000 --- a/schemas/ese/ESE-V3.3.xsd.conf +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": "1.0", - "xsd": "ESE-V3.3.xsd", - "namespaces": { - "ese": "" - }, - - "item": { - "element": "record", - "prefix": "dc" - }, - - "groups": [ - { - "name": "Record", - "element": "record" - } - ] -} diff --git a/schemas/ese/ESE-V3.4-ingestion.xsd b/schemas/ese/ESE-V3.4-ingestion.xsd deleted file mode 100644 index 3ef73d4..0000000 --- a/schemas/ese/ESE-V3.4-ingestion.xsd +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - Europeana Semantic Elements V3.4 XML Schema - Version: 3.4 - Date: 2011-03-31 - Used to validate XML instances of Data Sets to be submitted to Europeana - - The following elements must be provided in the XML instances: - europeana:provider - europeana:dataProvider - europeana:rights - europeana:type - europeana:isShownBy and/or europeana:isShownAt - - In addition: - 1) If "europeana:type" is TEXT then a valid value for "dc:language" must be provided. - 2) The XML instances must include "dc:title" or "dc:description" (i.e. cannot be both null). - 3) The XML instances must provide, mandatory, values for one of the four elements: "dc:subject" or "dc:type" or "dc:coverage" or "dcterms:spatial". - - The values for the following elements must be valid URI: - europeana:isShownBy - europeana:isShownAt - europeana:object - europeana:rights - - The values for europeana:type element must be one of the following: - TEXT - IMAGE - SOUND - VIDEO - 3D - - While DC elements can appear in a user preferred order, in the instances of documents, the Europena elements must appear after all DC elements and in the following order: - europeana:unstored - europeana:object - europeana:provider - europeana:type - europeana:rights - europeana:dataProvider - europeana:isShownBy - europeana:isShownAt - - The europeana:isShownBy and europeana:isShownAt elements may appear in any order (one of the two is mandatory) after the europeana:type element. - - The ESE v3.4 Schema doesn't accept the following elements (Europeana office is responsible for providing all these elements): - europeana:country - europeana:language - europeana:uri - europeana:usertag - europeana:year - - Extra note on DC terms elements and ESE conformance: The XML schema checks for basic conformance to the "Europeana Semantic Elements specifications", - document available at http://version1.europeana.eu/web/europeana-project/provide-content. - Note however that it is an extension of the DC terms schema and will therefore accept all DC terms - even those that are not importable into the portal. - Please include in your metadata only the elements defined in the specification. - - Publisher: Europeana (http://www.europeana.eu) - - *** Comments, questions, and error reports should be sent to info@europeana.eu - with subject line: XMLSchema *** - - Editor: - Nicola Aloia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/ese/ESE-V3.4-ingestion.xsd.conf b/schemas/ese/ESE-V3.4-ingestion.xsd.conf deleted file mode 100644 index 1a67735..0000000 --- a/schemas/ese/ESE-V3.4-ingestion.xsd.conf +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": "1.0", - "xsd": "ESE-V3.4.xsd", - "namespaces": { - "europeana": "http://www.europeana.eu/schemas/ese/", - "dcterms": "http://purl.org/dc/terms/", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "wrap": { - "element": "metadata", - "prefix": "europeana" - }, - - "item": { - "element": "record", - "prefix": "europeana" - }, - - "navigation": [ - { - "element": "record", - "label": "ESE", - "hide": [ - "europeana:country", - "europeana:language", - "europeana:uri", - "europeana:usertag", - "europeana:year" - ] - }, - { - "element": "record", - "label": "Ingestion", - "include": [ - "europeana:country", - "europeana:language", - "europeana:uri", - "europeana:usertag", - "europeana:year" - ] - }, - ], - - "groups": [ - { - "name": "Record", - "element": "record" - }], - - "preview" : [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] -} diff --git a/schemas/ese/ESE-V3.4-mint.xsd b/schemas/ese/ESE-V3.4-mint.xsd deleted file mode 100644 index 8fbc85c..0000000 --- a/schemas/ese/ESE-V3.4-mint.xsd +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - Europeana Semantic Elements V3.4 XML Schema - Version: 3.4 - Date: 2011-03-31 - Used to validate XML instances of Data Sets to be submitted to Europeana - - The following elements must be provided in the XML instances: - europeana:provider - europeana:dataProvider - europeana:rights - europeana:type - europeana:isShownBy and/or europeana:isShownAt - - In addition: - 1) If "europeana:type" is TEXT then a valid value for "dc:language" must be provided. - 2) The XML instances must include "dc:title" or "dc:description" (i.e. cannot be both null). - 3) The XML instances must provide, mandatory, values for one of the four elements: "dc:subject" or "dc:type" or "dc:coverage" or "dcterms:spatial". - - The values for the following elements must be valid URI: - europeana:isShownBy - europeana:isShownAt - europeana:object - europeana:rights - - The values for europeana:type element must be one of the following: - TEXT - IMAGE - SOUND - VIDEO - 3D - - While DC elements can appear in a user preferred order, in the instances of documents, the Europena elements must appear after all DC elements and in the following order: - europeana:unstored - europeana:object - europeana:provider - europeana:type - europeana:rights - europeana:dataProvider - europeana:isShownBy - europeana:isShownAt - - The europeana:isShownBy and europeana:isShownAt elements may appear in any order (one of the two is mandatory) after the europeana:type element. - - The ESE v3.4 Schema doesn't accept the following elements (Europeana office is responsible for providing all these elements): - europeana:country - europeana:language - europeana:uri - europeana:usertag - europeana:year - - Extra note on DC terms elements and ESE conformance: The XML schema checks for basic conformance to the "Europeana Semantic Elements specifications", - document available at http://version1.europeana.eu/web/europeana-project/provide-content. - Note however that it is an extension of the DC terms schema and will therefore accept all DC terms - even those that are not importable into the portal. - Please include in your metadata only the elements defined in the specification. - - Publisher: Europeana (http://www.europeana.eu) - - *** Comments, questions, and error reports should be sent to info@europeana.eu - with subject line: XMLSchema *** - - Editor: - Nicola Aloia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/ese/ESE-V3.4-mint.xsd.conf b/schemas/ese/ESE-V3.4-mint.xsd.conf deleted file mode 100644 index 8f5309a..0000000 --- a/schemas/ese/ESE-V3.4-mint.xsd.conf +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": "1.0", - "xsd": "ESE-V3.4.xsd", - "namespaces": { - "europeana": "http://www.europeana.eu/schemas/ese/", - "dcterms": "http://purl.org/dc/terms/", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "wrap": { - "element": "metadata", - "prefix": "europeana" - }, - - "item": { - "element": "record", - "prefix": "europeana" - }, - - "navigation": [ - { - "type": "group", - "name": "Record", - "label": "ESE" - } - ], - - "groups": [ - { - "name": "Record", - "element": "record" - }], - - "preview" : [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] -} diff --git a/schemas/ese/ESE-V3.4.xsd b/schemas/ese/ESE-V3.4.xsd deleted file mode 100644 index c600c05..0000000 --- a/schemas/ese/ESE-V3.4.xsd +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - Europeana Semantic Elements V3.4 XML Schema - Version: 3.4 - Date: 2011-03-31 - Used to validate XML instances of Data Sets to be submitted to Europeana - - The following elements must be provided in the XML instances: - europeana:provider - europeana:dataProvider - europeana:rights - europeana:type - europeana:isShownBy and/or europeana:isShownAt - - In addition: - 1) If "europeana:type" is TEXT then a valid value for "dc:language" must be provided. - 2) The XML instances must include "dc:title" or "dc:description" (i.e. cannot be both null). - 3) The XML instances must provide, mandatory, values for one of the four elements: "dc:subject" or "dc:type" or "dc:coverage" or "dcterms:spatial". - - The values for the following elements must be valid URI: - europeana:isShownBy - europeana:isShownAt - europeana:object - europeana:rights - - The values for europeana:type element must be one of the following: - TEXT - IMAGE - SOUND - VIDEO - 3D - - While DC elements can appear in a user preferred order, in the instances of documents, the Europena elements must appear after all DC elements and in the following order: - europeana:unstored - europeana:object - europeana:provider - europeana:type - europeana:rights - europeana:dataProvider - europeana:isShownBy - europeana:isShownAt - - The europeana:isShownBy and europeana:isShownAt elements may appear in any order (one of the two is mandatory) after the europeana:type element. - - The ESE v3.4 Schema doesn't accept the following elements (Europeana office is responsible for providing all these elements): - europeana:country - europeana:language - europeana:uri - europeana:usertag - europeana:year - - Extra note on DC terms elements and ESE conformance: The XML schema checks for basic conformance to the "Europeana Semantic Elements specifications", - document available at http://version1.europeana.eu/web/europeana-project/provide-content. - Note however that it is an extension of the DC terms schema and will therefore accept all DC terms - even those that are not importable into the portal. - Please include in your metadata only the elements defined in the specification. - - Publisher: Europeana (http://www.europeana.eu) - - *** Comments, questions, and error reports should be sent to info@europeana.eu - with subject line: XMLSchema *** - - Editor: - Nicola Aloia - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/ese/ESE-V3.4.xsd.conf b/schemas/ese/ESE-V3.4.xsd.conf deleted file mode 100644 index 18d6dab..0000000 --- a/schemas/ese/ESE-V3.4.xsd.conf +++ /dev/null @@ -1,44 +0,0 @@ -{ - "version": "1.0", - "xsd": "ESE-V3.4.xsd", - "namespaces": { - "europeana": "http://www.europeana.eu/schemas/ese/", - "dcterms": "http://purl.org/dc/terms/", - "dc": "http://purl.org/dc/elements/1.1/" - }, - - "wrap": { - "element": "metadata", - "prefix": "europeana" - }, - - "item": { - "element": "record", - "prefix": "europeana" - }, - - "paths": { - "item": "/metadata/record", - "label": "/metadata/record/title/text()", - "id": "/metadata/record/identifier/text()", - }, - - "navigation": [ - { - "element": "record", - "label": "ESE" - } - ], - - "groups": [ - { - "name": "Record", - "element": "record" - }], - - "preview" : [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] -} diff --git a/schemas/euscreen/EUScreen.xsd b/schemas/euscreen/EUScreen.xsd deleted file mode 100644 index 73ee529..0000000 --- a/schemas/euscreen/EUScreen.xsd +++ /dev/null @@ -1,1461 +0,0 @@ - - - - - - Comment describing your root element - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/euscreen/EUScreen.xsd.conf b/schemas/euscreen/EUScreen.xsd.conf deleted file mode 100644 index 8a5d9a2..0000000 --- a/schemas/euscreen/EUScreen.xsd.conf +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": "1.0", - "xsd": "EUScreen.xsd", - "namespaces": { - "eus": "http://www.euscreen.eu/schemas/euscreen/" - }, - - "item": { - "element": "metadata", - "prefix": "eus" - }, - - "paths": { - "item": "/metadata"; - "label": "/metadata/ContentDescriptiveMetadata/TitleSet/TitleSetInEnglish/title"; - "id": "/metadata/AdministrativeMetadata/identifier"; - }, - - "navigation": [ - { - "name": "Object Descriptive Metadata", - "element": "ObjectDescriptiveMetadata" - }, - { - "name": "Content Descriptive Metadata", - "element": "ContentDescriptiveMetadata" - }, - { - "name": "Administrative Metadata", - "element": "AdministrativeMetadata" - } - ] -} diff --git a/schemas/euscreen/EUScreenValid.xsd b/schemas/euscreen/EUScreenValid.xsd deleted file mode 100644 index a1aa4cf..0000000 --- a/schemas/euscreen/EUScreenValid.xsd +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - Comment describing your root element - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/euscreen/EUScreenValid.xsd.conf b/schemas/euscreen/EUScreenValid.xsd.conf deleted file mode 100644 index c855f3d..0000000 --- a/schemas/euscreen/EUScreenValid.xsd.conf +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": "1.0", - "xsd": "EUScreenValid.xsd", - "namespaces": { - "eus": "http://www.euscreen.eu/schemas/euscreen/" - }, - - "item": { - "element": "metadata", - "prefix": "eus" - }, - - "paths": { - "item": "%/metadata"; - "label": "%/metadata/ContentDescriptiveMetadata/TitleSet/TitleSetInEnglish/title"; - "id": "%/metadata/AdministrativeMetadata/identifier"; - }, - - "navigation": [ - { - "name": "Object Descriptive Metadata", - "element": "ObjectDescriptiveMetadata" - }, - { - "name": "Content Descriptive Metadata", - "element": "ContentDescriptiveMetadata" - }, - { - "name": "Administrative Metadata", - "element": "AdministrativeMetadata" - } - ] -} diff --git a/schemas/fashion/AGGREGATION.xsd b/schemas/fashion/AGGREGATION.xsd deleted file mode 100644 index 904cf45..0000000 --- a/schemas/fashion/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/CONTEXTS.xsd b/schemas/fashion/CONTEXTS.xsd deleted file mode 100644 index 44209f1..0000000 --- a/schemas/fashion/CONTEXTS.xsd +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/DC.xsd b/schemas/fashion/DC.xsd deleted file mode 100644 index a1ab905..0000000 --- a/schemas/fashion/DC.xsd +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/fashion/DCTERMS.xsd b/schemas/fashion/DCTERMS.xsd deleted file mode 100644 index 0586aa5..0000000 --- a/schemas/fashion/DCTERMS.xsd +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/EDM-COMMON-MAIN_Approach2.xsd b/schemas/fashion/EDM-COMMON-MAIN_Approach2.xsd deleted file mode 100644 index 3a378dd..0000000 --- a/schemas/fashion/EDM-COMMON-MAIN_Approach2.xsd +++ /dev/null @@ -1,583 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/fashion/EDM-EXTERNAL-MAIN_Approach2.xsd b/schemas/fashion/EDM-EXTERNAL-MAIN_Approach2.xsd deleted file mode 100644 index e1b96c4..0000000 --- a/schemas/fashion/EDM-EXTERNAL-MAIN_Approach2.xsd +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/fashion/EDM-EXTERNAL-MAIN_Approach2Final.xsd b/schemas/fashion/EDM-EXTERNAL-MAIN_Approach2Final.xsd deleted file mode 100644 index 8bad264..0000000 --- a/schemas/fashion/EDM-EXTERNAL-MAIN_Approach2Final.xsd +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/fashion/EDM-MAIN.xsd b/schemas/fashion/EDM-MAIN.xsd deleted file mode 100644 index a5d4d2b..0000000 --- a/schemas/fashion/EDM-MAIN.xsd +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/ENRICHMENT.xsd b/schemas/fashion/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/fashion/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/FOAF.xsd b/schemas/fashion/FOAF.xsd deleted file mode 100644 index a7e6a95..0000000 --- a/schemas/fashion/FOAF.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - - - - - - - diff --git a/schemas/fashion/FP.xsd b/schemas/fashion/FP.xsd deleted file mode 100644 index a6d1dfb..0000000 --- a/schemas/fashion/FP.xsd +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - The value may be a literal or the identifier of the related resource. - Preference is given to the identifier. This property is the reverse of dc:subject. - Rationale: there is no EDM property available that expresses the reverse of dc:subject – i.e. - the relationship between an information object and another resource by which it is described. - Therefore it is decided to introduce a new property isSubjectOf, semantically equal to the - CIDOC-CRM concept P129 About (isSubjectOf). Note that, as this property is the exact reverse - of dc:subject, it may be sufficient to gen-erate this property by the portal. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/Fashion.xsd b/schemas/fashion/Fashion.xsd deleted file mode 100644 index 6f422c3..0000000 --- a/schemas/fashion/Fashion.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/fashion/Fashion.xsd.conf b/schemas/fashion/Fashion.xsd.conf deleted file mode 100644 index 94373d3..0000000 --- a/schemas/fashion/Fashion.xsd.conf +++ /dev/null @@ -1,84 +0,0 @@ -{ - "version": "1.0", - "xsd": "Fashion.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#", - "mrel": "http://id.loc.gov/vocabulary/relators/", - "gr": "http://www.heppnetz.de/ontologies/goodrelations/v1#", - "edmfp": "http://www.europeanafashion.eu/edmfp/" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "customization": "edm.groovy", - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ "http://dummyUri/", { type: "id" } ], - "/RDF/Aggregation/@about": [ "http://dummyUri/", "Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ "http://dummyUri/", { type: "id" } ] - }, - - "idPaths": [ - "/RDF/ProvidedCHO/@about", - "/RDF/Aggregation/@about", - "/RDF/Aggregation/aggregatedCHO" - ], - - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "WebResource", - "element": "WebResource" - }, - { - "name": "Agent", - "element": "Agent" - }, - { - "name": "Place", - "element": "Place" - }, - { - "name": "TimeSpan", - "element": "TimeSpan" - }, - { - "name": "Concept", - "element": "Concept" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/fashion/GR.xsd b/schemas/fashion/GR.xsd deleted file mode 100644 index f3ab2a2..0000000 --- a/schemas/fashion/GR.xsd +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/MREL.xsd b/schemas/fashion/MREL.xsd deleted file mode 100644 index a3d6d0b..0000000 --- a/schemas/fashion/MREL.xsd +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - Author - - - - - - - - Collaborator - - - - - - - - Curator - - - - - - - - Director - - - - - - - - Designer - - - - - - - - Editor - - - - - - - - Illustrator - - - - - - - - Interviewee - - - - - - - - Interviewer - - - - - - - - Photographer - - - - - - - - Producer - - - - - - - - Sound Designer - - - - - - - - Sponsor - - - - - - - - Set designer - - - - - \ No newline at end of file diff --git a/schemas/fashion/ORE.xsd b/schemas/fashion/ORE.xsd deleted file mode 100644 index 30de88e..0000000 --- a/schemas/fashion/ORE.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/OWL.xsd b/schemas/fashion/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/fashion/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/fashion/RDAGR2.xsd b/schemas/fashion/RDAGR2.xsd deleted file mode 100644 index 1c0fb75..0000000 --- a/schemas/fashion/RDAGR2.xsd +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/fashion/RDF.xsd b/schemas/fashion/RDF.xsd deleted file mode 100644 index 49f5144..0000000 --- a/schemas/fashion/RDF.xsd +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashion/SKOS.xsd b/schemas/fashion/SKOS.xsd deleted file mode 100644 index 338c44d..0000000 --- a/schemas/fashion/SKOS.xsd +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/fashion/The ParthenonOutput.xml b/schemas/fashion/The ParthenonOutput.xml deleted file mode 100644 index bfbfcd0..0000000 --- a/schemas/fashion/The ParthenonOutput.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - - IVML - - - - - - - - - - - Petros Katsaros - - - - - \ No newline at end of file diff --git a/schemas/fashion/WGS84.xsd b/schemas/fashion/WGS84.xsd deleted file mode 100644 index 9a4995e..0000000 --- a/schemas/fashion/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/AGGREGATION.xsd b/schemas/fashionCHOs/AGGREGATION.xsd deleted file mode 100644 index 904cf45..0000000 --- a/schemas/fashionCHOs/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/CONTEXTS.xsd b/schemas/fashionCHOs/CONTEXTS.xsd deleted file mode 100644 index 71c509e..0000000 --- a/schemas/fashionCHOs/CONTEXTS.xsd +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/DC.xsd b/schemas/fashionCHOs/DC.xsd deleted file mode 100644 index 0e6ec20..0000000 --- a/schemas/fashionCHOs/DC.xsd +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/DCTERMS.xsd b/schemas/fashionCHOs/DCTERMS.xsd deleted file mode 100644 index 9ccda11..0000000 --- a/schemas/fashionCHOs/DCTERMS.xsd +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/EDM-COMMON-MAIN_Approach2V2.xsd b/schemas/fashionCHOs/EDM-COMMON-MAIN_Approach2V2.xsd deleted file mode 100644 index a9525c4..0000000 --- a/schemas/fashionCHOs/EDM-COMMON-MAIN_Approach2V2.xsd +++ /dev/null @@ -1,585 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/fashionCHOs/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd b/schemas/fashionCHOs/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd deleted file mode 100644 index 9068442..0000000 --- a/schemas/fashionCHOs/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/fashionCHOs/EDM-MAIN.xsd b/schemas/fashionCHOs/EDM-MAIN.xsd deleted file mode 100644 index a5d4d2b..0000000 --- a/schemas/fashionCHOs/EDM-MAIN.xsd +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/ENRICHMENT.xsd b/schemas/fashionCHOs/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/fashionCHOs/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/FOAF.xsd b/schemas/fashionCHOs/FOAF.xsd deleted file mode 100644 index a7e6a95..0000000 --- a/schemas/fashionCHOs/FOAF.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - - - - - - - diff --git a/schemas/fashionCHOs/FP.xsd b/schemas/fashionCHOs/FP.xsd deleted file mode 100644 index 3954ca2..0000000 --- a/schemas/fashionCHOs/FP.xsd +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - The value may be a literal or the identifier of the related resource. - Preference is given to the identifier. This property is the reverse of dc:subject. - Rationale: there is no EDM property available that expresses the reverse of dc:subject – i.e. - the relationship between an information object and another resource by which it is described. - Therefore it is decided to introduce a new property isSubjectOf, semantically equal to the - CIDOC-CRM concept P129 About (isSubjectOf). Note that, as this property is the exact reverse - of dc:subject, it may be sufficient to gen-erate this property by the portal. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/FashionCHOs.xsd b/schemas/fashionCHOs/FashionCHOs.xsd deleted file mode 100644 index 74967de..0000000 --- a/schemas/fashionCHOs/FashionCHOs.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/fashionCHOs/FashionCHOs.xsd.conf b/schemas/fashionCHOs/FashionCHOs.xsd.conf deleted file mode 100644 index 81eb992..0000000 --- a/schemas/fashionCHOs/FashionCHOs.xsd.conf +++ /dev/null @@ -1,69 +0,0 @@ -{ - "version": "1.0", - "xsd": "Fashion.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#", - "mrel": "http://id.loc.gov/vocabulary/relators/", - "gr": "http://www.heppnetz.de/ontologies/goodrelations/v1#", - "edmfp": "http://www.europeanafashion.eu/edmfp/" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF"; - "label": "/RDF/ProvidedCHO/title"; - "id": "/RDF/ProvidedCHO/@about"; - }, - - "customization": "fashion.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "localID/" - }, - "collection": { - "type": "constant", - "value": "europeana-fashion" - } - }, - - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "preview": [{ - "xsl": "edm2ese.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }] - }] -} diff --git a/schemas/fashionCHOs/GR.xsd b/schemas/fashionCHOs/GR.xsd deleted file mode 100644 index f3ab2a2..0000000 --- a/schemas/fashionCHOs/GR.xsd +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/MREL.xsd b/schemas/fashionCHOs/MREL.xsd deleted file mode 100644 index a3d6d0b..0000000 --- a/schemas/fashionCHOs/MREL.xsd +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - Author - - - - - - - - Collaborator - - - - - - - - Curator - - - - - - - - Director - - - - - - - - Designer - - - - - - - - Editor - - - - - - - - Illustrator - - - - - - - - Interviewee - - - - - - - - Interviewer - - - - - - - - Photographer - - - - - - - - Producer - - - - - - - - Sound Designer - - - - - - - - Sponsor - - - - - - - - Set designer - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/ORE.xsd b/schemas/fashionCHOs/ORE.xsd deleted file mode 100644 index 0663cf6..0000000 --- a/schemas/fashionCHOs/ORE.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/OWL.xsd b/schemas/fashionCHOs/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/fashionCHOs/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/RDAGR2.xsd b/schemas/fashionCHOs/RDAGR2.xsd deleted file mode 100644 index 11e796c..0000000 --- a/schemas/fashionCHOs/RDAGR2.xsd +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/fashionCHOs/RDF.xsd b/schemas/fashionCHOs/RDF.xsd deleted file mode 100644 index 05714a7..0000000 --- a/schemas/fashionCHOs/RDF.xsd +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/SKOS.xsd b/schemas/fashionCHOs/SKOS.xsd deleted file mode 100644 index 523caad..0000000 --- a/schemas/fashionCHOs/SKOS.xsd +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/The ParthenonOutput.xml b/schemas/fashionCHOs/The ParthenonOutput.xml deleted file mode 100644 index 303a51b..0000000 --- a/schemas/fashionCHOs/The ParthenonOutput.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - - - - - - - IVML - - - - - - - - - - - Petros Katsaros - - - - - \ No newline at end of file diff --git a/schemas/fashionCHOs/WGS84.xsd b/schemas/fashionCHOs/WGS84.xsd deleted file mode 100644 index 9a4995e..0000000 --- a/schemas/fashionCHOs/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/AGGREGATION.xsd b/schemas/fashionv2/AGGREGATION.xsd deleted file mode 100644 index 904cf45..0000000 --- a/schemas/fashionv2/AGGREGATION.xsd +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - EDM First Implementation Schema: Aggregations - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/CONTEXTS.xsd b/schemas/fashionv2/CONTEXTS.xsd deleted file mode 100644 index 71c509e..0000000 --- a/schemas/fashionv2/CONTEXTS.xsd +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - EDM First Implementation Schema: Contextual elements (vocabulary terms) - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This class comprises people, either individually or in groups, who have - the potential to perform intentional actions for which they can be held responsible. - Example:Leonardo da Vinci, the British Museum, W3C - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - An "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - - - - - - - - - - - n "extent in space, in particular on the surface of the earth, in the - pure sense of physics: independent from temporal phenomena and matter" (CIDOC CRM) - Example:the region of space occupied by Rome today, the region of space occupied by - the United Kingdom today, the region of space occupied by the Republic of Crimea in - 1945 - - - - - - - - - - - The class of "abstract temporal extents, in the sense of Galilean - physics, having a beginning, an end and a duration" (CIDOC CRM) Example:2001-12-31, - 01.01.01 – 02.02.02, 1503 – 1506 (the time span of the creation of Mona - Lisa) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/DC.xsd b/schemas/fashionv2/DC.xsd deleted file mode 100644 index 0e6ec20..0000000 --- a/schemas/fashionv2/DC.xsd +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - EDM First Implementation Schema: DC - - - - - - - - - - - - Information about copyright of the original object. Example: - Creative Commons Attribution 3.0 License - Type: String - - - - - - - - An entity responsible for making contributions to the resource. Example: - Maria Callas - Type: String - - - - - - - - The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. This may be a named place, a - location, a spatial coordinate, a period, date, date range or a named administrative entity. Example: - 1995-1996 - Boston, MA - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A point or period of time associated with an event in the lifecycle of the resource. Example: - 17th century - (For example the date when an object was repaired) Type: String - - - - - - - - An account of the resource. Example: - - Illustrated guide to airport markings and lighting signals, with particular reference to SMGCS (Surface Movement Guidance and Control System) for airports with low - visibility - conditions. - - Type: Stringdescription - - - - - - - - - identifier - - - - - - - - The file format, physical medium or dimensions of the resource. Example: - image/jpeg - Type: String - - - - - - - - A language of the resource. Example: - it - Type: String - - - - - - - - An entity responsible for making the resource available. Examples of a publisher include a person, an organisation and a service. Example: - Oxford University Press - Type: String - - - - - - - - A related resource. The recommended best practice is to identify the resource using a formal identification scheme. Example: - maps.crace.1/33 - (This is the shelf mark for a map held in the British Library’s Crace Collection). Type: String - - - - - - - - A related resource from which the described resource is derived in whole or in part. Example: - Security Magazine pp 3-12 - BAM portal - Type: String - - - - - - - - The topic of the resource. Example: - submarine - Type: String - - - - - - - - A name given to the resource. Typically, a Title will be a name by which the resource is formally known. Example: - Taal vitaal - Type: String - - - - - - - - The nature or genre of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Example: - painting - photograph - coin - Type: String - - - - \ No newline at end of file diff --git a/schemas/fashionv2/DCTERMS.xsd b/schemas/fashionv2/DCTERMS.xsd deleted file mode 100644 index 9ccda11..0000000 --- a/schemas/fashionv2/DCTERMS.xsd +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - EDM First Implementation Schema: DC Terms - - - - - - - - - - - - - - A related resource that references, cites, or otherwise points to the described resource. Example: - Till, Nicholas (1994) Mozart and the Enlightenment: Truth, Virtue and Beauty in Mozart’s Operas, W. W. Norton & - Company - Type: String - - - - - - - - Temporal characteristics of the resource Example: - Roman - Type: String - - - - - - - - A list of subunits of the resource. Example: - Chapter 1. Introduction, Chapter 2. History - Type: String - - - - - - - - Spatial characteristics of the resource. Example: - Portugal - Type: String - - - - - - - - An entity primarily responsible for making the resource. This may be a person, organisation or a service. Example: - Shakespeare, William - Type: String - - - - - - - - A related resource that is required by the described resource to support its function, delivery or coherence. Example: - http://ads.ahds.ac.uk/project/userinfo/css/oldbrowsers.css - where the resource described is a HTML file at http://ads.ahds.ac.uk/project/userinfo/digitalTextArchiving.html Type: String - - - - - - - - A related resource that is supplanted, displaced, or superseded by the described resource. Example: - http://dublincore.org/about/2006/01/01/bylaws/ - where the resource described is a newer version (http://dublincore.org/about/2009/01/05/bylaws/) Type: String - - - - - - - - A related resource that is referenced, cited, or otherwise pointed to by the described resource Example: - Honderd jaar Noorse schilderkunst - Type: String - - - - - - - - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, - integrity and interpretation. This may include a - description of any changes successive custodians made to the resource. Example: - Donated by The National Library in 1965 - Type: String - - - - - - - - The material or physical carrier of the resource. Example: - metal - Type: String - - - - - - - - A related resource of which the described resource is a version, edition, or adaptation. Changes in version imply substantive changes in - content rather than differences in format - Example: - ESE Version 0.5 - Type: String - - - - - - - - Date of formal issuance (e.g., publication) of the resource. Example: - 1993 - Type: String - - - - - - - - A related resource that requires the described resource to support its function, delivery or coherence. Example: - http://www.myslides.com/myslideshow.ppt - where the image being described is required for an online slideshow. Type: String - - - - - - - - A related resource that supplants, displaces, or supersedes the described resource. Example: - http://dublincore.org/about/2009/01/05/bylaws/ - where the resource described is an older version (http://dublincore.org/about/2006/01/01/bylaws/) Type: String - - - - - - - - A related resource that is substantially the same as the described resource, but in another format. Example: - Europeana_logo.tiff - where the resource being described is a png image file. Type: String - - - - - - - - A related resource that is a version, edition, or adaptation of the described resource. Changes in version imply substantive changes in - content rather than differences in format. - Example: - The Sorcerer’s Apprentice (translation by Edwin Zeydel, 1955) - . In this example the 1955 translation is a version of the described resource. Type: String - - - - - - - - A related resource that is substantially the same as the pre-existing described resource, but in another format. Example: - http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana _logo.png - where the resource being described is a tiff image file. Type: String - - - - - - - - The size or duration of the resource. Example: - 13 cm - (the width of an original object). - 34 minutes - (the length of an audio file). Type: String - - - - - - - - Date of creation of the resource Example: - 1564 - Iron Age - Type: String - - - - - - - - An established standard to which the described resource conforms. Example: - W3C WCAG 2.0 - (for an HTML document that conforms to web content accessibility guidelines). Type: String - - - - - - - - An alternative name for the resource. This can be any form of the title that is used as a substitute or an alternative to the formal - title of the resource including abbreviations or - translations of the title. Example: - Ocho semanas - (When - Eight weeks - ) Type: String - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/EDM-COMMON-MAIN_Approach2V2.xsd b/schemas/fashionv2/EDM-COMMON-MAIN_Approach2V2.xsd deleted file mode 100644 index a9525c4..0000000 --- a/schemas/fashionv2/EDM-COMMON-MAIN_Approach2V2.xsd +++ /dev/null @@ -1,585 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be - wrapped up in RDF - - - - - - - - - - - - - - - - - - - - - Base class for ProvidedCHO implementations - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EuropeanaType contains the DC & DCTERMS elements. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property associates an ORE aggregation with the cultural heritage - object(s) (CHO for short) it is about. In Europeana, an aggregation aggregates at - least one CHO. Typically in an aggregation there will be exactly one aggregated - object, but some aggregations, e.g. those representing archive finding aids, may - refer to more than one object. Conversely, a CHO may be aggregated by several - aggregations. Typically, in the data maintained by Europeana, a CHO would be - aggregated by one EuropeanaAggregation, and at least one provider Aggregation. - Example:The aggregation of Mona Lisa edm:aggregatedCHO Mona Lisa. - - - - - - This property relates a ORE aggregation about a CHO with a web resource - providing a view of that CHO. Examples of view are: a thumbnail, a textual abstract - and a table of contents. The ORE aggregation may be a Europeana aggregation, in - which case the view is an object owned by Europeana (i.e., an instance of - edm:EuropeanaObject) or an aggregation contributed by a content provider. In order - to capture both these cases, the domain of edm:hasView is ore:Aggregation and its - range is edm:WebResource Example: An ore:Aggregation of Mona Lisa contributed by - Louvre may have as view a low resolution digital image of Mona Lisa. The issue - number 56 of “Le Temps” contributed by BNF may have as view a text of some parts of - the issue - - - - - - - The name or identifier of the organisation that contributes data to - Europeana. This element is specifically included to allow the name of the - organisation who supplies data to Europeana indirectly via an aggregator to be - recorded and displayed in the portal. Aggregator names are recorded in edm:provider. - If an organisation provides data directly to Europeana (i.e. not via an aggregator) - the values in edm:dataProvider and edm:provider will be the same. Although the range - of this property is given as edm:Agent organisation names should be provided as an - ordinary text string until a Europeana authority file for organisations has been - established. At that point providers will be able to send an identifier from the - file instead of a text string. The name provided should be the preferred form of the - name in the language the provider chooses as the default language for display in the - portal. Countries with multiple languages may prefer to concatenate the name in more - than one language (See the example below.) Note: Europeana Data Provider is not - necessarily the institution where the physical object is located. Example: The - current <edm:dataProvider>Palais des Beaux Arts de - Lille</edm:dataProvider> could become <edm:dataProvider>http:// - www.pba-lille.fr/</edm:dataProvider> - - - - - - - - Name of the organization that delivers data to Europeana. The - edm:provider is the organization that sends the data to Europeana, and this is not - necessarily the institution that holds or owns the original or digitised object. - Where data is being supplied by an aggregator or project edm:provider is the name of - aggregator/project. The name of the content holder can be recorded in - edm:dataProvider. If the content holder supplies data directly to Europeana then the - name should also appear in this element. Although the range of this property is - given as edm:Agent, organisation names should be provided as an ordinary text string - until a Europeana authority file for organisations has been established. At that - point providers will be able to send an identifier from the file instead of a text - string. The name should be in the original language(s). Example: The current - <edm:provider>Geheugen van Nederland</edm:provider> could become - <edm:provider>http://www.geheugenvannederland.nl/</edm:provider> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in the best available resolution/quality. See also edm:isShownAt. This is a URL - that will be active in the Europeana interface. It will lead users to the digital - object on the provider’s website where they can view or play it. The digital object - needs to be directly accessible by the URL and reasonably independent at that - location. If the URL includes short copyright information with the pointer to the - object it can be entered in edm:isShownBy. Use edm:isShownAt for digital objects - embedded in HTML pages (even where the page is extremely simple). Example: - <edm:isShownBy>http://resolver.kb.nl/resolve?urn=urn:gvn:RA01:30051001524450</edm:isShownBy> - - - - - - - An unambiguous URL reference to the digital object on the provider’s web - site in its full information context. See also edm:isShownBy.This is a URL that will - be active in the Europeana interface. It will lead users to the digital object - displayed on the provider’s web site in its full information context. Use - edm:isShownAt if you display the digital object with extra information (such as - header, banner etc). Example: - <edm:isShownAt>http://www.photo.rmn.fr/cf/htm/CPICZ.aspx?E=2C6NU0VFLVNY</edm:isShownAt> - - - - - - - The URL of a thumbnail representing the digital object or, if there is no - such thumbnail, the URL of the digital object in the best resolution available on - the web site of the data provider from which a thumbnail could be generated. This - will often be the same URL as given in edm:isShownBy. - Example:<edm:object>http://upload.wikimedia.org/wikipedia/en/f/f3/Europeana_logo.png</edm:object> - - - - - - - This element is used to identify user generated content (also called user - created content). It should be applied to all digitised or born digital content - contributed by the general public and collected by Europeana through a crowdsourcing - initiative or project. The only value this element can take is “TRUE” to indicate - that the object is user generated. It should be entered in uppercase. If the content - is not user generated then the element should not be provided. - Example:<edm:UGC>TRUE<edm:UGC> - - - - - - edm:hasMet relates a resource with the objects or phenomena that have - happened to or have happened together with the resource under consideration. We can - abstractly think of history and the present as a series of “meetings” between people - and other things in space-time. Therefore we name this relationship as the things - the object “has met” in the course of its existence. These meetings are events in - the proper sense, in which other people and things participate in any role. - Example:The location of an object may be due to a transport, move to a place, or - because it has been created at that spot. - - - - - - This property relates a resource with the concepts it belongs to in a - suitable type system such as MIME or any thesaurus that captures categories of - objects in a given field (e.g., the “Objects” facet in Getty’s Art and Architecture - Thesaurus). It does not capture aboutness. Example:The type of Mona Lisa is (AAT) - Painting. The type of a digital image of Mona Lisa may be JPEG. - - - - - - This property captures the use of some resource to add value to another - resource. Such resources may be nested, such as performing a theater play text, and - then recording the performance, or creating an artful edition of a collection of - poems or just aggregating various poems in an anthology. There may be no single part - that contains ultimately the incorporated object, which may be dispersed in the - presentation. Therefore, incorporated resources do in general not form proper parts. - Incorporated resources are not part of the same resource, but are taken from other - resources, and have an independent history. Therefore edm:incorporates is not a - sub-property of dcterm:hasPart. Example:The movie “A Clockwork Orange” incorporates - Rossini’s symphony from “La Gazza Ladra” in its original soundtrack. “E.A.Poe, The - Raven (poem)” is incorporated in “Emerson Lake & Palmers Tales of Mystery - (music)” which is incorporated in “Concert Recording 1973 (vinyl)”. - - - - - - This property captures a narrower notion of derivation than - edm:isSimilarTo, in the sense that it relates a resource to another one, obtained by - reworking, reducing, expanding, parts or the whole contents of the former, and - possibly adding some minor parts. Versions have an even narrower meaning, in that it - requires common identity between the related resources. Translations, summaries, - abstractions etc. do not qualify as versions, but do qualify as derivatives. - Example:The Italian translation of Moby Dick is a derivation of the original work. - - - - - - - edm:isRelatedTo is the most general contextual property in EDM. - Contextual properties have typically to do either with the things that have happened - to or together with the object under consideration, or what the object refers to by - its shape, form or features in a figural or encoded form. For sake of simplicity, we - include in the contextual relationships also the scholarly classification, which may - have either to do with the role and cultural connections of the object in the past, - or its kind of structure, substance or contents as it can be verified at present. - Example:Moby Dick is related to XIX century literature. Mona Lisa is related to - Renaissance Art. - - - - - - This property associates an information resource to the resource (if any) - that it represents. Example:A high resolution image created by the Multimedia Louvre - Lab by digitizing Mona Lisa is a representation of Mona Lisa - - - - - - Definition The most generic derivation property, covering also the case - of questionable derivation. Is Similar To asserts that parts of the contents of one - resource exhibit common features with respect to ideas, shapes, structures, colors, - words, plots, topics with the contents of the related resource. Those common - features may be attributed to a common origin or influence (in particular for - derivation), but also to more generic cultural or psychological factors. - - - - - - - This property captures the relation between the continuation of a - resource and that resource. This applies to a story, a serial, a journal etc. No - content of the successor resource is identical or has a similar form with that of - the precursor. The similarity is only in the context, subjects and figures of a - plot. Successors typically form part of a common whole – such as a trilogy, a - journal, etc. Example: "The Two Towers" is a successor of "Fellowship of the Ring". - The issue 57 of "Le Temps" is a successor of issue 56 of the Le Temps. - - - - - - - This property describes a relation between a physical thing and the - information resource that is contained in it, visible at it or otherwise carried by - it, if applicable. Example: An item of the Gutenberg’s edition realizes the Bible - - - - - - - This is a tag created by a user through the Europeana interface. - - - - - - - A point of time associated with an event in the life of the original - analog or born digital object. Example:<edm:year >1523</edm:year> - - - - - - - The geographic location and/or name of the repository, building, site, or - other entity whose boundaries presently include the resource. - - - - - - edm:isNextInSequence relates two resources S and R that are ordered - parts of the same resource A, and such that S comes immediately after R in the order - created by their being parts of A. Example: Page 34 of the Gutenberg Bible is next - in sequence to page 33 of the same title. - - - - - - This property captures the relation between an aggregation representing a - cultural heritage object and the Web resource representing that object on the - provider’s web site. Example: Mona Lisa, represented by the Europeana aggregation - europeana:ea-monalisa, has landing page - http://www.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=000PE025604 - - - - - - This is the name of the country in which the Provider is based or - “Europe” in the case of Europe-wide projects. Example: - <edm:country>AL</edm:country> - - - - - - A language assigned to the resource with reference to the Provider. - Example:<edm:language>ro</edm:language> - - - - - - An enumeration stating the type of EDM content provided - - - - diff --git a/schemas/fashionv2/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd b/schemas/fashionv2/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd deleted file mode 100644 index 29194b8..0000000 --- a/schemas/fashionv2/EDM-EXTERNAL-MAIN_Approach2FinalV2.xsd +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - This class comprises the Cultural Heritage objects that Europeana collects descriptions about. - - - - - - - - diff --git a/schemas/fashionv2/EDM-MAIN.xsd b/schemas/fashionv2/EDM-MAIN.xsd deleted file mode 100644 index a5d4d2b..0000000 --- a/schemas/fashionv2/EDM-MAIN.xsd +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - EDM First Implementation Schema: Main schema in the EDM namespace, to be wrapped up in RDF - - Technical contact: Borys Omelayenko - Modelling contact: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An URL for an image, or anything else that can be downloaded and represents a CHO. - - - - - - - - - - - - - - - - - EuropeanaType contains the Europeana Properties in addition to DC. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/ENRICHMENT.xsd b/schemas/fashionv2/ENRICHMENT.xsd deleted file mode 100644 index dd4451b..0000000 --- a/schemas/fashionv2/ENRICHMENT.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - EDM First Implementation Schema: Who-What-When-Where enrichments - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/FOAF.xsd b/schemas/fashionv2/FOAF.xsd deleted file mode 100644 index a7e6a95..0000000 --- a/schemas/fashionv2/FOAF.xsd +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - Europeana representation of Foaf elements - - - - - - - - - - - - - - diff --git a/schemas/fashionv2/FP.xsd b/schemas/fashionv2/FP.xsd deleted file mode 100644 index 3954ca2..0000000 --- a/schemas/fashionv2/FP.xsd +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - The value may be a literal or the identifier of the related resource. - Preference is given to the identifier. This property is the reverse of dc:subject. - Rationale: there is no EDM property available that expresses the reverse of dc:subject – i.e. - the relationship between an information object and another resource by which it is described. - Therefore it is decided to introduce a new property isSubjectOf, semantically equal to the - CIDOC-CRM concept P129 About (isSubjectOf). Note that, as this property is the exact reverse - of dc:subject, it may be sufficient to gen-erate this property by the portal. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/FashionV2.xsd b/schemas/fashionv2/FashionV2.xsd deleted file mode 100644 index 74967de..0000000 --- a/schemas/fashionv2/FashionV2.xsd +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - EDM First Implementation Schema: wrapped up as RDF/XML - - - - - - diff --git a/schemas/fashionv2/FashionV2.xsd.conf b/schemas/fashionv2/FashionV2.xsd.conf deleted file mode 100644 index b98a9f9..0000000 --- a/schemas/fashionv2/FashionV2.xsd.conf +++ /dev/null @@ -1,83 +0,0 @@ -{ - "version": "1.0", - "xsd": "Fashion.xsd", - "namespaces": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "edm": "http://www.europeana.eu/schemas/edm/", - "rdfs": "http://www.w3.org/2000/01/rdf-schema#", - "skos": "http://www.w3.org/2004/02/skos/core#", - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ore": "http://www.openarchives.org/ore/terms/", - "wgs84": "http://www.w3.org/2003/01/geo/wgs84_pos#", - "owl": "http://www.w3.org/2002/07/owl#", - "rdaGr2": "http://rdvocab.info/ElementsGr2/", - "foaf": "http://xmlns.com/foaf/0.1/", - "crm": "http://www.cidoc-crm.org/rdfs/cidoc_crm_v5.0.2_english_label.rdfs#", - "mrel": "http://id.loc.gov/vocabulary/relators/", - "gr": "http://www.heppnetz.de/ontologies/goodrelations/v1#", - "edmfp": "http://www.europeanafashion.eu/edmfp/" - }, - - "item": { - "element": "RDF", - "prefix": "edm" - }, - - "paths": { - "item": "/RDF", - "label": "/RDF/ProvidedCHO/title", - "id": "/RDF/ProvidedCHO/@about", - }, - - "customization": "fashion.groovy", - - "parameters": { - "baseURI": { - "type": "constant", - "value": "localID/" - }, - "collection": { - "type": "constant", - "value": "europeana-fashion" - } - }, - - "automaticMappings": { - "/RDF/ProvidedCHO/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ], - "/RDF/Aggregation/@about": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/Aggregation_", { type: "id" } ], - "/RDF/Aggregation/aggregatedCHO/@resource": [ { type: "parameter", name: "baseURI" }, { type: "parameter", name: "collection" }, "/", { type: "id" } ] - }, - - "navigation": [ - { - "name": "ProvidedCHO", - "element": "ProvidedCHO" - }, - { - "name": "Aggregation", - "element": "Aggregation" - } - ], - - "views": "fashion.views", - - "preview": [{ - "target": "EDM", - "parameters": [{ - "name": "provider", - "type": "mint", - "value": "mint.provider" - }], - "output": "xml", - "preview": [{ - "xsl": "edm2html.xsl", - "label": "Europeana", - "output": "html" - }] - }, { - "jsp": "fashion_portal_preview", - "output": "html", - "label": "Fashion Portal" - }] -} diff --git a/schemas/fashionv2/GR.xsd b/schemas/fashionv2/GR.xsd deleted file mode 100644 index f3ab2a2..0000000 --- a/schemas/fashionv2/GR.xsd +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/MREL.xsd b/schemas/fashionv2/MREL.xsd deleted file mode 100644 index a3d6d0b..0000000 --- a/schemas/fashionv2/MREL.xsd +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - EDMFP First Implementation Schema - - - - - - - - - - - Author - - - - - - - - Collaborator - - - - - - - - Curator - - - - - - - - Director - - - - - - - - Designer - - - - - - - - Editor - - - - - - - - Illustrator - - - - - - - - Interviewee - - - - - - - - Interviewer - - - - - - - - Photographer - - - - - - - - Producer - - - - - - - - Sound Designer - - - - - - - - Sponsor - - - - - - - - Set designer - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/ORE.xsd b/schemas/fashionv2/ORE.xsd deleted file mode 100644 index 23033a0..0000000 --- a/schemas/fashionv2/ORE.xsd +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - EDM First Implementation Schema: Aggregations - - - - - - - - - - - - - - Aggregated CHO: a link to the original CHO plus a new provider - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/OWL.xsd b/schemas/fashionv2/OWL.xsd deleted file mode 100644 index b7990d1..0000000 --- a/schemas/fashionv2/OWL.xsd +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - EDM First Implementation Schema: OWL - - - - - - - - The built-in OWL property owl:sameAs links an individual - to an individual. Such an owl:sameAs statement indicates that two - URI references actually refer to the same thing: the individuals - have the same "identity". - - - - \ No newline at end of file diff --git a/schemas/fashionv2/RDAGR2.xsd b/schemas/fashionv2/RDAGR2.xsd deleted file mode 100644 index 11e796c..0000000 --- a/schemas/fashionv2/RDAGR2.xsd +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - Europeana representation of the RDA Group 2 Element Vocabulary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/fashionv2/RDF.xsd b/schemas/fashionv2/RDF.xsd deleted file mode 100644 index 924d8ed..0000000 --- a/schemas/fashionv2/RDF.xsd +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - EDM First Implementation Schema: RDF resources and literals - - Technical contact: Borys Omelayenko - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/SKOS.xsd b/schemas/fashionv2/SKOS.xsd deleted file mode 100644 index 523caad..0000000 --- a/schemas/fashionv2/SKOS.xsd +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - EDM First Implementation Schema: SKOS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Base class for WebResource implementations - - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/The ParthenonOutput.xml b/schemas/fashionv2/The ParthenonOutput.xml deleted file mode 100644 index 9a58698..0000000 --- a/schemas/fashionv2/The ParthenonOutput.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - 2013-09-14 - - - The Parthenon - - - Athens, Greece - - - IMAGE - - - - - - - - - - - IVML - - - - - - - - - - - Petros Katsaros - - - - - \ No newline at end of file diff --git a/schemas/fashionv2/WGS84.xsd b/schemas/fashionv2/WGS84.xsd deleted file mode 100644 index 9a4995e..0000000 --- a/schemas/fashionv2/WGS84.xsd +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - EDM First Implementation Schema: WGS84 coordinates - - - - - - - - - - \ No newline at end of file diff --git a/schemas/lido/lido-draft-v0.9.xml b/schemas/lido/lido-draft-v0.9.xml deleted file mode 100644 index e69de29..0000000 diff --git a/schemas/lido/lido-draft-v0.9.xsd b/schemas/lido/lido-draft-v0.9.xsd deleted file mode 100644 index fd92266..0000000 --- a/schemas/lido/lido-draft-v0.9.xsd +++ /dev/null @@ -1,1448 +0,0 @@ - - - - LIDO - Lightweight Information Describing Objects - This draft document may be updated, replaced, or made obsolete by other documents at any time. - LIDO DRAFT v0.9 - XML Schema for Contributing Content to Cultural Heritage Repositories - ARTstor, Collections Trust, Deutscher Museumsbund - Fachgruppe Dokumentation, Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, digiCULT Schleswig-Holstein, Institut für Museumsforschung (SMB-PK), J. Paul Getty Trust, Zuse-Institut Berlin - LIDO draft version: 2010-03-23: lido-draft-v0.9.xsd - Prepared for CIDOC Working Group Data Harvesting and Interchange, CDWA Lite/museumdat Working Group, Collections Trust and Deutscher Museumsbund - Fachgruppe Dokumentation -by: Erin Coburn (ecoburn@getty.edu), Richard Light (richard@light.demon.co.uk), Gordon McKenna (gordon@collectionstrust.org.uk), Regine Stein (r.stein@fotomarburg.de), Axel Vitzthum (avitzthum@digicult.uni-kiel.de) - - - - - - Contains identifying, indexing actor information. - - - - - - A wrapper for name elements, if there exists more than one name for a single actor, repeat Name Actor Set. - Indicates names, appellations, or other identifiers assigned to an individual, group of people, firm or other corporate body, or other entity. - CDWA Lite v1.1: nameCreatorSet is generalized into nameActorSet - museumdat v1.0: nameActorSet - - - - - National or cultural affiliation of the person or corporate body. Controlled. - CDWA Lite v1.1: nationalityCreator is generalized into nationalityActor - museumdat v1.0: nationalityActor - - - - - A description of the lifespan of the person or the existence of the corporate body, using "ca." and any other expressions of uncertainty or nuance. For Birth and Death date attributes, record years of birth and death, estimated where necessary. For a corporate body, use birthdate and deathdate to record the dates of founding and dissolution. - Although this is not a mandatory field the use of birth date and death date is strongly recommended in the case of artists. - If only a reference period (not the exact period of life) of a person is known, and the event in which the person took part cannot be exactly dated, then the reference period should be taken as the dating of the event. - CDWA Lite v1.1: vitalDatesCreator is generalized into vitalDatesActor - museumdat v1.0: vitalDatesActor - - - - - - - - - - - - - - - - - The sex of the individual. Not applicable for corporate bodies. - Data values: male, female, unknown, not applicable. - CDWA Lite v1.1: genderCreator is generalized into genderActor - museumdat v1.0: genderActor - - - - - - Indicates if the actor is an individual, a group of individuals or a corporation (firm or other corporate body). - CDWA Lite v1.1: nameCreator@type is replaced by actorType (as it characterizes the actor self and not the name) - museumdat v1.0: nameActor@type is replaced by actorType (as it characterizes the actor self and not the name) - - - - - - - - - - - - - Describes an actor with role and (if necessary) attributions related to the event the actor participated in. - CDWA Lite v1.1: indexingCreatorSet is generalized into actorInRole - museumdat v1.0: indexingActorSet - - - - - - Role of the Actor in the event. Controlled - CDWA Lite v1.1: roleCreator is generalized into roleActor - museumdat v1.0: roleActor - - - - - A qualifier used when the attribution is uncertain, is in dispute, when there is more than one actor, when there is a former attribution, or when the attribution otherwise requires explanation. - Data values: attributed to, studio of, workshop of, atelier of, office of, assistant of, associate of, pupil of, follower of, school of, circle of, style of, after copyist of, manner of... - CDWA Lite v1.1: attributionQualifierCreator is generalized into attributionQualifierActor - museumdat v1.0: attributionQualifierActor - - - - - Extent of the actor's participation in the event, if there are several actors. - Data values: design, execution, with additions by, figures, renovation by, predella, embroidery, cast by, printed by, ... - CDWA Lite v1.1: extentCreator is generalized into extentActor - museumdat v1.0: extentActor - - - - - - - Wrapper for display and index elements for an actor with role information (participating in an event). For multiple actors repeat the element. - - - - - Display element for an actor, corresponding to the following actor element. - May include name, brief biographical information, and roles (if necessary) of the named actor, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor. - May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese." - Repeat this element only for language variants! - CDWA lite v1.1: displayCreator corresponds partly / is generalized into lido:displayActor - museumdat v1.0: displayCreator corresponds partly / is generalized into lido:displayActor - - - - - - - - Wrapper for display and index elements for an actor. For multiple actors repeat this element. - - - - - Display element for an actor, corresponding to the following actor element. - May include name, brief biographical information of the named actor, presented in a syntax suitable for display to the end-user. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor. - May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese." - Repeat this element only for language variants! - CDWA lite v1.1: displayCreator corresponds partly to lido:displayActor (without role information) - museumdat v1.0: displayCreator corresponds partly to lido:displayActor (without role information) - - - - - - - - - - - - - - - - Holds the administrative metadata of an object record. - The attribute xml:lang is mandatory and specifies the language of the administrative metadata. - For fully multi-lingual resources, repeat this element once for each language represented. - If only a few data fields (e.g. creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - CDWA Lite v1.1: administrativeMetadata - museumdat v1.0: administrativeMetadata - - - - - - - - - - - - - Wrapper for a name of an entity, and its related information. If there is more than one name, repeat the appellation element. - - - - - Appellations, e.g. titles, identifying phrases, or names given to an item, but also name of a person or corporation, also place name etc. - CDWA Lite v1.1: e.g. title, nameCreator, locationName correspond to lido:appellationValue - museumdat v1.0: e.g. title, repositoryName, nameActor, nameLocation correspond to lido:appellationValue - - - - - - - - - - - - - - - The source for the appellation, generally a published source. - CDWA Lite v1.1: e.g. sourceTitle, sourceNameCreator correspond to lido:sourceAppellation - museumdat v1.0: e.g. sourceTitle, sourceNameActor correspond to lido:sourceAppellation - - - - - - - - - - - - - - - - A wrapper for classification information. - - - - - - Term used to categorize a work by grouping it together with other works on the basis of similar characteristics. The category belongs to a systematic scheme (classification) which groups objects of similar characteristics according to uniform aspects. This grouping / classification may be done according to material, form, shape, function, region of origin, cultural context, or historical or stylistic period. In addition to this systematic grouping it may also be done according to organizational divisions within a museum (e.g., according to the collection structure of a museum).If the work is assigned to multiple classifications, repeat this element. - CDWA Lite v1.1: classification (assigns a term) corresponds to lido:classification (assigns a concept with its identifiers and various terms) - museumdat v1.0: classification (assigns a term) corresponds to lido:classification (assigns a concept with its identifiers and various terms) - - - - - - - - - - - - - - - Set for identifiers and terms of a concept. - - - - - - - - - A wrapper for date specification: This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest dates. - Format of the data values is according to ISO 8601. This includes date and time specification. - For ca. and other uncertain or approximate dates, estimate the greatest possible span for indexing. Uncertainty should be indicated in the display element. - CDWA Lite v1.1: indexingDatesSet is generalized and refined into lido:dateComplexType - museumdat v1.0: indexingDates is refined into lido:dateComplexType - - - - - A year or exact date that broadly delimits the beginning of an implied date span. Format: YYYY[-MM[-DD]] - CDWA Lite v1.1: earliestDate - museumdat v1.0: earliestDate - - - - - - - - - - - - - - A year or exact date that broadly delimits the end of an implied date span. Format: YYYY[-MM[-DD]] - CDWA Lite v1.1: latestDate - museumdat v1.0: latestDate - - - - - - - - - - - - - - - - Wrapper for display and index elements for date information. - - - - - Display element for a date specification, corresponding to the following date element. - It is a concise description of the date, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. - Repeat this element only for language variants! - CDWA lite v1.1: displayCreationDate is generalized into lido:displayDate - museumdat v1.0: displayCreationDate is generalized into lido:displayDate - - - - - - - - Holds the descriptive metadata of an object record. - The attribute xml:lang is mandatory and specifies the language of the descriptive metadata. - For fully multi-lingual resources, repeat this element once for each language represented. - If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - CDWA Lite v1.1: descriptiveMetadata - museumdat v1.0: descriptiveMetadata - - - - - - - - - - - - - - A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this set. - - - - - Usually a relatively brief essay-like text that describes the entity. - - - - - The source for the descriptive note, generally a published source. - - - - - - - - A wrapper for Display State Editions - CDWA Lite v1.1: displayStateEditionWrap - museumdat v1.0: displayStateEditionWrap - - - - - - A description of the state of the work; used primarily for prints and other multiples - Formulated according to rules. For State, include state identification and known states, as appropriate. - Repeat this element only for language variants! - CDWA Lite v1.1: displayState - museumdat v1.0: displayState - - - - - A description of the edition of the work; used primarily for prints and other multiples. - Formulated according to rules. For Edition, include impression number, edition size, and edition number, or edition name, as appropriate. - Repeat this element only for language variants! - CDWA Lite v1.1: displayEdition - museumdat v1.0: displayEdition - - - - - The published source of the state or edition information. - CDWA Lite v1.1: sourceStateEdition - museumdat v1.0: sourceStateEdition - - - - - - - - - Complex type for one event related with the work and its related information. If there is more than one event described, repeat the Event Set element. - CDWA Lite v1.1: no equivalent - museumdat v1.0: indexingEventSet is extended and refined into lido:eventComplexType - - - - - - Qualifier of the event, e.g. creation, find, ... Data values to be controlled. Recommended: Defined list of subclasses of CRM entity E5 Event. - CDWA Lite v1.1: no equivalent - museumdat v1.0: eventType is refined into lido:eventType - - - - - The role played within this event by the object being recorded. - - - - - - - Name of a culture, people, or nationality participating in the event. Controlled. - CDWA Lite v1.1: culture - museumdat v1.0: culture - - - - - Date specification of the event. - - - - - A period defining the range of dates. Data values should be controlled. - - - - - Place specification of the event. - - - - - - - - - - - - The method by which the event is carried out. Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - Indicates the substances or materials used within the event (e.g. the creation of a work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - References an other object that was present at this same event. - - - - - An event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - A description of the event. - - - - - - - Wrapper for display and index elements for events (e.g. creation, find, use etc.), in which the described object participated. For multiple events repeat the element. - - - - - Display element for an event, corresponding to the following event element. - Repeat this element only for language variants! - - - - - - - - Wrapper for event sets. - CDWA Lite v1.1:no equivalent - museumdat v1.0: eventWrap corresponds to lido:eventWrap - - - - - - - - - - - GML Instantiation - - - - - - - - - - There is no controlled list of identifier types. Suggested values include, but are not limited to the following:doi (Digital Objects Identifier)guid (Globally unique identifier)hdl (Handle)isbn (International Standard Book Number)ismn (International Standard Music Number)isrc (International Standard Recording Code)issn (International Standard Serials Number)localpermalinkpurl (Persistent Uniform Resource Locator)url (Uniform Resource Locator)urn (Uniform Resource Name) - - - - - - - - - - - - - - A wrapper for information about inscriptions and other marks. - CDWA Lite v1.1: inscriptionsWrap - museumdat v1.0: inscriptionsWrap - - - - - - A description or transcription of any distinguishing or identifying physical lettering, annotations, texts, markings, or labels that are affixed, applied, stamped, written, inscribed, or attached to the work, excluding any mark or text inherent in the materials of which the work is made (record watermarks in Display Materials/Techniques). - The assigned type attribute allows to qualify text, e.g. to indicate that the text is a transcription of the inscription - CDWA Lite v1.1: inscriptions, with a newly assigned type attribute - museumdat v1.0: inscriptions, with a newly assigned type attribute - - - - - - - - - - - - - - - - Reference information to a legal body - - - - - Unambiguous identification of the institution or person. - - - - - Appellation of the institution or person. - - - - - Weblink of the institution or person. - - - - - - - Holds the metadata of an object. - CDWA Lite v1.1: cdwalite - museumdat v1.0: museumdat - - - - - - A unique lido record identification, preferably composed of an identifier for the contributor and a record identification in the contributor's (local) system. - - - - - - - - - - - Holds one or multiple object records. - The attribute relatedencoding contains the source format for the attributes encodinganalog and label (see Object type). This may be any metadata standard like Dublin Core, but also MIDAS, KNORR or system-specific formats. This attribute is optional. - CDWA Lite v1.1: cdwaliteWrap - museumdat v1.0: museumdatWrap - - - - - - - - - - - - Materials and techniques for retrieval; if multiple parts of the work require separate materials and techniques, or if you are recording media and support separately, repeat the materialsTechSet element qualifying the extent sub-element. - - - - - A term to index materials and/or technique. - Data values for Type-Attribut: technique, material, implement, mark (e.g., watermark or other mark inherent in the material) - - - - - - - - - - - - An explanation of the part of the work to which the materials or technique are applicable; included when necessary for clarity. - - - - - The source of the information about materials and technique, often used when citing a published source of watermarks. - - - - - - - Wrapper for display and index elements for materials and technique information. - Indicates the substances or materials used, as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - Display element for materials/technique, corresponding to the following materialsTech-Element. - It is presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. - Repeat this element only for language variants! - - - - - - - - Wrapper for data classifying the object. - CDWA Lite v1.1:no equivalent - museumdat v1.0: objectClassificationWrap - - - - - - - - - - - Reference to an object. - - - - - A Uri/Url-Reference representing the object in the worldwide web environment. - CDWA Lite v1.1: linkRelatedWork - museumdat v1.0: linkRelatedWork - - - - - Unique identifier of the referenced object. - CDWA Lite v1.1: locRelatedWork@relWorkID corresponds to lido:objectID - museumdat v1.0: locRelatedWork@relWorkID corresponds to lido:objectID - - - - - A descriptive identification of the object that will be meaningful to end-users, including some or all of the following information, as necessary for clarity and if known: title, object/work type, important actor, date and/or place information, potentially location of the object. - The information should ideally be generated from fields/elements in the related record. - CDWA Lite v1.1: labelRelatedWork - museumdat v1.0: labelRelatedWork - - - - - - - - - - - - - - A wrapper for Description/Descriptive Note information. - CDWA Lite v1.1: descriptiveNoteWrap - museumdat v1.0: descriptiveNoteWrap - - - - - - A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this sub-element. - Includes usually a relatively brief essay-like text that describes the content and context of the work, including comments and an interpretation that may supplement, qualify, or explain the physical characteristics, subject, circumstances of creation or discovery, or other information about the work. - Data values for the type attribute: Object history, description, catalogue text etc. - CDWA Lite v1.1: descriptiveNoteSet - museumdat v1.0: descriptiveNoteSet - - - - - - - - A Wrapper for information that identifies the object. - CDWA Lite v1.1:no equivalent - museumdat v1.0: identificationWrap corresponds to lido:objectIdentificationWrap - - - - - - - - - - - - - - - The dimensions, size, shape, scale, format, or storage configuration of the work, including volume, weight, area or running time. Measurements are formatted to allow retrieval; preferably in metric units where applicable. - CDWA Lite v1.1: indexingMeasurementsSet, with all sub-elements - museumdat v1.0: indexingMeasurementsSet, with all sub-elements - - - - - The dimensions or other measurements for one aspect of a work (e.g., width); may be combined with extent, qualifier, and other sub-elements as necessary. - Data values for value: Whole numbers or decimal fractions. - Data values for unit: cm, mm, m, g, kg, kb, Mb, Gb. - Data values for type: height, width, depth, length, diameter, circumference, stories, count, area, volume, running time, size, ... - All three attributes - unit, value and type - are mandatory attributes for the measurementsSet. - - - - - - - - - - - - - An explanation of the part of the work being measured; included when necessary for clarity. - Data values: overall, components, sheet, plate mark, chain lines, pattern repeat, lid, base, laid lines, folios, leaves, columns per page, lines per page, tessera, footprint, panel, interior, mat, window of mat, secondary support, frame, mount, ... - - - - - A word or phrase that elaborates on the nature of the measurements of the work when necessary, as when the measurements are approximate. - Data values: approximate, sight, maximum, larges, smallest, average, variable, assembled, before restoration, before restoration, at corners, rounded, framed, with base, ... - - - - - The configuration of a work, including technical formats, used as necessary. - Data values: Vignette, VHS, IMAX, DOS ... - - - - - The shape of a work, used for unusual shapes (e.g., an oval painting). - Data values: oval, round, square, rectangular, irregular, ... - - - - - An expression of the ratio between the size of the representation of something and that thing (e.g., the size of the drawn structure and the actual built work). Used for studies, record drawings, models, and other representations drawn or constructed to scale. - Data values for scale: numeric (e.g., 1 inch = 1 foot), full-size, life-size, half size,monumental. and others as recommended in CCO and CDWA. Combine this tag with Measurement Sets for numeric scales. For measurementsSet type for Scale, use "base" for the left side of the equation, and "target" for the right side of the equation). - - - - - - - Wrapper for display and index elements for object measurements. If multiple parts of the work are measured, repeat the element - Holds information about the dimensions, size, or scale of the work. It may also include the number of the parts of a complex work, series, or collection. - - - - - Display element for one object measurement, corresponding to the following objectMeasurement element. - Repeat this element only for language variants! - - - - - - - - A wrapper for the Measurements. - - - - - - - - - - Wrapper for indexing related topics and works, collections, etc. - CDWA Lite v1.1:no equivalent - museumdat v1.0: relationWrap corresponds to lido:objectRelationWrap - - - - - - - - - - - Wrapper for display and reference elements for an other object. - - - - - A free-text description of the object, corresponding to the following object element - Repeat this element only for language variants! - - - - - - - - A wrapper for Object/Work Types. - - - - - - Object Work Types are identifying the specific kind of object or work being described. For a collection, include repeating instances for identifying all of or the most important items in the collection. - CDWA Lite v1.1: objectWorkType (assigns a term) corresponds to lido:objectWorkType (assigns a concept with its identifiers and various terms) - museumdat v1.0: objectWorkType (assigns a term) corresponds to lido:objectWorkType (assigns a concept with its identifiers and various terms) - - - - - - - - Structured element for place information - CDWA Lite v1.1: locationSet corresponds partly to lido:placeComplexType - museumdat v1.0: indexingLocationWrap is refined into lido:placeComplexType - - - - - - The name of the geographic place. If there are different names of the same place, e.g. today's and historical names, repeat this element. - CDWA Lite v1.1: locationName corresponds partly to lido:namePlaceSet/lido:appellationComplexType - museumdat v1.0: nameLocationSet - - - - - GML-conformant Content - - - - - - - - - - - - Allows for indexing larger geographical entities. - - - - - A classification of the place, e.g. by geological complex, stratigraphic unit or habitat type. - - - - - - - - - - - - - Data values can include: Gemeinde, Kreis, Bundesland, Staat, Herzogtum, city, county, country, civil parish - - - - - Data values can include: Naturraum, Landschaft, natural environment, landscape - - - - - - Wrapper for display and index elements for place information. - - - - - Display element for a place specification, corresponding to the following place element. - Repeat this element only for language variants! - - - - - - - - - - - - - - - - - Wrapper for metadata information about this record. - Note: The metadata information contains the reference to the "lido"-metadata set but may also be constituted by reference to an "object data sheet" in an online database. - CDWA Lite v1.1: recordInfoWrap - museumdat v1.0: recordInfoSet - - - - - Unique ID of the metadata. Record Info ID has the same definition as Record ID but out of the context of original local system, such as a persistent identifier or an oai identifier (e.g., oai1:getty.edu:paintings/00001234 attribute type= oai). - - - - - Link of the metadata, e.g., to the object data sheet (not the same as link of the object). - - - - - Unique ID of the metadata of the related object. - - - - - Pointer(s) to other metadata (administrative, technical, structural). - - - - - Creation date or date modified of the metadata record. Format will vary depending upon implementation. - - - - - - - - - - - - - - - - A wrapper for information about the record that contains the cataloguing information. - CDWA Lite v1.1: recordWrap - museumdat v1.0: recordWrap - - - - - - A unique record identification in the contributor's (local) system. - - - - - Term establishing whether the record represents an individual item or a collection, series, or group of works. - It is required to designate the Record type. The default is item. Other data values: collection, series, group, volume, fonds, - - - - - The source of information in this record, generally the repository or other institution. - - - - - Information about rights regarding the metadata provided in this record. - - - - - - - - - A wrapper for one event related to the described event. - - - - - - A term describing the nature of the relationship between the described event and the related event. - Recommended data values: sub-event of, ... The default is "related to". - Note: For implementation of the data: Note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship. - - - - - - - A wrapper for one work, group, collection, or series that is directly related to the work at hand, including direct relationships between two works, between a work and its components, and between an item and the larger group, collection, or series of works. Objects referred to may be corresponding objects or objects created to be shown together with the object in question, but also e.g., literature (bibliographic objects) in which the object is documented or mentioned forms a "relatedWorkSet". If there is more than one object referred to the set should be repeated. - - - - - - A term describing the nature of the relationship between the work at hand and the related entity. - Recommended data values: part of, larger context for, model of, model for, study of, study forrendering of, copy of, ... The default is "related to". - Note: For implementation of the data: Note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship (e.g., one work is part of a second work, but from the point of view of the second record, the first work is the larger context for the second work). Whether or not relationships are physically reciprocal as implemented in systems is a local decision. - - - - - - - A wrapper for Related Works information. - - - - - - - - - - Wrapper for designation and identification of the institution of custody and, possibly, indication of the exact location of the object. If there are several designations known, e.g., a current one and former ones (see: type attribute), repeat the element. - CDWA Lite v1.1: locationSet is partly a subset of lido:repositorySet - museumdat v1.0: repositorySet - refined into lido:repositorySet (see repositoryName and repositoryLocation) - - - - - Unambiguous identification, designation and weblink of the institution of custody - CDWA Lite v1.1: locationName corresponds partly to lido:repositoryName - museumdat v1.0: repositoryName - refined into lido:repositoryName - - - - - An unambiguous numeric or alphanumeric identification number, assigned to the object by the institution of custody. - CDWA Lite v1.1: workID - museumdat v1.0: workID - - - - - - - - - - - - - - Location of the object, especially relevant for architecture and archaeological sites. - - - - - - - - - - - - - - - Wrapper for Repository/ Location information. - CDWA Lite v1.1: locationWrap is partly corresponding lido:repositorySet - museumdat v1.0: repositoryWrap - refined into lido:repositoryWrap (see repositoryName and repositoryLocation) - - - - - - - - - - A wrapper for sets of resource information. If there are multiple resources associated with the work, repeat the Resource Set sub-element. - CDWA Lite v1.1: resourceSet - museumdat v1.0: resourceSet - - - - - A uri/url reference that is universal in the worldwide web environment. - - - - - - - - - - - - The unique numeric or alphanumeric identification of the resource. - - - - - The relationship of an image or other resource to the work being described. - Data values: conservation image, documentary image, contextual image, historical image, reconstruction, installation image... - - - - - - - - - - - - The generic identification of the medium of the image or other resource. - Data values: Controlled. Digital image, photograph, slide, videotape, X-ray photograph, negative, - - - - - Information about rights regarding the image or other resource. Use this sub-element if the holder of the reproduction rights for the image/resource differs from the holder of rights for the work. See also Rights Work above. (E.g., the work rights are " National Museum of African Art, Smithsonian Instituition (Washing DC), " but the image rights are "Photo Frank Khoury.") - - - - - A description of the spatial, chronological, or contextual aspects of the work as captured in the view of this particular image or other resource. - - - - - - - - - - - - The specific vantage point or perspective of the view. - - - - - Terms or phrases that characterize the subject matter of the work as it is depicted in a specific image or other resource. - Data values: Controlled. E.g., IconClass, museumsvokabular.de, SWD, AAT - Recommended values for type attribute: conceptTerm, iconography, eventName, personalName, corporateBodyName, geographicName - - - - - - - - - - - - A date or range of dates associated with the creation or production of the image. This is not necessarily the same as the date of production of the resource (e.g., a print of a negative may be made years after the image was first captured on film). For the date of the resource, use Resource Date. Format will vary depending upon implementation. - - - - - - - - - - - - - - - - Identification of the agency, individual, repository, or publication from which the image or other resource was obtained, including a bibliographic citation in the case of copy photography. Include this sub-element when the source of the image/resource differs from the source named in Record Source. - - - - - - - - - - - - A reference to an image or other resource that is related to the resource in this Resource Set, generally linking a group or collection of images or other resources to members of the group or collection. For multiple related resources, repeat this element. - - - - - - A term describing the nature of the relationship between the resource at hand and the related resource. - Recommended values: part of, larger context for, related to, ... - - - - - An identification of the related image or other resource that will be meaningful to end-users. - - - - - - - - - Pointer(s) to other metadata (administrative, technical, structural). - - - - - - - - - - - - - - A wrapper for image information. An identification of an image (visual surrogate) of the work, including digital images, slides, transparencies, photographs, and moving images, but excluding items that are considered works in their own right. For works such as drawings, prints, paintings, or photographs considered art, and other works that themselves contain representations of other works, use Related Works and/or Subjects. - CDWA Lite v1.1: resourceWrap - museumdat v1.0: resourceWrap - - - - - - - - - - Information about rights management; may include copyright and other intellectual property statements. - - - - - The specific type of right being recorded. For example: copyright, publication right, data protection right, trademark. - - - - - The date on which a right is or was current. - - - - - The holder of the right. - - - - - Acknowledgement of the rights associated with the physical and/or digital object. - Repeat this element only for language variants. - - - - - - - Wrapper for rights information. - CDWA Lite v1.1: no equivalent (cdwalite:rightsWork is not wrapped) - museumdat v1.0: no equivalent (museumdat:rightsWork is not wrapped) - - - - - - Information about rights management; may include copyright and other intellectual property statements required for use of the metadata. - CDWA Lite v1.1: rightsWork / rightsResource - semantics of the simple text elements correspond to the structured lido:rightsComplexType - museumdat v1.0: rightsWork / rightsResource - semantics of the simple text elements correspond to the structured lido:rightsComplexType - - - - - - - - - A wrapper for one set of Subject Indexing information. These identify, describe, and/or interpret what is depicted in and by a work or what the work is about. If a work has multiple parts or otherwise has separate, multiple subjects, repeat this element with Extent Subject. This element may also be repeated to distinguish between subjects that reflect what a work is *of* (description and identification) from what it is *about* (interpretation). - While not required, it is highly recommended to include subject information, even for non-objective art, for which the function or purpose of the work may be included as subject. - CDWA Lite v1.1: indexingSubjectSet, but refined - museumdat v1.0: indexingSubjectSet, but refined - - - - - When there are multiple subjects, a term indicating the part of the work to which these subject terms apply. - Data values: recto, verso, side A, side B, main panel, predella, ... - CDWA Lite v1.1: extentSubject - museumdat v1.0: extentSubject - - - - - Subject terms - these may include iconography, themes from literature, or generic terms describing the material world, or topics (e.g., concepts, themes, or issues). However, references to people, events, places are indicated in the the respective sub-elements Subject: Actor, Subject: Event, Subject: Place. - Data values should be controlled, e.g. Iconclass, AAT, museumsvokabular.de, SWD. - CDWA Lite v1.1: subjectTerm, but restricted to concepts - cf. new sub-elements subjectActor, subjectEvent, subjectPlace - museumdat v1.0: subjectTerm, but restricted to concepts - cf. new sub-elements subjectActor, subjectEvent, subjectPlace - - - - - A person, group, or institution depicted in or by an object, or the object is about. - - - - - A time specification or period depicted in or by an object, or the object is about. - - - - - An event depicted in or by an object, or the object is about. - - - - - A place depicted in or by an object, or the object is about. - - - - - An object - e.g. a building or a work of art depicted in or by an object, or the object is about. - - - - - - - - A single set of subject indexing information, together with its textual equivalent. - - - - - A free-text description of the subject matter represented by/in the object, corresponding to the following subject element - Repeat this element only for language variants! - - - - - - - - A wrapper for Subject information. - - - - - - - - - - A name for a concept / term, usually from a controlled vocabulary. - The attributes are to be used as follows:pref - has allowable values: preferred | alternate. Indicates whether it is the preferred name of the concept / term, or an alternative name.xml:lang - specifies the language of the concept / term.addedSearchTerm - has allowable values: yes | no. Default is "no". imported = "yes" means that the item includes an additional item (e.g. synonym, generic term) from the standard vocabulary used, which is included only for retrieval purposes.encodinganalog and label - used to indicate the category of data from the source system from the data values were taken. encodinganalog refers to the internal label for the external field name. The reference format is specified in lidoWrap.The attributes are optional. - - - - - - - - - - - - - - Simple text element with encodinganalog and label attribute - - - - - - - - - - - - Wrapper for Object name / Title information. - CDWA Lite v1.1: titleWrap - museumdat v1.0: titleWrap - - - - - - Wrapper for one title or object name and its related information. If there is more than one title, repeat the Title Set element. - CDWA Lite v1.1: titleSet - museumdat v1.0: titleSet - - - - - - - - - - - - - - - - A uri/url reference to a web resource that describes / represents the item, e.g. a metadata record. Note that it differs from an identifier for the item itself. - - - - - - - - - - - - - diff --git a/schemas/lido/lido-draft-v1.0.xsd b/schemas/lido/lido-draft-v1.0.xsd deleted file mode 100644 index 0eff85b..0000000 --- a/schemas/lido/lido-draft-v1.0.xsd +++ /dev/null @@ -1,1762 +0,0 @@ - - - - - - - Definition: Contains identifying and indexing actor information. - - - - - Definition: A unique identifier for the actor. - How to record: Preferably taken from a published authority file. - - - - - Definition: A wrapper for name elements. - How to record: if there exists more than one name for a single actor, repeat Name Actor Set. - Notes: Indicates names, appellations, or other identifiers assigned to an individual, group of people, firm or other corporate body, or other entity. - - - - - Definition: National or cultural affiliation of the person or corporate body. - How to record: Controlled. Referenced as concept. - - - - - - - - - - - - Definition: The lifespan of the person or the existence of the corporate body or group. - How to record: For individuals, record birth date as earliest and death date as latest date, estimated where necessary. For a corporate body or group, record the dates of founding and dissolution.Although this is not a mandatory field the use of birth date and death date is strongly recommended for unambigous identification of individuals. The type attribute of earliest and latest date may specify for indiviudals, if birth and death dates or if dates of activity are recorded. Data values for type attribute may include: birthDate, deathDate, estimatedDate. - - - - - Definition: The sex of the individual. - How to record: Data values: male, female, unknown, not applicable. - Notes: Not applicable for corporate bodies. - - - - - - Definition: Indicates if the actor is an individual, a group of individuals, a family or a corporation (firm or other corporate body). - How to record: Data values: person, group, family, corporation. - - - - - - Definition: Describes an actor with role and (if necessary) attributions related to the event the actor participated in. - - - - - Definition: Contains structured identifying and indexing actor information. - - - - - Definition: Role of the Actor in the event. - How to record: Controlled. - - - - - - - - - - - - Definition: A qualifier used when the attribution is uncertain, is in dispute, when there is more than one actor, when there is a former attribution, or when the attribution otherwise requires explanation. - How to record: Example values: attributed to, studio of, workshop of, atelier of, office of, assistant of, associate of, pupil of, follower of, school of, circle of, style of, after copyist of, manner of... - - - - - Definition: Extent of the actor's participation in the event, if there are several actors. - How to record: Example values: design, execution, with additions by, figures, renovation by, predella, embroidery, cast by, printed by, ... - - - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating in an event). For multiple actors repeat the element. - - - - - Definition: Display element for an actor, corresponding to the following actor element. - How to record: May include name, brief biographical information, and roles (if necessary) of the named actor, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor.May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese."Repeat this element only for language variants. - - - - - Definition: Describes an actor with role and (if necessary) attributions in a structured way, consisting of the sub-elements actor, its role, attribution and extent. - - - - - - - Definition: Wrapper for display and index elements for an actor. For multiple actors repeat this element. - - - - - Definition: Display element for an actor, corresponding to the following actor element. - How to record: May include name, brief biographical information of the named actor, presented in a syntax suitable for display to the end-user. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor.May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese."Repeat this element only for language variants. - - - - - Definition: Describes and identifies an actor, i.e. a person, corporation or group. Consists of the sub-elements displayActor which is a free-text description of the actor, and actor as structured sub-element for indexing and identification references. - - - - - - - How to record: Has the two values: "yes" or "no". ”yes” indicates, that the term is an additional term which is derived from an underlying controlled vocabulary (eg. synonym, generic term, superordinate term) and should be used only for retrieval."no" is default. - - - - - - - - - - - Definition: Holds the administrative metadata for an object / work record. - How to record: The attribute xml:lang is mandatory and specifies the language of the administrative metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - - - - - - - - - Definition: Wrapper for a name of an entity, and its related information. - How to record: If there is more than one name, repeat the appellation element. - - - - - Definition: Appellations, e.g. titles, identifying phrases, or names given to an item, but also name of a person or corporation, also place name etc. - - - - - - - - - - - - - - - Definition: The source for the appellation, generally a published source. - - - - - - - - - - - - - - - - Definition: A wrapper for classification information. - - - - - - Definition: Concepts used to categorize an object / work by grouping it together with others on the basis of similar characteristics. - How to record: The category belongs to a systematic scheme (classification) which groups objects of similar characteristics according to uniform aspects. This grouping / classification may be done according to material, form, shape, function, region of origin, cultural context, or historical or stylistic period. In addition to this systematic grouping it may also be done according to organizational divisions within a museum (e.g., according to the collection structure of a museum). If the object / work is assigned to multiple classifications, repeat this element. - - - - - - - - - - - - - - - - Definition: Set for identifiers and terms of a concept. - How to record: A concept describes a conceptual resource. Concepts are organized in concept schemes like thesauri, classification schemes, taxonomies, subject-heading systems, or any other type of structured controlled vocabulary. See also SKOS specifications at http://www.w3.org/2004/02/skos/ - - - - - Definition: A unique identifier for the concept. - How to record: Preferably taken from and linking to a published controlled vocabulary. - - - - - Definition: A name for the concept, used for indexing. - - - - - - - Definition: A wrapper for date specification. - How to record: This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest date. Format of the data values is according to ISO 8601. This includes date and time specification. For ca. and other uncertain or approximate dates, estimate the greatest possible span for indexing. Uncertainty can be indicated in the type attributes of earliest and latest date, and can be characterized more precisely in the display element. - - - - - Definition: A year or exact date that broadly delimits the beginning of an implied date span. - How to record: Format: YYYY[-MM[-DD]] - - - - - - - Definition: Specification of the date, e.g. if it is an exact or an estimated earliest date. - How to record: Data values may be: exactDate, estimatedDate. - - - - - - - - - - - - Definition: A year or exact date that broadly delimits the end of an implied date span. - How to record: Format: YYYY[-MM[-DD]] - - - - - - - Definition: Specification of the date, e.g. if it is an exact or an estimated latest date. - How to record: Data values may be: exactDate, estimatedDate. - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for date information. - - - - - Definition: Display element for a date specification, corresponding to the following date element. - How to record: It is a concise description of the date, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance.Repeat this element only for language variants. - - - - - Definition: Contains a date specification by providing a set of years as earliest and latest date delimiting the respective span of time. - - - - - - - Definition: Holds the descriptive metadata of an object record. - How to record: The attribute xml:lang is mandatory and specifies the language of the descriptive metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - - - - - - - - - - Definition: A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this set. - - - - - Definition: Identifier for an external resource describing the entity. - Notes: The referenced resource may be any kind of document, preferably a web-accessible one. - - - - - Definition: Usually a relatively brief essay-like text that describes the entity. - How to record: Repeat this element only for language variants. - - - - - Definition: The source for the descriptive note, generally a published source. - How to record: Repeat this element only for language variants. - - - - - - - - - Definition: A wrapper for the state and edition of the object / work. - - - - - - Definition: A description of the state of the object / work. Used primarily for prints and other multiples - How to record: Formulated according to rules. For State, include state identification and known states, as appropriate.Repeat this element only for language variants. - - - - - Definition: A description of the edition of the object / work. Used primarily for prints and other multiples. - How to record: Formulated according to rules. For Edition, include impression number, edition size, and edition number, or edition name, as appropriate.Repeat this element only for language variants. - - - - - Definition: The published source of the state or edition information. - - - - - - - - How to record: Elements with data values are accompanied by the attributes encodinganalog and label to indicate the format of the data source from which the data were migrated. The attribute encodinganalog refers to the internal field label of the source database. The source format is indicated in the attribute relatedencoding of the lidoWrap - - - - - Definition: Complex type for one event associated with the object / work and its related information. - How to record: If there is more than one event repeat the Event Set element. - Notes: [none] - - - - - Definition: A unique identifier for the event. - How to record: Preferably taken from and linking to a published resource describing the event. - - - - - Definition: The nature of the event associated with an object / work. - How to record: Controlled. Recommended: Defined list of subclasses of CRM entity E5 Event.Basic event types as recorded in sub-element term include: Acquisition, Collecting, Creation, Designing, Destruction, Event (non-specified), Excavation, Exhibition, Finding, Loss, Modification, Move, Order, Part addition, Part removal, Performance, Planning, Production, Provenance, Publication, Restoration, Transformation, Type assignment, Type creation, Use. - - - - - Definition: The role played within this event by the described entity. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, people, or nationality participating in the event. - How to record: Controlled. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period defining the range of dates. - How to record: Data values should be controlled. Repeat this element only for indicating an earliest and latest period delimiting the event. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: An event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: A description of the event. - - - - - - - Definition: Wrapper for display and index elements for events (e.g. creation, find, use etc.), in which the described object participated. - How to record: For multiple events repeat the element. - - - - - Definition: Display element for an event, corresponding to the following event element. - How to record: Repeat this element only for language variants. - - - - - Definition: Identifying, descriptive and indexing information for the events in which the object participated, e.g. creation, excavation, collection, and use. - Notes: All information related to the creation of an object: creator, creation date, creation place, the material and techniques used are recorded here, qualified by the event type “creation”. - - - - - - - Definition: Wrapper for event sets. - - - - - - Definition: Wrapper for the display and index elements for events (e.g. creation, find, and use), in which the object participated. - How to record: For multiple events repeat the element. - - - - - - - - - - - - - - - Definition: Qualifies the type of the given place entity according to geographical structures. - How to record: Data values can include: natural environment, landscape. - - - - - Definition: Specifies the GML instantiation for georeferences. - - - - - - - - - - How to record: There is no controlled list of identifier types. Suggested values include, but are not limited to the following: doi (Digital Objects Identifier)guid (Globally unique identifier)hdl (Handle)isbn (International Standard Book Number)ismn (International Standard Music Number)isrc (International Standard Recording Code)issn (International Standard Serials Number)localpermalinkpurl (Persistent Uniform Resource Locator)url (Uniform Resource Locator)urn (Uniform Resource Name) - - - - - - - - - - - - - - Definition: A wrapper for information about inscriptions and other marks. - - - - - - Definition: A description or transcription of any distinguishing or identifying physical lettering, annotations, texts, markings, or labels that are affixed, applied, stamped, written, inscribed, or attached to the object / work, excluding any mark or text inherent in the materials of which it is made. - Notes: Record watermarks in Display Materials/Techniques. - - - - - - Definition: Transcription of the inscription. - - - - - - - - - - - - - Definition: Descriptive note of the inscription and/or reference to an external description of the inscription. - - - - - - - - - - - - How to record: Elements with data values are accompanied by the attributes encodinganalog and label, to indicate the format of the data source from which the data were migrated. The attribute label refers to the external label of a data field at the visible user interface. The source format is indicated in the attribute - - - - - Definition: Reference information to a legal body. - - - - - Definition: Unambiguous identification of the institution or person. - - - - - Definition: Appellation of the institution or person. - - - - - Definition: Weblink of the institution or person. - - - - - - - Definition: Holds the metadata of an object. - - - - - - Definition: A unique lido record identification preferably composed of an identifier for the contributor and a record identification in the contributor's (local) system. - - - - - Definition: A unique, published identification of the described object / work. - How to record: May link to authority files maintained outside of the contributor's documentation system or may be an identifier for the object published by its repository, e.g. composed of an identifier for the repository and an inventory number of the object.Preferably a dereferenceable URL. - - - - - Definition: Indicates the CIDOC-CRM category of which this item is an instance, preferably referring to CRM concept definitions given at http://www.cidoc-crm.org/crm-concepts/ - - - - - - - - - - - Definition: Holds one or multiple object records. - - - - - - - - How to record: Indicates the format of the data source from which the data were migrated. For each sub-element with data values then the related source data fields can be referenced through the attributes encodinganalog and label. - - - - - - - How to record: Format of the source schema if the link provides a metadata record. - - - - - Definition: Materials and techniques for retrieval. - How to record: If multiple parts of the object / work require separate materials and techniques, or if media and support are being recorded separately, repeat the materialsTechSet element qualifying the extent sub-element. - - - - - Definition: A term to index materials and/or technique. - - - - - - - How to record: Example values: technique, material, implement, mark (e.g., watermark or other mark inherent in the material) - - - - - - - - - - Definition: An explanation of the part of the object / work to which the materials or technique are applicable; included when necessary for clarity. - - - - - Definition: The source of the information about materials and technique, often used when citing a published source of watermarks. - - - - - - - Definition: Wrapper for display and index elements for materials and technique information. - Notes: Indicates the substances or materials used, as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - Definition: Display element for materials/technique, corresponding to the following materialsTech element. - How to record: It is presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance.Repeat this element only for language variants. - - - - - Definition: Materials and techniques data used for indexing. - - - - - - - Definition: The dimensions or other measurements for one aspect of the item. - - - - - Definition: Indicates what kind of measurement is taken. - How to record: Data values for type: height, width, depth, length, diameter, circumference, stories, count, area, volume, running time, size. - Notes: Repeat this element only for language variants. - - - - - Definition: The unit of the measurement. - How to record: E.g. cm, mm, m, g, kg, kb, Mb or Gb. - - - - - Definition: The value of the measurement. - How to record: Whole numbers or decimal fractions. - - - - - - - Definition: Wrapper for data classifying the object / work.Includes all classifying information about an object / work, such as: object / work type, style, genre, form, age, sex, and phase, or by how holding organization structures its collection (e.g. fine art, decorative art, prints and drawings, natural science, numismatics, or local history). - - - - - - Definition: A wrapper for Object/Work Types. - - - - - Definition: A wrapper for any classification used to categorize an object / work by grouping it together with others on the basis of similar characteristics. - - - - - - - - Definition: Reference to an object / work. - - - - - Definition: A Uri/Url-Reference representing the object / work in the worldwide web environment. - - - - - Definition: Unique identifier of the referenced object / work. - - - - - Definition: A descriptive identification of the object / work that will be meaningful to end-users, including some or all of the following information, as necessary for clarity and if known: title, object/work type, important actor, date and/or place information, potentially location of the object / work. - How to record: The information should ideally be generated from fields/elements in the related record. - - - - - - - - - - - - - - Definition: A wrapper for Description/Descriptive Note information. - - - - - - Definition: A wrapper for a descriptive note and its sources. If there is more than one descriptive note, repeat this sub-element. - How to record: Includes usually a relatively brief essay-like text that describes the content and context of the object / work, including comments and an interpretation that may supplement, qualify, or explain the physical characteristics, subject, circumstances of creation or discovery, or other information about it. - - - - - - - - Definition: A Wrapper for information that identifies the object. - - - - - - - - - - - - - - - Definition: The dimensions, size, shape, scale, format, or storage configuration of the object / work, including volume, weight, area or running time. - How to record: Measurements are formatted to allow retrieval; preferably in metric units where applicable. - - - - - Definition: The dimensions or other measurements for one aspect of an object / work (e.g., width). - How to record: May be combined with extent, qualifier, and other sub-elements as necessary.The attributes "unit", "value" and "type" are mandatory. - - - - - - - - - - - - Definition: An explanation of the part of the object / work being measured included, when necessary, for clarity. - How to record: Example values: overall, components, sheet, plate mark, chain lines, pattern repeat, lid, base, laid lines, folios, leaves, columns per page, lines per page, tessera, footprint, panel, interior, mat, window of mat, secondary support, frame, and mount - - - - - - - - - - - - Definition: A word or phrase that elaborates on the nature of the measurements of the object / work when necessary, e.g. when the measurements are approximate. - How to record: Example values: approximate, sight, maximum, larges, smallest, average, variable, assembled, before restoration, before restoration, at corners, rounded, framed, and with base. - - - - - - - - - - - - Definition: The configuration of an object / work, including technical formats. Used as necessary. - How to record: Example values: Vignette, VHS, IMAX, and DOS - - - - - - - - - - - - Definition: The shape of an object / work. Used for unusual shapes (e.g., an oval painting). - How to record: Example values: oval, round, square, rectangular, and irregular. - - - - - - - - - - - - Definition: An expression of the ratio between the size of the representation of something and that thing (e.g., the size of the drawn structure and the actual built work). Used for studies, record drawings, models, and other representations drawn or constructed to scale. - How to record: Example values for scale: numeric (e.g., 1 inch = 1 foot), full-size, life-size, half size,monumental. and others as recommended in CCO and CDWA. Combine this tag with Measurement Sets for numeric scales. For measurementsSet type for Scale, use "base" for the left side of the equation, and "target" for the right side of the equation). - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for object measurements. If multiple parts of the object / work are measured, repeat the element - How to record: Holds information about the dimensions, size, or scale of the object / work. It may also include the number of parts in a complex object / work, series, or collection. - - - - - Definition: Display element for one object measurement, corresponding to the following objectMeasurement element. - How to record: Repeat this element only for language variants. - - - - - Definition: Structured measurement information about the dimensions, size, or scale of the object / work. It may also include the parts of a complex object / work, series, or collection. - - - - - - - Definition: A wrapper for the Measurements. - - - - - - Definition: Wrapper for display and index elements for object / work measurements. - How to record: If multiple parts of the object / work are measured repeat this element. - - - - - - - - - - - - - - - Definition: Wrapper for indexing related topics and works, collections, etc. - - - - - - - - - - - Definition: Wrapper for display and reference elements for an other object. - - - - - Definition: A free-text description of the object, corresponding to the following object element - How to record: Repeat this element only for language variants. - - - - - Definition: A reference to another object by providing sub-elements for identifiers. - Notes: Links to web resources and a descriptive note about the object. - - - - - - - Definition: A wrapper for Object/Work Types. - - - - - - Definition: The specific kind of object / work being described. - How to record: For a collection, include repeating instances for identifying all of or the most important items in the collection. - - - - - - - - - - - - - - - - Definition: Structured element for place information - - - - - Definition: A unique identifier for the place. - How to record: Preferably taken from a published authority file. - - - - - Definition: The name of the geographic place. - How to record: If there are different names of the same place, e.g. today's and historical names, repeat this element. - - - - - Definition: Georeferences of the place using to the GML specification. - - - - - - - - - - - - Definition: Allows for indexing larger geographical entities. - - - - - Definition: A classification of the place, e.g. by geological complex, stratigraphic unit or habitat type. - - - - - - - - - - - - - Definition: Data values can include: Gemeinde, Kreis, Bundesland, Staat, Herzogtum, city, county, country, civil parish - - - - - Definition: Data values can include: Naturraum, Landschaft, natural environment, landscape - - - - - - Definition: Wrapper for display and index elements for place information. - - - - - Definition: Display element for a place specification, corresponding to the following place element. - How to record: Repeat this element only for language variants. - - - - - Definition: Contains structured identifying and indexing information for a place. - - - - - - - Definition: Qualifies the type of the given place entity according to political structures. - How to record: Data values can include: city, county, country, civil parish. - - - - - Definition: Qualifies the value as a preferred or alternative variant. - How to record: Data values: preferred, alternate - - - - - Definition: Wrapper for metadata information about this record. - Notes: The metadata information contains the reference to the "lido"-metadata set but may also be constituted by reference to an "object data sheet" in an online database. - - - - - Definition: Unique ID of the metadata. - How to record: Record Info ID has the same definition as Record ID but out of the context of original local system, such as a persistent identifier or an oai identifier (e.g., oai1:getty.edu:paintings/00001234 attribute type= oai). - - - - - Definition: Link of the metadata, e.g., to the object data sheet (not the same as link of the object). - - - - - Definition: Creation date or date modified of the metadata record. Format will vary depending upon implementation. - - - - - - - Definition: Specification of the date, e.g. if creation or modification date. - How to record: Data values may be: creationDate, modificationDate. - - - - - - - - - - - - Definition: A wrapper for information about the record that contains the cataloguing information. - Notes: Note that this section does not refer to any object or resource information, but only to the source record. - - - - - - Definition: A unique record identification in the contributor's (local) system. - - - - - Definition: Term establishing whether the record represents an individual item or a collection, series, or group of works. - How to record: Mandatory. Example values: item, collection, series, group, volume, fonds. - - - - - Definition: The source of information in this record, generally the repository or other institution. - - - - - - - - - - - - - Definition: Information about rights regarding the content provided in this LIDO record. - - - - - - - - - - - - Definition: Wrapper for metadata information about this record. - - - - - - - - Definition: A wrapper for one event related to the described event. - - - - Definition: Display and index elements for the event related to the event being recorded. - - - - - Definition: A term describing the nature of the relationship between the described event and the related event. - How to record: Example values: part of, influence of, related to.Indicate a term characterizing the relationship from the perspective of the currently described event towards the related event. - Notes: For implementation of the data, note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship. - - - - - - - Definition: A wrapper for one object / work, group, collection, or series that is directly related to the object / work at hand, including direct relationships between the two, between an object / work and its components, and between an item and the larger group, collection, or series. - How to record: If there is more than one object / work referred to then the set should be repeated. - Notes: Objects referred to may be corresponding object / works or those created to be shown together with the object / work in question, but also e.g., literature (bibliographic objects) in which the object / work is documented or mentioned forms a "relatedWorkSet". - - - - - Definition: Wrapper for the display and reference elements of a related object / work. - - - - - Definition: A term describing the nature of the relationship between the object / work at hand and the related entity. - How to record: Example values: part of, larger context for, model of, model for, study of, study forrendering of, copy of, related to.Indicate a term characterizing the relationship from the perspective of the currently described object / work towards the related object / work. - Notes: For implementation of the data, note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship (e.g., one work is part of a second work, but from the point of view of the second record, the first work is the larger context for the second work). Whether or not relationships are physically reciprocal as implemented in systems is a local decision. - - - - - - - Definition: A wrapper for Related Works information. - - - - - - Definition: A wrapper for a object / work, group, collection, or series that is directly related to the object / work being recorded. - - - - - - - - - - - - - - - Definition: Wrapper for designation and identification of the institution of custody and, possibly, indication of the exact location of the object. - How to record: If there are several designations known, e.g., a current one and former ones (see: type attribute), repeat the element. - - - - - Definition: Unambiguous identification, designation and weblink of the institution of custody. - - - - - Definition: An unambiguous numeric or alphanumeric identification number, assigned to the object by the institution of custody. - - - - - - - - - - - - - - - Definition: Location of the object, especially relevant for architecture and archaeological sites. - - - - - - Definition: Qualifies the repository as a former or the current repository. - How to record: Data values: current, former - - - - - - - Definition: Wrapper for Repository/ Location information. - - - - - - Definition: Wrapper for designation and identification of the institution of custody, and possibly an indication of the exact location of the object. - - - - - - - - Definition: A wrapper for sets of resource information. - How to record: If there are multiple, distinct resources associated with the object / work, repeat the Resource Set element. For variants representing the same resource repeat the Resource Representation sub-element. - - - - - Definition: The unique numeric or alphanumeric identification of the original (digital or analogue) resource. - - - - - Definition: A digital representation of a resource for online presentation. - How to record: Repeat this element set for variants representing the same resource, e.g. different sizes of the same image, or a thumbnail representing an audio or video file and the digital audio or video file itself. - - - - - - Definition: A uri/url reference that is universal in the worldwide web environment. - - - - - - - Definition: Codec information about the resource. - - - - - - - - - Definition: Any technical measurement information needed for online presentation of the resource. - How to record: For images provide width and height of the digital image, for audio or video resources provide duration, bit rate, frame size, and if necessary TC-IN, TC-OUT. - - - - - - - - - Definition: The generic identification of the medium of the image or other resource. - How to record: Controlled. Example values: digital image, photograph, slide, videotape, X-ray photograph, negative. - - - - - Definition: The relationship of an image or other resource to the object / work being described. - How to record: Example values: conservation image, documentary image, contextual image, historical image, reconstruction, and installation image - - - - - Definition: The specific vantage point or perspective of the view. - - - - - Definition: A description of the spatial, chronological, or contextual aspects of the object / work as captured in this particular resource. - - - - - - - - - - - - - Definition: A date or range of dates associated with the creation or production of the original resource, e.g. the image or recording. - Notes: This is not necessarily the same as the date of production of the digital resource (e.g. a digitization of a negative is usually made years after the image was captured on film). Format will vary depending upon implementation. - - - - - - - Definition: Year that delimits the view date associated with the creation or production of the resource as earliest point in time. - - - - - Definition: Year that delimits the view date associated with the creation or production of the resource as latest point in time. - - - - - - - - - - - - Definition: Identification of the agency, individual, repository, or publication from which the image or other resource was obtained, including a bibliographic citation in the case of copy photography. - How to record: Include this sub-element when the source of the image/resource differs from the source named in Record Source. - - - - - - - - - - - - - Definition: Information about rights regarding the image or other resource. - How to record: Use this sub-element if the holder of the reproduction rights for the image/resource differs from the holder of rights for the work. See also Rights Work above. (E.g., the work rights are " National Museum of African Art, Smithsonian Instituition (Washing DC), " but the image rights are "Photo Frank Khoury.") - - - - - - - - - - - - - - Definition: A wrapper for image information. - Notes: An identification of an image (visual surrogate) of the object / work including digital images, slides, transparencies, photographs, and moving images, but excluding items that are considered object / works in their own right. For such as drawings, prints, paintings, or photographs considered art, and other works that themselves contain representations of other works, use Related Works and/or Subjects. - - - - - - Definition: Contains sub-elements for a structured resource description. - - - - - - - - - - - - - - - Definition: Information about rights management; may include copyright and other intellectual property statements. - - - - - Definition: The specific type of right being recorded. - How to record: For example: copyright, publication right, data protection right, trademark. - - - - - Definition: The date on which a right is or was current. - - - - - Definition: The holder of the right. - - - - - - - - - - - - Definition: Acknowledgement of the rights associated with the physical and/or digital object. - How to record: Repeat this element only for language variants. - - - - - - - Definition: Wrapper for rights information about the physical object / work described. - Notes: Rights information for the record and for resources is recorded in the respective rights elements recordRights and rightsResource. - - - - - - Definition: Information about rights management; may include copyright and other intellectual property statements required for use of the metadata. - - - - - - - - - - - - - - - Definition: Assigns a priority order for online presentation of the element. - How to record: Has to be a positive integer, with descending priority from 1 to x. - - - - - Definition: Source of the information given in the holding element. - - - - - Definition: A wrapper for one set of Subject Indexing information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat this element with Extent Subject. This element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - Notes: While not required, it is highly recommended to include subject information, even for non-objective art, for which the function or purpose of the object / work may be included as subject. - - - - - Definition: When there are multiple subjects, a term indicating the part of the object / work to which these subject terms apply. - How to record: Example values: recto, verso, side A, side B, main panel, and predella.Repeat this element only for language variants. - - - - - Definition: Provides references to concepts related to the subject of the described object / work. - How to record: May include iconography, themes from literature, or generic terms describing the material world, or topics (e.g., concepts, themes, or issues). However, references to people, events, places are indicated in the the respective sub-elements Subject: Actor, Subject: Event, Subject: Place. Data values should be controlled, e.g. Iconclass, AAT, museumsvokabular.de, SWD. - - - - - - - - - - - - Definition: A person, group, or institution depicted in or by an object / work, or what it is about. - - - - - - - - - - - - Definition: A time specification or period depicted in or by an object / work, or what it is about. - - - - - - - - - - - - Definition: An event depicted in or by an object / work, or what it is about. - - - - - - - - - - - - Definition: A place depicted in or by an object / work, or what it is about. - - - - - - - - - - - - Definition: An object - e.g. a building or a work of art depicted in or by an object / work, or what it is about. - - - - - - - - - - - - - - - Definition: A single set of subject indexing information, together with its textual equivalent. - - - - - Definition: A free-text description of the subject matter represented by/in the object / work, corresponding to the following subject element - How to record: Repeat this element only for language variants. - - - - - Definition: Contains sub-elements for a structured subject description. These identify, describe, and/or interpret what is depicted in and by an object / work or what it is about. - - - - - - - Definition: A wrapper for Subject information. This may be the visual content (e.g. the iconography of a painting) or what the object is about. - - - - - - Definition: Wrapper for display and index elements for one set of subject information. - - - - - - - - - - - - - - - Definition: A name for a concept / term, usually from a controlled vocabulary. - - - - - - - - - - - - - - Definition: Simple text element with encodinganalog and label attribute - - - - - - - - - - - - Definition: Wrapper for Object name / Title information. - - - - - - Definition: Wrapper for one title or object name and its related information. - How to record: If there is more than one title, repeat the Title Set element. - - - - - - - - - - - - - - - - Definition: Qualifies the type of information given in the holding element. - How to record: Will generally have to be populated with a given value list. - - - - - Definition: A uri/url reference to a web resource that describes / represents the item, e.g. a metadata record. - Notes: It differs from an identifier for the item itself. - - - - - - - Definition: Indicates the internet media type, e.g. the file format of the given web resource. - How to record: Data values should be taken from the official IANA list (see http://www.iana.org/assignments/media-types/). Includes: text/html, text/xml, image/jpeg, audio/mpeg, video/mpeg, application/pdf. - - - - - - - - - diff --git a/schemas/lido/lido-draft-v1.0.xsd.conf b/schemas/lido/lido-draft-v1.0.xsd.conf deleted file mode 100644 index b97b146..0000000 --- a/schemas/lido/lido-draft-v1.0.xsd.conf +++ /dev/null @@ -1,107 +0,0 @@ -{ - "xsd": "lido-v0.9-proxy.xsd", - "namespaces": { - "lido": "http://www.lido-schema.org" - }, - - "wrap": { - "element": "lidoWrap", - "prefix": "lido" - }, - - "item": { - "element": "lido", - "prefix": "lido" - }, - - "paths": { - "item": "%/lido"; - "label": "%/lido/descriptiveMetadata/objectIdentificationWrap/titleWrap/titleSet/appellationValue/text()"; - }, - - "version": "1.0", - - "groups": [ - { - "name": "Object Identification", - "element": "objectIdentificationWrap" - }, - { - "name": "Object Classification", - "element": "objectClassificationWrap" - }, - { - "name": "Object Relation", - "element": "objectRelationWrap" - }, - { - "name": "Event", - "element": "eventWrap" - }, - { - "name": "Rights Work", - "element": "rightsWorkWrap" - }, - { - "name": "Record", - "element": "recordWrap" - }, - { - "name": "Resource", - "element": "resourceWrap" - } - ], - - "navigation": [ - { - "type": "template" - }, - { - "type": "label", - "label": "Descriptive Metadata" - }, - { - "type": "group", - "name": "Object Identification" - }, - { - "type": "group", - "name": "Object Classification" - }, - { - "type": "group", - "name": "Object Relation" - }, - { - "type": "group", - "name": "Event" - }, - { - "type": "label", - "label": "Administrative Metadata" - }, - { - "type": "group", - "name": "Rights Work" - }, - { - "type": "group", - "name": "Record" - }, - { - "type": "group", - "name": "Resource" - } - ], - - "preview" : [{ - "xsl": "lido-v1.0-to-ese-v3.3-transform-v3.xsl", - "label": "ESE", - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }], -} diff --git a/schemas/lido/lido-v0.9-proxy.xsd b/schemas/lido/lido-v0.9-proxy.xsd deleted file mode 100644 index dd519b6..0000000 --- a/schemas/lido/lido-v0.9-proxy.xsd +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/lido/lido-v0.9-proxy.xsd.conf b/schemas/lido/lido-v0.9-proxy.xsd.conf deleted file mode 100644 index b0b9377..0000000 --- a/schemas/lido/lido-v0.9-proxy.xsd.conf +++ /dev/null @@ -1,96 +0,0 @@ -{ - "xsd": "lido-v0.9-proxy.xsd", - "namespaces": { - "lido": "http://www.lido-schema.org" - }, - - "wrap": { - "element": "lidoWrap", - "prefix": "lido" - }, - - "item": { - "element": "lido", - "prefix": "lido" - }, - - "paths": { - "item": "%/lido"; - "label": "%/lido/descriptiveMetadata/objectIdentificationWrap/titleWrap/titleSet/appellationValue/text()"; - }, - - "version": "1.0", - - "groups": [ - { - "name": "Object Identification", - "element": "objectIdentificationWrap" - }, - { - "name": "Object Classification", - "element": "objectClassificationWrap" - }, - { - "name": "Object Relation", - "element": "objectRelationWrap" - }, - { - "name": "Event", - "element": "eventWrap" - }, - { - "name": "Rights Work", - "element": "rightsWorkWrap" - }, - { - "name": "Record", - "element": "recordWrap" - }, - { - "name": "Resource", - "element": "resourceWrap" - } - ], - - "navigation": [ - { - "type": "template" - }, - { - "type": "label", - "label": "Descriptive Metadata" - }, - { - "type": "group", - "name": "Object Identification" - }, - { - "type": "group", - "name": "Object Classification" - }, - { - "type": "group", - "name": "Object Relation" - }, - { - "type": "group", - "name": "Event" - }, - { - "type": "label", - "label": "Administrative Metadata" - }, - { - "type": "group", - "name": "Rights Work" - }, - { - "type": "group", - "name": "Record" - }, - { - "type": "group", - "name": "Resource" - } - ] -} diff --git a/schemas/lido/lido-v0.9-to-ese-v3.3-transform-v2.xsl b/schemas/lido/lido-v0.9-to-ese-v3.3-transform-v2.xsl deleted file mode 100644 index fae2368..0000000 --- a/schemas/lido/lido-v0.9-to-ese-v3.3-transform-v2.xsl +++ /dev/null @@ -1,1241 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ATHENA project - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ATHENA project - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ATHENA project - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - () - - - - - - - - - - - - - - - - - - - - - - Inschrift - Inscription - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Frühere Aufbewahrung/Standort: - Former Repository/Location: - Aufbewahrung/Standort: - Repository/Location: - - - - - - - - - - - - - - - - - - - - - - - - - - - - Format - Format - - - - - - - - - - - Form - Shape - - - - - - - - - - - Ausmaß - Scale - - - - - - - - - - - - - - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - () - (, - ) - , - - - [] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - () - (, - ) - , - - - [] - - - - - - - - - - - - - - - - - - - - - - kultureller Kontext - cultural context - - - - - - - - - - - - - - - - - - - - - - - - - - Methode - method - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [Ort] - [Place] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Fotoinhalt/Ansicht - Content/View Resource - - - - - - - - - - - - - Datierung des Fotos - Date Resource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/lido/lido-v1.0-proxy-partage.xsd b/schemas/lido/lido-v1.0-proxy-partage.xsd deleted file mode 100644 index 366091a..0000000 --- a/schemas/lido/lido-v1.0-proxy-partage.xsd +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - Definition: The role played within this event by the described entity. - How to record: Preferably taken from a published controlled vocabulary. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating or being present in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, cultural context, people, or also a nationality. - How to record: Preferably using a controlled vocabuarly. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period in which the event happened. - How to record: Preferably taken from a published controlled vocabulary. Repeat this element only for indicating an earliest and latest period delimiting the event. - Notes: Period concepts have delimiting character in time and space. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - How to record: Preferably taken from a published controlled vocabulary. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - How to record: Will be used most often within a production event, but also others such as excavation, restoration, etc. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: References an event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: Wrapper for a description of the event, including description identifer, descriptive note of the event and its sources. - How to record: If there is more than one descriptive note, repeat this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/lido/lido-v1.0-proxy-partage.xsd.conf b/schemas/lido/lido-v1.0-proxy-partage.xsd.conf deleted file mode 100644 index 3f522ff..0000000 --- a/schemas/lido/lido-v1.0-proxy-partage.xsd.conf +++ /dev/null @@ -1,83 +0,0 @@ -{ - "xsd": "lido-v1.0-proxy-partage.xsd", - "namespaces": { - "lido": "http://www.lido-schema.org" - }, - - "wrap": { - "element": "lidoWrap", - "prefix": "lido" - }, - - "item": { - "element": "lido", - "prefix": "lido" - }, - - "paths": { - "item": "%/lido"; - "label": "/lidoWrap/lido/descriptiveMetadata/objectIdentificationWrap/titleWrap/titleSet/appellationValue/text()"; - }, - - "version": "2.0", - - "navigation": [ - { - "type": "template", - "name": "Complete mapping" - }, - { - "type": "label", - "label": "Descriptive Metadata" - }, - { - "element": "objectIdentificationWrap", - "name": "Object Identification" - }, - { - "element": "objectClassificationWrap", - "name": "Object Classification" - }, - { - "element": "objectRelationWrap", - "name": "Object Relation" - }, - { - "element": "eventWrap", - "name": "Event" - }, - { - "type": "label", - "label": "Administrative Metadata" - }, - { - "element": "rightsWorkWrap", - "name": "Rights Work" - }, - { - "element": "recordWrap", - "name": "Record" - }, - { - "element": "resourceWrap", - "name": "Resource" - } - ], - - "preview" : [{ - "target": "EDM", - "parameters": [{ - "name": "provider", - "type": "mint", - "value": "mint.provider" - }], - "output": "xml", - "preview": [{ - "xsl": "edm2html.xsl", - "label": "Europeana", - "output": "html" - }] - }], - - "customization": "lido-v1.0-proxy-partage.groovy", -} diff --git a/schemas/lido/lido-v1.0-proxy-partagev2.xsd b/schemas/lido/lido-v1.0-proxy-partagev2.xsd deleted file mode 100644 index 366091a..0000000 --- a/schemas/lido/lido-v1.0-proxy-partagev2.xsd +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - Definition: The role played within this event by the described entity. - How to record: Preferably taken from a published controlled vocabulary. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating or being present in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, cultural context, people, or also a nationality. - How to record: Preferably using a controlled vocabuarly. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period in which the event happened. - How to record: Preferably taken from a published controlled vocabulary. Repeat this element only for indicating an earliest and latest period delimiting the event. - Notes: Period concepts have delimiting character in time and space. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - How to record: Preferably taken from a published controlled vocabulary. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - How to record: Will be used most often within a production event, but also others such as excavation, restoration, etc. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: References an event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: Wrapper for a description of the event, including description identifer, descriptive note of the event and its sources. - How to record: If there is more than one descriptive note, repeat this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/lido/lido-v1.0-proxy-partagev2.xsd.conf b/schemas/lido/lido-v1.0-proxy-partagev2.xsd.conf deleted file mode 100644 index 64b7a3b..0000000 --- a/schemas/lido/lido-v1.0-proxy-partagev2.xsd.conf +++ /dev/null @@ -1,83 +0,0 @@ -{ - "xsd": "lido-v1.0-proxy-partagev2.xsd", - "namespaces": { - "lido": "http://www.lido-schema.org" - }, - - "wrap": { - "element": "lidoWrap", - "prefix": "lido" - }, - - "item": { - "element": "lido", - "prefix": "lido" - }, - - "paths": { - "item": "%/lido"; - "label": "/lidoWrap/lido/descriptiveMetadata/objectIdentificationWrap/titleWrap/titleSet/appellationValue/text()"; - }, - - "version": "2.0", - - "navigation": [ - { - "type": "template", - "name": "Complete mapping" - }, - { - "type": "label", - "label": "Descriptive Metadata" - }, - { - "element": "objectIdentificationWrap", - "name": "Object Identification" - }, - { - "element": "objectClassificationWrap", - "name": "Object Classification" - }, - { - "element": "objectRelationWrap", - "name": "Object Relation" - }, - { - "element": "eventWrap", - "name": "Event" - }, - { - "type": "label", - "label": "Administrative Metadata" - }, - { - "element": "rightsWorkWrap", - "name": "Rights Work" - }, - { - "element": "recordWrap", - "name": "Record" - }, - { - "element": "resourceWrap", - "name": "Resource" - } - ], - - "preview" : [{ - "target": "EDM", - "parameters": [{ - "name": "provider", - "type": "mint", - "value": "mint.provider" - }], - "output": "xml", - "preview": [{ - "xsl": "edm2html.xsl", - "label": "Europeana", - "output": "html" - }] - }], - - "customization": "lido-v1.0-proxy-partagev2.groovy", -} diff --git a/schemas/lido/lido-v1.0-proxy-photography.xsd b/schemas/lido/lido-v1.0-proxy-photography.xsd deleted file mode 100644 index 366091a..0000000 --- a/schemas/lido/lido-v1.0-proxy-photography.xsd +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - Definition: The role played within this event by the described entity. - How to record: Preferably taken from a published controlled vocabulary. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating or being present in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, cultural context, people, or also a nationality. - How to record: Preferably using a controlled vocabuarly. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period in which the event happened. - How to record: Preferably taken from a published controlled vocabulary. Repeat this element only for indicating an earliest and latest period delimiting the event. - Notes: Period concepts have delimiting character in time and space. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - How to record: Preferably taken from a published controlled vocabulary. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - How to record: Will be used most often within a production event, but also others such as excavation, restoration, etc. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: References an event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: Wrapper for a description of the event, including description identifer, descriptive note of the event and its sources. - How to record: If there is more than one descriptive note, repeat this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/lido/lido-v1.0-proxy-photography.xsd.conf b/schemas/lido/lido-v1.0-proxy-photography.xsd.conf deleted file mode 100644 index ddd711b..0000000 --- a/schemas/lido/lido-v1.0-proxy-photography.xsd.conf +++ /dev/null @@ -1,83 +0,0 @@ -{ - "xsd": "lido-v1.0-proxy-photography.xsd", - "namespaces": { - "lido": "http://www.lido-schema.org" - }, - - "wrap": { - "element": "lidoWrap", - "prefix": "lido" - }, - - "item": { - "element": "lido", - "prefix": "lido" - }, - - "paths": { - "item": "%/lido"; - "label": "/lidoWrap/lido/descriptiveMetadata/objectIdentificationWrap/titleWrap/titleSet/appellationValue/text()"; - }, - - "version": "2.0", - - "navigation": [ - { - "type": "template", - "name": "Complete mapping" - }, - { - "type": "label", - "label": "Descriptive Metadata" - }, - { - "element": "objectIdentificationWrap", - "name": "Object Identification" - }, - { - "element": "objectClassificationWrap", - "name": "Object Classification" - }, - { - "element": "objectRelationWrap", - "name": "Object Relation" - }, - { - "element": "eventWrap", - "name": "Event" - }, - { - "type": "label", - "label": "Administrative Metadata" - }, - { - "element": "rightsWorkWrap", - "name": "Rights Work" - }, - { - "element": "recordWrap", - "name": "Record" - }, - { - "element": "resourceWrap", - "name": "Resource" - } - ], - - "preview" : [{ - "target": "EDM", - "parameters": [{ - "name": "provider", - "type": "mint", - "value": "mint.provider" - }], - "output": "xml", - "preview": [{ - "xsl": "edm2html.xsl", - "label": "Europeana", - "output": "html" - }] - }], - - "customization": "lido-v1.0-proxy-photography.groovy", -} diff --git a/schemas/lido/lido-v1.0-proxy.xsd b/schemas/lido/lido-v1.0-proxy.xsd deleted file mode 100644 index 366091a..0000000 --- a/schemas/lido/lido-v1.0-proxy.xsd +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - Definition: The role played within this event by the described entity. - How to record: Preferably taken from a published controlled vocabulary. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating or being present in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, cultural context, people, or also a nationality. - How to record: Preferably using a controlled vocabuarly. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period in which the event happened. - How to record: Preferably taken from a published controlled vocabulary. Repeat this element only for indicating an earliest and latest period delimiting the event. - Notes: Period concepts have delimiting character in time and space. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - How to record: Preferably taken from a published controlled vocabulary. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - How to record: Will be used most often within a production event, but also others such as excavation, restoration, etc. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: References an event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: Wrapper for a description of the event, including description identifer, descriptive note of the event and its sources. - How to record: If there is more than one descriptive note, repeat this element. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/lido/lido-v1.0-proxy.xsd.conf b/schemas/lido/lido-v1.0-proxy.xsd.conf deleted file mode 100644 index 21fa6f9..0000000 --- a/schemas/lido/lido-v1.0-proxy.xsd.conf +++ /dev/null @@ -1,120 +0,0 @@ -{ - "xsd": "lido-v1.0-proxy.xsd", - "namespaces": { - "lido": "http://www.lido-schema.org" - }, - - "wrap": { - "element": "lidoWrap", - "prefix": "lido" - }, - - "item": { - "element": "lido", - "prefix": "lido" - }, - - "paths": { - "item": "%/lido"; - "label": "%/lido/descriptiveMetadata/objectIdentificationWrap/titleWrap/titleSet/appellationValue/text()"; - }, - - "version": "1.0", - - "groups": [ - { - "name": "Object Identification", - "element": "objectIdentificationWrap" - }, - { - "name": "Object Classification", - "element": "objectClassificationWrap" - }, - { - "name": "Object Relation", - "element": "objectRelationWrap" - }, - { - "name": "Event", - "element": "eventWrap" - }, - { - "name": "Rights Work", - "element": "rightsWorkWrap" - }, - { - "name": "Record", - "element": "recordWrap" - }, - { - "name": "Resource", - "element": "resourceWrap" - } - ], - - "navigation": [ - { - "type": "template" - }, - { - "type": "label", - "label": "Descriptive Metadata" - }, - { - "type": "group", - "name": "Object Identification" - }, - { - "type": "group", - "name": "Object Classification" - }, - { - "type": "group", - "name": "Object Relation" - }, - { - "type": "group", - "name": "Event" - }, - { - "type": "label", - "label": "Administrative Metadata" - }, - { - "type": "group", - "name": "Rights Work" - }, - { - "type": "group", - "name": "Record" - }, - { - "type": "group", - "name": "Resource" - } - ], - - "preview" : [{ - "target": "ESE 3.4", - "parameters": [ - { - "name": "provider", - "type": "mint", - "value": "mint.provider", - } - ], - "output": "xml", - "preview": [{ - "xsl": "ese2html.xsl", - "label": "Europeana", - "output": "html" - }] - }], - - "customization": "lido-v1.0-proxy.groovy", - - "publication" : { - "type": "xsl", - "value": "lido-v1.0-to-ese-v3.4-transform-v1.xsl" - } -} diff --git a/schemas/lido/lido-v1.0-to-ese-v3.3-transform-v3.xsl b/schemas/lido/lido-v1.0-to-ese-v3.3-transform-v3.xsl deleted file mode 100644 index d42ae03..0000000 --- a/schemas/lido/lido-v1.0-to-ese-v3.3-transform-v3.xsl +++ /dev/null @@ -1,1464 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ATHENA project - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ATHENA project - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ATHENA project - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [] - - - - - - - - - - - - - [] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Inschrift: - Inscription: - - - - - Transkription - transcription - - - - - Beschreibung - description - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Frühere Aufbewahrung/Standort: - Former Repository/Location: - Aufbewahrung/Standort: - Repository/Location: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Format - Format - - - - - - - - - - - - - - Form - Shape - - - - - - - - - - - - - - Ausmaß - Scale - - - - - - - - - - - - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - () - (, - ) - , - - - [] - - - - - - - - - - - - - - - - - - - - - - - - - () - (, - ) - , - - - [] - - - - - - - - - - - - - - - - - - - - kultureller Kontext - cultural context - - - - - - - - - - - - - - - - - - - - - - - - - - Methode - method - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [] - - - - - - - - - - [] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [Ort] - [Place] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Fotoinhalt/Ansicht - Content/View Resource - - - - - - - - - Datierung des Fotos - Date Resource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/schemas/lido/lido-v1.0.xsd b/schemas/lido/lido-v1.0.xsd deleted file mode 100644 index aa9bb3e..0000000 --- a/schemas/lido/lido-v1.0.xsd +++ /dev/null @@ -1,1829 +0,0 @@ - - - - - - - - Definition: Contains identifying and indexing actor information. - How to record: Data values of the type attribute: person, corporation, family, group. - - - - - Definition: A unique identifier for the actor. - How to record: Preferably taken from a published authority file. - - - - - Definition: A wrapper for name elements. - How to record: if there exists more than one name for a single actor, repeat Name Actor Set. - Notes: Indicates names, appellations, or other identifiers assigned to an individual, group of people, firm or other corporate body, or other entity. - - - - - Definition: National or cultural affiliation of the person or corporate body. - How to record: Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - Definition: The lifespan of the person or the existence of the corporate body or group. - How to record: For individuals, record birth date as earliest and death date as latest date, estimated where necessary. For a corporate body or group, record the dates of founding and dissolution.Although this is not a mandatory field the use of birth date and death date is strongly recommended for unambigous identification of individuals. The type attribute of earliest and latest date may specify for indiviudals, if birth and death dates or if dates of activity are recorded. Data values for type attribute may include: birthDate, deathDate, estimatedDate. - - - - - Definition: The sex of the individual. - How to record: Data values: male, female, unknown, not applicable.Repeat this element for language variants only. - Notes: Not applicable for corporate bodies. - - - - - - Definition: Indicates if the actor is an individual, a group of individuals, a family or a corporation (firm or other corporate body). - How to record: Data values: person, group, family, corporation. - - - - - - Definition: Describes an actor with role and (if necessary) attributions related to the event the actor participated in. - - - - - Definition: Contains structured identifying and indexing actor information. - - - - - Definition: Role of the Actor in the event. - How to record: Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - Definition: A qualifier used when the attribution is uncertain, is in dispute, when there is more than one actor, when there is a former attribution, or when the attribution otherwise requires explanation. - How to record: Example values: attributed to, studio of, workshop of, atelier of, office of, assistant of, associate of, pupil of, follower of, school of, circle of, style of, after copyist of, manner of... - - - - - Definition: Extent of the actor's participation in the event, if there are several actors. - How to record: Example values: design, execution, with additions by, figures, renovation by, predella, embroidery, cast by, printed by, ... - - - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating in an event). For multiple actors repeat the element. - - - - - Definition: Display element for an actor coupled with its specific role, corresponding to the following actor element. - How to record: May include name, brief biographical information, and roles (if necessary) of the named actor, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor.May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese."Repeat this element only for language variants. - - - - - Definition: Describes an actor with role and (if necessary) attributions in a structured way, consisting of the sub-elements actor, its role, attribution and extent. - - - - - - - Definition: Wrapper for display and index elements for one actor. For multiple actors repeat this element. - - - - - Definition: Display element for one actor, corresponding to the following actor element. - How to record: May include name, brief biographical information of the named actor, presented in a syntax suitable for display to the end-user. If there is no known actor, make a reference to the presumed culture or nationality of the unknown actor.May be concatenated from the respective Actor element. The name should be in natural order, if possible, although inverted order is acceptable. Include nationality and life dates. For unknown actors, use e.g.: "unknown," "unknown Chinese," "Chinese," or "unknown 15th century Chinese."Repeat this element only for language variants. - - - - - Definition: Describes and identifies an actor, i.e. a person, corporation, family or group, containing structured sub-elements for indexing and identification references. - - - - - - - How to record: Has the two values: "yes" or "no". ”yes” indicates, that the term is an additional term which is derived from an underlying controlled vocabulary (eg. synonym, generic term, superordinate term) and should be used only for retrieval."no" is default. - - - - - - - - - - - Definition: Holds the administrative metadata for an object / work record. - How to record: The attribute xml:lang is mandatory and specifies the language of the administrative metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title, creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - Definition: Holds the administrative metadata for an object / work record. - How to record: The attribute xml:lang is mandatory and specifies the language of the administrative metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title, creditline) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - - - - - - - Definition: Wrapper for a name of an entity, and its related information. - How to record: If there is more than one name, repeat the appellation element. - - - - - Definition: Appellations, e.g. titles, identifying phrases, or names given to an item, but also name of a person or corporation, also place name etc. - How to record: Repeat this element only for language variants. - - - - - - - - - - - - - - - Definition: The source for the appellation, generally a published source. - - - - - - - - - - - - - - - - Definition: A wrapper for classification information. - - - - - - Definition: Concepts used to categorize an object / work by grouping it together with others on the basis of similar characteristics. - How to record: The category belongs to a systematic scheme (classification) which groups objects of similar characteristics according to uniform aspects. This grouping / classification may be done according to material, form, shape, function, region of origin, cultural context, or historical or stylistic period. In addition to this systematic grouping it may also be done according to organizational divisions within a museum (e.g., according to the collection structure of a museum). If the object / work is assigned to multiple classifications, repeat this element.Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - - - - - Definition: Set for identifiers and terms of a concept. - How to record: A concept describes a conceptual resource. Concepts are organized in concept schemes like thesauri, classification schemes, taxonomies, subject-heading systems, or any other type of structured controlled vocabulary. See also SKOS specifications at http://www.w3.org/2004/02/skos/ - - - - - Definition: A unique identifier for the concept. - How to record: Preferably taken from and linking to a published controlled vocabulary. - - - - - Definition: A name for the referred concept, used for indexing. - - - - - - - Definition: A wrapper for date specification. - How to record: This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest date. For ca. and other uncertain or approximate dates, estimate the greatest possible span for indexing. Uncertainty can be indicated in the type attributes of earliest and latest date, and can be characterized more precisely in the display element. - Notes: Format of the data values in sub-elements earliestDate and LatestDate is according to ISO 8601. This includes date and time specification. - - - - - Definition: A year or exact date that broadly delimits the beginning of an implied date span. - How to record: General format: YYYY[-MM[-DD]]Format is according to ISO 8601. This may include date and time specification. - - - - - - - Definition: Specification of the date, e.g. if it is an exact or an estimated earliest date. - How to record: Data values may be: exactDate, estimatedDate. - - - - - - - - - - - - Definition: A year or exact date that broadly delimits the end of an implied date span. - How to record: General format: YYYY[-MM[-DD]]Format is according to ISO 8601. This may include date and time specification. - - - - - - - Definition: Specification of the date, e.g. if it is an exact or an estimated latest date. - How to record: Data values may be: exactDate, estimatedDate. - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for date information. - - - - - Definition: Display element for a date specification, corresponding to the following date element. - How to record: It is a concise description of the date, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance.Repeat this element only for language variants. - - - - - Definition: Contains a date specification by providing a set of years as earliest and latest date delimiting the respective span of time.This may be a period or a set of years in the proleptic Gregorian calendar delimiting the span of time. If it is an exact date, possibly with time, repeat the same date (and time) in earliest and latest date. - - - - - - - Definition: Holds the descriptive metadata of an object record. - How to record: The attribute xml:lang is mandatory and specifies the language of the descriptive metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - Definition: Holds the descriptive metadata of an object record. - How to record: The attribute xml:lang is mandatory and specifies the language of the descriptive metadata.For fully multi-lingual resources, repeat this element once for each language represented.If only a few data fields (e.g. title) are provided in more than one language, the respective text elements may be repeated specifying the lang attribute on the text level. - - - - - Definition: Wrapper for all classifying information about an object / work including the object's / work type and other classifications. - - - - - - - - - - - Definition: Wrapper for a description, including description identifer, descriptive note and sources. - How to record: If there is more than one descriptive note, repeat this set. - - - - - Definition: Identifier for an external resource describing the entity. - Notes: The referenced resource may be any kind of document, preferably web-accessible. - - - - - Definition: Usually a relatively brief essay-like text that describes the entity. - How to record: Repeat this element only for language variants. - - - - - Definition: The source for the descriptive note, generally a published source. - - - - - - - - - Definition: A wrapper for the state and edition of the object / work. - - - - - - Definition: A description of the state of the object / work. Used primarily for prints and other multiples - How to record: Formulated according to rules. For State, include state identification and known states, as appropriate.Repeat this element only for language variants. - - - - - Definition: A description of the edition of the object / work. Used primarily for prints and other multiples. - How to record: Formulated according to rules. For Edition, include impression number, edition size, and edition number, or edition name, as appropriate.Repeat this element only for language variants. - - - - - Definition: The published source of the state or edition information. - - - - - - - - How to record: Elements with data values are accompanied by the attributes encodinganalog and label to indicate the format of the data source from which the data were migrated. The attribute encodinganalog refers to the internal field label of the source database. The source format is indicated in the attribute relatedencoding of the lidoWrap - - - - - Definition: Complex type for one event associated with the object / work and its related information. - How to record: If there is more than one event repeat the Event Set element. - Notes: [none] - - - - - Definition: A unique identifier for the event. - How to record: Preferably taken from and linking to a published resource describing the event. - - - - - Definition: The nature of the event associated with an object / work. - How to record: Controlled. Recommended: Defined list of subclasses of CRM entity E5 Event.Basic event types as recorded in sub-element term include: Acquisition, Collecting, Commisioning, Creation, Designing, Destruction, Event (non-specified), Excavation, Exhibition, Finding, Loss, Modification, Move, Part addition, Part removal, Performance, Planning, Production, Provenance, Publication, Restoration, Transformation, Type assignment, Type creation, Use. - - - - - Definition: The role played within this event by the described entity. - How to record: Preferably taken from a published controlled vocabulary. - - - - - Definition: An appellation for the event, e.g. a title, identifying phrase, or name given to it. - - - - - Definition: Wrapper for display and index elements for an actor with role information (participating or being present in the event). - How to record: For multiple actors repeat the element. - - - - - - - - - - - - Definition: Name of a culture, cultural context, people, or also a nationality. - How to record: Preferably using a controlled vocabuarly. - - - - - - - - - - - - Definition: Date specification of the event. - - - - - Definition: A period in which the event happened. - How to record: Preferably taken from a published controlled vocabulary. Repeat this element only for indicating an earliest and latest period delimiting the event. - Notes: Period concepts have delimiting character in time and space. - - - - - - - How to record: Data values may be: earliestPeriod, latestPeriod. - - - - - - - - - - Definition: Place specification of the event. - - - - - - - How to record: Data values may be: moveFrom, moveTo, alternative. - - - - - - - - - - Definition: The method by which the event is carried out. - How to record: Preferably taken from a published controlled vocabulary. - Notes: Used e.g. for SPECTRUM Units of Information "field collection method", "acquisition method". - - - - - - - - - - - - Definition: Indicates the substances or materials used within the event (e.g. the creation of an object / work), as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - How to record: Will be used most often within a production event, but also others such as excavation, restoration, etc. - - - - - - - - - - - - Definition: References another object that was present at this same event. - - - - - - - - - - - - Definition: References an event which is linked in some way to this event, e.g. a field trip within which this object was collected. - - - - - - - - - - - - Definition: Wrapper for a description of the event, including description identifer, descriptive note of the event and its sources. - How to record: If there is more than one descriptive note, repeat this element. - - - - - - - Definition: Wrapper for display and index elements for events (e.g. creation, find, use etc.), in which the described object participated. - How to record: For multiple events repeat the element. - - - - - Definition: Display element for an event, corresponding to the following event element. - How to record: Repeat this element only for language variants. - - - - - Definition: Identifying, descriptive and indexing information for the events in which the object participated or was present at, e.g. creation, excavation, collection, and use. - Notes: All information related to the creation of an object: creator, cutlural context, creation date, creation place, the material and techniques used are recorded here, qualified by the event type “creation”. - - - - - - - Definition: Wrapper for event sets. - - - - - - Definition: Wrapper for the display and index elements for events (e.g. creation, find, and use), in which the object participated. - How to record: For multiple events repeat the element. - - - - - - - - - - - - - - - Definition: Qualifies the type of the given place entity according to geographical structures. - How to record: Data values can include: natural environment, landscape. - - - - - Definition: Specifies the GML instantiation for georeferences. - Notes: For documentation on GML refer to http://www.opengis.net/gml/. - - - - - - - - - - How to record: There is no controlled list of identifier types. Suggested values include, but are not limited to the following: doi (Digital Objects Identifier)guid (Globally unique identifier)hdl (Handle)isbn (International Standard Book Number)ismn (International Standard Music Number)isrc (International Standard Recording Code)issn (International Standard Serials Number)localpermalinkpurl (Persistent Uniform Resource Locator)url (Uniform Resource Locator)urn (Uniform Resource Name) - - - - - - - - - - - - - - Definition: A wrapper for information about inscriptions and other marks. - - - - - - Definition: A transcription or description of any distinguishing or identifying physical lettering, annotations, texts, markings, or labels that are affixed, applied, stamped, written, inscribed, or attached to the object / work, excluding any mark or text inherent in the materials of which it is made. - Notes: Record watermarks in Display Materials/Techniques. - - - - - - Definition: Transcription of the inscription. - How to record: Repeat this element only for language variants. - - - - - Definition: Wrapper for a description of the inscription, including description identifer, descriptive note of the inscription and sources. - - - - - - - - - - - - - How to record: Elements with data values are accompanied by the attributes encodinganalog and label, to indicate the format of the data source from which the data were migrated. The attribute label refers to the external label of a data field at the visible user interface. The source format is indicated in the attribute - - - - - Definition: Reference information to a legal body. - - - - - Definition: Unambiguous identification of the institution or person referred to as legal body. - - - - - Definition: Appellation of the institution or person. - - - - - Definition: Weblink of the institution or person referred to as legal body. - - - - - - - Definition: Holds the metadata of an object / work. - How to record: Record attribute relatedencoding for this element only if it is the root element. If the document holds more than one LIDO record, assign the attribute to the lidoWrap element. - Notes: Use this element as root for the delivery of content through OAI-PMH. - - - - - Definition: Holds the metadata of an object / work. - - - - - Definition: A unique lido record identification preferably composed of an identifier for the contributor and a record identification in the contributor's (local) system. - - - - - Definition: A unique, published identification of the described object / work. - How to record: May link to authority files maintained outside of the contributor's documentation system or may be an identifier for the object published by its repository, e.g. composed of an identifier for the repository and an inventory number of the object.Preferably a dereferenceable URL. - - - - - Definition: Indicates the category of which this item is an instance, preferably referring to CIDOC-CRM concept definitions. - How to record: CIDOC-CRM concept definitions are given at http://www.cidoc-crm.org/crm-concepts/Data values in the sub-element term may often be: Man-Made Object (with conceptID "http://www.cidoc-crm.org/crm-concepts/E22"), Man-Made Feature (http://www.cidoc-crm.org/crm-concepts/E25), Collection (http://www.cidoc-crm.org/crm-concepts/E78). - - - - - - - - - - Definition: Holds one or multiple object records. - - - - - - - - - - - - - - - - - - - Definition: Materials and techniques for retrieval. - How to record: If multiple parts of the object / work require separate materials and techniques, or if media and support are being recorded separately, repeat the materialsTechSet element qualifying the extent sub-element. - - - - - Definition: A concept to index materials and/or technique. - How to record: Preferably taken from a published controlled vocabulary. - - - - - - - How to record: Example values: technique, material, implement, mark (e.g., watermark or other mark inherent in the material) - - - - - - - - - - Definition: An explanation of the part of the object / work to which the corresponding materials or technique are applicable; included when necessary for clarity. - - - - - Definition: The source of the information about materials and technique, often used when citing a published source of watermarks. - - - - - - - Definition: Wrapper for display and index elements for materials and technique information. - Notes: Indicates the substances or materials used, as well as any implements, production or manufacturing techniques, processes, or methods incorporated. - - - - - Definition: Display element for materials/technique, corresponding to the following materialsTech element. - How to record: It is presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance.Repeat this element only for language variants. - - - - - Definition: Materials and techniques data used for indexing. - - - - - - - Definition: The dimensions or other measurements for one aspect of the item. - - - - - Definition: Indicates what kind of measurement is taken. - How to record: Data values for type: height, width, depth, length, diameter, circumference, stories, count, area, volume, running time, size.Repeat this element only for language variants. - - - - - Definition: The unit of the measurement. - How to record: E.g. cm, mm, m, g, kg, kb, Mb or Gb.Repeat this element only for language variants. - - - - - Definition: The value of the measurement. - How to record: Whole numbers or decimal fractions. - - - - - - - Definition: Wrapper for data classifying the object / work.Includes all classifying information about an object / work, such as: object / work type, style, genre, form, age, sex, and phase, or by how holding organization structures its collection (e.g. fine art, decorative art, prints and drawings, natural science, numismatics, or local history). - - - - - - Definition: A wrapper for Object/Work Types. - - - - - Definition: A wrapper for any classification used to categorize an object / work by grouping it together with others on the basis of similar characteristics. - - - - - - - - Definition: Reference to an object / work. - - - - - Definition: A URL-Reference to a description of the object / work in the worldwide web environment. - - - - - Definition: Unique identifier of the referenced object / work. - - - - - Definition: A descriptive identification of the object / work that will be meaningful to end-users, including some or all of the following information, as necessary for clarity and if known: title, object/work type, important actor, date and/or place information, potentially location of the object / work. - How to record: The information should ideally be generated from fields/elements in the related record. - - - - - - - - - - - - - - Definition: A wrapper for Description/Descriptive Note information. - - - - - - Definition: Wrapper for a description of the object, including description identifer, descriptive note and sources. - How to record: Includes usually a relatively brief essay-like text that describes the content and context of the object / work, including comments and an interpretation that may supplement, qualify, or explain the physical characteristics, subject, circumstances of creation or discovery, or other information about it.If there is more than one descriptive note, repeat this element. - Notes: A reference to a text resource holding the description may be given in description identifier. - - - - - - - - Definition: A Wrapper for information that identifies the object. - - - - - - - - - - - - - - - Definition: The dimensions, size, shape, scale, format, or storage configuration of the object / work, including volume, weight, area or running time. - How to record: Measurements are formatted to allow retrieval; preferably in metric units where applicable. - - - - - Definition: The dimensions or other measurements for one aspect of an object / work (e.g., width). - How to record: May be combined with extent, qualifier, and other sub-elements as necessary.The subelements "measurementUnit", "measurementValue" and -"measurementType" are mandatory. - - - - - - - - - - - - Definition: An explanation of the part of the object / work being measured included, when necessary, for clarity. - How to record: Example values: overall, components, sheet, plate mark, chain lines, pattern repeat, lid, base, laid lines, folios, leaves, columns per page, lines per page, tessera, footprint, panel, interior, mat, window of mat, secondary support, frame, and mount - - - - - - - - - - - - Definition: A word or phrase that elaborates on the nature of the measurements of the object / work when necessary, e.g. when the measurements are approximate. - How to record: Example values: approximate, sight, maximum, larges, smallest, average, variable, assembled, before restoration, before restoration, at corners, rounded, framed, and with base. - - - - - - - - - - - - Definition: The configuration of an object / work, including technical formats. Used as necessary. - How to record: Example values: Vignette, VHS, IMAX, and DOS - - - - - - - - - - - - Definition: The shape of an object / work. Used for unusual shapes (e.g., an oval painting). - How to record: Example values: oval, round, square, rectangular, and irregular. - - - - - - - - - - - - Definition: An expression of the ratio between the size of the representation of something and that thing (e.g., the size of the drawn structure and the actual built work). - How to record: Example values for scale: numeric (e.g., 1 inch = 1 foot), full-size, life-size, half size,monumental. and others as recommended in CCO and CDWA. Combine this tag with Measurement Sets for numeric scales. For measurementsSet type for Scale, use "base" for the left side of the equation, and "target" for the right side of the equation). - Notes: Used for studies, record drawings, models, and other representations drawn or constructed to scale. - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for object measurements. If multiple parts of the object / work are measured, repeat the element - How to record: Holds information about the dimensions, size, or scale of the object / work. It may also include the number of parts in a complex object / work, series, or collection. - - - - - Definition: Display element for one object measurement, corresponding to the following objectMeasurement element. - How to record: Repeat this element only for language variants. - - - - - Definition: Structured measurement information about the dimensions, size, or scale of the object / work. - Notes: It may also include the parts of a complex object / work, series, or collection. - - - - - - - Definition: A wrapper for the Measurements. - - - - - - Definition: Wrapper for display and index elements for object / work measurements. - How to record: If multiple parts of the object / work are measured repeat this element. - - - - - - - - - - - - - - - Definition: Wrapper for infomation about related topics and works, collections, etc. - Notes: This includes visual contents and all associated entities the object is about. - - - - - - - - - - - Definition: Wrapper for display and reference elements for an other object. - - - - - Definition: A free-text description of the object, corresponding to the following object element - How to record: Repeat this element only for language variants. - - - - - Definition: Contains identifying information and links to another object. - - - - - - - Definition: A wrapper for Object/Work Types. - - - - - - Definition: The specific kind of object / work being described. - How to record: Preferably taken from a published controlled vocabulary. For a collection, include repeating instances for identifying all of or the most important items in the collection. - - - - - - - - - - - - - - - - Definition: Structured element for place information - - - - - Definition: A unique identifier for the place. - How to record: Preferably taken from a published authority file. - - - - - Definition: The name of the geographic place. - How to record: If there are different names of the same place, e.g. today's and historical names, repeat this element. - - - - - Definition: Georeferences of the place using the GML specification. - How to record: Repeat this element only for language variants. - Notes: For further documentation on GML refer to http://www.opengis.net/gml/. - - - - - - - - - - - - Definition: Allows for indexing larger geographical entities. - - - - - Definition: A classification of the place, e.g. by geological complex, stratigraphic unit or habitat type. - - - - - - - - - - - - - Definition: Data values can include: Gemeinde, Kreis, Bundesland, Staat, Herzogtum, city, county, country, civil parish - - - - - Definition: Data values can include: Naturraum, Landschaft, natural environment, landscape - - - - - - Definition: Wrapper for display and index elements for place information. - - - - - Definition: Display element for a place specification, corresponding to the following place element. - How to record: Repeat this element only for language variants. - - - - - Definition: Contains structured identifying and indexing information for a geographical entity. - - - - - - - Definition: Qualifies the type of the given place entity according to political structures. - How to record: Data values can include: city, county, country, civil parish. - - - - - Definition: Qualifies the value as a preferred or alternative variant. - How to record: Data values: preferred, alternate - - - - - Definition: Wrapper for metadata information about this record. - Notes: The metadata information contains the reference to the "lido"-metadata set but may also be constituted by reference to an "object data sheet" in an online database. - - - - - Definition: Unique ID of the metadata. - How to record: Record Info ID has the same definition as Record ID but out of the context of original local system, such as a persistent identifier or an oai identifier (e.g., oai1:getty.edu:paintings/00001234 attribute type= oai). - - - - - Definition: Link of the metadata, e.g., to the object data sheet (not the same as link of the object). - - - - - Definition: Creation date or date modified of the metadata record. Format will vary depending upon implementation. - - - - - - - - - - - - - - - - Definition: A wrapper for information about the record that contains the cataloguing information. - Notes: Note that this section does not refer to any object or resource information, but only to the source record. - - - - - - Definition: A unique record identification in the contributor's (local) system. - - - - - Definition: Term establishing whether the record represents an individual item or a collection, series, or group of works. - How to record: Mandatory. Example values: item, collection, series, group, volume, fonds.Preferably taken from a published controlled value list. - - - - - Definition: The source of information in this record, generally the repository or other institution. - - - - - - - - - - - - - Definition: Information about rights regarding the content provided in this LIDO record. - - - - - - - - - - - - Definition: Wrapper for metadata information about this record. - - - - - - - - Definition: Indicates the format of the data source from which the data were migrated. For each sub-element with data values then the related source data fields can be referenced through the attributes encodinganalog and label. - - - - - Definition: A wrapper for one event related to the described event. - - - - - Definition: Display and index elements for the event related to the event being recorded. - - - - - Definition: A term describing the nature of the relationship between the described event and the related event. - How to record: Example values: part of, influence of, related to.Indicate a term characterizing the relationship from the perspective of the currently described event towards the related event. Preferably taken from a published controlled vocabulary. - Notes: For implementation of the data, note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship. - - - - - - - Definition: A wrapper for one object / work, group, collection, or series that is directly related to the object / work at hand, including direct relationships between the two, between an object / work and its components, and between an item and the larger group, collection, or series. - How to record: If there is more than one object / work referred to then the set should be repeated.Preferably taken from a published controlled vocabulary. - Notes: Objects referred to may be corresponding object / works or those created to be shown together with the object / work in question, but also e.g., literature (bibliographic objects) in which the object / work is documented or mentioned forms a "relatedWorkSet". - - - - - Definition: Wrapper for the display and reference elements of a related object / work. - - - - - Definition: A term describing the nature of the relationship between the object / work at hand and the related entity. - How to record: Example values: part of, larger context for, model of, model for, study of, study forrendering of, copy of, related to.Indicate a term characterizing the relationship from the perspective of the currently described object / work towards the related object / work. - Notes: For implementation of the data, note that relationships are conceptually reciprocal, but the Relationship Type is often different on either side of the relationship (e.g., one work is part of a second work, but from the point of view of the second record, the first work is the larger context for the second work). Whether or not relationships are physically reciprocal as implemented in systems is a local decision. - - - - - - - Definition: A wrapper for Related Works information. - - - - - - Definition: A wrapper for a object / work, group, collection, or series that is directly related to the object / work being recorded. - - - - - - - - - - - - - - - Definition: Wrapper for designation and identification of the institution of custody and, possibly, indication of the exact location of the object. - How to record: If there are several designations known, e.g., a current one and former ones (see: type attribute), repeat the element.Data values of the type attribute: current, former. - - - - - Definition: Unambiguous identification, designation and weblink of the institution of custody. - - - - - Definition: An unambiguous numeric or alphanumeric identification number, assigned to the object by the institution of custody. - - - - - - - - - - - - - - - Definition: Location of the object, especially relevant for architecture and archaeological sites. - - - - - - Definition: Qualifies the repository as a former or the current repository. - How to record: Data values: current, former - - - - - - - Definition: Wrapper for Repository/ Location information. - - - - - - Definition: Wrapper for designation and identification of the institution of custody, and possibly an indication of the exact location of the object. - - - - - - - - Definition: A wrapper for sets of resource information. - How to record: If there are multiple, distinct resources associated with the object / work, repeat the Resource Set element. For variants representing the same resource repeat the Resource Representation sub-element. - - - - - Definition: The unique numeric or alphanumeric identification of the original (digital or analogue) resource. - - - - - Definition: A digital representation of a resource for online presentation. - How to record: Repeat this element set for variants representing the same resource, e.g. different sizes of the same image, or a thumbnail representing an audio or video file and the digital audio or video file itself. - - - - - - Definition: A url reference in the worldwide web environment. - - - - - - - Definition: Codec information about the digital resource. - - - - - - - - - Definition: Any technical measurement information needed for online presentation of the resource. - How to record: For images provide width and height of the digital image, for audio or video resources provide duration, bit rate, frame size, and if necessary TC-IN, TC-OUT. - - - - - - - - - Definition: The generic identification of the medium of the image or other resource. - How to record: Preferably using a controlled published value list. Example values: digital image, photograph, slide, videotape, X-ray photograph, negative. - - - - - Definition: The relationship of the resource to the object / work being described. - How to record: Example values: conservation image, documentary image, contextual image, historical image, reconstruction, and installation image - - - - - Definition: The specific vantage point or perspective of the view. - - - - - Definition: A description of the spatial, chronological, or contextual aspects of the object / work as captured in this particular resource. - - - - - - - - - - - - - Definition: A date or range of dates associated with the creation or production of the original resource, e.g. the image or recording. - Notes: This is not necessarily the same as the date of production of the digital resource (e.g. a digitization of a negative is usually made years after the image was captured on film). Format will vary depending upon implementation. - - - - - Definition: Identification of the agency, individual, or repository from which the image or other resource was obtained. - How to record: Include this sub-element when the source of the image/resource differs from the source named in Record Source. - - - - - - - - - - - - - Definition: Information about rights regarding the image or other resource. - How to record: Use this sub-element if the holder of the reproduction rights for the image/resource differs from the holder of rights for the work. See also Rights Work above. (E.g., the work rights are " National Museum of African Art, Smithsonian Instituition (Washing DC), " but the image rights are "Photo Frank Khoury.") - - - - - - - - - - - - - - Definition: A wrapper for resources that are surrogates for an object / work, including digital images, videos or audio files that represent it in an online service. - - - - - - Definition: Contains sub-elements for a structured resource description. - Notes: Provides identification of a surrogate of the object / work including digital images, slides, transparencies, photographs, audio, video and moving images, but excluding items that are considered object / works in their own right. For such as drawings, prints, paintings, or photographs considered art, and other works that themselves contain representations of other works, use Related Works and/or Subjects. - - - - - - - - - - - - - - - Definition: Information about rights management; may include copyright and other intellectual property statements. - - - - - Definition: The specific type of right being recorded. - How to record: For example: copyright, publication right, data protection right, trademark.Preferably taken from a published controlled value list. - - - - - Definition: The date on which a right is or was current. - - - - - Definition: The holder of the right. - - - - - - - - - - - - Definition: Acknowledgement of the rights associated with the physical and/or digital object as requested. - How to record: Repeat this element only for language variants. - - - - - - - Definition: Wrapper for rights information about the object / work described. - Notes: Rights information for the record and for resources is recorded in the respective rights elements recordRights and rightsResource. - - - - - - Definition: Information about rights management; may include copyright and other intellectual property statements about the object / work. - - - - - - - - - - - - - - - Definition: Assigns a priority order for online presentation of the element. - How to record: Has to be a positive integer, with descending priority from 1 to x. - - - - - Definition: Source of the information given in the holding element. - - - - - Definition: A wrapper for one set of Subject Indexing information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat the superordinate Subject Set element and use Extent Subject. The superordinate Subject Set element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - Notes: While not required, it is highly recommended to include subject information, even for non-objective art, for which the function or purpose of the object / work may be included as subject. - - - - - Definition: When there are multiple subjects, a term indicating the part of the object / work to which these subject terms apply. - How to record: Example values: recto, verso, side A, side B, main panel, and predella.Repeat this element only for language variants. - - - - - Definition: Provides references to concepts related to the subject of the described object / work. - How to record: May include iconography, themes from literature, or generic terms describing the material world, or topics (e.g., concepts, themes, or issues). However, references to people, dates, events, places, objects are indicated in the the respective sub-elements Subject Actor Set, Subject Date Set, Subject Event Set, Subject Place Set, and Subject Object Set.Preferably taken from a published controlled vocabulary. - - - - - - - - - - - - Definition: A person, group, or institution depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: A time specification depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: An event depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: A place depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - Definition: An object - e.g. a building or a work of art depicted in or by an object / work, or what it is about, provided as display and index elements. - - - - - - - - - - - - - - - Definition: Wrapper for display and index elements for one set of subject information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat this element and use Extent Subject in the Subject element. This element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - - - - - Definition: A free-text description of the subject matter represented by/in the object / work, corresponding to the following subject element - How to record: Repeat this element only for language variants. - - - - - Definition: Contains sub-elements for a structured subject description. These identify, describe, and/or interpret what is depicted in and by an object / work or what it is about. - - - - - - - Definition: A wrapper for Subject information. This may be the visual content (e.g. the iconography of a painting) or what the object is about. - - - - - - Definition: Wrapper for display and index elements for one set of subject information. - How to record: If an object / work has multiple parts or otherwise has separate, multiple subjects, repeat this element and use Extent Subject in the Subject element. This element may also be repeated to distinguish between subjects that reflect what an object / work is *of* (description and identification) from what it is *about* (interpretation). - - - - - - - - - - - - - - - Definition: A name for a concept / term, usually from a controlled vocabulary. - - - - - - - - - - - - - - Definition: Simple text element with encodinganalog and label attribute - - - - - - - - - - - - Definition: Wrapper for Object name / Title information. - - - - - - Definition: Wrapper for one title or object name and its source information. - How to record: Mandatory. If there is no specific title, provide an object name in the appellation value. If there is more than one title, repeat the Title Set element. - Notes: For objects from natural, technical, cultural history e.g. the object name given here and the object type, recorded in the object / work type element are often identical. - - - - - - - - - - - - - - - - Definition: Qualifies the type of information given in the holding element. - How to record: Will generally have to be populated with a given value list. - - - - - Definition: A uri/url reference to a web resource that describes / represents the item, e.g. a metadata record. - Notes: It differs from an identifier for the item itself. - - - - - - - Definition: Indicates the internet media type, e.g. the file format of the given web resource. - How to record: Data values should be taken from the official IANA list (see http://www.iana.org/assignments/media-types/). Includes: text/html, text/xml, image/jpeg, audio/mpeg, video/mpeg, application/pdf. - - - - - - - - - diff --git a/schemas/other/MARC21slim.xsd b/schemas/other/MARC21slim.xsd deleted file mode 100644 index f4d6a51..0000000 --- a/schemas/other/MARC21slim.xsd +++ /dev/null @@ -1,150 +0,0 @@ - - - - - MARCXML: The MARC 21 XML Schema - Prepared by Corey Keith - - May 21, 2002 - Version 1.0 - Initial Release - -********************************************** -Changes. - -August 4, 2003 - Version 1.1 - -Removed import of xml namespace and the use of xml:space="preserve" attributes on the leader and controlfields. - Whitespace preservation in these subfields is accomplished by the use of xsd:whiteSpace value="preserve" - -May 21, 2009 - Version 1.2 - -in subfieldcodeDataType the pattern - "[\da-z!"#$%&'()*+,-./:;<=>?{}_^`~\[\]\\]{1}" - changed to: - "[\dA-Za-z!"#$%&'()*+,-./:;<=>?{}_^`~\[\]\\]{1}" - i.e "A-Z" added after "[\d" before "a-z" to allow upper case. This change is for consistency with the documentation. - -************************************************************ - This schema supports XML markup of MARC21 records as specified in the MARC documentation (see www.loc.gov). It allows tags with - alphabetics and subfield codes that are symbols, neither of which are as yet used in the MARC 21 communications formats, but are - allowed by MARC 21 for local data. The schema accommodates all types of MARC 21 records: bibliographic, holdings, bibliographic - with embedded holdings, authority, classification, and community information. - - - - - record is a top level container element for all of the field elements which compose the record - - - - - collection is a top level container element for 0 or many records - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MARC21 Leader, 24 bytes - - - - - - - - - - - - - - - - MARC21 Fields 001-009 - - - - - - - - - - - - - - - - - - - - - - MARC21 Variable Data Fields 010-999 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/other/MARC21slim.xsd.conf b/schemas/other/MARC21slim.xsd.conf deleted file mode 100644 index 80dacd7..0000000 --- a/schemas/other/MARC21slim.xsd.conf +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": "1.0", - "xsd": "MARC21slim.xsd", - "namespaces": { - "tns": "http://www.loc.gov/MARC21/slim" - }, - - "wrap": { - "element": "collection", - "prefix": "tns" - }, - - "item": { - "element": "record", - "prefix": "tns" - }, - - "groups": [ - { - "name": "MARC", - "element": "record" - } - ], - - "navigation": [ - { - "type": "group", - "name": "MARC" - } - ] -} diff --git a/schemas/other/agris_ap.xsd b/schemas/other/agris_ap.xsd deleted file mode 100644 index fcdc202..0000000 --- a/schemas/other/agris_ap.xsd +++ /dev/null @@ -1,562 +0,0 @@ - - - - - AGRIS AP semantic elements - V1.1 W3C XML Schema - Date: 2010-12-01 - Purpose: to describe the metadata as set out in the AGRIS Application Profile at - http://www.fao.org/docrep/008/ae909e/ae909e00.HTM - Publisher: FAO of the UN - AGRIS CARIS documentation Group. - Comments and error reports should be sent to stefano.anibaldi@fao.org - ***Change history: - - 28/02/2008: added scheme ags:FTKCS to subjectClassification - - 30/09/2009: typo in element source corrected - - 24/11/2009: agls namespace and schema location changed to ags because the agsl xsd has errors and does not validate - - 24/11/2009: dcterms:dateIssued changed to dcterms:issued, according to the DC terms schema - - 24/11/2009: dcterms:relationHasTranslation and dcterms:relationIsTranslationOf removed because they are not present any longer in the DC terms Schema - - 24/11/2009: changed ags:availability complex type from choice to sequence - - 01/12/2010: changed publisher to define its children globally - *** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/other/agris_ap.xsd.conf b/schemas/other/agris_ap.xsd.conf deleted file mode 100644 index e7d2022..0000000 --- a/schemas/other/agris_ap.xsd.conf +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version": "1.0", - "xsd": "agris_ap.xsd", - "namespaces": { - "dc": "http://purl.org/dc/elements/1.1/", - "dcterms": "http://purl.org/dc/terms/", - "ags": "http://purl.org/agmes/1.1/" - }, - - "wrap": { - "element": "resources", - "prefix": "ags" - }, - - "item": { - "element": "resource", - "prefix": "ags" - }, - - "groups": [ { - "name": "AGRIS", - "element": "resource" - } - ], - - "navigation": [ - { - "type": "group", - "name": "AGRIS" - } - ] -} diff --git a/schemas/other/dcwrap.xsd b/schemas/other/dcwrap.xsd deleted file mode 100644 index 0085bb7..0000000 --- a/schemas/other/dcwrap.xsd +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/schemas/other/dcwrap.xsd.conf b/schemas/other/dcwrap.xsd.conf deleted file mode 100644 index a226d0e..0000000 --- a/schemas/other/dcwrap.xsd.conf +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": "1.0", - "xsd": "dcwrap.xsd", - "namespaces": { - "tns": "http://www.example.org/dcwrap" - }, - - "wrap": { - "element": "recordWrap", - "prefix": "tns" - }, - - "item": { - "element": "record", - "prefix": "tns" - }, - - "groups": [ - { - "name": "DC", - "element": "DC" - }, - { - "name": "DCTerms", - "element": "DCTerms" - } - ], - - "navigation": [ - { - "type": "group", - "name": "DC" - }, - { - "type": "group", - "name": "DCTerms" - } - ], -} diff --git a/schemas/other/ity.v3.xsd b/schemas/other/ity.v3.xsd deleted file mode 100644 index bddb66d..0000000 --- a/schemas/other/ity.v3.xsd +++ /dev/null @@ -1,2130 +0,0 @@ - - - - - Copyright 2006 Claude Ostyn - - This work is licensed under the Creative Commons Attribution-ShareAlike - License. To view a copy of this license, see the file license.txt, - visit http://creativecommons.org/licenses/by-sa/2.5 or send a letter to - Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. - - This schema is a single file consolidation of the sample schema published - with IEEE Std 1484.12.3-2005 - IEEE Standard for Learning Technology- - Extensible Markup Language (XML) Schema Definition Language Binding - for Learning Object Metadata. - - The IEEE sample schema is licensed under the Creative Commons Attribution-ShareAlike - License. To view a copy of this license, see the file license.txt, - visit http://creativecommons.org/licenses/by-sa/1.0 or send a letter to - Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. - - Unlike the sample schemas that accompany the IEEE standard, which - uses multiple subdirectories and cross-referencing namespaces, - this schema is a single file in order to simplify its inclusion and reference - in content packages, e.g. SCORM packages, and in other applications. - - This schema was constructed as follows: - - Select the "Custom" profiles of the original IEEE sample schema to - allow extension elements and attributes - - Use the strict schema for name uniqueness - - Allow use of alternative, unrestricted vocabularies or the LOM v1.0 - vocabularies. - - Consolidate all the relevant declarations in a single file and namespace - - Rename declarations such as type names, group names, etc. - where they conflict when they are brought into a single schema. - The elements that would be found in an XML instance conforming - to this or the original LOM schema are of course not renamed. - Except as described above, declarations and datatypes are not modified. - - Because this schema defines a profile, not every IEEE conformant - instance is guaranteed to validate with this schema, but strictly conformant - instances and instances that use custom extensions but that do not - rely on the loose schema definition should validate. - - USE AT YOUR OWN RISK - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/schemas/other/ity.v3.xsd.conf b/schemas/other/ity.v3.xsd.conf deleted file mode 100644 index 5f2ae1b..0000000 --- a/schemas/other/ity.v3.xsd.conf +++ /dev/null @@ -1,62 +0,0 @@ -{ - "version": "1.0", - "xsd": "ity.v3.xsd", - "namespaces": { - "lom": "http://ltsc.ieee.org/xsd/LOM" - }, - - "item": { - "element": "lom", - "prefix": "lom" - }, - - "groups": [ - { - "name": "General", - "type": "wrap", - "element": "general" - }, - { - "name": "Life Cycle", - "type": "wrap", - "element": "lifeCycle" - }, - { - "name": "Meta Metadata", - "type": "wrap", - "element": "metaMetadata" - }, - { - "name": "Technical", - "type": "wrap", - "element": "technical" - }, - { - "name": "Educational", - "type": "wrap", - "element": "educational" - }, - { - "name": "Rights", - "type": "wrap", - "element": "rights" - }, - { - "name": "Relation", - "type": "wrap", - "element": "relation" - }, - { - "name": "Annotation", - "type": "wrap", - "element": "annotation" - }, - { - "name": "Classification", - "type": "wrap", - "element": "classification" - } - ], - - "customization": "lom.groovy" -} diff --git a/schemas/other/mods.xsd b/schemas/other/mods.xsd deleted file mode 100644 index a477040..0000000 --- a/schemas/other/mods.xsd +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/schemas/other/mods.xsd.conf b/schemas/other/mods.xsd.conf deleted file mode 100644 index 7c569a1..0000000 --- a/schemas/other/mods.xsd.conf +++ /dev/null @@ -1,109 +0,0 @@ -{ - "version": "1.0", - "xsd": "mods.xsd", - "namespaces": { - "tns": "http://www.loc.gov/mods/v3" - }, - - "wrap": { - "element": "modsCollection", - "prefix": "tns" - }, - - "item": { - "element": "mods", - "prefix": "tns" - }, - - "groups": [ - { - "name": "Name", - "element": "name" - }, - { - "name": "Language", - "element": "language" - }, - { - "name": "Location", - "element": "location" - }, - { - "name": "Origin Info", - "element": "originInfo" - }, - { - "name": "Part", - "element": "part" - }, - { - "name": "Physical Description", - "element": "physicalDescription" - }, - { - "name": "Record Info", - "element": "recordInfo" - }, - { - "name": "Related Item", - "element": "relatedItem" - }, - { - "name": "Subject", - "element": "subject" - }, - { - "name": "Title Info", - "element": "titleInfo" - - } - ], - - "navigation": [ - { - "type": "template", - "name": "MODS", - "hide": ["name", "language", "location", "originInfo", "part", "physicalDescription", "recordInfo", "relatedItem", "subject", "titleInfo"] - }, - { - "type": "group", - "name": "Name" - }, - { - "type": "group", - "name": "Language" - }, - { - "type": "group", - "name": "Location" - }, - { - "type": "group", - "name": "Origin Info" - }, - { - "type": "group", - "name": "Part" - }, - { - "type": "group", - "name": "Physical Description" - }, - { - "type": "group", - "name": "Record Info" - }, - { - "type": "group", - "name": "Related Item" - }, - { - "type": "group", - "name": "Subject" - }, - { - "type": "group", - "name": "Title Info" - } - ] -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/actionerror_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/actionerror_jsp.class deleted file mode 100644 index 6ab1353..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/actionerror_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/actionerror_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/actionerror_jsp.java deleted file mode 100644 index 592104b..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/actionerror_jsp.java +++ /dev/null @@ -1,257 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-31 13:48:41 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class actionerror_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fset_0026_005fvalue_005fscope_005fname_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fset_0026_005fvalue_005fscope_005fname_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fset_0026_005fvalue_005fscope_005fname_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - java.lang.Throwable exception = org.apache.jasper.runtime.JspRuntimeLibrary.getThrowable(request); - if (exception != null) { - response.setStatus(javax.servlet.http.HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t\t"); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/actionerror.jsp(11,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("exception!=null"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write(" \t

Exception

\r\n"); - out.write(" \t"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\r\n"); - out.write(" \t

Stack trace

\r\n"); - out.write(" \t"); - if (_jspx_meth_s_005fproperty_005f1(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write(" \t\r\n"); - out.write(" \t

Full Stack trace

\r\n"); - out.write(" \t"); - if (_jspx_meth_s_005fset_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write(" \t"); - - Exception ex = (Exception)pageContext.getAttribute("ex"); - for (StackTraceElement element : ex.getStackTrace()) { - out.println(element.toString()); - out.println("
"); - } - - out.write("\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - out.write("\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/actionerror.jsp(13,9) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("%{exception.message}"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/actionerror.jsp(16,9) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("%{exception.stackTrace}"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fset_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f0 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvalue_005fscope_005fname_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/actionerror.jsp(19,10) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setName("ex"); - // /WEB-INF/jsp/actionerror.jsp(19,10) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setValue("%{exception}"); - // /WEB-INF/jsp/actionerror.jsp(19,10) name = scope type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setScope("page"); - int _jspx_eval_s_005fset_005f0 = _jspx_th_s_005fset_005f0.doStartTag(); - if (_jspx_th_s_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvalue_005fscope_005fname_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvalue_005fscope_005fname_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/createDataset_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/createDataset_jsp.class deleted file mode 100644 index d22eeaf..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/createDataset_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/createDataset_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/createDataset_jsp.java deleted file mode 100644 index a2d22a5..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/createDataset_jsp.java +++ /dev/null @@ -1,476 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:33:59 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; -import gr.ntua.ivml.mint.persistent.Organization; -import gr.ntua.ivml.mint.persistent.XmlSchema; -import java.util.List; - -public final class createDataset_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fonSubmit_005fname_005fmethod_005fenctype_005fcssClass_005faction; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fname_005fcssStyle_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005frequired_005fname_005flistValue_005flistKey_005flist_005fheaderValue_005fheaderKey_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fonSubmit_005fname_005fmethod_005fenctype_005fcssClass_005faction = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fname_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005frequired_005fname_005flistValue_005flistKey_005flist_005fheaderValue_005fheaderKey_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fonSubmit_005fname_005fmethod_005fenctype_005fcssClass_005faction.release(); - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fname_005fcssStyle_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005frequired_005fname_005flistValue_005flistKey_005flist_005fheaderValue_005fheaderKey_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
Create empty dataset
\r\n"); - out.write("\t
\r\n"); - out.write("\t"); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - // s:form - org.apache.struts2.views.jsp.ui.FormTag _jspx_th_s_005fform_005f0 = (org.apache.struts2.views.jsp.ui.FormTag) _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fonSubmit_005fname_005fmethod_005fenctype_005fcssClass_005faction.get(org.apache.struts2.views.jsp.ui.FormTag.class); - _jspx_th_s_005fform_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fform_005f0.setParent(null); - // /WEB-INF/jsp/createDataset.jsp(53,0) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setName("createDatasetForm"); - // /WEB-INF/jsp/createDataset.jsp(53,0) name = action type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setAction("CreateDataset"); - // /WEB-INF/jsp/createDataset.jsp(53,0) name = cssClass type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setCssClass("athform"); - // /WEB-INF/jsp/createDataset.jsp(53,0) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setTheme("mytheme"); - // /WEB-INF/jsp/createDataset.jsp(53,0) name = enctype type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setEnctype("multipart/form-data"); - // /WEB-INF/jsp/createDataset.jsp(53,0) name = method type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setMethod("POST"); - // /WEB-INF/jsp/createDataset.jsp(53,0) null - _jspx_th_s_005fform_005f0.setDynamicAttribute(null, "onSubmit", new String("return false")); - int _jspx_eval_s_005fform_005f0 = _jspx_th_s_005fform_005f0.doStartTag(); - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fform_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fform_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\r\n"); - out.write("\t\t"); -List l= DB.getXmlSchemaDAO().findAll(); - - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t "); - if (_jspx_meth_s_005ftextfield_005f0(_jspx_th_s_005fform_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\r\n"); - out.write("\t\t
\t\r\n"); - out.write("\t\t\t\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t
\r\n"); - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f1(_jspx_th_s_005fform_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t

\r\n"); - out.write("\t\t\t\t\r\n"); - out.write("\t\t\t\t\t Submit \r\n"); - out.write("\t

\r\n"); - out.write("\r\n"); - out.write("\r\n"); - int evalDoAfterBody = _jspx_th_s_005fform_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fform_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fonSubmit_005fname_005fmethod_005fenctype_005fcssClass_005faction.reuse(_jspx_th_s_005fform_005f0); - return; - } - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fonSubmit_005fname_005fmethod_005fenctype_005fcssClass_005faction.reuse(_jspx_th_s_005fform_005f0); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/createDataset.jsp(44,1) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write('\r'); - out.write('\n'); - out.write(' '); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - out.write(' '); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/createDataset.jsp(45,1) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionErrors"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write(" \r\n"); - out.write("\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/createDataset.jsp(46,29) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005ftextfield_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:textfield - org.apache.struts2.views.jsp.ui.TextFieldTag _jspx_th_s_005ftextfield_005f0 = (org.apache.struts2.views.jsp.ui.TextFieldTag) _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fname_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.TextFieldTag.class); - _jspx_th_s_005ftextfield_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005ftextfield_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fform_005f0); - // /WEB-INF/jsp/createDataset.jsp(59,38) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setName("nameDataset"); - // /WEB-INF/jsp/createDataset.jsp(59,38) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setCssStyle("width: 100px;"); - int _jspx_eval_s_005ftextfield_005f0 = _jspx_th_s_005ftextfield_005f0.doStartTag(); - if (_jspx_th_s_005ftextfield_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fname_005fcssStyle_005fnobody.reuse(_jspx_th_s_005ftextfield_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fname_005fcssStyle_005fnobody.reuse(_jspx_th_s_005ftextfield_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fform_005f0); - // /WEB-INF/jsp/createDataset.jsp(72,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("%{user.accessibleOrganizations.size>1}"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
"); - if (_jspx_meth_s_005fselect_005f0(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f0 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005frequired_005fname_005flistValue_005flistKey_005flist_005fheaderValue_005fheaderKey_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setName("orgId"); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = headerKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setHeaderKey("0"); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = headerValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setHeaderValue("-- Which Organization --"); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setList("user.accessibleOrganizations"); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListKey("dbID"); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListValue("name"); - // /WEB-INF/jsp/createDataset.jsp(73,60) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setValue("user.organization.dbID"); - // /WEB-INF/jsp/createDataset.jsp(73,60) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "required", new String("true")); - int _jspx_eval_s_005fselect_005f0 = _jspx_th_s_005fselect_005f0.doStartTag(); - if (_jspx_th_s_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005frequired_005fname_005flistValue_005flistKey_005flist_005fheaderValue_005fheaderKey_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005frequired_005fname_005flistValue_005flistKey_005flist_005fheaderValue_005fheaderKey_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/dataReport_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/dataReport_jsp.class deleted file mode 100644 index ac02d3f..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/dataReport_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/dataReport_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/dataReport_jsp.java deleted file mode 100644 index 068ce68..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/dataReport_jsp.java +++ /dev/null @@ -1,255 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 15:05:12 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class dataReport_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\n"); - out.write("\n"); - out.write(" \n"); - out.write("\n"); - out.write(" "); - if (_jspx_meth_s_005fset_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write(" "); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write(" \n"); - out.write("\n"); - out.write("
\n"); - out.write("
\n"); - out.write(" \t
\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write(" "); - if( request.getAttribute( "actionmessage" ) != null ) { - out.write("\n"); - out.write("\t\t
\n"); - out.write("\t\t"); - out.print((String) request.getAttribute( "actionmessage" )); - out.write("
\n"); - out.write(" "); -}else{ - out.write("\n"); - out.write("
\n"); - out.write("\t\tView project and organization reports:\n"); - out.write("\t
"); -} - out.write("\n"); - out.write("\t
\n"); - out.write("\t\n"); - out.write(" \n"); - out.write(" "); -if(Config.getBoolean("mint.enableGoalReports", true) ||user.hasRight(User.SUPER_USER)){ - out.write("\n"); - out.write("
\n"); - out.write(" \t
Organization reports
\n"); - out.write("\t
\n"); - out.write(" -\t
\t\n"); - out.write(" \t"); -} - out.write("\n"); - out.write(" \t\n"); - out.write(" "); -if(user.hasRight(User.SUPER_USER)){ - out.write("\n"); - out.write("\t
\n"); - out.write("\t
Project reports
\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write(" \n"); -} - out.write("\t\n"); - out.write("\n"); - out.write(" \n"); - out.write(" \n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f0 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f0.setParent(null); - // /WEB-INF/jsp/dataReport.jsp(5,3) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setVar("orgId"); - // /WEB-INF/jsp/dataReport.jsp(5,3) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setValue("filterOrg"); - int _jspx_eval_s_005fset_005f0 = _jspx_th_s_005fset_005f0.doStartTag(); - if (_jspx_th_s_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/dataReport.jsp(6,4) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("orgid==-1"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\n"); - out.write(" "); - if (_jspx_meth_s_005fset_005f1(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write("\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fset_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f1 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/dataReport.jsp(7,4) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setVar("orgId"); - // /WEB-INF/jsp/dataReport.jsp(7,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setValue("user.dbID"); - int _jspx_eval_s_005fset_005f1 = _jspx_th_s_005fset_005f1.doStartTag(); - if (_jspx_th_s_005fset_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/datasetoptions_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/datasetoptions_jsp.class deleted file mode 100644 index dbd01a3..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/datasetoptions_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/datasetoptions_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/datasetoptions_jsp.java deleted file mode 100644 index 2782bff..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/datasetoptions_jsp.java +++ /dev/null @@ -1,2594 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:14 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; -import gr.ntua.ivml.mint.persistent.Transformation; -import gr.ntua.ivml.mint.persistent.Dataset; -import gr.ntua.ivml.mint.view.Import; - -public final class datasetoptions_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); -private StringBuffer printTransformation(Transformation parent, int depth, StringBuffer html,String userId,String orgId){ - if( html == null ) html = new StringBuffer(); - if(parent.getDirectlyDerived()!=null){ - - for(Dataset d: parent.getDirectlyDerived() ) { - if(d instanceof gr.ntua.ivml.mint.persistent.Transformation ){ - Transformation tr=(Transformation)d; - Import tvew=new Import(tr); - html.append("
"); - - html.append("
"); - int spacedepth=depth; - while(spacedepth>0){ - spacedepth--; - html.append("    ");} - - - - html.append(tr.getName()+"   "+tr.getCreated()+"
"); - - html.append("
"+ - "" - +"
"); - - html=printTransformation(tr,depth+1,html,userId,orgId); - } - } - } - return html; -} - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felse; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felse = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005felse.release(); - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.release(); - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write(" "); - if (_jspx_meth_s_005fif_005f1(_jspx_page_context)) - return; - if (_jspx_meth_s_005fproperty_005f0(_jspx_page_context)) - return; - out.write("\r\n"); - out.write(" \r\n"); - out.write("\t\t\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t\tStatus: "); - if (_jspx_meth_s_005fif_005f2(_jspx_page_context)) - return; - if (_jspx_meth_s_005felse_005f0(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f3(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t\tNo of Items: "); - if (_jspx_meth_s_005fproperty_005f4(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t\tCreation date: "); - if (_jspx_meth_s_005fproperty_005f5(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t\tBy user: "); - if (_jspx_meth_s_005fproperty_005f6(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f4(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t\t\t\r\n"); - out.write("\t "); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f5 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f5.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(39,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f5.setTest("current.isProcessing()==false"); - int _jspx_eval_s_005fif_005f5 = _jspx_th_s_005fif_005f5.doStartTag(); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f5.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f5.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t \r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t "); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f6 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(43,4) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f6.setTest("current.isRootDefined()==true && current.isItemized()==true"); - int _jspx_eval_s_005fif_005f6 = _jspx_th_s_005fif_005f6.doStartTag(); - if (_jspx_eval_s_005fif_005f6 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f6 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f6.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f6.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t "); -if(user.hasRight(User.PUBLISH)){ - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t "); - if (_jspx_meth_cst_005fcustomJsp_005f0(_jspx_th_s_005fif_005f6, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t "); -} - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\t
Show all items
\r\n"); - out.write("\t\t\t\t\t
"); - if (_jspx_meth_s_005fproperty_005f21(_jspx_th_s_005fif_005f6, _jspx_page_context)) - return; - out.write(" items
\t\r\n"); - out.write("\t\t\t\t \t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fif_005f10(_jspx_th_s_005fif_005f6, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t "); -if(user.hasRight(User.MODIFY_DATA)){ - out.write("\r\n"); - out.write("\t\t \t\t\t"); - - if(user.hasRight(User.SUPER_USER) || !Config.getBoolean("ui.hide.mapping")) { - - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
Mappings
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\t"); -} - out.write("\r\n"); - out.write("\r\n"); - out.write("\t\t\t \t\t\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
Annotate (in development)
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\t"); -//} - out.write("\r\n"); - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t \t\t"); - - if(user.hasRight(User.SUPER_USER) || !Config.getBoolean("ui.hide.transform")) { - - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fif_005f12(_jspx_th_s_005fif_005f6, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t \t\t"); -} - out.write("\r\n"); - out.write("\t\t\t "); -} - out.write("\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f6.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f6 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f6); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f6); - out.write(" \r\n"); - out.write(" "); -if(user.hasRight(User.MODIFY_DATA)){ - out.write("\r\n"); - out.write("\t\t \t\t\t"); - - if(user.hasRight(User.SUPER_USER) || !Config.getBoolean("ui.hide.defineItems")) { - - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f14(_jspx_th_s_005fif_005f5, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t"); -} - out.write("\r\n"); - out.write("\t\t\t\t"); -} - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\t\t \r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fif_005f16(_jspx_th_s_005fif_005f5, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fif_005f17(_jspx_th_s_005fif_005f5, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t"); -if(user.hasRight(User.MODIFY_DATA)){ - out.write("\r\n"); - out.write("\t\t \t\t\t"); - - if(user.hasRight(User.SUPER_USER) || !(Config.getBoolean("ui.hide.deleteDataupload") && ((String) request.getAttribute("datasetType")).equals("Data Upload"))) { - - out.write("\r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fif_005f18(_jspx_th_s_005fif_005f5, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t \t\t\t"); - - } - - out.write("\r\n"); - out.write("\t\t\t\r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fif_005f19(_jspx_th_s_005fif_005f5, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t "); -} - out.write('\r'); - out.write('\n'); - out.write(' '); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f20 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f20.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f20.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(197,1) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f20.setTest("!current.isTransformation() && transformations.size>0"); - int _jspx_eval_s_005fif_005f20 = _jspx_th_s_005fif_005f20.doStartTag(); - if (_jspx_eval_s_005fif_005f20 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f20 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f20.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f20.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
Transformations
\r\n"); - out.write("\t\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write(" \r\n"); - out.write("\t\t "); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f1 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f20); - // /WEB-INF/jsp/datasetoptions.jsp(204,3) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setId("trans"); - // /WEB-INF/jsp/datasetoptions.jsp(204,3) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setValue("transformations"); - int _jspx_eval_s_005fiterator_005f1 = _jspx_th_s_005fiterator_005f1.doStartTag(); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t \r\n"); - out.write("\t\t "); - - - Transformation t=(Transformation)request.getAttribute("trans"); - Import tvew=new Import(t); - - out.write("\r\n"); - out.write("\t\t \t\t\t
\r\n"); - out.write("\t\t \t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t "); - if (_jspx_meth_s_005fproperty_005f47(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("   "); - if (_jspx_meth_s_005fproperty_005f48(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t"); - out.print(printTransformation(t,1,null, request.getParameter("userId"),request.getParameter("organizationId"))); - out.write("\r\n"); - out.write("\t\t \t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - return; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - out.write("\r\n"); - out.write("\t\t \t\t\t\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write("\t\t\t \r\n"); - out.write("\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f20.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f20 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f20.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f20); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f20); - out.write(' '); - out.write('\r'); - out.write('\n'); - int evalDoAfterBody = _jspx_th_s_005fif_005f5.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - out.write(" \r\n"); - out.write("\t\t\r\n"); - out.write("\t \r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(8,24) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("current.isTransformation()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write(" style=\"background-color:#FFFEEE\""); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(13,4) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("current.isTransformation()"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write(""); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(13,105) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("current.name"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(19,17) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("current.status=='FAILED'"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write(""); - if (_jspx_meth_s_005fproperty_005f1(_jspx_th_s_005fif_005f2, _jspx_page_context)) - return true; - out.write(""); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/datasetoptions.jsp(19,73) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("current.message"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005felse_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f0 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f0.setParent(null); - int _jspx_eval_s_005felse_005f0 = _jspx_th_s_005felse_005f0.doStartTag(); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f0.doInitBody(); - } - do { - out.write(""); - if (_jspx_meth_s_005fproperty_005f2(_jspx_th_s_005felse_005f0, _jspx_page_context)) - return true; - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005felse_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(19,152) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("current.message"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fif_005f3(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f3 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f3.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(22,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f3.setTest("current.schema != ''"); - int _jspx_eval_s_005fif_005f3 = _jspx_th_s_005fif_005f3.doStartTag(); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f3.doInitBody(); - } - do { - out.write("Schema: "); - if (_jspx_meth_s_005fproperty_005f3(_jspx_th_s_005fif_005f3, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f3); - // /WEB-INF/jsp/datasetoptions.jsp(22,70) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("current.schema"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f4(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f4 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f4.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(24,41) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f4.setValue("current.getNoOfItems()"); - int _jspx_eval_s_005fproperty_005f4 = _jspx_th_s_005fproperty_005f4.doStartTag(); - if (_jspx_th_s_005fproperty_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f5(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f5 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f5.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(25,44) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f5.setValue("current.getCreated()"); - int _jspx_eval_s_005fproperty_005f5 = _jspx_th_s_005fproperty_005f5.doStartTag(); - if (_jspx_th_s_005fproperty_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f6(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f6 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f6.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(26,37) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f6.setValue("current.getCreator()"); - int _jspx_eval_s_005fproperty_005f6 = _jspx_th_s_005fproperty_005f6.doStartTag(); - if (_jspx_th_s_005fproperty_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return false; - } - - private boolean _jspx_meth_s_005fif_005f4(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f4 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f4.setParent(null); - // /WEB-INF/jsp/datasetoptions.jsp(29,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f4.setTest("current.isProcessing()==true || current.status=='FAILED'"); - int _jspx_eval_s_005fif_005f4 = _jspx_th_s_005fif_005f4.doStartTag(); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f4.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f4.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t
\r\n"); - out.write("\t\t\t
Show log
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f4.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f4, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f7 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f4); - // /WEB-INF/jsp/datasetoptions.jsp(31,93) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f7.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f7 = _jspx_th_s_005fproperty_005f7.doStartTag(); - if (_jspx_th_s_005fproperty_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return false; - } - - private boolean _jspx_meth_cst_005fcustomJsp_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // cst:customJsp - gr.ntua.ivml.mint.tagsupport.CustomJspTag _jspx_th_cst_005fcustomJsp_005f0 = (gr.ntua.ivml.mint.tagsupport.CustomJspTag) _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.get(gr.ntua.ivml.mint.tagsupport.CustomJspTag.class); - _jspx_th_cst_005fcustomJsp_005f0.setPageContext(_jspx_page_context); - _jspx_th_cst_005fcustomJsp_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(47,7) name = jsp type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_cst_005fcustomJsp_005f0.setJsp("datasetoptions_nopublish.jsp"); - int _jspx_eval_cst_005fcustomJsp_005f0 = _jspx_th_cst_005fcustomJsp_005f0.doStartTag(); - if (_jspx_eval_cst_005fcustomJsp_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_cst_005fcustomJsp_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_cst_005fcustomJsp_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_cst_005fcustomJsp_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fif_005f7(_jspx_th_cst_005fcustomJsp_005f0, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t"); - int evalDoAfterBody = _jspx_th_cst_005fcustomJsp_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_cst_005fcustomJsp_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_cst_005fcustomJsp_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.reuse(_jspx_th_cst_005fcustomJsp_005f0); - return true; - } - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.reuse(_jspx_th_cst_005fcustomJsp_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_cst_005fcustomJsp_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f7 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_cst_005fcustomJsp_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(48,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f7.setTest("!current.isTransformation()"); - int _jspx_eval_s_005fif_005f7 = _jspx_th_s_005fif_005f7.doStartTag(); - if (_jspx_eval_s_005fif_005f7 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f7 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f7.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f7.doInitBody(); - } - do { - out.write(" \r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fif_005f8(_jspx_th_s_005fif_005f7, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005felse_005f1(_jspx_th_s_005fif_005f7, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f7.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f7 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f7); - return false; - } - - private boolean _jspx_meth_s_005fif_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f7, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f8 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f8.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f7); - // /WEB-INF/jsp/datasetoptions.jsp(49,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f8.setTest("current.isReadOnly()==true"); - int _jspx_eval_s_005fif_005f8 = _jspx_th_s_005fif_005f8.doStartTag(); - if (_jspx_eval_s_005fif_005f8 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f8 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f8.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f8.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
Unpublish
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f8.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f8 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f8); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f8); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f8, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f8 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f8.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f8); - // /WEB-INF/jsp/datasetoptions.jsp(50,99) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f8.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f8 = _jspx_th_s_005fproperty_005f8.doStartTag(); - if (_jspx_th_s_005fproperty_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f8, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f9 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f9.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f8); - // /WEB-INF/jsp/datasetoptions.jsp(50,136) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f9.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f9 = _jspx_th_s_005fproperty_005f9.doStartTag(); - if (_jspx_th_s_005fproperty_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f10(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f8, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f10 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f10.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f10.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f8); - // /WEB-INF/jsp/datasetoptions.jsp(50,180) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f10.setValue("userId"); - int _jspx_eval_s_005fproperty_005f10 = _jspx_th_s_005fproperty_005f10.doStartTag(); - if (_jspx_th_s_005fproperty_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return false; - } - - private boolean _jspx_meth_s_005felse_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f7, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f1 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f7); - int _jspx_eval_s_005felse_005f1 = _jspx_th_s_005felse_005f1.doStartTag(); - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t "); - if (_jspx_meth_s_005fif_005f9(_jspx_th_s_005felse_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t "); - if (_jspx_meth_s_005felseif_005f0(_jspx_th_s_005felse_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005felse_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f1); - return false; - } - - private boolean _jspx_meth_s_005fif_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f9 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f9.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(56,8) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f9.setTest("du.isDirectlyPublishable()==true && current.getOrg().isPublishAllowed()"); - int _jspx_eval_s_005fif_005f9 = _jspx_th_s_005fif_005f9.doStartTag(); - if (_jspx_eval_s_005fif_005f9 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f9 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f9.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f9.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t
Publish
\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f9.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f9 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f9); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f9); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f11(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f9, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f11 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f11.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f11.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f9); - // /WEB-INF/jsp/datasetoptions.jsp(57,97) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f11.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f11 = _jspx_th_s_005fproperty_005f11.doStartTag(); - if (_jspx_th_s_005fproperty_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f12(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f9, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f12 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f12.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f12.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f9); - // /WEB-INF/jsp/datasetoptions.jsp(57,134) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f12.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f12 = _jspx_th_s_005fproperty_005f12.doStartTag(); - if (_jspx_th_s_005fproperty_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f13(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f9, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f13 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f13.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f13.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f9); - // /WEB-INF/jsp/datasetoptions.jsp(57,178) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f13.setValue("userId"); - int _jspx_eval_s_005fproperty_005f13 = _jspx_th_s_005fproperty_005f13.doStartTag(); - if (_jspx_th_s_005fproperty_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return false; - } - - private boolean _jspx_meth_s_005felseif_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:elseif - org.apache.struts2.views.jsp.ElseIfTag _jspx_th_s_005felseif_005f0 = (org.apache.struts2.views.jsp.ElseIfTag) _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.get(org.apache.struts2.views.jsp.ElseIfTag.class); - _jspx_th_s_005felseif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felseif_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(61,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005felseif_005f0.setTest("du.isPublishable()==true && current.getOrg().isPublishAllowed()"); - int _jspx_eval_s_005felseif_005f0 = _jspx_th_s_005felseif_005f0.doStartTag(); - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felseif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felseif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t\t\t\t
Prepare for Publish
\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005felseif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felseif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f14(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felseif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f14 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f14.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f14.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felseif_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(62,136) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f14.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f14 = _jspx_th_s_005fproperty_005f14.doStartTag(); - if (_jspx_th_s_005fproperty_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f14); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f14); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f15(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felseif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f15 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f15.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f15.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felseif_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(62,173) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f15.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f15 = _jspx_th_s_005fproperty_005f15.doStartTag(); - if (_jspx_th_s_005fproperty_005f15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f15); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f15); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f16(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felseif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f16 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f16.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f16.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felseif_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(62,217) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f16.setValue("userId"); - int _jspx_eval_s_005fproperty_005f16 = _jspx_th_s_005fproperty_005f16.doStartTag(); - if (_jspx_th_s_005fproperty_005f16.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f16); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f16); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f17(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f17 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f17.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f17.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(71,104) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f17.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f17 = _jspx_th_s_005fproperty_005f17.doStartTag(); - if (_jspx_th_s_005fproperty_005f17.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f17); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f17); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f18(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f18 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f18.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f18.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(71,150) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f18.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f18 = _jspx_th_s_005fproperty_005f18.doStartTag(); - if (_jspx_th_s_005fproperty_005f18.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f18); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f18); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f19(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f19 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f19.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f19.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(71,194) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f19.setValue("userId"); - int _jspx_eval_s_005fproperty_005f19 = _jspx_th_s_005fproperty_005f19.doStartTag(); - if (_jspx_th_s_005fproperty_005f19.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f19); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f19); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f20(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f20 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f20.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f20.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(71,235) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f20.setValue("datasetType"); - int _jspx_eval_s_005fproperty_005f20 = _jspx_th_s_005fproperty_005f20.doStartTag(); - if (_jspx_th_s_005fproperty_005f20.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f20); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f20); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f21(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f21 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f21.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f21.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(73,25) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f21.setValue("getDu().getItemCount()"); - int _jspx_eval_s_005fproperty_005f21 = _jspx_th_s_005fproperty_005f21.doStartTag(); - if (_jspx_th_s_005fproperty_005f21.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f21); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f21); - return false; - } - - private boolean _jspx_meth_s_005fif_005f10(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f10 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f10.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f10.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(77,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f10.setTest("getDu().getInvalidItemCount() > 0"); - int _jspx_eval_s_005fif_005f10 = _jspx_th_s_005fif_005f10.doStartTag(); - if (_jspx_eval_s_005fif_005f10 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f10 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f10.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f10.doInitBody(); - } - do { - out.write("\t\t\t \r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t \t\t
Show invalid items
\r\n"); - out.write("\t\t\t\t\t\t
"); - if (_jspx_meth_s_005fproperty_005f26(_jspx_th_s_005fif_005f10, _jspx_page_context)) - return true; - out.write(" items
\t\r\n"); - out.write("\t\t\t\t \t\t
\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f10.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f10 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f10); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f10); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f22(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f10, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f22 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f22.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f22.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f10); - // /WEB-INF/jsp/datasetoptions.jsp(78,109) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f22.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f22 = _jspx_th_s_005fproperty_005f22.doStartTag(); - if (_jspx_th_s_005fproperty_005f22.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f22); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f22); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f23(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f10, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f23 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f23.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f23.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f10); - // /WEB-INF/jsp/datasetoptions.jsp(78,155) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f23.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f23 = _jspx_th_s_005fproperty_005f23.doStartTag(); - if (_jspx_th_s_005fproperty_005f23.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f23); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f23); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f24(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f10, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f24 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f24.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f24.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f10); - // /WEB-INF/jsp/datasetoptions.jsp(78,199) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f24.setValue("userId"); - int _jspx_eval_s_005fproperty_005f24 = _jspx_th_s_005fproperty_005f24.doStartTag(); - if (_jspx_th_s_005fproperty_005f24.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f24); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f24); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f25(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f10, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f25 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f25.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f25.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f10); - // /WEB-INF/jsp/datasetoptions.jsp(78,255) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f25.setValue("datasetType"); - int _jspx_eval_s_005fproperty_005f25 = _jspx_th_s_005fproperty_005f25.doStartTag(); - if (_jspx_th_s_005fproperty_005f25.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f25); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f25); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f26(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f10, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f26 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f26.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f26.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f10); - // /WEB-INF/jsp/datasetoptions.jsp(80,26) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f26.setValue("getDu().getInvalidItemCount()"); - int _jspx_eval_s_005fproperty_005f26 = _jspx_th_s_005fproperty_005f26.doStartTag(); - if (_jspx_th_s_005fproperty_005f26.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f26); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f26); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f27(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f27 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f27.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f27.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(90,104) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f27.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f27 = _jspx_th_s_005fproperty_005f27.doStartTag(); - if (_jspx_th_s_005fproperty_005f27.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f27); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f27); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f28(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f28 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f28.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f28.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(90,141) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f28.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f28 = _jspx_th_s_005fproperty_005f28.doStartTag(); - if (_jspx_th_s_005fproperty_005f28.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f28); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f28); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f29(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f29 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f29.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f29.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(90,185) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f29.setValue("userId"); - int _jspx_eval_s_005fproperty_005f29 = _jspx_th_s_005fproperty_005f29.doStartTag(); - if (_jspx_th_s_005fproperty_005f29.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f29); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f29); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f30(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f11, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f30 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f30.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f30.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f11); - // /WEB-INF/jsp/datasetoptions.jsp(102,99) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f30.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f30 = _jspx_th_s_005fproperty_005f30.doStartTag(); - if (_jspx_th_s_005fproperty_005f30.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f30); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f30); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f31(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f11, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f31 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f31.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f31.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f11); - // /WEB-INF/jsp/datasetoptions.jsp(102,136) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f31.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f31 = _jspx_th_s_005fproperty_005f31.doStartTag(); - if (_jspx_th_s_005fproperty_005f31.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f31); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f31); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f32(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f11, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f32 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f32.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f32.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f11); - // /WEB-INF/jsp/datasetoptions.jsp(102,180) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f32.setValue("userId"); - int _jspx_eval_s_005fproperty_005f32 = _jspx_th_s_005fproperty_005f32.doStartTag(); - if (_jspx_th_s_005fproperty_005f32.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f32); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f32); - return false; - } - - private boolean _jspx_meth_s_005fif_005f12(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f6, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f12 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f12.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f12.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f6); - // /WEB-INF/jsp/datasetoptions.jsp(114,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f12.setTest("current.isReadOnly()==false"); - int _jspx_eval_s_005fif_005f12 = _jspx_th_s_005fif_005f12.doStartTag(); - if (_jspx_eval_s_005fif_005f12 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f12 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f12.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f12.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t "); - if (_jspx_meth_s_005fif_005f13(_jspx_th_s_005fif_005f12, _jspx_page_context)) - return true; - if (_jspx_meth_s_005felse_005f2(_jspx_th_s_005fif_005f12, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f12.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f12 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f12); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f12); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f33(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f12, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f33 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f33.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f33.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f12); - // /WEB-INF/jsp/datasetoptions.jsp(115,108) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f33.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f33 = _jspx_th_s_005fproperty_005f33.doStartTag(); - if (_jspx_th_s_005fproperty_005f33.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f33); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f33); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f34(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f12, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f34 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f34.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f34.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f12); - // /WEB-INF/jsp/datasetoptions.jsp(115,154) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f34.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f34 = _jspx_th_s_005fproperty_005f34.doStartTag(); - if (_jspx_th_s_005fproperty_005f34.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f34); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f34); - return false; - } - - private boolean _jspx_meth_s_005fif_005f13(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f12, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f13 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f13.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f13.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f12); - // /WEB-INF/jsp/datasetoptions.jsp(116,8) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f13.setTest("current.isTransformed()"); - int _jspx_eval_s_005fif_005f13 = _jspx_th_s_005fif_005f13.doStartTag(); - if (_jspx_eval_s_005fif_005f13 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f13 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f13.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f13.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t
Retransform
\r\n"); - out.write("\t\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f13.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f13 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f13); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f13); - return false; - } - - private boolean _jspx_meth_s_005felse_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f12, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f2 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f12); - int _jspx_eval_s_005felse_005f2 = _jspx_th_s_005felse_005f2.doStartTag(); - if (_jspx_eval_s_005felse_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f2.doInitBody(); - } - do { - out.write("
Transform
"); - int evalDoAfterBody = _jspx_th_s_005felse_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f2); - return false; - } - - private boolean _jspx_meth_s_005fif_005f14(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f5, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f14 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f14.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f14.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(129,11) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f14.setTest("current.isReadOnly()==false && current.isTransformation()==false && current.isTransformed()==false && current.hasStats()==true"); - int _jspx_eval_s_005fif_005f14 = _jspx_th_s_005fif_005f14.doStartTag(); - if (_jspx_eval_s_005fif_005f14 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f14 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f14.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f14.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t
Define Items
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f15(_jspx_th_s_005fif_005f14, _jspx_page_context)) - return true; - out.write("\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f14.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f14 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f14); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f14); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f35(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f14, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f35 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f35.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f35.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f14); - // /WEB-INF/jsp/datasetoptions.jsp(131,106) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f35.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f35 = _jspx_th_s_005fproperty_005f35.doStartTag(); - if (_jspx_th_s_005fproperty_005f35.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f35); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f35); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f36(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f14, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f36 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f36.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f36.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f14); - // /WEB-INF/jsp/datasetoptions.jsp(131,149) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f36.setValue("current.isTransformed()"); - int _jspx_eval_s_005fproperty_005f36 = _jspx_th_s_005fproperty_005f36.doStartTag(); - if (_jspx_th_s_005fproperty_005f36.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f36); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f36); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f37(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f14, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f37 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f37.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f37.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f14); - // /WEB-INF/jsp/datasetoptions.jsp(131,201) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f37.setValue("organizationId"); - int _jspx_eval_s_005fproperty_005f37 = _jspx_th_s_005fproperty_005f37.doStartTag(); - if (_jspx_th_s_005fproperty_005f37.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f37); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f37); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f38(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f14, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f38 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f38.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f38.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f14); - // /WEB-INF/jsp/datasetoptions.jsp(131,245) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f38.setValue("userId"); - int _jspx_eval_s_005fproperty_005f38 = _jspx_th_s_005fproperty_005f38.doStartTag(); - if (_jspx_th_s_005fproperty_005f38.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f38); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f38); - return false; - } - - private boolean _jspx_meth_s_005fif_005f15(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f14, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f15 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f15.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f15.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f14); - // /WEB-INF/jsp/datasetoptions.jsp(134,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f15.setTest("current.isRootDefined()==true"); - int _jspx_eval_s_005fif_005f15 = _jspx_th_s_005fif_005f15.doStartTag(); - if (_jspx_eval_s_005fif_005f15 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f15 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f15.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f15.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f15.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f15 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f15); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f15); - return false; - } - - private boolean _jspx_meth_s_005fif_005f16(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f5, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f16 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f16.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f16.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(145,3) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f16.setTest("current.hasStats()"); - int _jspx_eval_s_005fif_005f16 = _jspx_th_s_005fif_005f16.doStartTag(); - if (_jspx_eval_s_005fif_005f16 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f16 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f16.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f16.doInitBody(); - } - do { - out.write(" \t \r\n"); - out.write("\t\t \r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
Dataset Statistics
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f16.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f16 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f16.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f16); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f16); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f39(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f16, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f39 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f39.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f39.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f16); - // /WEB-INF/jsp/datasetoptions.jsp(147,98) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f39.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f39 = _jspx_th_s_005fproperty_005f39.doStartTag(); - if (_jspx_th_s_005fproperty_005f39.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f39); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f39); - return false; - } - - private boolean _jspx_meth_s_005fif_005f17(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f5, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f17 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f17.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f17.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(152,3) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f17.setTest("!(current.status=='FAILED')"); - int _jspx_eval_s_005fif_005f17 = _jspx_th_s_005fif_005f17.doStartTag(); - if (_jspx_eval_s_005fif_005f17 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f17 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f17.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f17.doInitBody(); - } - do { - out.write("\t \r\n"); - out.write("\t\t\t\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
Show log
\r\n"); - out.write("\t\t\t
\t
\r\n"); - out.write("\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f17.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f17 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f17.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f17); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f17); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f40(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f17, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f40 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f40.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f40.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f17); - // /WEB-INF/jsp/datasetoptions.jsp(154,89) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f40.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f40 = _jspx_th_s_005fproperty_005f40.doStartTag(); - if (_jspx_th_s_005fproperty_005f40.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f40); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f40); - return false; - } - - private boolean _jspx_meth_s_005fif_005f18(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f5, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f18 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f18.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f18.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(162,3) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f18.setTest("current.isReadOnly()==false"); - int _jspx_eval_s_005fif_005f18 = _jspx_th_s_005fif_005f18.doStartTag(); - if (_jspx_eval_s_005fif_005f18 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f18 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f18.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f18.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t \t\t\t
\r\n"); - out.write("\t\t\t\t \t\t\t
Delete "); - if (_jspx_meth_s_005fproperty_005f42(_jspx_th_s_005fif_005f18, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t
\r\n"); - out.write("\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f18.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f18 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f18.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f18); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f18); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f41(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f18, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f41 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f41.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f41.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f18); - // /WEB-INF/jsp/datasetoptions.jsp(163,23) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f41.setValue("datasetType"); - int _jspx_eval_s_005fproperty_005f41 = _jspx_th_s_005fproperty_005f41.doStartTag(); - if (_jspx_th_s_005fproperty_005f41.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f41); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f41); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f42(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f18, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f42 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f42.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f42.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f18); - // /WEB-INF/jsp/datasetoptions.jsp(166,34) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f42.setValue("datasetType"); - int _jspx_eval_s_005fproperty_005f42 = _jspx_th_s_005fproperty_005f42.doStartTag(); - if (_jspx_th_s_005fproperty_005f42.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f42); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f42); - return false; - } - - private boolean _jspx_meth_s_005fif_005f19(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f5, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f19 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f19.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f19.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/datasetoptions.jsp(176,3) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f19.setTest("current.downloads.size() > 0"); - int _jspx_eval_s_005fif_005f19 = _jspx_th_s_005fif_005f19.doStartTag(); - if (_jspx_eval_s_005fif_005f19 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f19 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f19.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f19.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
 
\r\n"); - out.write("\t\t\t
\r\n"); - out.write(" \t\t\t

Downloads

\r\n"); - out.write(" \t\t\t
\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f19, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f19.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f19 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f19.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f19); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f19); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f19, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f19); - // /WEB-INF/jsp/datasetoptions.jsp(181,11) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("current.downloads"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t "); - if (_jspx_meth_s_005fproperty_005f44(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write(" \r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f43(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f43 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f43.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f43.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(182,59) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f43.setValue("url"); - int _jspx_eval_s_005fproperty_005f43 = _jspx_th_s_005fproperty_005f43.doStartTag(); - if (_jspx_th_s_005fproperty_005f43.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f43); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f43); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f44(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f44 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f44.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f44.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/datasetoptions.jsp(186,9) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f44.setValue("title"); - int _jspx_eval_s_005fproperty_005f44 = _jspx_th_s_005fproperty_005f44.doStartTag(); - if (_jspx_th_s_005fproperty_005f44.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f44); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f44); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f45(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f45 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f45.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f45.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(211,20) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f45.setValue("name"); - int _jspx_eval_s_005fproperty_005f45 = _jspx_th_s_005fproperty_005f45.doStartTag(); - if (_jspx_th_s_005fproperty_005f45.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f45); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f45); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f46(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f46 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f46.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f46.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(214,85) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f46.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f46 = _jspx_th_s_005fproperty_005f46.doStartTag(); - if (_jspx_th_s_005fproperty_005f46.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f46); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f46); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f47(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f47 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f47.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f47.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(220,7) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f47.setValue("name"); - int _jspx_eval_s_005fproperty_005f47 = _jspx_th_s_005fproperty_005f47.doStartTag(); - if (_jspx_th_s_005fproperty_005f47.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f47); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f47); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f48(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f48 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f48.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f48.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(220,70) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f48.setValue("created"); - int _jspx_eval_s_005fproperty_005f48 = _jspx_th_s_005fproperty_005f48.doStartTag(); - if (_jspx_th_s_005fproperty_005f48.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f48); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f48); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f49(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f49 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f49.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f49.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/datasetoptions.jsp(224,29) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f49.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f49 = _jspx_th_s_005fproperty_005f49.doStartTag(); - if (_jspx_th_s_005fproperty_005f49.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f49); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f49); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/datastatistics_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/datastatistics_jsp.class deleted file mode 100644 index 6ef66cf..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/datastatistics_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/datastatistics_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/datastatistics_jsp.java deleted file mode 100644 index c7f87c4..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/datastatistics_jsp.java +++ /dev/null @@ -1,343 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:15:51 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class datastatistics_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\n"); - out.write("\n"); - out.write(" \n"); - out.write("\n"); - out.write(" "); - if (_jspx_meth_s_005fset_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write(" "); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write(" \n"); - out.write("\n"); - out.write("
\n"); - out.write("
\n"); - out.write(" \t
\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write(" "); - if( request.getAttribute( "actionmessage" ) != null ) { - out.write("\n"); - out.write("\t\t
\n"); - out.write("\t\t"); - out.print((String) request.getAttribute( "actionmessage" )); - out.write("
\n"); - out.write(" "); -}else{ - out.write("\n"); - out.write("
\n"); - out.write("\t\tView organization and project statistics:\n"); - out.write("\t
"); -} - out.write("\n"); - out.write("\t
\n"); - out.write("\t\n"); - out.write(" \n"); - out.write("\t\t\t\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fselect_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t
\n"); - out.write("\t \n"); - out.write("\t \n"); - out.write("\t
\n"); - out.write("\t\t\t
Organization overall
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t \n"); - out.write("\t \n"); - out.write("\t \n"); - out.write("\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
Imports history
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\n"); - out.write(" \t
\n"); - out.write("\t\t\t
Transformations history
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
Publications history
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t\n"); - out.write("\t\n"); - out.write("\t\t\n"); - out.write("\t
\n"); - out.write("\t\t\t
Project overall statistics
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\t\n"); - out.write("\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("\t\t\t
Project publications statistics
\n"); - out.write("\t\t\t
\n"); - out.write("\t
\t\n"); - out.write(" \n"); - out.write("\t\n"); - out.write("\t\n"); - out.write("\n"); - out.write(" \t\n"); - out.write(" "); - out.write("\n"); - out.write("\t\n"); - out.write(" \n"); - out.write(" \n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f0 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f0.setParent(null); - // /WEB-INF/jsp/datastatistics.jsp(5,3) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setVar("orgId"); - // /WEB-INF/jsp/datastatistics.jsp(5,3) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setValue("filterOrg"); - int _jspx_eval_s_005fset_005f0 = _jspx_th_s_005fset_005f0.doStartTag(); - if (_jspx_th_s_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/datastatistics.jsp(6,4) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("orgid==-1"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\n"); - out.write(" "); - if (_jspx_meth_s_005fset_005f1(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write("\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fset_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f1 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/datastatistics.jsp(7,4) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setVar("orgId"); - // /WEB-INF/jsp/datastatistics.jsp(7,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setValue("user.dbID"); - int _jspx_eval_s_005fset_005f1 = _jspx_th_s_005fset_005f1.doStartTag(); - if (_jspx_th_s_005fset_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f0 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f0.setParent(null); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setTheme("simple"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setCssStyle("width:200px"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setName("filterorg"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setId("filterorg"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setList("allOrgs"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListKey("dbID"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListValue("name"); - // /WEB-INF/jsp/datastatistics.jsp(27,3) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setValue("orgId"); - int _jspx_eval_s_005fselect_005f0 = _jspx_th_s_005fselect_005f0.doStartTag(); - if (_jspx_th_s_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/home_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/home_jsp.class deleted file mode 100644 index 7384c24..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/home_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/home_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/home_jsp.java deleted file mode 100644 index 6e41591..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/home_jsp.java +++ /dev/null @@ -1,527 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-04 13:07:59 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; -import java.util.List; -import gr.ntua.ivml.mint.persistent.Organization; -import gr.ntua.ivml.mint.persistent.DataUpload; -import gr.ntua.ivml.mint.db.DB; - -public final class home_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(3); - _jspx_dependants.put("/WEB-INF/jsp/top.jsp", Long.valueOf(1396604381000L)); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write(""); - out.print(Config.get("mint.title")); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write(" \n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\t"); - if (_jspx_meth_cst_005fcustomJsp_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("
\n"); - out.write("\t"); - if (_jspx_meth_cst_005fcustomJsp_005f1(_jspx_page_context)) - return; - out.write("\n"); - out.write("
\n"); - out.write("\n"); - String sessionId = request.getSession().getId(); - - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_cst_005fcustomJsp_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // cst:customJsp - gr.ntua.ivml.mint.tagsupport.CustomJspTag _jspx_th_cst_005fcustomJsp_005f0 = (gr.ntua.ivml.mint.tagsupport.CustomJspTag) _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.get(gr.ntua.ivml.mint.tagsupport.CustomJspTag.class); - _jspx_th_cst_005fcustomJsp_005f0.setPageContext(_jspx_page_context); - _jspx_th_cst_005fcustomJsp_005f0.setParent(null); - // /WEB-INF/jsp/home.jsp(8,1) name = jsp type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_cst_005fcustomJsp_005f0.setJsp("home_logo.jsp"); - int _jspx_eval_cst_005fcustomJsp_005f0 = _jspx_th_cst_005fcustomJsp_005f0.doStartTag(); - if (_jspx_th_cst_005fcustomJsp_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.reuse(_jspx_th_cst_005fcustomJsp_005f0); - return true; - } - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.reuse(_jspx_th_cst_005fcustomJsp_005f0); - return false; - } - - private boolean _jspx_meth_cst_005fcustomJsp_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // cst:customJsp - gr.ntua.ivml.mint.tagsupport.CustomJspTag _jspx_th_cst_005fcustomJsp_005f1 = (gr.ntua.ivml.mint.tagsupport.CustomJspTag) _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.get(gr.ntua.ivml.mint.tagsupport.CustomJspTag.class); - _jspx_th_cst_005fcustomJsp_005f1.setPageContext(_jspx_page_context); - _jspx_th_cst_005fcustomJsp_005f1.setParent(null); - // /WEB-INF/jsp/home.jsp(12,1) name = jsp type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_cst_005fcustomJsp_005f1.setJsp("home_custom.jsp"); - int _jspx_eval_cst_005fcustomJsp_005f1 = _jspx_th_cst_005fcustomJsp_005f1.doStartTag(); - if (_jspx_th_cst_005fcustomJsp_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.reuse(_jspx_th_cst_005fcustomJsp_005f1); - return true; - } - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp_005fnobody.reuse(_jspx_th_cst_005fcustomJsp_005f1); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/importStatus_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/importStatus_jsp.class deleted file mode 100644 index bee8e65..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/importStatus_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/importStatus_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/importStatus_jsp.java deleted file mode 100644 index 847acc0..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/importStatus_jsp.java +++ /dev/null @@ -1,179 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:14 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class importStatus_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write('\r'); - out.write('\n'); -if(request.getAttribute("status")==null){ - - out.write("\r\n"); - out.write("
UNKNOWN
\r\n"); -}else{ - out.write("\r\n"); - out.write("
"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t\r\n"); - out.write("\t\t"); -} - out.write("\t\t\t\t\t "); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/importStatus.jsp(6,30) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("status"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent(null); - // /WEB-INF/jsp/importStatus.jsp(7,17) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent(null); - // /WEB-INF/jsp/importStatus.jsp(7,50) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("statusIcon"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent(null); - // /WEB-INF/jsp/importStatus.jsp(7,165) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("message"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/importedhistory_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/importedhistory_jsp.class deleted file mode 100644 index 177e689..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/importedhistory_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/importedhistory_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/importedhistory_jsp.java deleted file mode 100644 index dda6f25..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/importedhistory_jsp.java +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 12:52:57 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class importedhistory_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\t \t
\n"); - out.write("\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t"); - out.print(request.getAttribute("getName()")); - out.write("
\n"); - out.write("\t\t
\n"); - out.write("\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t

Imports

\t\n"); - out.write("\t\t
\n"); - out.write(" \t\t\n"); - out.write("\t
\n"); - out.write("
\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/importsPanel_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/importsPanel_jsp.class deleted file mode 100644 index 086e392..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/importsPanel_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/importsPanel_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/importsPanel_jsp.java deleted file mode 100644 index 9fb642c..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/importsPanel_jsp.java +++ /dev/null @@ -1,1208 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 15:04:42 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import org.apache.log4j.Logger; - -public final class importsPanel_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felse; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felse = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.release(); - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005felse.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
"); - out.print(request.getAttribute("importCount")); - out.write("
\r\n"); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f1(_jspx_page_context)) - return; - out.write("\r\n"); - out.write(" \r\n"); - out.write(" "); - if (_jspx_meth_s_005felse_005f2(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\r\n"); - out.write("\t\t\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/importsPanel.jsp(9,0) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionMessages()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - out.write(' '); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/importsPanel.jsp(10,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionMessages"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/importsPanel.jsp(11,88) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/importsPanel.jsp(16,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("imports.size>0"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t\t "); - if (_jspx_meth_s_005fiterator_005f1(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t \t\t\t\r\n"); - out.write("
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/importsPanel.jsp(17,44) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("userId"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/importsPanel.jsp(17,73) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("orgId"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f1 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/importsPanel.jsp(18,3) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setId("impt"); - // /WEB-INF/jsp/importsPanel.jsp(18,3) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setValue("imports"); - int _jspx_eval_s_005fiterator_005f1 = _jspx_th_s_005fiterator_005f1.doStartTag(); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t \t\t\t\t
\r\n"); - out.write("\t\t \t\t\t\t\r\n"); - out.write("\t\t \t\t\t\t
\r\n"); - out.write("\t\t \t\t\t\t "); - if (_jspx_meth_s_005fif_005f2(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write(" "); - if (_jspx_meth_s_005felseif_005f0(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005felseif_005f1(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005felseif_005f2(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005felseif_005f3(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005felse_005f0(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t \t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f10(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f3(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fif_005f4(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005felse_005f1(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f5(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t \t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(20,16) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f4 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(20,51) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f4.setValue("name"); - int _jspx_eval_s_005fproperty_005f4 = _jspx_th_s_005fproperty_005f4.doStartTag(); - if (_jspx_th_s_005fproperty_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f5 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(21,32) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f5.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f5 = _jspx_th_s_005fproperty_005f5.doStartTag(); - if (_jspx_th_s_005fproperty_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f6(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f6 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(24,85) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f6.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f6 = _jspx_th_s_005fproperty_005f6.doStartTag(); - if (_jspx_th_s_005fproperty_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f7 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(24,119) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f7.setValue("userId"); - int _jspx_eval_s_005fproperty_005f7 = _jspx_th_s_005fproperty_005f7.doStartTag(); - if (_jspx_th_s_005fproperty_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f8 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f8.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(24,163) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f8.setValue("orgId"); - int _jspx_eval_s_005fproperty_005f8 = _jspx_th_s_005fproperty_005f8.doStartTag(); - if (_jspx_th_s_005fproperty_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(28,10) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("isOai()"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write(" \r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f9 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f9.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/importsPanel.jsp(29,133) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f9.setValue("fullOai"); - int _jspx_eval_s_005fproperty_005f9 = _jspx_th_s_005fproperty_005f9.doStartTag(); - if (_jspx_th_s_005fproperty_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return false; - } - - private boolean _jspx_meth_s_005felseif_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:elseif - org.apache.struts2.views.jsp.ElseIfTag _jspx_th_s_005felseif_005f0 = (org.apache.struts2.views.jsp.ElseIfTag) _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.get(org.apache.struts2.views.jsp.ElseIfTag.class); - _jspx_th_s_005felseif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felseif_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(31,26) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005felseif_005f0.setTest("isZip()"); - int _jspx_eval_s_005felseif_005f0 = _jspx_th_s_005felseif_005f0.doStartTag(); - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felseif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felseif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005felseif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felseif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f0); - return false; - } - - private boolean _jspx_meth_s_005felseif_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:elseif - org.apache.struts2.views.jsp.ElseIfTag _jspx_th_s_005felseif_005f1 = (org.apache.struts2.views.jsp.ElseIfTag) _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.get(org.apache.struts2.views.jsp.ElseIfTag.class); - _jspx_th_s_005felseif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005felseif_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(34,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005felseif_005f1.setTest("isTgz()"); - int _jspx_eval_s_005felseif_005f1 = _jspx_th_s_005felseif_005f1.doStartTag(); - if (_jspx_eval_s_005felseif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felseif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felseif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felseif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005felseif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felseif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felseif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f1); - return false; - } - - private boolean _jspx_meth_s_005felseif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:elseif - org.apache.struts2.views.jsp.ElseIfTag _jspx_th_s_005felseif_005f2 = (org.apache.struts2.views.jsp.ElseIfTag) _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.get(org.apache.struts2.views.jsp.ElseIfTag.class); - _jspx_th_s_005felseif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005felseif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(37,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005felseif_005f2.setTest("isXml()"); - int _jspx_eval_s_005felseif_005f2 = _jspx_th_s_005felseif_005f2.doStartTag(); - if (_jspx_eval_s_005felseif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felseif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felseif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felseif_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005felseif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felseif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felseif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f2); - return false; - } - - private boolean _jspx_meth_s_005felseif_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:elseif - org.apache.struts2.views.jsp.ElseIfTag _jspx_th_s_005felseif_005f3 = (org.apache.struts2.views.jsp.ElseIfTag) _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.get(org.apache.struts2.views.jsp.ElseIfTag.class); - _jspx_th_s_005felseif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005felseif_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(40,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005felseif_005f3.setTest("isCsv()"); - int _jspx_eval_s_005felseif_005f3 = _jspx_th_s_005felseif_005f3.doStartTag(); - if (_jspx_eval_s_005felseif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felseif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felseif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felseif_005f3.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005felseif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felseif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felseif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f3); - return false; - } - - private boolean _jspx_meth_s_005felse_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f0 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - int _jspx_eval_s_005felse_005f0 = _jspx_th_s_005felse_005f0.doStartTag(); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005felse_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f10(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f10 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f10.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f10.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(50,6) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f10.setValue("name"); - int _jspx_eval_s_005fproperty_005f10 = _jspx_th_s_005fproperty_005f10.doStartTag(); - if (_jspx_th_s_005fproperty_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return false; - } - - private boolean _jspx_meth_s_005fif_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f3 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(52,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f3.setTest("orgFolderNum>0"); - int _jspx_eval_s_005fif_005f3 = _jspx_th_s_005fif_005f3.doStartTag(); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f3.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return false; - } - - private boolean _jspx_meth_s_005fif_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f4 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(59,15) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f4.setTest("status!='OK' && status!='FAILED' && status!='UNKNOWN'"); - int _jspx_eval_s_005fif_005f4 = _jspx_th_s_005fif_005f4.doStartTag(); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f4.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f4.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f4.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f11(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f4, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f11 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f11.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f11.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f4); - // /WEB-INF/jsp/importsPanel.jsp(60,38) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f11.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f11 = _jspx_th_s_005fproperty_005f11.doStartTag(); - if (_jspx_th_s_005fproperty_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f12(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f4, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f12 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f12.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f12.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f4); - // /WEB-INF/jsp/importsPanel.jsp(63,37) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f12.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f12 = _jspx_th_s_005fproperty_005f12.doStartTag(); - if (_jspx_th_s_005fproperty_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return false; - } - - private boolean _jspx_meth_s_005felse_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f1 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - int _jspx_eval_s_005felse_005f1 = _jspx_th_s_005felse_005f1.doStartTag(); - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t \r\n"); - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005felse_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f13(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f13 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f13.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f13.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/importsPanel.jsp(70,25) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f13.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f13 = _jspx_th_s_005fproperty_005f13.doStartTag(); - if (_jspx_th_s_005fproperty_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f14(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f14 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f14.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f14.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/importsPanel.jsp(70,58) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f14.setValue("statusIcon"); - int _jspx_eval_s_005fproperty_005f14 = _jspx_th_s_005fproperty_005f14.doStartTag(); - if (_jspx_th_s_005fproperty_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f14); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f14); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f15(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f15 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f15.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f15.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/importsPanel.jsp(70,193) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f15.setValue("message"); - int _jspx_eval_s_005fproperty_005f15 = _jspx_th_s_005fproperty_005f15.doStartTag(); - if (_jspx_th_s_005fproperty_005f15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f15); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f15); - return false; - } - - private boolean _jspx_meth_s_005fif_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f5 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/importsPanel.jsp(78,6) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f5.setTest("folderNum>0"); - int _jspx_eval_s_005fif_005f5 = _jspx_th_s_005fif_005f5.doStartTag(); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f5.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f5.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t "); - if (_jspx_meth_s_005fiterator_005f2(_jspx_th_s_005fif_005f5, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f5.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f5, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f2 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f5); - // /WEB-INF/jsp/importsPanel.jsp(79,10) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f2.setId("lbl"); - // /WEB-INF/jsp/importsPanel.jsp(79,10) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f2.setValue("labels"); - int _jspx_eval_s_005fiterator_005f2 = _jspx_th_s_005fiterator_005f2.doStartTag(); - if (_jspx_eval_s_005fiterator_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t '); - if (_jspx_meth_s_005fproperty_005f17(_jspx_th_s_005fiterator_005f2, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f16(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f16 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f16.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f16.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f2); - // /WEB-INF/jsp/importsPanel.jsp(80,55) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f16.setValue("lblcolor"); - int _jspx_eval_s_005fproperty_005f16 = _jspx_th_s_005fproperty_005f16.doStartTag(); - if (_jspx_th_s_005fproperty_005f16.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f16); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f16); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f17(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f17 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f17.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f17.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f2); - // /WEB-INF/jsp/importsPanel.jsp(80,88) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f17.setValue("lblname"); - int _jspx_eval_s_005fproperty_005f17 = _jspx_th_s_005fproperty_005f17.doStartTag(); - if (_jspx_th_s_005fproperty_005f17.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f17); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f17); - return false; - } - - private boolean _jspx_meth_s_005felse_005f2(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f2 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f2.setParent(null); - int _jspx_eval_s_005felse_005f2 = _jspx_th_s_005felse_005f2.doStartTag(); - if (_jspx_eval_s_005felse_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f2.doInitBody(); - } - do { - out.write("\t\r\n"); - out.write("
\r\n"); - out.write("
No imports
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005felse_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f2); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/itemView_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/itemView_jsp.class deleted file mode 100644 index aa322e5..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/itemView_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/itemView_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/itemView_jsp.java deleted file mode 100644 index 7e9714a..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/itemView_jsp.java +++ /dev/null @@ -1,337 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:18 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class itemView_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t
\r\n"); - out.write("\t\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f1(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("
"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/itemView.jsp(9,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/itemView.jsp(11,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("errorMessages"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t
"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/itemView.jsp(12,51) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/itemView.jsp(17,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("!hasActionErrors()"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t \t
\r\n"); - out.write("\t \t\t
"); - if (_jspx_meth_s_005fproperty_005f1(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t \t\t
"); - if (_jspx_meth_s_005fproperty_005f2(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t \t
\r\n"); - out.write("\t \t
\r\n"); - out.write("\t \t
\r\n"); - out.write("\t\t\t\r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/itemView.jsp(19,34) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/itemView.jsp(20,32) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("filter"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/json_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/json_jsp.class deleted file mode 100644 index 6cc397b..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/json_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/json_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/json_jsp.java deleted file mode 100644 index 3fbcc7e..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/json_jsp.java +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 12:52:32 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class json_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fescape_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fescape_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("application/json; charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write('\n'); - out.write('\n'); - if (_jspx_meth_s_005fproperty_005f0(_jspx_page_context)) - return; - out.write('\n'); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/json.jsp(3,0) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("json.toString()"); - // /WEB-INF/jsp/json.jsp(3,0) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/locksummary_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/locksummary_jsp.class deleted file mode 100644 index 76e1140..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/locksummary_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/locksummary_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/locksummary_jsp.java deleted file mode 100644 index d9b4906..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/locksummary_jsp.java +++ /dev/null @@ -1,152 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 15:21:10 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import gr.ntua.ivml.mint.persistent.Lock; -import gr.ntua.ivml.mint.util.StringUtils; -import java.util.List; - -public final class locksummary_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - - List locks = (List)request.getAttribute("MappingLocks"); - - - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write(" Locks list
\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t"); -if((locks != null) && ( locks.size()>0) ) { - for( Lock lk: locks ) { - out.write(" \r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\r\n"); - out.write(" \t
"); - out.print(lk.getName() ); - out.write(",    Acquired: "); - out.print(StringUtils.prettyTime(lk.getAquired())); - out.write(" by user "); - out.print(lk.getUserLogin() ); - out.write("
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t \r\n"); - out.write("\t "); -} - }else{ - out.write("
\r\n"); - out.write("\t\tNo locks found.
\r\n"); - out.write("\t\t"); -} - out.write("\t \r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/login_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/login_jsp.class deleted file mode 100644 index f40299b..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/login_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/login_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/login_jsp.java deleted file mode 100644 index 238dc50..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/login_jsp.java +++ /dev/null @@ -1,442 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 12:52:24 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class login_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fcssClass_005faction; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005ftextfield_0026_005frequired_005fname_005flabel_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fpassword_0026_005frequired_005fname_005flabel_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fcssClass_005faction = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005frequired_005fname_005flabel_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fpassword_0026_005frequired_005fname_005flabel_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.release(); - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fcssClass_005faction.release(); - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005frequired_005fname_005flabel_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fpassword_0026_005frequired_005fname_005flabel_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - // cst:customJsp - gr.ntua.ivml.mint.tagsupport.CustomJspTag _jspx_th_cst_005fcustomJsp_005f0 = (gr.ntua.ivml.mint.tagsupport.CustomJspTag) _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.get(gr.ntua.ivml.mint.tagsupport.CustomJspTag.class); - _jspx_th_cst_005fcustomJsp_005f0.setPageContext(_jspx_page_context); - _jspx_th_cst_005fcustomJsp_005f0.setParent(null); - // /WEB-INF/jsp/login.jsp(5,0) name = jsp type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_cst_005fcustomJsp_005f0.setJsp("login-redirect.jsp"); - int _jspx_eval_cst_005fcustomJsp_005f0 = _jspx_th_cst_005fcustomJsp_005f0.doStartTag(); - if (_jspx_eval_cst_005fcustomJsp_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_cst_005fcustomJsp_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_cst_005fcustomJsp_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_cst_005fcustomJsp_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\t\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - if (_jspx_meth_s_005fform_005f0(_jspx_th_cst_005fcustomJsp_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - int evalDoAfterBody = _jspx_th_cst_005fcustomJsp_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_cst_005fcustomJsp_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_cst_005fcustomJsp_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.reuse(_jspx_th_cst_005fcustomJsp_005f0); - return; - } - _005fjspx_005ftagPool_005fcst_005fcustomJsp_0026_005fjsp.reuse(_jspx_th_cst_005fcustomJsp_005f0); - out.write('\r'); - out.write('\n'); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fform_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_cst_005fcustomJsp_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:form - org.apache.struts2.views.jsp.ui.FormTag _jspx_th_s_005fform_005f0 = (org.apache.struts2.views.jsp.ui.FormTag) _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fcssClass_005faction.get(org.apache.struts2.views.jsp.ui.FormTag.class); - _jspx_th_s_005fform_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fform_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_cst_005fcustomJsp_005f0); - // /WEB-INF/jsp/login.jsp(55,0) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setName("login"); - // /WEB-INF/jsp/login.jsp(55,0) name = action type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setAction("Login"); - // /WEB-INF/jsp/login.jsp(55,0) name = cssClass type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setCssClass("athform"); - // /WEB-INF/jsp/login.jsp(55,0) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setTheme("mytheme"); - // /WEB-INF/jsp/login.jsp(55,0) null - _jspx_th_s_005fform_005f0.setDynamicAttribute(null, "style", new String("width:350px;")); - int _jspx_eval_s_005fform_005f0 = _jspx_th_s_005fform_005f0.doStartTag(); - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fform_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fform_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t"); - if (_jspx_meth_s_005ftextfield_005f0(_jspx_th_s_005fform_005f0, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fpassword_005f0(_jspx_th_s_005fform_005f0, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t\r\n"); - out.write("\t \r\n"); - out.write("\t\t\t\t \r\n"); - out.write("\r\n"); - out.write("\t\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\t"); - if (_jspx_meth_s_005fif_005f0(_jspx_th_s_005fform_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - int evalDoAfterBody = _jspx_th_s_005fform_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fform_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fcssClass_005faction.reuse(_jspx_th_s_005fform_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fcssClass_005faction.reuse(_jspx_th_s_005fform_005f0); - return false; - } - - private boolean _jspx_meth_s_005ftextfield_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:textfield - org.apache.struts2.views.jsp.ui.TextFieldTag _jspx_th_s_005ftextfield_005f0 = (org.apache.struts2.views.jsp.ui.TextFieldTag) _005fjspx_005ftagPool_005fs_005ftextfield_0026_005frequired_005fname_005flabel_005fnobody.get(org.apache.struts2.views.jsp.ui.TextFieldTag.class); - _jspx_th_s_005ftextfield_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005ftextfield_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fform_005f0); - // /WEB-INF/jsp/login.jsp(59,1) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setName("username"); - // /WEB-INF/jsp/login.jsp(59,1) name = label type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setLabel("Username"); - // /WEB-INF/jsp/login.jsp(59,1) null - _jspx_th_s_005ftextfield_005f0.setDynamicAttribute(null, "required", new String("true")); - int _jspx_eval_s_005ftextfield_005f0 = _jspx_th_s_005ftextfield_005f0.doStartTag(); - if (_jspx_th_s_005ftextfield_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005frequired_005fname_005flabel_005fnobody.reuse(_jspx_th_s_005ftextfield_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005frequired_005fname_005flabel_005fnobody.reuse(_jspx_th_s_005ftextfield_005f0); - return false; - } - - private boolean _jspx_meth_s_005fpassword_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:password - org.apache.struts2.views.jsp.ui.PasswordTag _jspx_th_s_005fpassword_005f0 = (org.apache.struts2.views.jsp.ui.PasswordTag) _005fjspx_005ftagPool_005fs_005fpassword_0026_005frequired_005fname_005flabel_005fnobody.get(org.apache.struts2.views.jsp.ui.PasswordTag.class); - _jspx_th_s_005fpassword_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fpassword_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fform_005f0); - // /WEB-INF/jsp/login.jsp(62,2) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fpassword_005f0.setName("password"); - // /WEB-INF/jsp/login.jsp(62,2) name = label type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fpassword_005f0.setLabel("Password"); - // /WEB-INF/jsp/login.jsp(62,2) null - _jspx_th_s_005fpassword_005f0.setDynamicAttribute(null, "required", new String("true")); - int _jspx_eval_s_005fpassword_005f0 = _jspx_th_s_005fpassword_005f0.doStartTag(); - if (_jspx_th_s_005fpassword_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fpassword_0026_005frequired_005fname_005flabel_005fnobody.reuse(_jspx_th_s_005fpassword_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fpassword_0026_005frequired_005fname_005flabel_005fnobody.reuse(_jspx_th_s_005fpassword_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fform_005f0); - // /WEB-INF/jsp/login.jsp(72,1) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - out.write(' '); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/login.jsp(73,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionErrors"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write(" \r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/login.jsp(74,30) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingAjax_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/mappingAjax_jsp.class deleted file mode 100644 index af4e30a..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/mappingAjax_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingAjax_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/mappingAjax_jsp.java deleted file mode 100644 index 7e1c571..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/mappingAjax_jsp.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-31 15:16:58 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import java.util.HashMap; -import java.util.Collection; -import net.sf.json.*; -import gr.ntua.ivml.mint.util.*; -import gr.ntua.ivml.mint.mapping.*; - -public final class mappingAjax_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - gr.ntua.ivml.mint.mapping.MappingManager mappings = null; - synchronized (session) { - mappings = (gr.ntua.ivml.mint.mapping.MappingManager) _jspx_page_context.getAttribute("mappings", javax.servlet.jsp.PageContext.SESSION_SCOPE); - if (mappings == null){ - mappings = new gr.ntua.ivml.mint.mapping.MappingManager(); - _jspx_page_context.setAttribute("mappings", mappings, javax.servlet.jsp.PageContext.SESSION_SCOPE); - } - } - out.write('\n'); - - request.setCharacterEncoding("UTF-8"); - out.clear(); - response.setContentType("text/plain; charset=UTF-8"); - - MappingAjax.execute(mappings, request, out); - - out.write('\n'); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingOptions_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/mappingOptions_jsp.class deleted file mode 100644 index 8960208..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/mappingOptions_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingOptions_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/mappingOptions_jsp.java deleted file mode 100644 index 8045f67..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/mappingOptions_jsp.java +++ /dev/null @@ -1,998 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:32 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import gr.ntua.ivml.mint.persistent.Organization; -import gr.ntua.ivml.mint.persistent.Mapping; -import gr.ntua.ivml.mint.util.Config; -import gr.ntua.ivml.mint.db.DB; -import org.apache.log4j.Logger; - -public final class mappingOptions_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fmethod_005fenctype_005fcssClass; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fsize_005fname_005flabel_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felse; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fmethod_005fenctype_005fcssClass = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fsize_005fname_005flabel_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felse = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fmethod_005fenctype_005fcssClass.release(); - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fsize_005fname_005flabel_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005felse.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
Mapping name: "); - if (_jspx_meth_s_005fproperty_005f0(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
Created with schema: "); - if (_jspx_meth_s_005fproperty_005f1(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write(" \t
Created: "); - if (_jspx_meth_s_005fproperty_005f2(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write(" \t
Last modified: "); - if (_jspx_meth_s_005fproperty_005f3(_jspx_page_context)) - return; - out.write("
\r\n"); - out.write(" \r\n"); - out.write("\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_page_context)) - return; - out.write("\r\n"); - out.write(" "); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\r\n"); - out.write(" \t"); - if (_jspx_meth_s_005fif_005f1(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write(" "); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(29,34) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("selmapping.name"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(32,30) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("selmapping.targetSchema"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(33,20) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("@gr.ntua.ivml.mint.util.StringUtils@getDateOrTime( selmapping.creationDate )"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(34,26) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("@gr.ntua.ivml.mint.util.StringUtils@getDateOrTime( selmapping.lastModified )"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(36,1) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionMessages"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\r\n"); - out.write(" "); - if (_jspx_meth_s_005fproperty_005f4(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f4 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/mappingOptions.jsp(38,31) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f4.setEscape(false); - int _jspx_eval_s_005fproperty_005f4 = _jspx_th_s_005fproperty_005f4.doStartTag(); - if (_jspx_th_s_005fproperty_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return false; - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(40,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write(" \r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f1(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - out.write(' '); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f1 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/mappingOptions.jsp(42,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setValue("actionErrors"); - int _jspx_eval_s_005fiterator_005f1 = _jspx_th_s_005fiterator_005f1.doStartTag(); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fproperty_005f5(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f5 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(43,21) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f5.setEscape(false); - int _jspx_eval_s_005fproperty_005f5 = _jspx_th_s_005fproperty_005f5.doStartTag(); - if (_jspx_th_s_005fproperty_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return false; - } - - private boolean _jspx_meth_s_005fif_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/mappingOptions.jsp(49,4) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("isLockmap()==false"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\tEdit
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t
\t\t\r\n"); - out.write("\t\t\t\r\n"); - out.write("\t\t\t
\r\n"); - out.write(" \t\t\t

Copy

\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005fform_005f0(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f2(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write(" "); - if (_jspx_meth_s_005felse_005f0(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write(" \t\t "); - if (_jspx_meth_s_005fif_005f3(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t "); - if (_jspx_meth_s_005felse_005f1(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t\t\t \t\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t Delete \r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f6(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f6 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(53,105) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f6.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f6 = _jspx_th_s_005fproperty_005f6.doStartTag(); - if (_jspx_th_s_005fproperty_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f7 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(53,171) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f7.setValue("selectedMapping"); - int _jspx_eval_s_005fproperty_005f7 = _jspx_th_s_005fproperty_005f7.doStartTag(); - if (_jspx_th_s_005fproperty_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return false; - } - - private boolean _jspx_meth_s_005fform_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:form - org.apache.struts2.views.jsp.ui.FormTag _jspx_th_s_005fform_005f0 = (org.apache.struts2.views.jsp.ui.FormTag) _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fmethod_005fenctype_005fcssClass.get(org.apache.struts2.views.jsp.ui.FormTag.class); - _jspx_th_s_005fform_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fform_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(71,18) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setName("copyform"); - // /WEB-INF/jsp/mappingOptions.jsp(71,18) name = cssClass type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setCssClass("athform"); - // /WEB-INF/jsp/mappingOptions.jsp(71,18) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setTheme("mytheme"); - // /WEB-INF/jsp/mappingOptions.jsp(71,18) name = enctype type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setEnctype("multipart/form-data"); - // /WEB-INF/jsp/mappingOptions.jsp(71,18) name = method type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fform_005f0.setMethod("POST"); - // /WEB-INF/jsp/mappingOptions.jsp(71,18) null - _jspx_th_s_005fform_005f0.setDynamicAttribute(null, "style", new String("font-size:1.1em;")); - int _jspx_eval_s_005fform_005f0 = _jspx_th_s_005fform_005f0.doStartTag(); - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fform_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fform_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t "); - if (_jspx_meth_s_005ftextfield_005f0(_jspx_th_s_005fform_005f0, _jspx_page_context)) - return true; - out.write(" \r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t

\r\n"); - out.write("\t\t\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\t\t\t Submit \r\n"); - out.write("\t\t\t\t\t\t\t\t\tReset \r\n"); - out.write("\t\t\t\t\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t

\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fform_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fform_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fform_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fmethod_005fenctype_005fcssClass.reuse(_jspx_th_s_005fform_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fform_0026_005ftheme_005fstyle_005fname_005fmethod_005fenctype_005fcssClass.reuse(_jspx_th_s_005fform_005f0); - return false; - } - - private boolean _jspx_meth_s_005ftextfield_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fform_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:textfield - org.apache.struts2.views.jsp.ui.TextFieldTag _jspx_th_s_005ftextfield_005f0 = (org.apache.struts2.views.jsp.ui.TextFieldTag) _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fsize_005fname_005flabel_005fnobody.get(org.apache.struts2.views.jsp.ui.TextFieldTag.class); - _jspx_th_s_005ftextfield_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005ftextfield_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fform_005f0); - // /WEB-INF/jsp/mappingOptions.jsp(74,14) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setName("mapName"); - // /WEB-INF/jsp/mappingOptions.jsp(74,14) name = label type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setLabel("Mapping name"); - // /WEB-INF/jsp/mappingOptions.jsp(74,14) name = size type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005ftextfield_005f0.setSize("60px;margin-top:2px;"); - int _jspx_eval_s_005ftextfield_005f0 = _jspx_th_s_005ftextfield_005f0.doStartTag(); - if (_jspx_th_s_005ftextfield_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fsize_005fname_005flabel_005fnobody.reuse(_jspx_th_s_005ftextfield_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005ftextfield_0026_005fsize_005fname_005flabel_005fnobody.reuse(_jspx_th_s_005ftextfield_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(91,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("selmapping.isShared()==true"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write("\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\tMake private
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005felse_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f0 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - int _jspx_eval_s_005felse_005f0 = _jspx_th_s_005felse_005f0.doStartTag(); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t\t\t \t\t\t\t\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t Make public\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005felse_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f3 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(117,11) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f3.setTest("isXSL"); - int _jspx_eval_s_005fif_005f3 = _jspx_th_s_005fif_005f3.doStartTag(); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f3.doInitBody(); - } - do { - out.write(" \t\t \t\r\n"); - out.write(" \t
\r\n"); - out.write("\t\t\t \t\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t Download XSL\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t \t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f8 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f8.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f3); - // /WEB-INF/jsp/mappingOptions.jsp(118,109) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f8.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f8 = _jspx_th_s_005fproperty_005f8.doStartTag(); - if (_jspx_th_s_005fproperty_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f9 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f9.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f3); - // /WEB-INF/jsp/mappingOptions.jsp(118,156) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f9.setValue("selectedMapping"); - int _jspx_eval_s_005fproperty_005f9 = _jspx_th_s_005fproperty_005f9.doStartTag(); - if (_jspx_th_s_005fproperty_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return false; - } - - private boolean _jspx_meth_s_005felse_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f1 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - int _jspx_eval_s_005felse_005f1 = _jspx_th_s_005felse_005f1.doStartTag(); - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write(" \t
\r\n"); - out.write("\t\t\t \t\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t Download \r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t \t
\r\n"); - out.write(" \t
\r\n"); - out.write("\t\t\t \t\t\t\t
\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t Download XSL\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t \t
\r\n"); - out.write("\t\t\t "); - int evalDoAfterBody = _jspx_th_s_005felse_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f10(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f10 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f10.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f10.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(134,110) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f10.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f10 = _jspx_th_s_005fproperty_005f10.doStartTag(); - if (_jspx_th_s_005fproperty_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f11(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f11 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f11.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f11.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(134,157) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f11.setValue("selectedMapping"); - int _jspx_eval_s_005fproperty_005f11 = _jspx_th_s_005fproperty_005f11.doStartTag(); - if (_jspx_th_s_005fproperty_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f12(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f12 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f12.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f12.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(148,109) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f12.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f12 = _jspx_th_s_005fproperty_005f12.doStartTag(); - if (_jspx_th_s_005fproperty_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f13(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felse_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f13 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f13.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f13.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felse_005f1); - // /WEB-INF/jsp/mappingOptions.jsp(148,156) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f13.setValue("selectedMapping"); - int _jspx_eval_s_005fproperty_005f13 = _jspx_th_s_005fproperty_005f13.doStartTag(); - if (_jspx_th_s_005fproperty_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsPanel_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/mappingsPanel_jsp.class deleted file mode 100644 index 8b1eace..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsPanel_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsPanel_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/mappingsPanel_jsp.java deleted file mode 100644 index 8104995..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsPanel_jsp.java +++ /dev/null @@ -1,771 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:24 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import gr.ntua.ivml.mint.persistent.Organization; -import gr.ntua.ivml.mint.persistent.Mapping; -import gr.ntua.ivml.mint.util.Config; -import gr.ntua.ivml.mint.db.DB; -import org.apache.log4j.Logger; - -public final class mappingsPanel_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_page_context)) - return; - out.write("
\r\n"); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write(" \r\n"); - out.write(" "); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/mappingsPanel.jsp(37,8) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("accessibleMappings.size>0"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write(" \r\n"); - out.write(" "); - if (_jspx_meth_s_005fset_005f0(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write(" "); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f1 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(40,9) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setId("smap"); - // /WEB-INF/jsp/mappingsPanel.jsp(40,9) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setValue("accessibleMappings"); - int _jspx_eval_s_005fiterator_005f1 = _jspx_th_s_005fiterator_005f1.doStartTag(); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fset_005f1(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f2(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f8(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write(" ("); - if (_jspx_meth_s_005fproperty_005f9(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write(")
\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f3(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f4(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f5(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t
\t\t\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - return; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write(" \r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - out.write("\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/mappingsPanel.jsp(24,42) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("mappingCount"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/mappingsPanel.jsp(25,0) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionMessages()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - out.write(' '); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/mappingsPanel.jsp(26,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionMessages"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("
"); - if (_jspx_meth_s_005fproperty_005f1(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/mappingsPanel.jsp(28,49) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setEscape(false); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fset_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f0 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(39,8) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setVar("lastOrg"); - // /WEB-INF/jsp/mappingsPanel.jsp(39,8) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setValue(""); - int _jspx_eval_s_005fset_005f0 = _jspx_th_s_005fset_005f0.doStartTag(); - if (_jspx_th_s_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return false; - } - - private boolean _jspx_meth_s_005fset_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f1 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(41,10) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setVar("current"); - // /WEB-INF/jsp/mappingsPanel.jsp(41,10) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setValue("organization.dbID"); - int _jspx_eval_s_005fset_005f1 = _jspx_th_s_005fset_005f1.doStartTag(); - if (_jspx_th_s_005fset_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(42,10) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("#current!=#lastOrg"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t \r\n"); - out.write("\t \r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
Organization: "); - if (_jspx_meth_s_005fproperty_005f2(_jspx_th_s_005fif_005f2, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t"); - if (_jspx_meth_s_005fset_005f2(_jspx_th_s_005fif_005f2, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/mappingsPanel.jsp(51,38) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("organization.name"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fset_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f2 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/mappingsPanel.jsp(56,5) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f2.setVar("lastOrg"); - // /WEB-INF/jsp/mappingsPanel.jsp(56,5) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f2.setValue("#current"); - int _jspx_eval_s_005fset_005f2 = _jspx_th_s_005fset_005f2.doStartTag(); - if (_jspx_th_s_005fset_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(60,15) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("name"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f4 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(65,63) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f4.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f4 = _jspx_th_s_005fproperty_005f4.doStartTag(); - if (_jspx_th_s_005fproperty_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f5 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(65,110) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f5.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f5 = _jspx_th_s_005fproperty_005f5.doStartTag(); - if (_jspx_th_s_005fproperty_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f6(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f6 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(67,29) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f6.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f6 = _jspx_th_s_005fproperty_005f6.doStartTag(); - if (_jspx_th_s_005fproperty_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f7 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(67,60) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f7.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f7 = _jspx_th_s_005fproperty_005f7.doStartTag(); - if (_jspx_th_s_005fproperty_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f8 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f8.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(72,7) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f8.setValue("name"); - int _jspx_eval_s_005fproperty_005f8 = _jspx_th_s_005fproperty_005f8.doStartTag(); - if (_jspx_th_s_005fproperty_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f9 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f9.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(72,93) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f9.setValue("targetSchema"); - int _jspx_eval_s_005fproperty_005f9 = _jspx_th_s_005fproperty_005f9.doStartTag(); - if (_jspx_th_s_005fproperty_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return false; - } - - private boolean _jspx_meth_s_005fif_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f3 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(73,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f3.setTest("xsl != null && xsl==true"); - int _jspx_eval_s_005fif_005f3 = _jspx_th_s_005fif_005f3.doStartTag(); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f3.doInitBody(); - } - do { - out.write("XSL"); - int evalDoAfterBody = _jspx_th_s_005fif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return false; - } - - private boolean _jspx_meth_s_005fif_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f4 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(75,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f4.setTest("isLocked(user, sessionId)"); - int _jspx_eval_s_005fif_005f4 = _jspx_th_s_005fif_005f4.doStartTag(); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f4.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f4.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f4.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return false; - } - - private boolean _jspx_meth_s_005fif_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f5 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsPanel.jsp(78,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f5.setTest("isShared()"); - int _jspx_eval_s_005fif_005f5 = _jspx_th_s_005fif_005f5.doStartTag(); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f5.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f5.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f5.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsummary_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/mappingsummary_jsp.class deleted file mode 100644 index a0bc277..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsummary_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsummary_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/mappingsummary_jsp.java deleted file mode 100644 index 94d7222..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/mappingsummary_jsp.java +++ /dev/null @@ -1,1085 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:23 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class mappingsummary_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write(" Mappings
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("\t\t Locked mappings , \r\n"); - out.write("\t\t Shared mappings\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t"); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/mappingsummary.jsp(26,1) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("!hasActionErrors()"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t
Create new mapping
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t
Upload mapping
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t
Upload XSL
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f2(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write(" "); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f3 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(54,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f3.setTest("recentMappings.size>0"); - int _jspx_eval_s_005fif_005f3 = _jspx_th_s_005fif_005f3.doStartTag(); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f3.doInitBody(); - } - do { - out.write("\r\n"); - out.write("
\r\n"); - out.write("\t\t
Relevant Mappings
\r\n"); - out.write(" "); - if (_jspx_meth_s_005fset_005f0(_jspx_th_s_005fif_005f3, _jspx_page_context)) - return; - out.write("\r\n"); - out.write(" "); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f1 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f3); - // /WEB-INF/jsp/mappingsummary.jsp(58,9) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setId("smap"); - // /WEB-INF/jsp/mappingsummary.jsp(58,9) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setValue("recentMappings"); - int _jspx_eval_s_005fiterator_005f1 = _jspx_th_s_005fiterator_005f1.doStartTag(); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fset_005f1(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t "); - if (_jspx_meth_s_005fif_005f4(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t \t\r\n"); - out.write("\t\t\t \t\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f13(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write(" ("); - if (_jspx_meth_s_005fproperty_005f14(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write(")
\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f5(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f6(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t"); - if (_jspx_meth_s_005fif_005f7(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\t
\t\t\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - return; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue_005fid.reuse(_jspx_th_s_005fiterator_005f1); - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - out.write("\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("\t
\r\n"); - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("
All Mappings
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write("\t \r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - out.write("\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/mappingsummary.jsp(16,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/mappingsummary.jsp(17,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("errorMessages"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\r\n"); - out.write("
"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write(" \r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/mappingsummary.jsp(19,49) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(27,138) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(27,176) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("user.dbID"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(32,132) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f4 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(32,170) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f4.setValue("user.dbID"); - int _jspx_eval_s_005fproperty_005f4 = _jspx_th_s_005fproperty_005f4.doStartTag(); - if (_jspx_th_s_005fproperty_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f5 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(37,124) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f5.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f5 = _jspx_th_s_005fproperty_005f5.doStartTag(); - if (_jspx_th_s_005fproperty_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f6(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f6 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(37,162) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f6.setValue("user.dbID"); - int _jspx_eval_s_005fproperty_005f6 = _jspx_th_s_005fproperty_005f6.doStartTag(); - if (_jspx_th_s_005fproperty_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f6); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(44,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("organizations.size()>0"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t\tFilter by Organization: "); - if (_jspx_meth_s_005fselect_005f0(_jspx_th_s_005fif_005f2, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f0 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setTheme("simple"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setCssStyle("width:200px"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setName("filtermaporg"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setId("filtermaporg"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "vaue", (java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${orgId}", java.lang.Object.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setList("organizations"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListKey("dbID"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListValue("name"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = headerKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setHeaderKey("-1"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) name = headerValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setHeaderValue("-- All mappings --"); - // /WEB-INF/jsp/mappingsummary.jsp(46,89) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "onChange", (java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("javascript:ajaxMappingPanel(0,$('#filtermaporg').val(),${uploadId},${user.dbID});", java.lang.Object.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)); - int _jspx_eval_s_005fselect_005f0 = _jspx_th_s_005fselect_005f0.doStartTag(); - if (_jspx_th_s_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return false; - } - - private boolean _jspx_meth_s_005fset_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f0 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f3); - // /WEB-INF/jsp/mappingsummary.jsp(57,8) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setVar("lastOrg"); - // /WEB-INF/jsp/mappingsummary.jsp(57,8) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setValue(""); - int _jspx_eval_s_005fset_005f0 = _jspx_th_s_005fset_005f0.doStartTag(); - if (_jspx_th_s_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return false; - } - - private boolean _jspx_meth_s_005fset_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f1 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(59,10) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setVar("current"); - // /WEB-INF/jsp/mappingsummary.jsp(59,10) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setValue("organization.dbID"); - int _jspx_eval_s_005fset_005f1 = _jspx_th_s_005fset_005f1.doStartTag(); - if (_jspx_th_s_005fset_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return false; - } - - private boolean _jspx_meth_s_005fif_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f4 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(60,10) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f4.setTest("#current!=#lastOrg"); - int _jspx_eval_s_005fif_005f4 = _jspx_th_s_005fif_005f4.doStartTag(); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f4.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f4.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t \r\n"); - out.write("\t \r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t \r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
Organization: "); - if (_jspx_meth_s_005fproperty_005f7(_jspx_th_s_005fif_005f4, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t
\r\n"); - out.write("\t\t\t\t\t"); - if (_jspx_meth_s_005fset_005f2(_jspx_th_s_005fif_005f4, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t \r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f4.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f4, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f7 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f4); - // /WEB-INF/jsp/mappingsummary.jsp(69,38) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f7.setValue("organization.name"); - int _jspx_eval_s_005fproperty_005f7 = _jspx_th_s_005fproperty_005f7.doStartTag(); - if (_jspx_th_s_005fproperty_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f7); - return false; - } - - private boolean _jspx_meth_s_005fset_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f4, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f2 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f4); - // /WEB-INF/jsp/mappingsummary.jsp(74,5) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f2.setVar("lastOrg"); - // /WEB-INF/jsp/mappingsummary.jsp(74,5) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f2.setValue("#current"); - int _jspx_eval_s_005fset_005f2 = _jspx_th_s_005fset_005f2.doStartTag(); - if (_jspx_th_s_005fset_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f8(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f8 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f8.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f8.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(78,15) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f8.setValue("name"); - int _jspx_eval_s_005fproperty_005f8 = _jspx_th_s_005fproperty_005f8.doStartTag(); - if (_jspx_th_s_005fproperty_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f8); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f9(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f9 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f9.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f9.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(83,63) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f9.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f9 = _jspx_th_s_005fproperty_005f9.doStartTag(); - if (_jspx_th_s_005fproperty_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f9); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f10(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f10 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f10.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f10.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(83,110) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f10.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f10 = _jspx_th_s_005fproperty_005f10.doStartTag(); - if (_jspx_th_s_005fproperty_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f10); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f11(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f11 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f11.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f11.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(85,29) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f11.setValue("uploadId"); - int _jspx_eval_s_005fproperty_005f11 = _jspx_th_s_005fproperty_005f11.doStartTag(); - if (_jspx_th_s_005fproperty_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f11); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f12(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f12 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f12.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f12.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(85,60) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f12.setValue("dbID"); - int _jspx_eval_s_005fproperty_005f12 = _jspx_th_s_005fproperty_005f12.doStartTag(); - if (_jspx_th_s_005fproperty_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f12); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f13(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f13 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f13.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f13.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(90,7) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f13.setValue("name"); - int _jspx_eval_s_005fproperty_005f13 = _jspx_th_s_005fproperty_005f13.doStartTag(); - if (_jspx_th_s_005fproperty_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f13); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f14(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f14 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f14.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f14.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(90,93) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f14.setValue("targetSchema"); - int _jspx_eval_s_005fproperty_005f14 = _jspx_th_s_005fproperty_005f14.doStartTag(); - if (_jspx_th_s_005fproperty_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f14); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f14); - return false; - } - - private boolean _jspx_meth_s_005fif_005f5(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f5 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f5.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(92,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f5.setTest("xsl==true"); - int _jspx_eval_s_005fif_005f5 = _jspx_th_s_005fif_005f5.doStartTag(); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f5.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f5.doInitBody(); - } - do { - out.write("XSL"); - int evalDoAfterBody = _jspx_th_s_005fif_005f5.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f5 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f5); - return false; - } - - private boolean _jspx_meth_s_005fif_005f6(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f6 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f6.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f6.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(94,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f6.setTest("isLocked(user, sessionId)"); - int _jspx_eval_s_005fif_005f6 = _jspx_th_s_005fif_005f6.doStartTag(); - if (_jspx_eval_s_005fif_005f6 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f6 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f6.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f6.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f6.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f6 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f6); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f6); - return false; - } - - private boolean _jspx_meth_s_005fif_005f7(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f7 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f7.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f7.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/mappingsummary.jsp(97,7) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f7.setTest("isShared()"); - int _jspx_eval_s_005fif_005f7 = _jspx_th_s_005fif_005f7.doStartTag(); - if (_jspx_eval_s_005fif_005f7 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f7 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f7.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f7.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t\t\t\r\n"); - out.write("\t\t\t\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f7.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f7 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f7); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f7); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/organizationreport_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/organizationreport_jsp.class deleted file mode 100644 index 4581d93..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/organizationreport_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/organizationreport_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/organizationreport_jsp.java deleted file mode 100644 index 8481300..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/organizationreport_jsp.java +++ /dev/null @@ -1,582 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-31 15:29:57 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class organizationreport_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - if (_jspx_meth_s_005fset_005f0(_jspx_page_context)) - return; - out.write('\n'); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t"); - if( request.getAttribute( "actionmessage" ) != null ) { - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t
\n"); - out.write("\t\t\t\t"); - out.print((String) request.getAttribute( "actionmessage" )); - out.write("
\n"); - out.write("\t\t\t"); -}else{ - out.write("\n"); - out.write("\t\t\t
Organization reports:
\n"); - out.write("\t\t\t"); -} - out.write("\n"); - out.write("\t\t
\n"); - out.write("\n"); - out.write("\t\t\n"); - out.write("\t\t\t\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fselect_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t
\n"); - out.write("\n"); - out.write("\t\t

\n"); - out.write("\t\t

\n"); - out.write("\t\t\tFrom :\n"); - out.write("\t\t

\n"); - out.write("\t\t

\t

\n"); - out.write("\t\t

\n"); - out.write("\t\t\tTo :\n"); - out.write("\t\t

\n"); - out.write("\t\t

\n"); - out.write("\t\t\t \n"); - out.write("\t\t

\n"); - out.write("\n"); - out.write("\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\tOverall\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\tImports\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f1(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\tTransformations\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f2(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\tPublications\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f3(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\tOai publications\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f4(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t"); -if(Config.getBoolean("mint.enableGoalReports", false)){ - out.write(" \t\t\t\t\t\t\n"); - out.write("\t\t\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\tProgress report\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fproperty_005f5(_jspx_page_context)) - return; - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t
\n"); - out.write(" "); -} - out.write(" \n"); - out.write("\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write("\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f0 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f0.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(5,0) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setVar("orgId"); - // /WEB-INF/jsp/organizationreport.jsp(5,0) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f0.setValue("filterOrg"); - int _jspx_eval_s_005fset_005f0 = _jspx_th_s_005fset_005f0.doStartTag(); - if (_jspx_th_s_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(6,0) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("orgid==-1"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write('\n'); - out.write(' '); - if (_jspx_meth_s_005fset_005f1(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\n'); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fset_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:set - org.apache.struts2.views.jsp.SetTag _jspx_th_s_005fset_005f1 = (org.apache.struts2.views.jsp.SetTag) _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.SetTag.class); - _jspx_th_s_005fset_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fset_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/organizationreport.jsp(7,1) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setVar("orgId"); - // /WEB-INF/jsp/organizationreport.jsp(7,1) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fset_005f1.setValue("user.dbID"); - int _jspx_eval_s_005fset_005f1 = _jspx_th_s_005fset_005f1.doStartTag(); - if (_jspx_th_s_005fset_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_s_005fset_005f1); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f0 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f0.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setTheme("simple"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setCssStyle("width:200px"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setName("filterorg"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setId("filterorg"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setList("allOrgs"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListKey("dbID"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListValue("name"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setValue("orgId"); - // /WEB-INF/jsp/organizationreport.jsp(26,3) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "onChange", new String("")); - int _jspx_eval_s_005fselect_005f0 = _jspx_th_s_005fselect_005f0.doStartTag(); - if (_jspx_th_s_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(52,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("title"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(66,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("title"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f2(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f2 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f2.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(80,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f2.setValue("title"); - int _jspx_eval_s_005fproperty_005f2 = _jspx_th_s_005fproperty_005f2.doStartTag(); - if (_jspx_th_s_005fproperty_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f2); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f3(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f3 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f3.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(93,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f3.setValue("title"); - int _jspx_eval_s_005fproperty_005f3 = _jspx_th_s_005fproperty_005f3.doStartTag(); - if (_jspx_th_s_005fproperty_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f3); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f4(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f4 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f4.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(106,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f4.setValue("title"); - int _jspx_eval_s_005fproperty_005f4 = _jspx_th_s_005fproperty_005f4.doStartTag(); - if (_jspx_th_s_005fproperty_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f4); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f5(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f5 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f5.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f5.setParent(null); - // /WEB-INF/jsp/organizationreport.jsp(120,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f5.setValue("title"); - int _jspx_eval_s_005fproperty_005f5 = _jspx_th_s_005fproperty_005f5.doStartTag(); - if (_jspx_th_s_005fproperty_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f5); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics2_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics2_jsp.class deleted file mode 100644 index 10c30f2..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics2_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics2_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics2_jsp.java deleted file mode 100644 index fdd0e0b..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics2_jsp.java +++ /dev/null @@ -1,178 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-04 13:08:14 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class organizationstatistics2_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t\n"); - out.write("\t\n"); - out.write("\n"); - out.write(" \n"); - out.write(" \t\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t"); - out.print(request.getAttribute("getName()")); - out.write("
\n"); - out.write("\t\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t

Overall

\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write(" \t\t\n"); - out.write("\t
\n"); - out.write("
\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics3_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics3_jsp.class deleted file mode 100644 index 71181b8..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics3_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics3_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics3_jsp.java deleted file mode 100644 index 0a8d606..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/organizationstatistics3_jsp.java +++ /dev/null @@ -1,197 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 15:39:58 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class organizationstatistics3_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html; charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t\n"); - out.write("\n"); - out.write("\n"); - out.write(" \n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t"); - out.print(request.getAttribute("getName()")); - out.write("
\n"); - out.write("\t\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t

Overall

\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write(" \t\t\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("Insert title here\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write(""); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/projectpublished_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/projectpublished_jsp.class deleted file mode 100644 index c535d43..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/projectpublished_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/projectpublished_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/projectpublished_jsp.java deleted file mode 100644 index 7c9639a..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/projectpublished_jsp.java +++ /dev/null @@ -1,307 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-04 13:08:34 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class projectpublished_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
"); - out.print(request.getAttribute("getName()")); - out.write("
\n"); - out.write("\t\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t \n"); - out.write("\t\t
\n"); - out.write(" \t\t
\n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write("\t\t\n"); - out.write("\t\t\n"); - out.write("
\n"); - out.write("\t\t
\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write(" gui\n"); - out.write(" \n"); - out.write("
\n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write(" \n"); - out.write("\t\t\t
\n"); - out.write("


\n"); - out.write("
\n"); - out.write("

\n"); - out.write("\t\t\tTotal : \n"); - out.write("
\n"); - out.write("
\n"); - out.write("
\n"); - out.write(" \n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics2_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics2_jsp.class deleted file mode 100644 index dfb6ced..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics2_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics2_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics2_jsp.java deleted file mode 100644 index a019a1b..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics2_jsp.java +++ /dev/null @@ -1,214 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-04 13:08:47 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class projectstatistics2_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
"); - out.print(request.getAttribute("getName()")); - out.write("
\n"); - out.write("\t\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t \n"); - out.write("\t\t
\n"); - out.write(" \t\t
Left
\n"); - out.write(" \t\t
Right
\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t

Overall

\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write("\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics_jsp.class deleted file mode 100644 index 0cb6079..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics_jsp.java deleted file mode 100644 index 1be4175..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/projectstatistics_jsp.java +++ /dev/null @@ -1,323 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:16:37 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class projectstatistics_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felse; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felse = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005felse.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/projectstatistics.jsp(5,0) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("@gr.ntua.ivml.mint.util.Config@has('orgtargets')"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\n"); - out.write("\n"); - out.write("\n"); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - out.write('\n'); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f0 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f0.setParent(null); - int _jspx_eval_s_005felse_005f0 = _jspx_th_s_005felse_005f0.doStartTag(); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f0.doInitBody(); - } - do { - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - int evalDoAfterBody = _jspx_th_s_005felse_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
"); - out.print(request.getAttribute("getName()")); - out.write("
\n"); - out.write("\t\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t \n"); - out.write("\t\t
\n"); - out.write(" \t\t
Left
\n"); - out.write(" \t\t
Right
\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t

Overall

\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("
\n"); - out.write("\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/publishedhistory_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/publishedhistory_jsp.class deleted file mode 100644 index e9b1105..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/publishedhistory_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/publishedhistory_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/publishedhistory_jsp.java deleted file mode 100644 index ddeeccb..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/publishedhistory_jsp.java +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-26 15:32:41 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class publishedhistory_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\t\t\t\t
\n");
-      out.write(" \t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t"); - out.print(request.getAttribute("getName()")); - out.write("\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t

\n"); - out.write("\t\t\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t

Publications

\t\n"); - out.write("\t\t
\n"); - out.write("\t\t\n"); - out.write("\t\t

Published items per schema

\t\n"); - out.write("
\n"); - out.write("\t
\n"); - out.write("
\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/successimport_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/successimport_jsp.class deleted file mode 100644 index 0c05697..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/successimport_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/successimport_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/successimport_jsp.java deleted file mode 100644 index fc066df..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/successimport_jsp.java +++ /dev/null @@ -1,186 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:11 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class successimport_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent(null); - // /WEB-INF/jsp/successimport.jsp(14,88) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setValue("orgId"); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent(null); - // /WEB-INF/jsp/successimport.jsp(20,86) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setValue("orgId"); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fvalue_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/successmaptool_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/successmaptool_jsp.class deleted file mode 100644 index caf605f..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/successmaptool_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/successmaptool_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/successmaptool_jsp.java deleted file mode 100644 index 2258da5..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/successmaptool_jsp.java +++ /dev/null @@ -1,139 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-31 15:16:56 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class successmaptool_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write("\t
"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/successtransform_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/successtransform_jsp.class deleted file mode 100644 index c132121..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/successtransform_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/successtransform_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/successtransform_jsp.java deleted file mode 100644 index 5961832..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/successtransform_jsp.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:46 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class successtransform_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write("
success
"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/summary_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/summary_jsp.class deleted file mode 100644 index 725b4b0..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/summary_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/summary_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/summary_jsp.java deleted file mode 100644 index 3948b68..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/summary_jsp.java +++ /dev/null @@ -1,705 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 15:04:41 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; -import gr.ntua.ivml.mint.util.Label; - -public final class summary_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felse; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005ftheme_005fonChange_005fname_005fmultiple_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felse = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005ftheme_005fonChange_005fname_005fmultiple_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005felse.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005ftheme_005fonChange_005fname_005fmultiple_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - -response.setHeader("Cache-Control","no-store");//HTTP 1.1 -response.setHeader("Pragma","no-cache"); //HTTP 1.0 -response.setDateHeader ("Expires", -1); - - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); -String orgId=(String)request.getParameter("orgId"); - - - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t
\r\n"); - out.write(" My workspace
\r\n"); - out.write(" "); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write('\r'); - out.write('\n'); - out.write(' '); - if (_jspx_meth_s_005felse_005f0(_jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t "); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent(null); - // /WEB-INF/jsp/summary.jsp(33,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("!hasActionErrors()"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\r\n"); - out.write("\t"); -if(user.hasRight(User.MODIFY_DATA)) { - if(user.hasRight(User.SUPER_USER) || !Config.getBoolean("ui.hide.import")) { - - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t
Import new archive
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\t
Create empty dataset
\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t

\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t"); - - } - } - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t "); - if (_jspx_meth_s_005fif_005f2(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f3(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f4(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("\t\t\r\n"); - out.write("\t\t"); -if(orgId!=null){ - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t"); -} else if(orgId==null && user.getOrganization()!=null ){ - //if user is uploader - if(user.getOrganization().getUploaders().contains(user)){ - - out.write("\r\n"); - out.write("\t\t\t\t\t\r\n"); - out.write("\t\t "); -}else{ - out.write("\r\n"); - out.write("\t\t \r\n"); - out.write("\t\t "); -} - out.write("\r\n"); - out.write("\t\t"); -}else if(orgId==null && user.getOrganization()==null && user.getMintRole().equals("superuser")){ - - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t"); -} - out.write("\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write(" "); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - out.write("\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/summary.jsp(21,5) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write('\r'); - out.write('\n'); - out.write(' '); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/summary.jsp(22,4) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionErrors"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\t\t
"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/summary.jsp(23,49) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005felse_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:else - org.apache.struts2.views.jsp.ElseTag _jspx_th_s_005felse_005f0 = (org.apache.struts2.views.jsp.ElseTag) _005fjspx_005ftagPool_005fs_005felse.get(org.apache.struts2.views.jsp.ElseTag.class); - _jspx_th_s_005felse_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felse_005f0.setParent(null); - int _jspx_eval_s_005felse_005f0 = _jspx_th_s_005felse_005f0.doStartTag(); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felse_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felse_005f0.doInitBody(); - } - do { - out.write("\t\t\r\n"); - out.write("
\r\n"); - out.write("\t\tAn overview of all the datasets per organization and per uploader:\r\n"); - out.write("\t
\r\n"); - out.write("\t"); - int evalDoAfterBody = _jspx_th_s_005felse_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felse_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felse_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005felse.reuse(_jspx_th_s_005felse_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/summary.jsp(65,4) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("organizations.size()>0"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\tFilter by Organization: "); - if (_jspx_meth_s_005fselect_005f0(_jspx_th_s_005fif_005f2, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t
\t\t\t\t\t\t\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f0 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/summary.jsp(67,88) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setTheme("simple"); - // /WEB-INF/jsp/summary.jsp(67,88) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setCssStyle("width:200px"); - // /WEB-INF/jsp/summary.jsp(67,88) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setName("filterorg"); - // /WEB-INF/jsp/summary.jsp(67,88) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setId("filterorg"); - // /WEB-INF/jsp/summary.jsp(67,88) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setList("organizations"); - // /WEB-INF/jsp/summary.jsp(67,88) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListKey("dbID"); - // /WEB-INF/jsp/summary.jsp(67,88) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListValue("name"); - // /WEB-INF/jsp/summary.jsp(67,88) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setValue("orgId"); - // /WEB-INF/jsp/summary.jsp(67,88) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "onChange", new String("var cp=$($(this).closest('div[id^=kp]'));$K.kaiten('reload',cp,{ kConnector:'html.page', url:'ImportSummary.action?orgId='+$('#filterorg').val(), kTitle:'My workspace' },false);")); - int _jspx_eval_s_005fselect_005f0 = _jspx_th_s_005fselect_005f0.doStartTag(); - if (_jspx_th_s_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f3(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f3 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f3.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f3.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/summary.jsp(71,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f3.setTest("uploaders.size()>0"); - int _jspx_eval_s_005fif_005f3 = _jspx_th_s_005fif_005f3.doStartTag(); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f3.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f3.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\tFilter by User: "); - if (_jspx_meth_s_005fselect_005f1(_jspx_th_s_005fif_005f3, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t
"); - int evalDoAfterBody = _jspx_th_s_005fif_005f3.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f3 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f3); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f3, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f1 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f3); - // /WEB-INF/jsp/summary.jsp(73,80) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setTheme("simple"); - // /WEB-INF/jsp/summary.jsp(73,80) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setCssStyle("width:200px"); - // /WEB-INF/jsp/summary.jsp(73,80) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setName("filteruser"); - // /WEB-INF/jsp/summary.jsp(73,80) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setId("filteruser"); - // /WEB-INF/jsp/summary.jsp(73,80) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setList("uploaders"); - // /WEB-INF/jsp/summary.jsp(73,80) name = headerKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setHeaderKey("-1"); - // /WEB-INF/jsp/summary.jsp(73,80) name = headerValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setHeaderValue("-- All uploaders --"); - // /WEB-INF/jsp/summary.jsp(73,80) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setListKey("dbID"); - // /WEB-INF/jsp/summary.jsp(73,80) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setListValue("name"); - // /WEB-INF/jsp/summary.jsp(73,80) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f1.setValue("uploaderId"); - // /WEB-INF/jsp/summary.jsp(73,80) null - _jspx_th_s_005fselect_005f1.setDynamicAttribute(null, "onChange", new String("javascript:ajaxImportsPanel(0,importlimit,document.getElementById('filteruser').value,document.getElementById('filterorg').value,'');")); - int _jspx_eval_s_005fselect_005f1 = _jspx_th_s_005fselect_005f1.doStartTag(); - if (_jspx_th_s_005fselect_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvalue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f1); - return false; - } - - private boolean _jspx_meth_s_005fif_005f4(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f4 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f4.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f4.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/summary.jsp(75,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f4.setTest("labels.size()>0"); - int _jspx_eval_s_005fif_005f4 = _jspx_th_s_005fif_005f4.doStartTag(); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f4.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f4.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t
\r\n"); - out.write("\t\t\tFilter by Label: "); - if (_jspx_meth_s_005fselect_005f2(_jspx_th_s_005fif_005f4, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t
"); - int evalDoAfterBody = _jspx_th_s_005fif_005f4.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f4 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f4); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f4, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f2 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005ftheme_005fonChange_005fname_005fmultiple_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f4); - // /WEB-INF/jsp/summary.jsp(77,81) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setTheme("simple"); - // /WEB-INF/jsp/summary.jsp(77,81) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setCssStyle("width:300px"); - // /WEB-INF/jsp/summary.jsp(77,81) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setName("filterlabel"); - // /WEB-INF/jsp/summary.jsp(77,81) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setId("filterlabel"); - // /WEB-INF/jsp/summary.jsp(77,81) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setList("labels"); - // /WEB-INF/jsp/summary.jsp(77,81) name = headerKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setHeaderKey("-1"); - // /WEB-INF/jsp/summary.jsp(77,81) name = headerValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setHeaderValue("-- All labels --"); - // /WEB-INF/jsp/summary.jsp(77,81) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setListKey("%{lblname+'_'+lblcolor}"); - // /WEB-INF/jsp/summary.jsp(77,81) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setListValue("lblname"); - // /WEB-INF/jsp/summary.jsp(77,81) null - _jspx_th_s_005fselect_005f2.setDynamicAttribute(null, "onChange", new String("javascript:ajaxImportsPanel(0,importlimit,-1,document.getElementById('filterorg').value,$('#filterlabel').val());")); - // /WEB-INF/jsp/summary.jsp(77,81) name = multiple type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f2.setMultiple("true"); - int _jspx_eval_s_005fselect_005f2 = _jspx_th_s_005fselect_005f2.doStartTag(); - if (_jspx_th_s_005fselect_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005ftheme_005fonChange_005fname_005fmultiple_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005ftheme_005fonChange_005fname_005fmultiple_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f2); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/transformedhistory_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/transformedhistory_jsp.class deleted file mode 100644 index ce26ac4..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/transformedhistory_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/transformedhistory_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/transformedhistory_jsp.java deleted file mode 100644 index 4a126e3..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/transformedhistory_jsp.java +++ /dev/null @@ -1,153 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-24 12:52:50 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class transformedhistory_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("\n"); - out.write("
\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("\t\t
\n"); - out.write("\t\t\t
\n"); - out.write("\t\t\t"); - out.print(request.getAttribute("getName()")); - out.write("\n"); - out.write("\t\t
\n"); - out.write("\t\t

\n"); - out.write("\t\t
\n"); - out.write("\t\t

Transformations

\t\n"); - out.write("\t\t
\n"); - out.write("\t\t

Transformed items per schema

\t\n"); - out.write("
\n"); - out.write(" \n"); - out.write(" \t\n"); - out.write(" \t\t\n"); - out.write("\t
\n"); - out.write("
\n"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/transformselection_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/transformselection_jsp.class deleted file mode 100644 index b650263..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/transformselection_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/transformselection_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/transformselection_jsp.java deleted file mode 100644 index 784e13a..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/transformselection_jsp.java +++ /dev/null @@ -1,519 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-04-03 11:34:43 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; -import org.apache.log4j.Logger; -import gr.ntua.ivml.mint.persistent.User; -import gr.ntua.ivml.mint.db.DB; -import gr.ntua.ivml.mint.util.Config; - -public final class transformselection_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - public final Logger log = Logger.getLogger(this.getClass()); - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - static { - _jspx_dependants = new java.util.HashMap(2); - _jspx_dependants.put("/WEB-INF/jsp/_include.jsp", Long.valueOf(1395664770000L)); - _jspx_dependants.put("/WEB-INF/jsp/customize.tld", Long.valueOf(1395664770000L)); - } - - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest; - private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.release(); - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.release(); - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.release(); - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.release(); - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html;charset=UTF-8"); - pageContext = _jspxFactory.getPageContext(this, request, response, - "error.jsp", true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\r\n"); - out.write("\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - -log.debug( "Output rendered" ); - -User user=(User) request.getSession().getAttribute("user"); -if( user != null ) { - user = DB.getUserDAO().findById(user.getDbID(), false ); -} - - out.write('\r'); - out.write('\n'); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - if (_jspx_meth_s_005fif_005f0(_jspx_page_context)) - return; - out.write('\r'); - out.write('\n'); - // s:elseif - org.apache.struts2.views.jsp.ElseIfTag _jspx_th_s_005felseif_005f0 = (org.apache.struts2.views.jsp.ElseIfTag) _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.get(org.apache.struts2.views.jsp.ElseIfTag.class); - _jspx_th_s_005felseif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005felseif_005f0.setParent(null); - // /WEB-INF/jsp/transformselection.jsp(29,0) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005felseif_005f0.setTest("!hasActionErrors()"); - int _jspx_eval_s_005felseif_005f0 = _jspx_th_s_005felseif_005f0.doStartTag(); - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005felseif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005felseif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\t
\r\n"); - out.write(" Select Mapping
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write("\t\t Locked mappings , \r\n"); - out.write("\t\t Shared mappings\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f1(_jspx_th_s_005felseif_005f0, _jspx_page_context)) - return; - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t\r\n"); - out.write("\t
\r\n"); - out.write("\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t \r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fif_005f2(_jspx_th_s_005felseif_005f0, _jspx_page_context)) - return; - out.write("\r\n"); - out.write("\t\t\r\n"); - out.write("\t\t\r\n"); - out.write("\t
\r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("\t
\r\n"); - out.write(" \r\n"); - out.write("
\r\n"); - out.write(" \r\n"); - out.write("\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - int evalDoAfterBody = _jspx_th_s_005felseif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005felseif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005felseif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f0); - return; - } - _005fjspx_005ftagPool_005fs_005felseif_0026_005ftest.reuse(_jspx_th_s_005felseif_005f0); - out.write("\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\t"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } - - private boolean _jspx_meth_s_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f0 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f0.setParent(null); - // /WEB-INF/jsp/transformselection.jsp(5,0) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f0.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f0 = _jspx_th_s_005fif_005f0.doStartTag(); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\r\n"); - out.write("
\r\n"); - out.write("
\r\n"); - out.write("\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t
Error
\r\n"); - out.write("\t\r\n"); - out.write("\t\r\n"); - out.write(" \r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f0(_jspx_th_s_005fif_005f0, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("\t\r\n"); - out.write("\t\r\n"); - out.write("\t\r\n"); - out.write("\t\r\n"); - out.write("\r\n"); - out.write("\t
\r\n"); - out.write("
\t\r\n"); - int evalDoAfterBody = _jspx_th_s_005fif_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f0); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f0 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f0); - // /WEB-INF/jsp/transformselection.jsp(16,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f0.setValue("actionErrors"); - int _jspx_eval_s_005fiterator_005f0 = _jspx_th_s_005fiterator_005f0.doStartTag(); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f0.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f0.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t"); - if (_jspx_meth_s_005fproperty_005f0(_jspx_th_s_005fiterator_005f0, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write("\t\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f0.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f0); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f0 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f0); - // /WEB-INF/jsp/transformselection.jsp(17,21) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f0.setEscape(false); - int _jspx_eval_s_005fproperty_005f0 = _jspx_th_s_005fproperty_005f0.doStartTag(); - if (_jspx_th_s_005fproperty_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f0); - return false; - } - - private boolean _jspx_meth_s_005fif_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felseif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f1 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felseif_005f0); - // /WEB-INF/jsp/transformselection.jsp(40,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f1.setTest("hasActionErrors()"); - int _jspx_eval_s_005fif_005f1 = _jspx_th_s_005fif_005f1.doStartTag(); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t"); - if (_jspx_meth_s_005fiterator_005f1(_jspx_th_s_005fif_005f1, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t "); - int evalDoAfterBody = _jspx_th_s_005fif_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f1); - return false; - } - - private boolean _jspx_meth_s_005fiterator_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:iterator - org.apache.struts2.views.jsp.IteratorTag _jspx_th_s_005fiterator_005f1 = (org.apache.struts2.views.jsp.IteratorTag) _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.get(org.apache.struts2.views.jsp.IteratorTag.class); - _jspx_th_s_005fiterator_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fiterator_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f1); - // /WEB-INF/jsp/transformselection.jsp(41,2) name = value type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fiterator_005f1.setValue("errorMessages"); - int _jspx_eval_s_005fiterator_005f1 = _jspx_th_s_005fiterator_005f1.doStartTag(); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fiterator_005f1.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fiterator_005f1.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t\r\n"); - out.write("
"); - if (_jspx_meth_s_005fproperty_005f1(_jspx_th_s_005fiterator_005f1, _jspx_page_context)) - return true; - out.write("
\r\n"); - out.write(" \r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fiterator_005f1.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fiterator_005f1 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fiterator_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fiterator_0026_005fvalue.reuse(_jspx_th_s_005fiterator_005f1); - return false; - } - - private boolean _jspx_meth_s_005fproperty_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fiterator_005f1, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:property - org.apache.struts2.views.jsp.PropertyTag _jspx_th_s_005fproperty_005f1 = (org.apache.struts2.views.jsp.PropertyTag) _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.get(org.apache.struts2.views.jsp.PropertyTag.class); - _jspx_th_s_005fproperty_005f1.setPageContext(_jspx_page_context); - _jspx_th_s_005fproperty_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fiterator_005f1); - // /WEB-INF/jsp/transformselection.jsp(43,49) name = escape type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fproperty_005f1.setEscape(false); - int _jspx_eval_s_005fproperty_005f1 = _jspx_th_s_005fproperty_005f1.doStartTag(); - if (_jspx_th_s_005fproperty_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return true; - } - _005fjspx_005ftagPool_005fs_005fproperty_0026_005fescape_005fnobody.reuse(_jspx_th_s_005fproperty_005f1); - return false; - } - - private boolean _jspx_meth_s_005fif_005f2(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005felseif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:if - org.apache.struts2.views.jsp.IfTag _jspx_th_s_005fif_005f2 = (org.apache.struts2.views.jsp.IfTag) _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.get(org.apache.struts2.views.jsp.IfTag.class); - _jspx_th_s_005fif_005f2.setPageContext(_jspx_page_context); - _jspx_th_s_005fif_005f2.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005felseif_005f0); - // /WEB-INF/jsp/transformselection.jsp(53,2) name = test type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fif_005f2.setTest("organizations.size()>0"); - int _jspx_eval_s_005fif_005f2 = _jspx_th_s_005fif_005f2.doStartTag(); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.pushBody(); - _jspx_th_s_005fif_005f2.setBodyContent((javax.servlet.jsp.tagext.BodyContent) out); - _jspx_th_s_005fif_005f2.doInitBody(); - } - do { - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t\t\tFilter by Organization: "); - if (_jspx_meth_s_005fselect_005f0(_jspx_th_s_005fif_005f2, _jspx_page_context)) - return true; - out.write("\r\n"); - out.write("\t\t\t
\r\n"); - out.write("\t\t"); - int evalDoAfterBody = _jspx_th_s_005fif_005f2.doAfterBody(); - if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) - break; - } while (true); - if (_jspx_eval_s_005fif_005f2 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { - out = _jspx_page_context.popBody(); - } - } - if (_jspx_th_s_005fif_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return true; - } - _005fjspx_005ftagPool_005fs_005fif_0026_005ftest.reuse(_jspx_th_s_005fif_005f2); - return false; - } - - private boolean _jspx_meth_s_005fselect_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_s_005fif_005f2, javax.servlet.jsp.PageContext _jspx_page_context) - throws java.lang.Throwable { - javax.servlet.jsp.PageContext pageContext = _jspx_page_context; - javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); - // s:select - org.apache.struts2.views.jsp.ui.SelectTag _jspx_th_s_005fselect_005f0 = (org.apache.struts2.views.jsp.ui.SelectTag) _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.get(org.apache.struts2.views.jsp.ui.SelectTag.class); - _jspx_th_s_005fselect_005f0.setPageContext(_jspx_page_context); - _jspx_th_s_005fselect_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_s_005fif_005f2); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = theme type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setTheme("simple"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = cssStyle type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setCssStyle("width:200px"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = name type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setName("filtermaporg"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = id type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setId("filtermaporg"); - // /WEB-INF/jsp/transformselection.jsp(55,89) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "vaue", (java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${organizationId}", java.lang.Object.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = list type = java.lang.String reqTime = false required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setList("organizations"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = listKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListKey("dbID"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = listValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setListValue("name"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = headerKey type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setHeaderKey("-1"); - // /WEB-INF/jsp/transformselection.jsp(55,89) name = headerValue type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null - _jspx_th_s_005fselect_005f0.setHeaderValue("-- All mappings --"); - // /WEB-INF/jsp/transformselection.jsp(55,89) null - _jspx_th_s_005fselect_005f0.setDynamicAttribute(null, "onChange", (java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("javascript:ajaxMappingPanel(0,$('#filtermaporg').val(),${uploadId},${user.dbID});", java.lang.Object.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false)); - int _jspx_eval_s_005fselect_005f0 = _jspx_th_s_005fselect_005f0.doStartTag(); - if (_jspx_th_s_005fselect_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return true; - } - _005fjspx_005ftagPool_005fs_005fselect_0026_005fvaue_005ftheme_005fonChange_005fname_005flistValue_005flistKey_005flist_005fid_005fheaderValue_005fheaderKey_005fcssStyle_005fnobody.reuse(_jspx_th_s_005fselect_005f0); - return false; - } -} diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/xsdmapping_jsp.class b/work/org/apache/jsp/WEB_002dINF/jsp/xsdmapping_jsp.class deleted file mode 100644 index 116dd4c..0000000 Binary files a/work/org/apache/jsp/WEB_002dINF/jsp/xsdmapping_jsp.class and /dev/null differ diff --git a/work/org/apache/jsp/WEB_002dINF/jsp/xsdmapping_jsp.java b/work/org/apache/jsp/WEB_002dINF/jsp/xsdmapping_jsp.java deleted file mode 100644 index f57f706..0000000 --- a/work/org/apache/jsp/WEB_002dINF/jsp/xsdmapping_jsp.java +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Generated by the Jasper component of Apache Tomcat - * Version: Apache Tomcat/7.0.30 - * Generated at: 2014-03-31 15:16:57 UTC - * Note: The last modified time of this file was set to - * the last modified time of the source file after - * generation to assist with modification tracking. - */ -package org.apache.jsp.WEB_002dINF.jsp; - -import javax.servlet.*; -import javax.servlet.http.*; -import javax.servlet.jsp.*; - -public final class xsdmapping_jsp extends org.apache.jasper.runtime.HttpJspBase - implements org.apache.jasper.runtime.JspSourceDependent { - - private static final javax.servlet.jsp.JspFactory _jspxFactory = - javax.servlet.jsp.JspFactory.getDefaultFactory(); - - private static java.util.Map _jspx_dependants; - - private javax.el.ExpressionFactory _el_expressionfactory; - private org.apache.tomcat.InstanceManager _jsp_instancemanager; - - public java.util.Map getDependants() { - return _jspx_dependants; - } - - public void _jspInit() { - _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); - _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); - } - - public void _jspDestroy() { - } - - public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) - throws java.io.IOException, javax.servlet.ServletException { - - final javax.servlet.jsp.PageContext pageContext; - javax.servlet.http.HttpSession session = null; - final javax.servlet.ServletContext application; - final javax.servlet.ServletConfig config; - javax.servlet.jsp.JspWriter out = null; - final java.lang.Object page = this; - javax.servlet.jsp.JspWriter _jspx_out = null; - javax.servlet.jsp.PageContext _jspx_page_context = null; - - - try { - response.setContentType("text/html"); - pageContext = _jspxFactory.getPageContext(this, request, response, - null, true, 8192, true); - _jspx_page_context = pageContext; - application = pageContext.getServletContext(); - config = pageContext.getServletConfig(); - session = pageContext.getSession(); - out = pageContext.getOut(); - _jspx_out = out; - - out.write("\n"); - out.write("\t\t\n"); - out.write("
\n"); - out.write("\t
\n"); - out.write("\t\n"); - out.write("\t
\n"); - out.write("\t
\n"); - out.write("\n"); - out.write("\t
\n"); - out.write("
"); - } catch (java.lang.Throwable t) { - if (!(t instanceof javax.servlet.jsp.SkipPageException)){ - out = _jspx_out; - if (out != null && out.getBufferSize() != 0) - try { out.clearBuffer(); } catch (java.io.IOException e) {} - if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); - else throw new ServletException(t); - } - } finally { - _jspxFactory.releasePageContext(_jspx_page_context); - } - } -}