task
stringlengths 12
101
| input
stringlengths 5
5.87k
| output
stringlengths 1
5.47k
| options
sequence | pageTitle
stringlengths 0
151
| outputColName
stringlengths 1
142
| url
stringlengths 24
147
| wdcFile
stringlengths 71
75
|
---|---|---|---|---|---|---|---|
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Strings [Evaluation Methods] Assignment 3. Final exam. Final assignment. [Competency] | Explain the concept of a string. Compare the two types of strings there is in PHP 6. Demonstrate how to set them and convert between them. Demonstrate how to get the length of a string and access its characters by index Demonstrate how to handle single and double quotes in strings with variables. Demonstrate how to concatenate strings. Demonstrate how to use heredoc and nowdoc. Recognize the two syntaxes that exist for heredoc as of PHP 5.3. Demonstrate how to escape characters in strings. Demonstrate correct usage of basic string functions, e.g. strlen, substr, strstr, strpos, trim, strtolower, with variants. Demonstrate how to compare strings, using operators and comparison functions like strcmp or strcoll. Demonstrate how to check the integrity of string contents using the ctype-functions. Explain the concept of regular expressions, exemplify when they can be used and demonstrate simple usage. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Array usage and array functions [Evaluation Methods] Assignment 3. Final exam. Final assignment. [Competency] | Demonstrate how to iterate over an array using the foreach function. Demonstrate how to sort arrays. Demonstrate how to perform a function call on each value in an array. Specifically, demonstrate how to remove magic quotes from GPC-data. Explain what the cursor is in an array and demonstrate how to walk through arrays. Demonstrate how to use assign multiple variables from array values using the list() language construct. Demonstrate how to check for the existence of specific keys or values within an array. Demonstrate how to attach and how to delete values at both the bottom and top of an array. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Objects and classes (simple overview) [Evaluation Methods] (Modules with exercises are appreciated.) Final exam Final assignment [Competency] | Explain some benefits of Object Oriented programming compared to procedural programming. Explain basic OO terminology. Demonstrate how to define and instantiate classes in PHP. Explain constructors and destructors, how to name constructors in PHP 4 and 5+ and how to use constructors. Demonstrate how to use the $this pseudovariable. Explain the concept of inheritance och demonstrate how to use the extends keyword. Explain the concept of polymorfism and demonstrate how to use interfaces and abstract classes in PHP. Briefly explain the differences in the object model between PHP 4 and PHP 5. Explain visibility of properties and methods. Explain class constants, static properties and methods and demonstrate how to use the scope resolution operator (Paamayim Nekudotayim). | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Error handling and exceptions [Evaluation Methods] (Modules with exercises are appreciated.) Final exam. Final assignment. [Competency] | Recognize the types of errors in PHP. Handle interaction errors e.g. GET-data does not match DB-record might produce a 404. Use good error handling strategies. E.g: Differentiate between development servers (show on page) vs. production servers (log errors). Make usable error pages and understandable error messages. Send the correct HTTP status code for error pages. Recognize exceptions and handle them using try and catch. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Server side architecture [Evaluation Methods] Exercise 4. Final exam. Final assignment. [Competency] | Recognize what separation of concerns mean for PHP development. Recognize the following concepts: Presentation logic and templates, business logic and data storage logic. Demonstrate a secure and logical directory structure for PHP applictions. Explain include paths. Demonstrate how to write an application that does not depend on being in a specific root directory. Demonstrate a good strategy for filtering all untrusted data. Demonstrate consistent and appropriate escaping of output data. Implement usable, SEO-friendly and hackable URL:s. Recognize rewrite rules. Recognize the abbreviation MVC and briefly explain the rationale behind it. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Handling posted data [Evaluation Methods] Exercise 5. Final exam. Final assignment. [Competency] | Explain why client side checks only can be used to offload a server and provide better usability, never for security. Explain why GPC-data might be quoted in PHP 4.x and 5.x. Explain what problems magic quotes were intended to solve, why they did not work properly and are being removed in PHP 6 and how they can be removed in a script. Explain how the superglobal array $_POST relates to name attributes in HTML forms. Demonstrate handling posted data. Recognize the usage of register globals and explain why it is a security hazard. Recognize the bad habit of manually making EGPCS-data into regular variables ($foo = $_POST[‘foo’] or extract($_POST)). Recognize the usage of $_REQUEST and explain why it is considered bad practice to use it. Recognize how sensitive data can be transmitted securily, using encryption. Recognize the abbreviations SSL and TLS. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Sending email [Evaluation Methods] Exercise 5. Final exam. Final assignment. [Competency] | Demonstrate simple usage of the mail() function in PHP. Recognize the concept SMTP injection and demonstrate how to avoid it. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Sessions and authentication [Evaluation Methods] Final exam. Final assignment. [Competency] | Recognize the sessionless nature of HTTP. Recognize session fixation and session hijacking. Use session_regenerate_id and set session ID using cookies only. Recognize HTTP-authentication in PHP. Preventing multiple submits of a form. Demonstrate how to prevent cross-posting using a session variable. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Cookies [Evaluation Methods] Final exam. Final assignment. [Competency] | Explain the concept of cookies and how they are passed to the server from the browser. Demonstrate how to set and read cookies. Explain the security benefits of server side only cookies, and demonstrate how to set them. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] File handling and storing data in text files [Evaluation Methods] Final exam. Final assignment. [Competency] | Demonstrate how to read from and write to files. Recognize the different flags used to control the opening of file sockets. Recognize the most common security problems when usiing file functions. Demonstrate how to safely handle files uploaded by the user. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Relational Database concepts and MySQL fundamentals [Evaluation Methods] Final assignment Final exam [Competency] | List some common Database Management Systems (DBMS). List some common alternatives to storing data in a relational database and briefly explain the merits and disadvantages of each option. Explain how SQLite can be used from every modern PHP installation. (Note: SQLite is primarily included to provide a way to explain data access abstraction using PDO.) Give an overview of how a relational database works. Recognize the terminology used about databases (relation/table, tuple/row, attribute/field/column, default values, NULL, keys, etc). Briefly explain the concept of normalization and recognize the related glossary (keys, functional dependency) List the available data types in MySQL and demonstrate proper usage of the most common ones. Explain the concept of indexes. Demonstrate how to use indexes in MySQL. Recognize the concept of a storage engines in MySQL and briefly explain the main differences between MyISAM and InnoDB. Demonstrate how to use PhpMyAdmin or a graphical tool to set up a database. Make a user with privileges suitable for PHP scripts. Demonstrate how to run queries in the tool. Demonstrate how to backup/dump a MySQL database. Question to reviewers: Is it possible to wait with constraints and referential integrity (foreign keys) until Server Side Scripting 2? | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] SQL [Evaluation Methods] Final assignment Final exam [Competency] | Recognize the glossary of SQL (DDL, DML, CRUD) Demonstrate how to access a MySQL DBMS from a CLI tool. Demonstrate how to SELECT individual records and groups of records; SORT-ing and LIMIT-ing of the results. Demonstrate how to use JOIN. Demonstrate simple usage of SQL-functions (count!) Demonstrate how to INSERT data into a table. Demonstrate how to UPDATE a table and explain why one should always use the WHERE clause doing so. Demonstrate how to DELETE data and explain why one should always use the WHERE clause doing so. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] PDO [Evaluation Methods] Final assignment Final exam [Competency] | Recognize all 3 built in API’s to access a MySQL database from PHP (mysql, mysqli, PDO). Discuss their strengths and downsides. Demonstrate how to connect to a DBMS with PDO, prepare and execute statements, fetch single results and iterate over result sets. Recognize how to access reults from a prepared statement as normal arrays, associative arrays, objects and objects belonging to a specific class. Demonstrate safe usage of user submitted data in SQL. Recognize how to manually quote user submitted data. Discuss the benefits of prepared statements. Demonstrate how to handle errors and unexpected results using PDO. Demonstrate safe handling of database credentials. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] The mysql and the mysqli functions [Evaluation Methods] Final exam [Competency] | Recognize how to use the mysql and the mysqli functions. Discuss how to safely handle user submitted data using the mysql and the mysqli functions. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] SPL, PEAR and Frameworks [Evaluation Methods] Final exam [Competency] | Recognize PEAR, PECL, SPL and the most well known PHP Component libraries? Recognize the most common PHP Frameworks. Recognize the most common PHP applications/Content Managament Systems. Recognize the usage of PHP for extended functionality for some big websites (e.g. Facebook) | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Web Services, API’s, RSS, JSON and Ajax [Evaluation Methods] Final exam [Competency] | Recognize the most common formats for data interchange. Summarize the Ajax pattern for updating a web page. Briefly describe the concepts of API’s and Web Services. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
d4cd509d__Web_Education_Community_Group__Competency | [Topic] Shared hosting [Evaluation Methods] Final assignment Final exam [Competency] | Recognize the most important technical considerations one must know when chosing a web host. List the most important security considerations one must know about shared hosting. Demonstrate usage of a web host control panel. | [] | Es/Interact/Secuencias de comando del lado servidor 1 - Web Education Community Group | Competency | https://www.w3.org/community/webed/wiki/index.php?title=Es/Interact/Secuencias_de_comando_del_lado_servidor_1&mobileaction=toggle_view_mobile | 50/1438042991951.97_20150728002311-00233-ip-10-236-191-2_926498392_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] checking [event handler attribute] | onchecking | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] error [event handler attribute] | onerror | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] noupdate [event handler attribute] | onnoupdate | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] downloading [event handler attribute] | ondownloading | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] progress [event handler attribute] | onprogress | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] updateready [event handler attribute] | onupdateready | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] cached [event handler attribute] | oncached | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
867225d4_HTML_5__event_handler_attribute | [Event handler event type] obsolete [event handler attribute] | onobsolete | [
[
"o",
"n",
"c",
"h",
"e",
"c",
"k",
"i",
"n",
"g"
],
[
"o",
"n",
"e",
"r",
"r",
"o",
"r"
],
[
"o",
"n",
"n",
"o",
"u",
"p",
"d",
"a",
"t",
"e"
],
[
"o",
"n",
"d",
"o",
"w",
"n",
"l",
"o",
"a",
"d",
"i",
"n",
"g"
],
[
"o",
"n",
"p",
"r",
"o",
"g",
"r",
"e",
"s",
"s"
],
[
"o",
"n",
"u",
"p",
"d",
"a",
"t",
"e",
"r",
"e",
"a",
"d",
"y"
],
[
"o",
"n",
"c",
"a",
"c",
"h",
"e",
"d"
],
[
"o",
"n",
"o",
"b",
"s",
"o",
"l",
"e",
"t",
"e"
]
] | HTML 5 | event handler attribute | http://www.w3.org/TR/2009/WD-html5-20090423/offline.html | 50/1438042985647.51_20150728002305-00131-ip-10-236-191-2_816923178_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] hidden [State] Hidden [Data type] An arbitrary string [Control type] | n/a | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] text [State] Text [Data type] Text with no line breaks [Control type] | A text field | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] search [State] Search [Data type] Text with no line breaks [Control type] | Search field | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] tel [State] Telephone [Data type] Text with no line breaks [Control type] | A text field | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] url [State] URL [Data type] An absolute URL [Control type] | A text field | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] email [State] E-mail [Data type] An e-mail address or list of e-mail addresses [Control type] | A text field | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] password [State] Password [Data type] Text with no line breaks (sensitive information) [Control type] | A text field that obscures data entry | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] datetime [State] Date and Time [Data type] A date and time (year, month, day, hour, minute, second, fraction of a second) with the time zone set to UTC [Control type] | A date and time control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] date [State] Date [Data type] A date (year, month, day) with no time zone [Control type] | A date control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] month [State] Month [Data type] A date consisting of a year and a month with no time zone [Control type] | A month control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] week [State] Week [Data type] A date consisting of a week-year number and a week number with no time zone [Control type] | A week control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] time [State] Time [Data type] A time (hour, minute, seconds, fractional seconds) with no time zone [Control type] | A time control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] datetime-local [State] Local Date and Time [Data type] A date and time (year, month, day, hour, minute, second, fraction of a second) with no time zone [Control type] | A date and time control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] number [State] Number [Data type] A numerical value [Control type] | A text field or spinner control | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] range [State] Range [Data type] A numerical value, with the extra semantic that the exact value is not important [Control type] | A slider control or similar | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] color [State] Color [Data type] An sRGB color with 8-bit red, green, and blue components [Control type] | A color well | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] checkbox [State] Checkbox [Data type] A set of zero or more values from a predefined list [Control type] | A checkbox | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] radio [State] Radio Button [Data type] An enumerated value [Control type] | A radio button | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] file [State] File Upload [Data type] Zero or more files each with a MIME type and optionally a file name [Control type] | A label and a button | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] submit [State] Submit Button [Data type] An enumerated value, with the extra semantic that it must be the last value selected and initiates form submission [Control type] | A button | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] image [State] Image Button [Data type] A coordinate, relative to a particular image's size, with the extra semantic that it must be the last value selected and initiates form submission [Control type] | Either a clickable image, or a button | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] reset [State] Reset Button [Data type] n/a [Control type] | A button | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
c625c12c_10_7_The_input_element___HTML5__Control_type | [Keyword] button [State] Button [Data type] n/a [Control type] | A button | [] | 4.10.7 The input element — HTML5 | Control type | http://www.w3.org/TR/2012/WD-html5-20120329/the-input-element.html | 50/1438042991951.97_20150728002311-00053-ip-10-236-191-2_808425477_0.json |
167613f0_Animation___set_ | [Additive?] yes ['animate'] yes ['animate Color'] yes ['animate Transform'] no [Notes] Only RGB color values are additive. ['set'] | yes | [
[
"y",
"e",
"s"
],
[
"n",
"o"
]
] | Animation | 'set' | http://www.w3.org/TR/2005/WD-SVGMobile12-20050413/animate.html | 50/1438042991951.97_20150728002311-00131-ip-10-236-191-2_815607298_8.json |
167613f0_Animation___set_ | [Additive?] yes ['animate'] yes ['animate Color'] no ['animate Transform'] no ['set'] | yes | [
[
"y",
"e",
"s"
],
[
"n",
"o"
]
] | Animation | 'set' | http://www.w3.org/TR/2005/WD-SVGMobile12-20050413/animate.html | 50/1438042991951.97_20150728002311-00131-ip-10-236-191-2_815607298_8.json |
167613f0_Animation___set_ | [Additive?] no ['animate'] yes ['animate Color'] no ['animate Transform'] no ['set'] | yes | [
[
"y",
"e",
"s"
],
[
"n",
"o"
]
] | Animation | 'set' | http://www.w3.org/TR/2005/WD-SVGMobile12-20050413/animate.html | 50/1438042991951.97_20150728002311-00131-ip-10-236-191-2_815607298_8.json |
167613f0_Animation___set_ | [Additive?] no ['animate'] no ['animate Color'] no ['animate Transform'] no ['set'] | no | [
[
"y",
"e",
"s"
],
[
"n",
"o"
]
] | Animation | 'set' | http://www.w3.org/TR/2005/WD-SVGMobile12-20050413/animate.html | 50/1438042991951.97_20150728002311-00131-ip-10-236-191-2_815607298_8.json |
167613f0_Animation___set_ | [Additive?] yes ['animate'] no ['animate Color'] no ['animate Transform'] yes [Notes] Additive means that a transformation is post-multiplied to the base set of transformations. ['set'] | no | [
[
"y",
"e",
"s"
],
[
"n",
"o"
]
] | Animation | 'set' | http://www.w3.org/TR/2005/WD-SVGMobile12-20050413/animate.html | 50/1438042991951.97_20150728002311-00131-ip-10-236-191-2_815607298_8.json |
167613f0_Animation___set_ | [Data type] All other data types used in animatable attributes and properties [Additive?] no ['animate'] yes ['animate Color'] no ['animate Transform'] no ['set'] | yes | [
[
"y",
"e",
"s"
],
[
"n",
"o"
]
] | Animation | 'set' | http://www.w3.org/TR/2005/WD-SVGMobile12-20050413/animate.html | 50/1438042991951.97_20150728002311-00131-ip-10-236-191-2_815607298_8.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] Is an ECMAScript expression which returns a call leg object to associate the new dialog with. The default value of the "callid" attribute is "_event.source", meaning that the dialog instance will be launched for whatever call object generated the previous event (typically a connection.CONNECTION_CONNECTED event). [Attribute Name] | callid | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] Is an ECMAScript expression which returns an identifier of a connection or conference. The default value of the "conid" attribute is "_event.source", which will be the connection that generated the previous event (typically a connection.CONNECTION_CONNECTED event). A connection will be allocated for the dialog being launched, and this connection will be bridged to the connection or conference specified by "conid". For more information about connections and bridges, refer to Section 10. [Attribute Name] | conid | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] Is an ECMAScript expression which returns a character string identifying the URI of the dialog document that the dialog interpreter should load and begin executing upon startup. [Attribute Name] | src | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] Specifies the MIME type of the document, and as a result, which dialog interpreter is actually loaded. A MIME type of "application/xml+vxml" associates the start-document with a VoiceXML interpreter instance. A MIME type of "audio/wav" associates the start-document with a dialog manager that merely plays wave files. If omitted, the mime-type attribute defaults to "application/xml+vxml", but the CCXML interpreter is free to guess the correct MIME type, e.g., by examining the filename-extension of the start-doc URI. [Attribute Name] | type | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] an ECMAScript expression which returns a character string that specifies the MIME type of the document, and as a result, which dialog interpreter is actually loaded. A MIME type of "application/xml+vxml" associates the start-document with a VoiceXML interpreter instance. A MIME type of "audio/wav" associates the start-document with a dialog manager that merely plays wave files. If omitted, the mime-type attribute defaults to "application/xml+vxml", but the CCXML interpreter is free to guess the correct MIME type, e.g., by examining the filename-extension of the start-doc URI. [Attribute Name] | type | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] Specifies the list of ECMA script variables that should be appended to the dialog URI as parameters. This is useful where you need to create the URI based on previous actions in the script. [Attribute Name] | namelist | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] a list of zero or more CCXML variable names. These variable names and their associated values will be included in the URI sent to the dialog manager, with the same qualification used in the namelist. [Attribute Name] | namelist | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] an ECMAScript left-hand-side expression that will receive the value of the session-name identifying the launched dialog interpreter instance. This session-name can be used by the CCXML script programmer in future invocations of . [Attribute Name] | dialogid | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
a87df2da_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] Equal to "half" or "full". This determines the type of bridge between the connection associated with the dialog and the connection or conference specified by the "conid" attribute. For more information about connections and bridges, refer to Section 10. [Attribute Name] | duplex | [
[
"c",
"a",
"l",
"l",
"i",
"d"
],
[
"c",
"o",
"n",
"i",
"d"
],
[
"s",
"r",
"c"
],
[
"t",
"y",
"p",
"e"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
],
[
"d",
"i",
"a",
"l",
"o",
"g",
"i",
"d"
],
[
"d",
"u",
"p",
"l",
"e",
"x"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_14.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Proposal to add order line and parcel delivery support in the Orders Schema. [Vocab] One new Type: OrderItem, and added properties for one existent Type: Order [Topic] | Orders Schema update | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Proposal to address the basic description of Articles within issues and/or volumes of periodicals of most types. [Vocab] Three new Types: Periodical, PublicationVolume, PublicationIssue, and added properties for two existent Types: Article, CreativeWork [Topic] | Periodicals, Articles and Multi-volume Works | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Indicates a corresponding profile page for an account on a socially-oriented Web site. [Vocab] One new property: socialAccount [Topic] | social Account property | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Proposal for new Audiobook Type and abridged property for Book. [Vocab] Audiobook subtype of Book and of AudioObject, adds readBy property [Topic] | Audiobook | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Proposal for new Collection Type and part properties for CreativeWork. [Vocab] Collection subtype of CreativeWork hasPart & isPartOf properties for CreativeWork [Topic] | Collection | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Discussion [Summary] Extension for describing accessibility properties of a CreativeWork. [Vocab] Additional work to add accessMode, hasAdapation, isAdaptationof that were not covered in 1.0 Accessibility work. [Topic] | Accessibility (part 2) | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Add one type, 'QuotationSchema', a kind of CreativeWork, alongside some supporting properties. [Vocab] Quotation, spokenByCharacter, incorrectlyAttributedTo, aboutEvent, fromEvent, addressee. [Comments] Several other requirements are addressed by re-use of existing properties. Debate about whether incorrectlyAttributedTo is worthwhile. Some details to finalise. [Topic] | Add Quotation type | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Add handlers and potential actions to Action type. [Vocab] See full entry and proposal for details. [Comments] The schema.org team solicit comments on this draft via [email protected]. [Topic] | Actions in Schema.org (part 2) | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] This proposal includes new types for describing reservations and tickets [Vocab] Adds classes Reservation, ReservationStatus, ProgramMembership, Flight, TrainTrip, TrainReservation, FoodEstablishmentReservation, FlightReservation, EventReservation, ReservationPackage, BusReservation, BusTrip, RentalCarReservation, RentalCar, Car, LodgingReservation plus associated properties. [Comments] Complements Actions proposal, but independent. [Topic] | Reservations in Schema.org | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] This proposal adds a single new type, EmailMessage [Vocab] EmailMessage is a CreativeWork representing email messages, just as WebPage already represents Web pages. [Comments] No properties currently defined; proposals welcomed. [Topic] | EmailMessage type | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Accepted [Summary] This proposal adds a single new type, WorkersUnion, addressing issue 17 in the WebSchemas tracker. [Vocab] "A Workers Union (...) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying."" [Comments] One type, see draft schema. [Topic] | Workers Union type | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Some initial discussions. [Summary] Several parties are working towards a Sports Vocabulary proposal. See query from Paul Kelly (SportsML), Microdata + Sports Stats post describing earlier ESPN/Google collaboration, and the Sports Ontology used by BBC, Press Association and others. See also sports-schema-collab mailing list. [Vocab] Several sources including a full draft from the ESPN+Google work. Needs summary here. [Comments] March 2nd - posted writeup of the ESPN/Google Microdata vocabulary; next is discussion on finding common basic sports vocab for schema.org. [Topic] | Sports | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Discussing Proposals [Summary] Proposal from Marvel (see examples). [Vocab] Adds PeriodicalSeries (under Intangible(?)), PeriodicalIssue (under CreativeWork), Comic Issue (under PeriodicalIssue), GraphicNovel (under Book). Approx 6-9 properties for each of these classes. [Comments] Generally well received and specified, but some detailed discussion re fine-grain detail of comics (imprint, page count etc.). Can those properties be shared with Book/numberOfPages, or ScholarlyArticle? Should PeriodicalSeries be intangible? [Topic] | Comics and Serials | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] The historical-data.org site proposes some extensions to schema.org to address historical and genealogical (family history) scenarios. [Vocab] Adds HistoricalRecord, HistoricalEvent (subclass of Event), overrides attendees, subEvents, superEvent to point to HistoricalEvent. [Comments] There is an associated implementation, github repository, and blog. [Topic] | Historical Data proposal | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] A schema extension for describing biological databases, Sagace. [Vocab] Adds a class 'BiologicalDatabaseEntry' as a kind of CreativeWork, introducing 'entryID', 'isEntryOf', 'taxonID'. Adds 'BiologicalDatabase' also subclass of CreativeWork, with no special properties. Both also use 'breadcrumb' from WebPage. [Comments] Others have also mentioned interest in adding some notion of species. [Topic] | Biological Databases | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] A proposal resolving current problems handling breadcrumbs. [Vocab] Adds Breadcrumb type with child property and supposes to use this class on breadcrumb property of a WebPage. An important schema, but needs attention. See discussion on using literal values. [Topic] | Breadcrumbs | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] A proposal extending schema.org for describing online discussion forums and message boards. [Vocab] Adds attachmentURL, contributorType, discussionState, interestedUsers, postCount, postType, votedHelpful. [Comments] Addition candidate [Topic] | Discussion | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] A proposal extending schema.org for describing Innovation and related concepts. Discussion found here: [1] [Vocab] Covers concepts and terms such as Need, Benefit, Usage, Disruption, Innovator, Innovation, Embodiment, to name a few. See [2] for complete list of terms. [Comments] Addition candidate [Topic] | Innovation | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] Add a dissolutionDate property to Organization. [Topic] | dissolutionDate | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] Proposal [Summary] A proposal for extending LodgingBusiness. Specification is here http://thematix.com/ontologies/travel/lodging/ [Vocab] Adds Amenity, BusinessService, Feature, GuestRoomAmenity, LodgingBusinessAmenity, LodgingBusinessService, RentalOffer, RentalRate, Room, RoomType and Service. [Comments] In addition to the examples given in the cited website, examples can be seen at http://www.regencyhotelmiami.com/ and http://hiltonvb.com and at Super8 hotel description pages, e.g., http://www.super8.com/hotels/alberta/fort-mcmurray/super-8-fort-mcmurray/hotel-overview. [Topic] | Lodging Extensions | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Topic] | ... | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
d1e73e5c_hemaDotOrgProposals___W3C_Wiki__Topic | [Status] How far along [Summary] Summary of contribution. [Vocab] Overview of new terms [Comments] Comments on status, particularly regarding integration, overlaps and open issues. [Topic] | Proposal name | [] | WebSchemas/SchemaDotOrgProposals - W3C Wiki | Topic | http://www.w3.org/wiki/index.php?title=WebSchemas/SchemaDotOrgProposals&oldid=72687 | 50/1438042991951.97_20150728002311-00000-ip-10-236-191-2_816717501_0.json |
1b59256e_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] is an ECMAScript expression returning a string that indicates the type of event being generated. The event type may include alphanumeric characters and the "." (dot) character. The first character may not be a dot or a digit. Event type names are case-insensitive. [Attribute Name] | event | [
[
"e",
"v",
"e",
"n",
"t"
],
[
"t",
"a",
"r",
"g",
"e",
"t"
],
[
"n",
"a",
"m",
"e"
],
[
"d",
"e",
"l",
"a",
"y"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_29.json |
1b59256e_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] is an ECMAScript expression returning a handle for the target CCXML session. This should be a globally-unique identifier, in a still-to-be-specified URI format. It is valid for a CCXML session to send an event to itself. [Attribute Name] | target | [
[
"e",
"v",
"e",
"n",
"t"
],
[
"t",
"a",
"r",
"g",
"e",
"t"
],
[
"n",
"a",
"m",
"e"
],
[
"d",
"e",
"l",
"a",
"y"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_29.json |
1b59256e_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] is an ECMAScript left-hand-side expression that is the target for the event identifier. The unique identifier for the generated event is written to the target. If not present, the event's identifier is dropped. [Attribute Name] | name | [
[
"e",
"v",
"e",
"n",
"t"
],
[
"t",
"a",
"r",
"g",
"e",
"t"
],
[
"n",
"a",
"m",
"e"
],
[
"d",
"e",
"l",
"a",
"y"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_29.json |
1b59256e_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] is an ECMAScript expression returning a string in CSS2 format interpreted as a time interval. The send element will return immediately, but the event not dispatched until the delay interval elapses. Timers are useful for a wide variety of programming tasks, and can be implemented using this attribute. [Attribute Name] | delay | [
[
"e",
"v",
"e",
"n",
"t"
],
[
"t",
"a",
"r",
"g",
"e",
"t"
],
[
"n",
"a",
"m",
"e"
],
[
"d",
"e",
"l",
"a",
"y"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_29.json |
1b59256e_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] A list of zero or more CCXML variables to be included along with the event. [Attribute Name] | namelist | [
[
"e",
"v",
"e",
"n",
"t"
],
[
"t",
"a",
"r",
"g",
"e",
"t"
],
[
"n",
"a",
"m",
"e"
],
[
"d",
"e",
"l",
"a",
"y"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_29.json |
1b59256e_all_Control__CCXML_Version_1_0__Attribute_Name | [Details] A list of zero or more CCXML unqualified variables which will be set as properties of the event. [Attribute Name] | namelist | [
[
"e",
"v",
"e",
"n",
"t"
],
[
"t",
"a",
"r",
"g",
"e",
"t"
],
[
"n",
"a",
"m",
"e"
],
[
"d",
"e",
"l",
"a",
"y"
],
[
"n",
"a",
"m",
"e",
"l",
"i",
"s",
"t"
]
] | Voice Browser Call Control: CCXML Version 1.0 | Attribute Name | http://www.w3.org/TR/2003/WD-ccxml-20030612/diffmarked.html | 50/1438042991951.97_20150728002311-00141-ip-10-236-191-2_808603133_29.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] Character data [Attribute Type] | CDATA | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] A document-unique identifier [Attribute Type] | ID | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] A reference to a document-unique identifier [Attribute Type] | IDREF | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] A space-separated list of references to document-unique identifiers [Attribute Type] | IDREFS | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] A name with the same character constraints as ID above [Attribute Type] | NAME | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] A name composed of only name tokens as defined in XML 1.0 [XML]. [Attribute Type] | NMTOKEN | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] One or more white space separated NMTOKEN values [Attribute Type] | NMTOKENS | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
4c9c364a__Module_Definition_Conventions__Attribute_Type | [Definition] Processed character data [Attribute Type] | PCDATA | [
[
"C",
"D",
"A",
"T",
"A"
],
[
"I",
"D"
],
[
"I",
"D",
"R",
"E",
"F"
],
[
"I",
"D",
"R",
"E",
"F",
"S"
],
[
"N",
"A",
"M",
"E"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N"
],
[
"N",
"M",
"T",
"O",
"K",
"E",
"N",
"S"
],
[
"P",
"C",
"D",
"A",
"T",
"A"
]
] | - Module Definition Conventions | Attribute Type | http://www.w3.org/TR/2003/WD-xhtml2-20030506/abstraction.html | 50/1438042991951.97_20150728002311-00338-ip-10-236-191-2_804740481_0.json |
c5eeecca_XHTML_2_0__Definition | [Attribute Type] CDATA [Definition] | Character data | [] | XHTML 2.0 | Definition | http://www.w3.org/TR/2003/WD-xhtml2-20030506/xhtml2.html | 50/1438042991951.97_20150728002311-00149-ip-10-236-191-2_802768354_0.json |
Subsets and Splits