Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.142.55.180
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
elibrary /
lib /
oaipmh /
Delete
Unzip
Name
Size
Permission
Date
Action
COPYRIGHT.txt
752
B
-rw-rw-rw-
2020-02-14 07:54
ands_rifcs.php
11.35
KB
-rw-rw-rw-
2020-02-14 07:54
ands_tpa.php
15.01
KB
-rw-rw-rw-
2020-02-14 07:54
getrecord.php
2.39
KB
-rw-rw-rw-
2020-02-14 07:54
identify.php
4.83
KB
-rw-rw-rw-
2020-02-14 07:54
index.php
7.04
KB
-rw-rw-rw-
2020-02-14 07:54
listmetadataformats.php
1.79
KB
-rw-rw-rw-
2020-02-14 07:54
listrecords.php
5.35
KB
-rw-rw-rw-
2020-02-14 07:54
listsets.php
706
B
-rw-rw-rw-
2020-02-14 07:54
oaidp-config.php
12.79
KB
-rw-rw-rw-
2020-02-14 07:54
oaidp-util.php
9.74
KB
-rw-rw-rw-
2020-02-14 07:54
record_dc.php
7.68
KB
-rw-rw-rw-
2020-02-14 07:54
record_dc.php~
6.39
KB
-rw-rw-rw-
2020-02-14 07:54
record_rif.php
1.35
KB
-rw-rw-rw-
2020-02-14 07:54
xml_creater.php
10.92
KB
-rw-rw-rw-
2020-02-14 07:54
Save
Rename
<?php /** * \file * \brief Response to Verb ListMetadataFormats * * The information of supported metadata formats is saved in database and retrieved by calling function <B>idFormatQuery</B>. * \sa idFormatQuery */ /** * Add a metadata format node to an ANDS_Response_XML * \param &$outputObj * type: ANDS_Response_XML. The ANDS_Response_XML object for output. * \param $key * type string. The name of new node. * \param $val * type: array. Values accessable through keywords 'schema' and 'metadataNamespace'. * */ function addMetedataFormat(&$outputObj,$key,$val) { $cmf = $outputObj->add2_verbNode("metadataFormat"); $outputObj->addChild($cmf,'metadataPrefix',$key); $outputObj->addChild($cmf,'schema',$val['schema']); $outputObj->addChild($cmf,'metadataNamespace',$val['metadataNamespace']); } if (isset($args['identifier'])) { $identifier = $args['identifier']; $query = idFormatQuery($identifier); $res = $db->query($query); if ($res==false) { if (SHOW_QUERY_ERROR) { echo __FILE__.','.__LINE__."<br />"; echo "Query: $query<br />\n"; die($db->errorInfo()); } else { $errors[] = oai_error('idDoesNotExist','', $identifier); } } else { $record = $res->fetch(); if($record===false) { $errors[] = oai_error('idDoesNotExist', '', $identifier); } else { $mf = explode(",",$record[$SQL['metadataPrefix']]); } } } //break and clean up on error if (!empty($errors)) oai_exit(); $outputObj = new ANDS_Response_XML($args); if (isset($mf)) { foreach($mf as $key) { $val = $METADATAFORMATS[$key]; addMetedataFormat($outputObj,$key, $val); } } elseif (is_array($METADATAFORMATS)) { foreach($METADATAFORMATS as $key=>$val) { addMetedataFormat($outputObj,$key, $val); } } else { // a very unlikely event $errors[] = oai_error('noMetadataFormats'); oai_exit(); } ?>