Infrastructure-Agnostic Hypertext

Total Page:16

File Type:pdf, Size:1020Kb

Infrastructure-Agnostic Hypertext Infrastructure-Agnostic Hypertext Jakob Voß [email protected] Verbundzentrale des GBV (VZG) ABSTRACT OUTLINE This paper presents a novel and formal interpretation of the orig- The architecture of an infrastructure-agnostic hypertext system inal vision of hypertext: infrastructure-agnostic hypertext is inde- consists of four basic elements and their relations: pendent from specific standards such as data formats and network protocols. Its model is illustrated with examples and references to 1) documents include all finite, digital objects existing technologies that allow for implementation and integra- 2) document identifiers reference individual documents tion in current information infrastructures such as the Internet. 3) content locators reference segments within documents CCS CONCEPTS 4) edit list combine parts of existing document into new ones Instances of each element can further be grouped by data formats. • Information systems → Hypertext languages; Document rep- The elements and their relations are each described in the following resentation; • Human-centered computing → Hypertext / hyper- sections after a formal definition. media. Formal model KEYWORDS A hypertext system is a tuple hD, I,C, E, S, R,U ,T, Ai where: Xanadu, hypermedia, transclusion, documents D is a set of documents I is a set of document identifiers with I ⊂ D INTRODUCTION C is a set of content locators with C ⊂ D E is a set of edit lists with E ⊂ D The original vision of hypertext as proposed by Ted Nelson [14, 22] S is a set of document segments with S ⊂ C × D still waits to be realized. His influence is visible through people who, influenced by his works, shaped the computer world of today, Document sets can each be grouped into (possibly overlapping) last but not least the Web [20].1 Nelson’s core idea, a network of data formats. The hypertext system further consists of: visibly connected documents called Xanadu, goes beyond the Web R is a retrieval function with R : I → D in several aspects. In particular it promises non-breaking links and U is a segments usage function U : E → P(S) it uses links to build documents (with versions, quotations, over- T is a transclusion function with T : S → D lay markup...) instead of using documents to build links [18]. The A is an hypertext assemble function with A: E → D concept of hypertext or more general ‘hypermedia’ has also been used differently from Nelson, both in the literary community (that A practical hypertext system needs executable implementations of focused on simple links), and in the hypertext research community the functions R,U ,T, A and a method to tell whether a given com- arXiv:1907.00259v1 [cs.DL] 29 Jun 2019 (that focused on tools) [30]. bination hc,di ∈ C × D is part of S to allow its use with T . This paper tries to get back to the original vision of hypertext by specification of a formal model that puts transcludeable documents Documents at its heart. Apart from Nelson’s works [14–17, 19, 22] this paper draws from research on data format analysis [11, 28], content-based A document is a finite sequence of bytes. This definition roughly identifiers [12, 26], existing transclusion technologies for the Web equates with the definition of data as documents [8, 29]. The no- [1, 2, 6, 25] and hypertext systems beyond link-based models [3]. tion of hypertext used in this paper therefore subsumes all kinds of hyperdata (datasets that transclude other datasets). Documents are Limited by the state of document processing tools and by sub- static by content [24] but they may be processed dynamically. Doc- mission guidelines, this paper is not a demo of hypertext.2 On a uments are grouped by non-disjoint data formats such as UTF-8, closer look however there are traces of transclusion links that have CSV, SVG, PDF and many many more. been processed to this paper. See figure 2 for an overview and https://github.com/jakobib/hypertext2019 for details and sources. Document identifiers 1Tim Berners-Lee references Nelson both in the proposal that led to the Web [4, 15] and at the early W3C homepage http://www.w3.org/Xanadu.html (1992/93) [17]. A document identifier is a relatively short document that refers to 2See [5] for a good example of what an actual demo paper might look like. another document. Identifiers have properties depending on the 2019-07-02 01:06. Page 1 of 1–4. Jakob Voß particular identifier system they belong to [29, pp. 59-71]. Identi- Data formats fiers in infrastructure-agnostic hypertext must first be unambigu- ous (an identifier must reference only one document), persistent (the An often neglected fundamental property of digital documents is reference must not change over time), and actionable (hypertext their grounding in data formats. A data format is a set of docu- systems should provide methods to retrieve documents via the re- ments that share a common data model, also known as their docu- trieval function R). Properties that should be fulfilled at least to ment model, and a common serialization (see fig. 1). Models define some degree include uniqueness (a document should not be refer- elements of a document in terms of sets, strings, tuples, graphs or enced by too many identifiers), performance (identifiers should be similar structures. These structures are mathematically rigorous in easy to compute and to validate), and distributedness (identifiers theory [24] but more based on descriptive patterns in practice [28]. should not require a central institution). The actual choice of an The meaning of these elements (for instance “words”, “sentences”, identifier system depends on weighting of specific requirements. A and “paragraphs” in a document model) is based on ideas that we promising choice is the application of content-based identifiers as at least assume to be consistent among different people. proposed at least once in the context of hypertext systems [12]. idea model format serialization Content locators 01101... A content locator is a document that can be used to select parts of another document via transclusion. Nelsons refers to these locators Figure 1: levels of data modeling as “reference pointers” [19], exemplified with spans of bytes or char- acters in a document. Content locators depend on data formats and Data modeling, the act of mapping between ideas, models, and for- document models. For instance locator languages XPath, XPointer, mats is an unsolved problem because ideas can be expressed in and XQuery act on XML documents, which can be serialized in dif- many models and models can be interpreted in many ways [11]. ferent forms (therefore it makes no sense to locate parts of an XML Data models can further be expressed in multiple formats although document with positions of bytes). Other locator languages apply these formats should fully be convertible between each other, at to tabular data (SQL, RFC 7111), to graphs (SPARQL, GraphQL), or least in theory.4 Formats can further be serialized in multiple forms, to two-dimensional images (IIIF), to name a few. Whether and how which for their part are based on other data models. For instance the partsofa document can be selectedwith acontent locatorlanguage RDF model can be serialized in RDF/XML format which is based on depends on which data format the document is interpreted in. For the XML model. XML can be serialized XML syntax which is based instance an SVG image file can be processed at least as image, as on the Unicode model, and Unicode can be serialized in UTF-8. At XML document, or as Unicode string, each with its own methods the end of these chains of abstraction eventually all documents can of locating document segments. Content locators can be extended be serialized as sequence of bytes. Serializations are seldom sim- to all executable programs that reproducibly process some docu- ple mappings as most serialization formats allow insignificant vari- ments into other documents. This generalization can be useful to ances such as additional whitespace. To check whether a data ob- track data processing pipelines as hyperdata such as discussed for ject conforms to a serialization, formats are often described with executable papers and reproducible research. Restriction of content a formal grammar that can also give insights about the format’s locators to less powerful query languages might make sense from model.5 Infrastructure-agnostic hypertext does not impose any lim- a security point of view. its on possible data formats and their models. Edit Lists EXAMPLE An edit list is a document that describes how to construct a new doc- The following example may illustrate the formal model and its el- ument from parts of other documents. Edit lists are known as Edit ements. Let hD, I,C, E, S, R,U ,T, Ai be a hypertext system with D Decision Lists in Xanadu and the idea was borrowed from film mak- the set of printable ASCII character strings and some documents: ing [15]. Simplified forms of edit lists are implemented in version d1 = ‘My name is Alice’ control systems and in collaborative tools such as wikis and real- d2 = ‘Alice’ time editing. Hypertext edit lists go beyond this one-dimensional c1 = ‘char=11,15’ case by support of multiple source documents and by more flex- d3 = ‘Hello, !’ ible methods of document processing in addition to basic opera- c2 = ‘char=7’ tions such as insert, delete, and replace. The actual processing steps d4 = ‘Hello, Alice!’ tracked by an edit list depend on data formats of transcluded docu- ments. Just like content locators, edit lists could be extended to arbi- If c1 and c2 are read in content locator syntax as defined by = trary executable programs that implement the hypertext assemble RFC 5147 so that T (hc1,d1i) d2 then d4 can be constructed by function A for some subset of edit lists.
Recommended publications
  • The Origins of the Underline As Visual Representation of the Hyperlink on the Web: a Case Study in Skeuomorphism
    The Origins of the Underline as Visual Representation of the Hyperlink on the Web: A Case Study in Skeuomorphism The Harvard community has made this article openly available. Please share how this access benefits you. Your story matters Citation Romano, John J. 2016. The Origins of the Underline as Visual Representation of the Hyperlink on the Web: A Case Study in Skeuomorphism. Master's thesis, Harvard Extension School. Citable link http://nrs.harvard.edu/urn-3:HUL.InstRepos:33797379 Terms of Use This article was downloaded from Harvard University’s DASH repository, and is made available under the terms and conditions applicable to Other Posted Material, as set forth at http:// nrs.harvard.edu/urn-3:HUL.InstRepos:dash.current.terms-of- use#LAA The Origins of the Underline as Visual Representation of the Hyperlink on the Web: A Case Study in Skeuomorphism John J Romano A Thesis in the Field of Visual Arts for the Degree of Master of Liberal Arts in Extension Studies Harvard University November 2016 Abstract This thesis investigates the process by which the underline came to be used as the default signifier of hyperlinks on the World Wide Web. Created in 1990 by Tim Berners- Lee, the web quickly became the most used hypertext system in the world, and most browsers default to indicating hyperlinks with an underline. To answer the question of why the underline was chosen over competing demarcation techniques, the thesis applies the methods of history of technology and sociology of technology. Before the invention of the web, the underline–also known as the vinculum–was used in many contexts in writing systems; collecting entities together to form a whole and ascribing additional meaning to the content.
    [Show full text]
  • Approved DITA 2.0 Proposals
    DITA Technical Committee DITA 2.0 proposals DITA TC work product Page 1 of 189 Table of contents 1 Overview....................................................................................................................................................3 2 DITA 2.0: Stage two proposals.................................................................................................................. 3 2.1 Stage two: #08 <include> element.................................................................................................... 3 2.2 Stage two: #15 Relax specialization rules......................................................................................... 7 2.3 Stage two: #17 Make @outputclass universal...................................................................................9 2.4 Stage two: #18 Make audience, platform, product, otherprops into specializations........................12 2.5 Stage two: #27 Multimedia domain..................................................................................................16 2.6 Stage two: #29 Update bookmap.................................................................................................... 20 2.7 Stage two: #36 Remove deprecated elements and attributes.........................................................23 2.8 Stage two: #46: Remove @xtrf and @xtrc...................................................................................... 31 2.9 Stage 2: #73 Remove delayed conref domain.................................................................................36
    [Show full text]
  • XRI 2.0 FAQ 1 December 2005
    XRI 2.0 FAQ 1 December 2005 This document is a comprehensive FAQ on the XRI 2.0 suite of specifications, with a particular emphasis on the XRI Syntax 2.0 Committee Specification which was submitted for consideration as an OASIS Standard on November 14, 2005. 1 General..................................................................................... 3 1.1 What does the acronym XRI stand for? ................................................................3 1.2 What is the relationship of XRI to URI and IRI? ....................................................3 1.3 Why was XRI needed?..........................................................................................3 1.4 Who is involved in the XRI specification effort? ....................................................4 1.5 What is the XRI 2.0 specification suite? ................................................................4 1.6 Are there any intellectual property restrictions on XRI? ........................................4 2 Uses of XRI .............................................................................. 5 2.1 What things do XRIs identify? ...............................................................................5 2.2 What are some example uses of XRI?..................................................................5 2.3 What are some applications that use XRI? ...........................................................5 3 Features of XRI Syntax ........................................................... 6 3.1 What were some of the design requirements
    [Show full text]
  • Bibliography of Erik Wilde
    dretbiblio dretbiblio Erik Wilde's Bibliography References [1] AFIPS Fall Joint Computer Conference, San Francisco, California, December 1968. [2] Seventeenth IEEE Conference on Computer Communication Networks, Washington, D.C., 1978. [3] ACM SIGACT-SIGMOD Symposium on Principles of Database Systems, Los Angeles, Cal- ifornia, March 1982. ACM Press. [4] First Conference on Computer-Supported Cooperative Work, 1986. [5] 1987 ACM Conference on Hypertext, Chapel Hill, North Carolina, November 1987. ACM Press. [6] 18th IEEE International Symposium on Fault-Tolerant Computing, Tokyo, Japan, 1988. IEEE Computer Society Press. [7] Conference on Computer-Supported Cooperative Work, Portland, Oregon, 1988. ACM Press. [8] Conference on Office Information Systems, Palo Alto, California, March 1988. [9] 1989 ACM Conference on Hypertext, Pittsburgh, Pennsylvania, November 1989. ACM Press. [10] UNIX | The Legend Evolves. Summer 1990 UKUUG Conference, Buntingford, UK, 1990. UKUUG. [11] Fourth ACM Symposium on User Interface Software and Technology, Hilton Head, South Carolina, November 1991. [12] GLOBECOM'91 Conference, Phoenix, Arizona, 1991. IEEE Computer Society Press. [13] IEEE INFOCOM '91 Conference on Computer Communications, Bal Harbour, Florida, 1991. IEEE Computer Society Press. [14] IEEE International Conference on Communications, Denver, Colorado, June 1991. [15] International Workshop on CSCW, Berlin, Germany, April 1991. [16] Third ACM Conference on Hypertext, San Antonio, Texas, December 1991. ACM Press. [17] 11th Symposium on Reliable Distributed Systems, Houston, Texas, 1992. IEEE Computer Society Press. [18] 3rd Joint European Networking Conference, Innsbruck, Austria, May 1992. [19] Fourth ACM Conference on Hypertext, Milano, Italy, November 1992. ACM Press. [20] GLOBECOM'92 Conference, Orlando, Florida, December 1992. IEEE Computer Society Press. http://github.com/dret/biblio (August 29, 2018) 1 dretbiblio [21] IEEE INFOCOM '92 Conference on Computer Communications, Florence, Italy, 1992.
    [Show full text]
  • Hypertext Semiotics in the Commercialized Internet
    Hypertext Semiotics in the Commercialized Internet Moritz Neumüller Wien, Oktober 2001 DOKTORAT DER SOZIAL- UND WIRTSCHAFTSWISSENSCHAFTEN 1. Beurteiler: Univ. Prof. Dipl.-Ing. Dr. Wolfgang Panny, Institut für Informationsver- arbeitung und Informationswirtschaft der Wirtschaftsuniversität Wien, Abteilung für Angewandte Informatik. 2. Beurteiler: Univ. Prof. Dr. Herbert Hrachovec, Institut für Philosophie der Universität Wien. Betreuer: Gastprofessor Univ. Doz. Dipl.-Ing. Dr. Veith Risak Eingereicht am: Hypertext Semiotics in the Commercialized Internet Dissertation zur Erlangung des akademischen Grades eines Doktors der Sozial- und Wirtschaftswissenschaften an der Wirtschaftsuniversität Wien eingereicht bei 1. Beurteiler: Univ. Prof. Dr. Wolfgang Panny, Institut für Informationsverarbeitung und Informationswirtschaft der Wirtschaftsuniversität Wien, Abteilung für Angewandte Informatik 2. Beurteiler: Univ. Prof. Dr. Herbert Hrachovec, Institut für Philosophie der Universität Wien Betreuer: Gastprofessor Univ. Doz. Dipl.-Ing. Dr. Veith Risak Fachgebiet: Informationswirtschaft von MMag. Moritz Neumüller Wien, im Oktober 2001 Ich versichere: 1. daß ich die Dissertation selbständig verfaßt, andere als die angegebenen Quellen und Hilfsmittel nicht benutzt und mich auch sonst keiner unerlaubten Hilfe bedient habe. 2. daß ich diese Dissertation bisher weder im In- noch im Ausland (einer Beurteilerin / einem Beurteiler zur Begutachtung) in irgendeiner Form als Prüfungsarbeit vorgelegt habe. 3. daß dieses Exemplar mit der beurteilten Arbeit überein
    [Show full text]
  • Semantic Web and Services
    Where are we? Artificial Intelligence # Title 1 Introduction 2 Propositional Logic 3 Predicate Logic 4 Reasoning 5 Search Methods Semantic Web and 6 CommonKADS 7 Problem-Solving Methods 8 Planning Services 9 Software Agents 10 Rule Learning 11 Inductive Logic Programming 12 Formal Concept Analysis 13 Neural Networks 14 Semantic Web and Services © Copyright 2010 Dieter Fensel, Mick Kerrigan and Ioan Toma 1 2 Agenda • Semantic Web - Data • Motivation • Development of the Web • Internet • Web 1.0 • Web 2.0 • Limitations of the current Web • Technical Solution: URI, RDF, RDFS, OWL, SPARQL • Illustration by Larger Examples: KIM Browser Plugin, Disco Hyperdata Browser • Extensions: Linked Open Data • Semantic Web – Processes • Motivation • Technical Solution: Semantic Web Services, WSMO, WSML, SEE, WSMX SEMANTIC WEB - DATA • Illustration by Larger Examples: SWS Challenge, Virtual Travel Agency, WSMX at work • Extensions: Mobile Services, Intelligent Cars, Intelligent Electricity Meters • Summary • References 3 3 4 4 1 MOTIVATION DEVELOPMENT OF THE WEB 5 5 6 Development of the Web 1. Internet 2. Web 1.0 3. Web 2.0 INTERNET 7 8 2 Internet A brief summary of Internet evolution Age of eCommerce Mosaic Begins WWW • “The Internet is a global system of interconnected Internet Created 1995 Created 1993 Named 1989 computer networks that use the standard Internet and Goes Protocol Suite (TCP/IP) to serve billions of users TCP/IP TCP/IP Created 1984 ARPANET 1972 worldwide. It is a network of networks that consists of 1969 Hypertext millions of private
    [Show full text]
  • List of Different Digital Practices 3
    Categories of Digital Poetics Practices (from the Electronic Literature Collection) http://collection.eliterature.org/1/ (Electronic Literature Collection, Vol 1) http://collection.eliterature.org/2/ (Electronic Literature Collection, Vol 2) Ambient: Work that plays by itself, meant to evoke or engage intermittent attention, as a painting or scrolling feed would; in John Cayley’s words, “a dynamic linguistic wall- hanging.” Such work does not require or particularly invite a focused reading session. Kinetic (Animated): Kinetic work is composed with moving images and/or text but is rarely an actual animated cartoon. Transclusion, Mash-Up, or Appropriation: When the supply text for a piece is not composed by the authors, but rather collected or mined from online or print sources, it is appropriated. The result of appropriation may be a “mashup,” a website or other piece of digital media that uses content from more than one source in a new configuration. Audio: Any work with an audio component, including speech, music, or sound effects. CAVE: An immersive, shared virtual reality environment created using goggles and several pairs of projectors, each pair pointing to the wall of a small room. Chatterbot/Conversational Character: A chatterbot is a computer program designed to simulate a conversation with one or more human users, usually in text. Chatterbots sometimes seem to offer intelligent responses by matching keywords in input, using statistical methods, or building models of conversation topic and emotional state. Early systems such as Eliza and Parry demonstrated that simple programs could be effective in many ways. Chatterbots may also be referred to as talk bots, chat bots, simply “bots,” or chatterboxes.
    [Show full text]
  • Ted Nelson History of Computing
    History of Computing Douglas R. Dechow Daniele C. Struppa Editors Intertwingled The Work and Influence of Ted Nelson History of Computing Founding Editor Martin Campbell-Kelly, University of Warwick, Coventry, UK Series Editor Gerard Alberts, University of Amsterdam, Amsterdam, The Netherlands Advisory Board Jack Copeland, University of Canterbury, Christchurch, New Zealand Ulf Hashagen, Deutsches Museum, Munich, Germany John V. Tucker, Swansea University, Swansea, UK Jeffrey R. Yost, University of Minnesota, Minneapolis, USA The History of Computing series publishes high-quality books which address the history of computing, with an emphasis on the ‘externalist’ view of this history, more accessible to a wider audience. The series examines content and history from four main quadrants: the history of relevant technologies, the history of the core science, the history of relevant business and economic developments, and the history of computing as it pertains to social history and societal developments. Titles can span a variety of product types, including but not exclusively, themed volumes, biographies, ‘profi le’ books (with brief biographies of a number of key people), expansions of workshop proceedings, general readers, scholarly expositions, titles used as ancillary textbooks, revivals and new editions of previous worthy titles. These books will appeal, varyingly, to academics and students in computer science, history, mathematics, business and technology studies. Some titles will also directly appeal to professionals and practitioners
    [Show full text]
  • The Culture of Wikipedia
    Good Faith Collaboration: The Culture of Wikipedia Good Faith Collaboration The Culture of Wikipedia Joseph Michael Reagle Jr. Foreword by Lawrence Lessig The MIT Press, Cambridge, MA. Web edition, Copyright © 2011 by Joseph Michael Reagle Jr. CC-NC-SA 3.0 Purchase at Amazon.com | Barnes and Noble | IndieBound | MIT Press Wikipedia's style of collaborative production has been lauded, lambasted, and satirized. Despite unease over its implications for the character (and quality) of knowledge, Wikipedia has brought us closer than ever to a realization of the centuries-old Author Bio & Research Blog pursuit of a universal encyclopedia. Good Faith Collaboration: The Culture of Wikipedia is a rich ethnographic portrayal of Wikipedia's historical roots, collaborative culture, and much debated legacy. Foreword Preface to the Web Edition Praise for Good Faith Collaboration Preface Extended Table of Contents "Reagle offers a compelling case that Wikipedia's most fascinating and unprecedented aspect isn't the encyclopedia itself — rather, it's the collaborative culture that underpins it: brawling, self-reflexive, funny, serious, and full-tilt committed to the 1. Nazis and Norms project, even if it means setting aside personal differences. Reagle's position as a scholar and a member of the community 2. The Pursuit of the Universal makes him uniquely situated to describe this culture." —Cory Doctorow , Boing Boing Encyclopedia "Reagle provides ample data regarding the everyday practices and cultural norms of the community which collaborates to 3. Good Faith Collaboration produce Wikipedia. His rich research and nuanced appreciation of the complexities of cultural digital media research are 4. The Puzzle of Openness well presented.
    [Show full text]
  • Systems, Networks, and Webs: History and Theory of Infrastructure
    SI 541/741 Prof. Paul N. Edwards University of Michigan, Winter 2008 Monday, 1-4 PM, 311 West Hall Systems, Networks, and Webs: History and Theory of Infrastructure This course offers historical, comparative, and theoretical perspectives on the evolution of major infrastructures from the 19th century to the present. We will focus especially on information infrastructures: the Internet, the World Wide Web, and scientific cyberinfrastructures. To set the stage, we will compare their historical trajectories with those of older transportation, electric power, and communication infrastructures. For example, transportation infrastructures face their most difficult challenges at the interface between different transport modes, as in ports (where shipping connects with trucking and rail) and airports (where air transit connects with automobile, truck, bus, subway, train, and pedestrian modes). These intermodal problems in transport networks find significant parallels in information infrastructures. For example, data conversion (from analog to digital, or from one digital format to another) creates difficult problems for system designers and users; connecting networks built on different standards motivated early Internet research. The course looks at how infrastructures form, how they change, and how they shape (and are shaped by) social systems. A major focus will be the role of standards (e.g. railroad track gauge, alternating current voltages, TCP/IP, HTTP, HTML) and standard-setting bodies in creating “ground rules” for infrastructure development. Concepts such as “technological momentum” (the tendency of large technical systems to become increasingly resistant to change), “load factor” (maximizing the use of available system capacity), and "interdependence" (among components and between connected infrastructures) will be explored.
    [Show full text]
  • A Web Based System Design for Creating Content in Adaptive
    Malaysian Online Journal of Educational Technology 2020 (Volume 8 - Issue 3 ) A Web Based System Design for Creating [1] [email protected], Gazi University, Faculty of Gazi Content in Adaptive Educational Education, Ankara Hypermedia and Its Usability [2] [email protected], Gazi University, Faculty of Gazi Education, Ankara Yıldız Özaydın Aydoğdu [1], Nursel Yalçın [2] http://dx.doi.org/10.17220/mojet.2020.03.001 ABSTRACT Adaptive educational hypermedia is an environment that offers an individualized learning environment according to the characteristics, knowledge and purpose of the students. In general, adaptive educational hypermedia, a user model is created based on user characteristics and adaptations are made in terms of text, content or presentation according to the created user model. Different contents according to the user model are shown as much as user model creation in adaptive educational hypermedia. The development of applications that allow the creation of adaptive content according to the features specified in the user model has great importance in ensuring the use of adaptive educational hypermedia in different contexts. The purpose of this research is to develop a web- based application for creating content in adaptive educational hypermedia and to examine the usability of the developed application. In order to examine the usability of the application developed in the scope of the study, a field expert opinion form was developed and opinions were asked about the usability of the application from 7 different field experts. As the result of the opinions, it has been seen that the application developed has a high usability level. In addition, based on domain expert recommendations, system revisions were made and the system was published at www.adaptivecontentdevelopment.com.
    [Show full text]
  • Dynamic Adaptive Hypermedia Systems for E-Learning Elvira Popescu
    Dynamic adaptive hypermedia systems for e-learning Elvira Popescu To cite this version: Elvira Popescu. Dynamic adaptive hypermedia systems for e-learning. Education. Université de Technologie de Compiègne, 2008. English. tel-00343460 HAL Id: tel-00343460 https://tel.archives-ouvertes.fr/tel-00343460 Submitted on 10 Dec 2008 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. DOCTORAT TIS Cotutelle de thèse – Nom de l’établissement : Université de Craiova Label européen (nom du pays) : Roumanie Thèse financée par : l’Université de Craiova, Roumanie Dynamic adaptive hypermedia systems for e-learning Directeurs de Thèse (NOM - Prénom) : TRIGANO Philippe (NOM - Prénom) : RASVAN Vladimir. Date, heure et lieu de soutenance : 15 novembre 2008, 12h00, Université de Craiova, Roumanie NOM :Popescu ....................................................... Prénom : Elvira ................................................................ Courriel : [email protected] MEMBRES DU JURY - TRIGANO Philippe, Professeur des Universités (directeur de thèse) Spécialité:
    [Show full text]