Latest Onedrive for Windows Setup

Total Page:16

File Type:pdf, Size:1020Kb

Latest Onedrive for Windows Setup DataONE Python Products unknown 2019-07-03 CONTENTS 1 Utilities (for end users) 3 1.1 DataONE Command Line Utilities and Examples............................3 1.2 DataONE ONEDrive...........................................3 1.3 DataONE Command Line Interface...................................3 2 Member Node (for Member Node partners)5 2.1 Generic Member Node (GMN).....................................5 3 Python Libraries (for software developers)7 3.1 DataONE Common Library for Python.................................7 3.2 DataONE Client Library for Python...................................7 3.3 DataONE Science Metadata Validator for Python............................7 3.4 DataONE Test Utilities..........................................7 3.5 DataONE Dev Tools...........................................8 3.6 DataONE CSW Harvester........................................8 4 Contents 9 4.1 DataONE Utilities / Examples......................................9 4.2 DataONE ONEDrive........................................... 25 4.3 DataONE Command Line Interface (CLI)................................ 57 4.4 Generic Member Node (GMN)..................................... 85 4.5 Indices and tables............................................ 161 4.6 DataONE Common Library for Python................................. 162 4.7 Indices and tables............................................ 246 4.8 DataONE Client Library for Python................................... 246 4.9 Indices and tables............................................ 284 4.10 DataONE Science Metadata library for Python............................. 284 4.11 Indices and tables............................................ 292 4.12 DataONE Test Utilities.......................................... 292 Python Module Index 317 Index 321 i ii DataONE Python Products DataONE provides a number of products implemented in Python and Java, as part of the Investigator Toolkit (ITK). Potential users of these products include software developers, Member Node partners and end users. Only the Python products are outlined in this document. For software developers, DataONE provides development libraries implemented in Python. These provide functional- ity commonly needed by projects that interact with the DataONE infrastructure. It is recommended that applications implemented in Python use the libraries instead of interacting directly with the infrastructure as this is likely to reduce the development effort. For Member Node partners, DataONE provides a Member Node (MN) implemented in Python, called Generic Member Node (GMN). Lastly, DataONE provides various tools intended for end users, also implemented in Python. These include ONEDrive and the DataONE Command Line Client. CONTENTS 1 DataONE Python Products 2 CONTENTS CHAPTER ONE UTILITIES (FOR END USERS) 1.1 DataONE Command Line Utilities and Examples The DataONE Utilities / Examples package contains command line utilities for interacting with the DataONE infras- tructure. The utilities are implemented using the DataONE Common and Client libraries for Python. Effort has been put into keeping the implementations clear and easy to read, allowing the utilities to also serve as examples on how to use the DataONE Python libraries. After setup, all the utilities will be in the search path for the shell, so can be started from any directory. If using a virtual environment, the virtual environment must be active for the commands to work. 1.2 DataONE ONEDrive DataONE ONEDrive enables DataONE objects stored in Zotero citation manager libraries to be accessed like regular files on Windows, Mac OS X and Linux systems. This allows users to open remote DataONE objects locally and work with them as if they reside on the user’s computer. For instance, a spread sheet that is stored on a Member Node can be opened directly in Excel. DataONE objects can be added to a Zotero library via the ONEMercury search tool. Objects can also be added in all the other ways that Zotero supports. ONEDrive connects to a Zotero library and makes all DataONE objects within the library accessible as regular files. Zotero collections are represented as folders in the ONEDrive filesystem. 1.3 DataONE Command Line Interface The DataONE Command Line Interface (CLI) enables operations to be performed against the DataONE infrastructure from the command line. Supported operations include creating and retrieving DataONE objects, searching, updating access control rules and retrieving statistics. 3 DataONE Python Products 4 Chapter 1. Utilities (for end users) CHAPTER TWO MEMBER NODE (FOR MEMBER NODE PARTNERS) 2.1 Generic Member Node (GMN) The Generic Member Node (GMN) is a DataONE Member Node MN). It provides an implementation of MN APIs and can be used by organizations to expose their science data to DataONE if they do not wish to create their own, native MN. GMN can be used as a standalone MN or it can be used for exposing data that is already available on the web, to DataONE. When used in this way, GMN provides a DataONE compatible interface to existing data and does not store the data. GMN can also be used as a workbone or reference for a 3rd party MN implementation. If an organization wishes to donate storage space to DataONE, GMN can be set up as a replication target. 5 DataONE Python Products 6 Chapter 2. Member Node (for Member Node partners) CHAPTER THREE PYTHON LIBRARIES (FOR SOFTWARE DEVELOPERS) 3.1 DataONE Common Library for Python The DataONE Common Library for Python is a component of the DataONE Investigator Toolkit (ITK). It forms the foundation on which higher level components in the DataONE Python stack are built. It provides functionality commonly needed by clients, servers and other applications that interact with the DataONE infrastructure, including: • Serializing, deserializing, validating and type conversions for the DataONE XML types • Parsing and generating X.509 v3 certificates with DataONE extension • Parsing and generating OAI-ORE Resource Maps as used by DataONE • Utilities for working with XML documents, URLs, date-times, etc, in the context of DataONE 3.2 DataONE Client Library for Python The DataONE Client Library for Python works together with the DataONE Common Library for Python to provide functionality commonly needed by client software that connects to DataONE nodes. The main functionality provided by this library is a complete set of wrappers for all DataONE API methods. There are many details related to interacting with the DataONE API, such as creating MIME multipart messages, encoding parameters into URLs and handling Unicode. The wrappers hide these details, allowing the developer to communicate with nodes by calling native Python methods which take and return native Python objects. The wrappers also convert any errors received from the nodes into native exceptions, enabling clients to use Python’s concise exception handling system to handle errors. 3.3 DataONE Science Metadata Validator for Python The DataONE Science Metadata library for Python is a component of the DataONE Investigator Toolkit (ITK). It currently provides schema validation of DataONE Science Metadata XML documents. 3.4 DataONE Test Utilities The DataONE Test Utilities package contains various utilities for testing DataONE infrastructure components and clients. These include the Instance Generator, used for creating randomized System Metadata documents, and the Stress Tester, used for stress testing of Member Node implementations. The stress_tester can create many concurrent 7 DataONE Python Products connections to a Member Node and simultaneously create any number of randomly generated objects while running queries and object retrievals. There are also various Utilities. 3.5 DataONE Dev Tools 3.6 DataONE CSW Harvester 8 Chapter 3. Python Libraries (for software developers) CHAPTER FOUR CONTENTS 4.1 DataONE Utilities / Examples The DataONE Utilities / Examples package contains command line utilities for interacting with the DataONE infras- tructure. The utilities are implemented using the DataONE Common and Client libraries for Python. Effort has been put into keeping the implementations clear and easy to read, allowing the utilities to also serve as examples on how to use the DataONE Python libraries. After setup, all the utilities will be in the search path for the shell, so can be started from any directory. If using a virtual environment, the virtual environment must be active for the commands to work. Contents: 4.1.1 API d1_util package DataONE Utilities and Examples. A collection of scripts intended to be useful both as command line utilities and as examples on how to interact with the DataONE infrastructure via the DataONE Python stack. Although this directory is not a package, this __init__.py file is required for pytest to be able to reach test directories below this directory. Subpackages d1_util.tests package Submodules d1_util.tests.test_cert module Submodules d1_util.cert_check_cn module Submit a PEM (Base64) encoded X.509 v3 certificate to a CN for validation. 9 DataONE Python Products This is an example on how to use the DataONE Client and Common libraries for Python. It shows how to: • Submit a PEM (Base64) encoded X.509 v3 certificate, optionally containing a DataONE SubjectInfo extension, to a CN to check if it passes validation and to determine which DataONE subjects are authenticated by it. Example $ cert-check-cn –cert-pub /tmp/x509up_u1000 Notes: • Both the public and private key of the certificate are required. They may be in the same file, in which case only the --cert-pub
Recommended publications
  • Download File
    Annex 2: List of tested and analyzed data sharing tools (non-exhaustive) Below are the specifications of the tools surveyed, as to February 2015, with some updates from April 2016. The tools selected in the context of EU BON are available in the main text of the publication and are described in more details. This list is also available on the EU BON Helpdesk website, where it will be regularly updated as needed. Additional lists are available through the GBIF resources page, the DataONE software tools catalogue, the BioVel BiodiversityCatalogue and the BDTracker A.1 GBIF Integrated Publishing Toolkit (IPT) Main usage, purpose, selected examples The Integrated Publishing Toolkit is a free open source software tool written in Java which is used to publish and share biodiversity data sets and metadata through the GBIF network. Designed for interoperability, it enables the publishing of content in databases or text files using open standards, namely, the Darwin Core and the Ecological Metadata Language. It also provides a 'one-click' service to convert data set metadata into a draft data paper manuscript for submission to a peer-reviewed journal. Currently, the IPT supports three core types of data: checklists, occurrence datasets and sample based data (plus datasets at metadata level only). The IPT is a community-driven tool. Core development happens at the GBIF Secretariat but the coding, documentation, and internationalization are a community effort. New versions incorporate the feedback from the people who actually use the IPT. In this way, users can help get the features they want by becoming involved. The user interface of the IPT has so far been translated into six languages: English, French, Spanish, Traditional Chinese, Brazilian Portuguese, Japanese (Robertson et al, 2014).
    [Show full text]
  • Dataone Operations Documentation Release 2.0.1
    DataONE Operations Documentation Release 2.0.1 DataONE Jul 01, 2020 Contents 1 Contents 3 1.1 Project Resources............................................3 1.2 Member Nodes Resources........................................ 23 1.3 Coordinating Nodes........................................... 61 1.4 Development............................................... 77 1.5 DataONE Environments......................................... 81 1.6 Glossary................................................. 82 2 Indices and Tables 87 Index 89 i ii DataONE Operations Documentation, Release 2.0.1 Operations documentation for the DataONE project and deployed infrastructure. Contents 1 DataONE Operations Documentation, Release 2.0.1 2 Contents CHAPTER 1 Contents 1.1 Project Resources 1.1.1 Communications Real Time DataONE uses Slack for messaging between project participants. Anyone may join the DataONE Slack organization by requesting an invite at: https://slack.dataone.org/ Video Conferencing DatONE uses Zoom for video conferencing within the project and for webinars. Project participants needing Zoom for project purposes should contact support @ dataone.org. Discussion Lists DataONE uses Google Groups for email list management. The DataONE.org Google Groups are managed as a dataone.org subdomain of nceas.ucsb.edu and includes the following lists: 3 DataONE Operations Documentation, Release 2.0.1 Address Description [email protected] For contacting administrators of the DataONE infrastructure. [email protected] A voluntary participation mailing list for disseminating information to the community with interest in DataONE. [email protected] Internal communications for the DataONE core development team. [email protected] Member Node forum, for discussion related to Member Nodes and dissem- inating information to DataONE Member Node operators. [email protected] General development related discussion. [email protected] Private list for the DataONE User Group Committee members.
    [Show full text]
  • JSON Application Programming Interface for Discrete Event Simulation Data Exchange
    JSON Application Programming Interface for Discrete Event Simulation data exchange Ioannis Papagiannopoulos Enterprise Research Centre Faculty of Science and Engineering Design and Manufacturing Technology University of Limerick Submitted to the University of Limerick for the degree of Master of Engineering 2015 1. Supervisor: Prof. Cathal Heavey Enterprise Research Centre University of Limerick Ireland ii Abstract This research is conducted as part of a project that has the overall aim to develop an open source discrete event simulation (DES) platform that is expandable, and modular aiming to support the use of DES at multi-levels of manufacturing com- panies. The current work focuses on DES data exchange within this platform. The goal of this thesis is to develop a DES exchange interface between three different modules: (i) ManPy an open source discrete event simulation engine developed in Python on the SimPy library; (ii) A Knowledge Extraction (KE) tool used to populate the ManPy simulation engine from shop-floor data stored within an Enterprise Requirements Planning (ERP) or a Manufacturing Execution System (MES) to allow the potential for real-time simulation. The development of the tool is based on R scripting language, and different Python libraries; (iii) A Graphical User Interface (GUI) developed in JavaScript used to provide an interface in a similar manner to Commercial off-the-shelf (COTS) DES tools. In the literature review the main standards that could be used are reviewed. Based on this review and the requirements above, the data exchange format standard JavaScript Object Notation (JSON) was selected. The proposed solution accom- plishes interoperability between different modules using an open source, expand- able, and easy to adopt and maintain, in an all inclusive JSON file.
    [Show full text]
  • Panel Discussion Presentation: "Dataone: Facilitating Escience Through Collaboration"
    University of Massachusetts Medical School eScholarship@UMMS University of Massachusetts and New England Area Librarian e-Science Symposium 2011 e-Science Symposium Apr 6th, 12:00 AM - 11:15 AM Panel Discussion presentation: "DataONE: Facilitating eScience through Collaboration" Suzie Allard University of Tennessee Follow this and additional works at: https://escholarship.umassmed.edu/escience_symposium Part of the Library and Information Science Commons This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License. Repository Citation Allard, S. (2011). Panel Discussion presentation: "DataONE: Facilitating eScience through Collaboration". University of Massachusetts and New England Area Librarian e-Science Symposium. https://doi.org/ 10.13028/9dck-z235. Retrieved from https://escholarship.umassmed.edu/escience_symposium/2011/ program/9 Creative Commons License This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License. This material is brought to you by eScholarship@UMMS. It has been accepted for inclusion in University of Massachusetts and New England Area Librarian e-Science Symposium by an authorized administrator of eScholarship@UMMS. For more information, please contact [email protected]. DataONE: Facilitating eScience through Collaboration Suzie Allard, Ph.D. University of Tennessee Presented at the Third University of Massachusetts & New England Area Librarian eScience Symposium 6 April 2011 A prominent feature of e-Science is the generation of immense data sets that can be rapidly disseminated to other researchers via the internet. -- Donna Kafel, MLIS Project Coordinator for the New England e-Science Portal for Librarians “e-Science and Its Relevance for Research Libraries” Environmental Science Challenges 3 Vision: Provide universal access to data about life on earth and the environment that sustains it.
    [Show full text]
  • Standardisation and Organisation of Clinical Data and Disease Mechanisms for Comparison Over Heterogeneous Systems in the Context of Neurodegenerative Diseases
    PhD-FSTC-2018-51 The Faculty of Sciences, Technology and Communication DISSERTATION Defence held on 03/07/2018 in Luxembourg to obtain the degree of DOCTEUR DE L’UNIVERSITÉ DU LUXEMBOURG EN BIOLOGIE ​ by AISHWARYA ALEX NAMASIVAYAM Born on 12 November 1987 in Bharananganam (India) STANDARDISATION AND ORGANISATION OF CLINICAL DATA AND DISEASE MECHANISMS FOR COMPARISON OVER HETEROGENEOUS SYSTEMS IN THE CONTEXT OF NEURODEGENERATIVE DISEASES Dissertation defence committee Prof. Dr Reinhard Schneider, dissertation supervisor ​ ​ Professor, Université du Luxembourg Dr Inna Kuperstein Researcher and scientific coordinator, Institut Curie, Paris Dr Enrico Glaab, Chairman ​ ​ Senior research scientist, Université du Luxembourg Prof. Dr Karsten Hiller Professor, Technische Universität Braunschweig Dr Marek Ostaszewski, Vice Chairman ​ ​ Research associate, Université du Luxembourg Affidavit I hereby confirm that the PhD thesis entitled "Standardisation and Organisation of Clinical Data and Disease Mechanisms for Comparison Over Heterogeneous Systems in the Context of Neurodegenerative Diseases" has been written independently and without any other sources than cited. Luxembourg, July 26, 2018 Aishwarya Alex Namasivayam i ii Acknowledgements First and foremost, I would like to thank Dr. Reinhard Schneider, my supervisor for giving me the opportunity and support to pursue my PhD in the group. Biocore is a very wonderful working environment. I couldnt ask for a better boss! I would like to thank all my colleagues for their support and making this a memorable journey. Special thanks to Marek, Venkata, Wei and Piotr for their valuable suggestions and feedbacks. My sincere gratitude to Dr. Jochen Schneider and Dr. Karsten Hiller for agreeing to be part of the CET committee and the constructive criticism during the PhD.
    [Show full text]
  • Introduction to Apis
    Reading data directly into your analysis script: Introduction to APIs TALK ABSTRACT: Do you write scripts to analyze your data? An Application Programming Interface (API) can provide direct access to data and metadata in online repositories, saving you time and increasing the reproducibility of your analyses. This talk will provide an introduction in R to using APIs from several repositories of ecological data. RECORDING SCRIPT: Hello, my name is Erica Krimmel and this career central talk will provide an introduction to APIs, including how they can be used for reading data directly into an analysis script. RECORDING SCRIPT: This talk is brought to you by the ESA Data Help Desk, a collaboration between The Arctic Data Center, the Consortium of Universities for the Advancement of Hydrologic Science (CUAHSI), DataONE, the Environmental Data Initiative (EDI), the Global Biodiversity Information Facility (GBIF), iDigBio, NEON, and Neotoma. You can find out more about the Data Help Desk and see a full list of our activities at the 2020 ESA Career Central by following the bit.ly link on this slide. You can also find us on Twitter this week using the hashtag #DataHelpDesk. What is an API? RECORDING SCRIPT: Let’s begin with the basics. An API is an application programming interface, which is essentially a way for an organization to allow external users to interact with their systems. A really common scenario is when an organization, like Google, has a system, like Google Maps, that lots of external users, like this AllTrails app, want to use. It would be risky to provide external users with direct access to the system and so the organization makes access available via an API.
    [Show full text]
  • Architecture of a P2P Distributed Adaptive Directory
    Architecture of a P2P Distributed Adaptive Directory Gennaro Cordasco Vittorio Scarano Cristiano Vitolo [email protected] [email protected] [email protected] Dipartimento di Informatica e Applicazioni “R.M.Capocelli” Universit`a di Salerno, 84081 Baronissi (SA) – Italy Categories and Subject Descriptors C.2.4 [Distributed Systems]: Distributed Applications; H.3.4 [Systems and Software]: Distributed Systems; H.5.4 [Hypertext/Hypermedia]: Navigation General Terms Design Keywords Adaptivity, Bookmark sharing, Peer to Peer 1. INTRODUCTION Bookmarks are, nowadays, an important aid to navigation since they represent an easy way to reduce the cognitive load of man- aging and typing URLs. All the browsers have always provided, since the very beginning of the WWW, friendly ways of managing bookmarks. In this paper we deal with the problem of enriching this Figure 1: The diagram of the architecture of our system. supportive framework for bookmarks (as provided by the browsers) The middle layer, named DAD, exploits the bottom level to ob- by adding collaboration and (group) adaptation with a P2P system. tain information about bookmarks and users, providing a collabora- In this paper, we describe a system that offers a distributed, co- tive and adaptive system to manage bookmarks. Shared bookmarks operative and adaptive environment for bookmark sharing. DAD are placed in an ontology that is common to all the peers and the (Distributed Adaptive Directory) offers an adaptive environment adaptivity provided by the system is based on a modified applica- since it provides suggestions about the navigation based on (a) the tion of the Kleinberg algorithm to evaluate hub and authorities on a bookmarks, (b) the feedback implicitly provided by users and (c) web structure.
    [Show full text]
  • Dogear: Social Bookmarking in the Enterprise David R Millen, Jonathan Feinberg, Bernard Kerr One Rogers Street
    CHI 2006 Proceedings • Social Computing 1 April 22-27, 2006 • Montréal, Québec, Canada Dogear: Social Bookmarking in the Enterprise David R Millen, Jonathan Feinberg, Bernard Kerr One Rogers Street. Cambridge, MA 02142 {david_r_millen, jdf, bernard_kerr}@us.ibm.com +1-617-693-7490 ABSTRACT Perhaps the most familiar approach to re-finding informa- In this paper we describe a social bookmarking service de- tion on the web has been the use of personal bookmarks, as signed for a large enterprise. We discuss design principles supported by various web browsers. For example, the addressing online identity, privacy, information discovery Mozilla browser supports the creation of collections of (including search and pivot browsing), and service extensi- URLs, which can be annotated using keywords or free-form bility based on a web-friendly architectural style. In addi- text, and then sorted on a variety of dimensions (e.g., time tion we describe the key design features of our implementa- last visited, keyword, location). An early study of book- tion. We provide the results of an eight week field trial of mark use showed that people created bookmarks based on this enterprise social bookmarking service, including a de- the quality of and personal interest in the content, high fre- scription of user activities, based on log file analysis. We quency of current use, and a sense of potential for future share the results of a user survey focused on the benefits of use [1]. Furthermore, the number of bookmarks contained the service. The feedback from the user trial, comprising in an individual collection grew steadily and roughly line- survey results, log file analysis and informal communica- arly, and the use of folders to categorize bookmarks in- tions, is quite positive and suggests several promising en- creased as the size of the collection increased.
    [Show full text]
  • Understanding
    Implementing UBL Mark Crawford UBL Vice Chair XML 2003 9 December 2003 Why Are We Talking About UBL • UBL fulfils the promise of XML for business by defining a standard cross-industry vocabulary • UBL is the ebXML missing link • UBL plus ebXML enables the next generation of eBusiness exchanges – Cheaper, easier, Internet-ready – Extends benefits of EDI to small businesses – Fits existing legal and trade concepts – Allows re-use of data • UBL can provide the XML payload for a wide variety of other web-based business frameworks Overview 1 What and Why of UBL 2 The Design of UBL ebXML Core Components Naming and Design Rules Document Engineering Customizing UBL 3 The Content of UBL 1.0 What is Normative What is non-Normative Availability 4 Making UBL Happen 5 UBL Phase 2 6 Summary The promise of XML for e-business • Plug ‘n’ play electronic commerce – Spontaneous trade – No custom programming • Ubiquity on the Internet – Dirt-cheap tools – Complete platform independence – Enable true global market availability • Enable universal interoperability – Abandon existing EDI systems – Handle both "publication" document types and "transactional" documents Goals for Successful eBusiness Services • Web-enable existing fax- and paper-based business practices • Allow businesses to upgrade at their own pace • Preserve the existing investment in electronic business exchanges • Integrate small and medium-size businesses into existing electronic data exchange-based supply chains The standardization of XML business documents is the easiest way to accomplish
    [Show full text]
  • Χchek RC2 User Manual
    χChek RC2 User Manual Documentation maintained by Jocelyn Simmonds and Arie Gurfinkel [email protected] Department of Computer Science 40 St George Street University of Toronto Toronto, Ontario, Canada M5S 2E4 This document is part of the distribution package of the χChek model checker. Copyright c 2002 – 2007 by University of Toronto Contents 1 Introduction 2 2 Installation 4 3 Input 5 3.1 Models .......................................... ........ 5 3.1.1 SMV ........................................... .... 5 3.1.2 GCLang........................................ ...... 5 3.1.3 XML ........................................... .... 9 3.2 Algebras........................................ .......... 11 3.2.1 Availablealgebras .. .... .... ... .... .... .... .... ........... 11 3.2.2 Encodinganalgebra ............................. .......... 12 3.3 Properties ...................................... ........... 14 4 Guide to the XChek User Interface 16 4.1 Loadingamodel ................................... .......... 17 4.1.1 SMVandGCLangmodels .. .... ... .... .... .... .... ... ........ 18 4.1.2 XMLmodels ..................................... ...... 20 4.2 CTLHistoryfiles .................................. ........... 20 4.3 Counterexamples ................................. ............ 21 4.4 Preferences ..................................... ........... 23 5 Tutorial 27 5.1 ModelChecking................................... ........... 27 5.2 VacuityDetection................................ ............. 29 5.3 QueryChecking..................................
    [Show full text]
  • !! #! " $ !" XML Document Processing: Theory and Practice
    ïôU:žK‡öUÖæÙ XML Document Processing: Theory and Practice (Course Number: 725 U3420) Fall 2008 Place and Time Room 309 in Common Courses Building, Wednesday 14:30 – 17:20. Course Web Site http://www.iis.sinica.edu.tw/~trc/public/courses/Fall2008/ Instructor Š•^ (-.vb Ç Ñxv@ ová) Tyng–Ruey Chuang (Associate Research Fellow, Institute of Information Science, Academia Sinica) E–mail: [email protected], Website: http://www.iis.sinica.edu.tw/~trc/ Office hours: Monday 4:50 – 6:40 pm at Room 716 in Management Building I. Office phone numbers: 02-3366-1200 ext. 20 (Monday 4:50 – 6:40 pm only), 02-2788-3799 ext. 1608 (Academia Sinica). Teaching Assistant 5=† Chin-Lung Chang E–mail: [email protected], Tel: (02) 2788 3799 ext. 1663 (Academia Sinica). Schedule (Part 1) 09/17 Document markup languages; HTML and SVG examples; Why XML? (Part 1) 09/24 XML Recommendation — DTD (Document Type Definition); Case study: RSS 0.91, QAML, XBEL. (Part 1) 10/01 XML Recommendation — language code, character set, text encoding; XML Namespace. (Part 1) 10/08 (Guest Lecturer: Yi-Hong Chang 555ÝÝÝ;;;) CSS (Cascading Style Sheets). (Part 2) 10/15 XPath (XML Path Language). (Part 2) 10/22 XSLT (Extensible Stylesheet Language Transformations). (Part 2) 10/29 DOM (Document Object Model). (Part 2) 11/05 XML in Web programming: Server-side/client-side XSLT, client-side ECMAscripting, etc. (Part 3) 11/12 XML DTD revisited; Case study: Ruby, XBEL, XHTML Modulation. (Part 3) 11/19 (Guest Lecturer: Chin-Lung Chang 555===†††) XML Schema — Structures & Datatypes.
    [Show full text]
  • Soatopicindex - QVIZ
    SOATopicIndex - QVIZ SOATopicIndex From QVIZ Jump to: navigation, search State Of The Art Topic Index (SOTA) Partners should add topics that are relevant also to their work and to also provide other partners with insights or understanding of project technology, standards etc. ● Cross Reference of SOTA documents (Word, powerpoint, etc) SOTA Attachment Cross Reference Contents ● 1 General resources ● 2 Archive and content organization ● 3 Technologies relevant to QVIZ ● 4 Knowledge related (Ontology, thesauri,etc) or standards [edit] General resources 1. Relvant State-of-the-Art Reports 2. Support and Networking 1. Mailing Lists 3. Relevant projects 1. Electronic library project 2. Relevant Projects 4. Issue and Bug Tracking Software Archive and content organization [edit] 1. Archive overview provenance principle 2. Inner organization of Fonds 3. Record Keeping Concept 4. Partner archive systems ( more) http://qviz.humlab.umu.se/index.php/SOATopicIndex (1 of 5)2006-09-29 08:49:10 SOATopicIndex - QVIZ 1. NAE System Description 2. SVAR and National Archives System Description 3. Vision of Britain System Description 4. Comparison of admin unit issues across partners systems 5. Archive features - QVIZ 1. Trackback 6. Archive Standards Technologies relevant to QVIZ [edit] 1. Image annotation to support user generated Thematic maps 2. Web Tools: Screen Capture 3. Prominent digital repositories Technologies and Digital Archive Technologies 1. See also Digital Object Metadata 4. Semantic repositories and other basis repository techologies (also semantic digital or semantic e-Libraries, etc) 5. Semantic web services (SWS) and Service oriented architecture (SOA) 6. Access Stategies 7. Workflow Technologies (includes BEPL,etc related tools) 8. Relevant social software (mainly to point out relevant features) 1.
    [Show full text]