Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
S5 (file format)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Infobox file format | name = S5 | icon = | logo = | screenshot = | caption = | extension = .xhtml, .html | mime = application/xhtml+xml<br/>text/html | type code = | uniform type = | magic = | owner = [[Eric A. Meyer]] | released = | latest release version = | latest release date = | genre = [[Presentation program]] | container for = | contained by = | extended from = [[Opera Show Format]] | extended to = | standard = | open = Yes. [[Public Domain]].<ref name="s5-11-release">{{cite web|url=http://meyerweb.com/eric/thoughts/2005/07/28/s5-11/|title=S5 1.1|first=Eric|last=Meyer|authorlink=Eric A. Meyer|date=28 July 2005|accessdate=17 August 2010}}</ref> | url = [http://meyerweb.com/eric/tools/s5/ S5 homepage] }} '''S5''' (''Simple Standards-Based Slide Show System'') is an [[XHTML]]-based file format for defining [[slideshow]]s. It was created by [[Eric A. Meyer]] as an alternative to the browser-centric [[Opera Show Format]]. S5 is not a [[presentation program]], but fulfills the same purpose in combination with a standards-compliant [[web browser]]. ==History== The initial version of S5<ref name="s5-11-release" /><ref>{{cite web|url=http://meyerweb.com/eric/tools/s5/v/1.0/structure-ref.html|title=S5 1.0 Reference|first=Eric|last=Meyer|authorlink=Eric A. Meyer|date=28 July 2005|accessdate=17 August 2010}}</ref> was released by Eric Meyer on October 18, 2004 under a [[Creative Commons license]].<ref>{{cite web|url=http://meyerweb.com/eric/thoughts/2004/10/18/ssup5sup-10/|title=S5 1.0|first=Eric|last=Meyer|authorlink=Eric A. Meyer|date=18 October 2004|accessdate=17 August 2010}}</ref> With the release of version 1.1 on July 28, 2005, S5 was placed in the [[public domain]].<ref name="s5-11-release" /> <!-- On September 7, 2005, Carsten Bormann released ''S6'', a "synchronized S5" for coordinated display of an S5 slideshow to a number of different users. --> On July 17, 2006, Ryan King launched ''s5project.org'', "a new community site, dedicated to the S5 Presentation software".<ref>{{cite web|url=http://meyerweb.com/eric/thoughts/2006/07/19/s5projectorg/|title=S5Project.org|date=19 July 2006|first=Eric|last=Meyer|authorlink=Eric A. Meyer|accessdate=17 August 2010}}</ref><ref>{{cite web|url=http://theryanking.com/entries/2006/07/17/s5projectorg/|title=S5Project.org|date=17 July 2006|first=Ryan|last=King|accessdate=17 August 2010}}</ref><ref>{{cite web|url=http://s5project.org/news/2006/07/annoucing-s5projectorg.html|title=Announcing S5Project.org|archive-date=16 May 2008|archive-url=https://web.archive.org/web/20080516011758/http://s5project.org/news/2006/07/annoucing-s5projectorg.html|date=16 July 2006|first=Ryan|last=King|access-date=17 August 2010|url-status=usurped}}</ref><ref>{{cite web|archive-url=https://web.archive.org/web/20080524211509/http://s5project.org/news/2006/07/whats-new-in-s5.html|archive-date=24 May 2008|title=What's new in S5?|url=http://s5project.org/news/2006/07/whats-new-in-s5.html|date=26 July 2006|first=Ryan|last=King|access-date=17 August 2010|url-status=usurped}}</ref> On December 4, 2006, Andreas Gohr announced a [[DokuWiki]] plugin that converts [[Wiki markup]] to XHTML-compatible S5 presentations.<ref>{{cite web|url=http://www.splitbrain.org/blog/2006-12/04-presentations_in_dokuwiki|title=Presentations in DokuWiki|first=Andreas|last=Gohr|authorlink=Andreas Gohr|date=4 December 2006|accessdate=29 August 2010}}</ref> <!-- In December 2006, Christian Effenberger launched ''S5 Reloaded'', an extended version of S5 with new features such as autorun, scalable images, sound support, transition effects and new themes. In July 2010, Daniel Mendler created diascope, [https://github.com/minad/diascope Diascope] is a mostly-S5-compatible implementation. It is inspired by s5-reloaded. It has support for embedded SVG and MathML, theme switching. CSS is handled by [[Sass (stylesheet language)|SASS]]. Todd A. Jacobs host git repo CodeGnome-S5 https://github.com/CodeGnome/s5 Gerald Bauer maintains [https://github.com/geraldb/s6 S6 Project] S6 started as a rewrite of Eric Meyerβs S5 using the jQuery JavaScript library β offering easier to understand and easier to extend code. Add plugins, effects and more. [https://github.com/Seldaek/slippy slippy] is S5 compatible project By Jordi Boggiano which has capability to export html slideshow into pdf One can use reStructuredText to generate S5 presentation using rst2s5.py http://docutils.sourceforge.net/docs/user/slide-shows.html ===Similar HTML5 projects=== Rob Flaherty created a light weight HTML SlideShow https://github.com/robflaherty/html-slideshow, It has feature to execute Javascript for particular slides by binding the "newSlide" events. --> ==Structure== The content of an S5 presentation can be stored in a single XHTML file. This file contains several slides which are structured in the following way: <syntaxhighlight lang="xml"> <div class="slide"> <h1>slide title</h1> <ul> <li>the first point</li> <li>the second point</li> <li>the third point</li> </ul> <div class="handout"> ... additional material that appears on the handout </div> </div> </syntaxhighlight> S5 presentations can be viewed in outline and slideshow mode; [[Cascading Style Sheets]] are used to define different layouts for outline, slideshow and print. Navigation controls, a dynamically generated list of slides and [[accesskey]]s allow browsing back and forth. A more [[semantic]] version of the S5 format is based on the [[XOXO (microformat)|XOXO]] [[microformat]] and uses <code><li class="slide"></code> instead of divs for the slides, as well as <code><ol class="xoxo presentation"></code> instead of a div for the overall presentation. == See also == * [[Web-based slideshow]] ==References== {{Reflist}} ==External links== * [http://meyerweb.com/eric/tools/s5/ Official homepage] {{Presentation software}} {{web browsers}} [[Category:Presentation software]] [[Category:Semantic HTML]] [[Category:XML-based standards]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Cite web
(
edit
)
Template:Infobox file format
(
edit
)
Template:Presentation software
(
edit
)
Template:Reflist
(
edit
)
Template:Web browsers
(
edit
)