Mercurial > eldonilo > barbecue
annotate index.xhtml @ 6:24aa8dccb170
Make XMPP actually work.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 31 Jan 2012 15:59:28 +0100 |
parents | 03ef53b969bd |
children | 853dcbe8f06f |
rev | line source |
---|---|
0 | 1 <!DOCTYPE html> |
5
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> |
0 | 3 <head> |
2
683f56999fb3
'DOMNodeFocused' pseudo-event + Mutation Event Demo
Fabien Cazenave <fabien@cazenave.cc>
parents:
1
diff
changeset
|
4 <meta charset="UTF-8" /> |
1
eb3679d92996
put JS and CSS code in separated files
Sonny Piers <sonny.piers@gmail.com>
parents:
0
diff
changeset
|
5 <title> barbecue </title> |
eb3679d92996
put JS and CSS code in separated files
Sonny Piers <sonny.piers@gmail.com>
parents:
0
diff
changeset
|
6 <link type="text/css" href="style.css" rel="stylesheet" /> |
2
683f56999fb3
'DOMNodeFocused' pseudo-event + Mutation Event Demo
Fabien Cazenave <fabien@cazenave.cc>
parents:
1
diff
changeset
|
7 <script type="text/javascript" src="script.js"></script> |
5
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
8 <script type="text/javascript" src="lightstring/md5.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
9 <script type="text/javascript" src="lightstring/lightstring.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
10 <script type="text/javascript" src="lightstring/stanza.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
11 <script type="text/javascript" src="lightstring/jid.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
12 <script type="text/javascript" src="lightstring/plugins/presence.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
13 <script type="text/javascript" src="lightstring/plugins/disco.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
14 <script type="text/javascript" src="lightstring/plugins/feature-not-implemented.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
15 <script type="text/javascript" src="record.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
16 <script type="text/javascript" src="sxe-document.js"></script> |
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
17 <script type="text/javascript" src="config.js"></script> |
0 | 18 </head> |
19 <body> | |
6
24aa8dccb170
Make XMPP actually work.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
5
diff
changeset
|
20 <div id="state"/> |
24aa8dccb170
Make XMPP actually work.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
5
diff
changeset
|
21 <button id="host">Host</button> |
0 | 22 <form id="toolbar"> |
23 <dl> | |
24 <dt> edit: </dt> | |
25 <dd> | |
26 <input type="button" value=" " data-command="undo" /> | |
27 <input type="button" value=" " data-command="redo" /> | |
28 | | |
29 <input type="button" value=" " data-command="cut" disabled="" /> | |
30 <input type="button" value=" " data-command="copy" disabled="" /> | |
31 <input type="button" value=" " data-command="paste" disabled="" /> | |
32 | | |
33 <input type="checkbox" id="useCSS" data-command="styleWithCSS" checked="" /> | |
34 <label for="useCSS">style with CSS</label> | |
35 </dd> | |
36 <dt> inline: </dt> | |
37 <dd> | |
38 <select data-command="fontName"> | |
39 <option value="" disabled="" selected=""> Font </option> | |
40 <option value="serif"> serif </option> | |
41 <option value="sans-serif"> sans-serif </option> | |
42 <option value="monospace"> monospace </option> | |
43 <option value=" " disabled=""> - </option> | |
44 <option value="Arial"> Arial </option> | |
45 <option value="Courier New"> Courier New </option> | |
46 <option value="Times New Roman"> Times New Roman </option> | |
47 <option value="Verdana"> Verdana </option> | |
48 </select> | |
49 <select data-command="fontSize"> | |
50 <option value="" disabled="" selected=""> Size </option> | |
51 <option value="1"> 1 </option> | |
52 <option value="2"> 2 </option> | |
53 <option value="3"> 3 </option> | |
54 <option value="4"> 4 </option> | |
55 <option value="5"> 5 </option> | |
56 <option value="6"> 6 </option> | |
57 <option value="7"> 7 </option> | |
58 </select> | |
59 <input type="button" value="-" data-command="decreaseFontSize" /> | |
60 <input type="button" value="+" data-command="increaseFontSize" /> | |
61 | | |
62 <input type="button" value=" " data-command="bold" /> | |
63 <input type="button" value=" " data-command="italic" /> | |
64 <input type="button" value=" " data-command="underline" /> | |
65 <input type="button" value=" " data-command="strikeThrough" /> | |
66 | | |
67 <input type="button" value=" " data-command="subscript" /> | |
68 <input type="button" value=" " data-command="superscript" /> | |
69 </dd> | |
70 <dt> block: </dt> | |
71 <dd> | |
72 <select data-command="formatBlock"> | |
73 <option value="" disabled="" selected=""> Format </option> | |
74 <option value="<p>"> paragraph </option> | |
75 <option value="<h1>"> heading 1 </option> | |
76 <option value="<h2>"> heading 2 </option> | |
77 <option value="<h3>"> heading 3 </option> | |
78 <option value="<h4>"> heading 4 </option> | |
79 <option value="<h5>"> heading 5 </option> | |
80 <option value="<h6>"> heading 6 </option> | |
81 <option value="<address>"> address </option> | |
82 <option value="<pre>"> preformatted </option> | |
83 </select> | |
84 | | |
85 <input type="button" value=" " data-command="justifyLeft" /> | |
86 <input type="button" value=" " data-command="justifyCenter" /> | |
87 <input type="button" value=" " data-command="justifyRight" /> | |
88 <input type="button" value=" " data-command="justifyFull" /> | |
89 | | |
90 <input type="button" value=" " data-command="outdent" /> | |
91 <input type="button" value=" " data-command="indent" /> | |
92 | | |
93 <input type="button" value=" " data-command="insertOrderedList" /> | |
94 <input type="button" value=" " data-command="insertUnorderedList" /> | |
95 </dd> | |
96 </dl> | |
97 <pre id="execCommand" /> | |
98 </form> | |
2
683f56999fb3
'DOMNodeFocused' pseudo-event + Mutation Event Demo
Fabien Cazenave <fabien@cazenave.cc>
parents:
1
diff
changeset
|
99 <pre id="breadcrumb"> </pre> |
0 | 100 |
6
24aa8dccb170
Make XMPP actually work.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
5
diff
changeset
|
101 <section id="document" contenteditable="true"> |
0 | 102 <h2> Go ahead, edit away! </h2> |
103 <p> Here's a typical paragraph element </p> | |
104 <ol><li> and now a list </li><li> with only </li><li> three items </li></ol> | |
105 </section> | |
106 | |
5
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
107 <footer> |
0 | 108 <p> |
109 This HTML content editor is not intended to compete with <a | |
110 href="http://ckeditor.com/">CKEditor</a> or <a | |
111 href="http://tinymce.com/">TinyMCE</a>: it is designed to | |
112 <strong>test</strong> the various implementations of | |
113 <code>contentEditable</code> and <code>execCommand</code> | |
114 in modern browsers. | |
115 </p> | |
116 <p> | |
117 This is a standalone file: the JavaScript code (<40 lines!), CSS markup and | |
118 images are embedded. Feel free to download it to try it offline. | |
119 </p> | |
120 <p> | |
121 Useful links: | |
122 <a href="https://developer.mozilla.org/en/Rich-Text_Editing_in_Mozilla">Mozilla Developer Network</a>, | |
123 <a href="http://html5demos.com/contenteditable/">html5demos.com</a>, | |
124 <a href="http://www.browserscope.org/richtext2/test">Browserscope.org</a>. | |
125 </p> | |
126 </footer> | |
5
03ef53b969bd
Add XMPP support.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
2
diff
changeset
|
127 <script type="text/javascript" src="script2.js"></script> |
0 | 128 </body> |
129 </html> |