2011-07-24 09:31:01 -07:00
<!doctype html>
2011-07-24 10:34:33 -07:00
< html lang = "en" >
2011-04-06 22:36:20 +02:00
< head >
2011-07-24 10:34:33 -07:00
< meta charset = "utf-8" >
< meta name = "robots" content = "noindex, nofollow" >
< title > Etherpad Lite< / title >
<!-- CSS -->
2011-07-25 12:35:38 +01:00
< link href = "../static/css/pad.css" rel = "stylesheet" >
2011-07-24 10:34:33 -07:00
<!-- javascript -->
< script type = "text/javascript" >
2011-03-26 13:10:41 +00:00
// < ![CDATA[
2011-07-24 10:34:33 -07:00
var clientVars = {}; // ]]>
< / script >
< script src = "../socket.io/socket.io.js" > < / script >
< script src = "../minified/pad.js" > < / script >
2011-07-30 16:33:35 +01:00
< link href = "../static/custom/pad.css" rel = "stylesheet" >
< script src = "../static/custom/pad.js" > < / script >
2011-07-24 10:34:33 -07:00
< style type = "text/css" title = "dynamicsyntax" > < / style >
2011-04-06 22:36:20 +02:00
< / head >
2011-04-07 17:56:33 +02:00
< body >
< div id = "editbar" >
< ul id = "menu_left" >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('bold');return false" >
< a title = "Bold (ctrl-B)" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -116px" > < / div >
2011-04-07 17:56:33 +02:00
< / a >
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('italic'); return false;" >
< a title = "Italics (ctrl-I)" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px 0px" > < / div >
< / a >
2011-04-07 18:09:13 +02:00
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('underline');return false;" >
< a title = "Underline (ctrl-U)" >
2011-08-01 20:01:41 +01:00
< div class = "buttonicon" style = "background-position:0px -236px;margin-top:1px;" > < / div >
2011-04-07 17:56:33 +02:00
< / a >
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('strikethrough');return false;" >
< a title = "Strikethrough" >
2011-08-01 20:01:41 +01:00
< div class = "buttonicon" style = "background-position:0px -200px" > < / div >
2011-07-31 19:41:42 +01:00
< / a >
2011-04-07 17:56:33 +02:00
< / li >
< li class = "separator" > < / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('insertunorderedlist');return false;" >
< a title = "Toggle Bullet List" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -34px" > < / div >
2011-04-07 17:56:33 +02:00
< / a >
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('indent');return false;" >
< a title = "Indent List" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -52px" > < / div >
2011-04-07 17:56:33 +02:00
< / a >
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('outdent');return false;" >
< a title = "Unindent List" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -134px" > < / div >
2011-04-07 17:56:33 +02:00
< / a >
< / li >
2011-07-06 12:48:18 +01:00
< li class = "separator" > < / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('undo');return false;" >
< a title = "Undo (ctrl-Z)" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -255px" > < / div >
< / a >
2011-04-07 17:56:33 +02:00
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('redo');return false;" >
< a title = "Redo (ctrl-Y)" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -166px" > < / div >
< / a >
2011-04-07 17:56:33 +02:00
< / li >
2011-07-06 12:48:18 +01:00
< li class = "separator" > < / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('clearauthorship');return false;" >
< a title = "Clear Authorship Colors" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -86px" > < / div >
< / a >
2011-06-21 15:08:36 +01:00
< / li >
2011-08-27 13:48:02 +02:00
< / ul >
< ul id = "menu_right" >
2011-08-26 16:19:23 +02:00
< li onClick = "window.pad&&pad.editbarClick('tglfont');return false;" >
2011-08-30 10:08:21 +03:00
< a id = "monospace" title = "Toggle the font between monospace and normal" >
2011-08-26 16:19:23 +02:00
< div class = "buttonicon" style = "background-position:0px -436px" > < / div >
< / a >
< / li >
2011-06-21 15:08:36 +01:00
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('readonly');return false;" >
< a id = "readonlylink" title = "Create a readonly link for this pad" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -150px" > < / div >
< / a >
2011-07-06 18:35:27 +01:00
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('import_export');return false;" >
< a id = "exportlink" title = "Import/Export from/to different document formats" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -68px" > < / div >
< / a >
2011-07-06 18:35:27 +01:00
< / li >
2011-08-18 12:16:00 +01:00
< li onClick = "window.pad&&pad.editbarClick('embed');return false;" >
< a id = "embedlink" title = "Embed this pad" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -18px" > < / div >
< / a >
2011-04-07 17:56:33 +02:00
< / li >
2011-04-07 20:45:28 +02:00
< li class = "separator" > < / li >
2011-08-23 18:36:38 +01:00
< li id = "timesliderlink" onClick = "document.location = document.location.pathname+ '/timeslider'" >
2011-08-18 12:16:00 +01:00
< a title = "Show the history of this pad" >
2011-07-31 19:41:42 +01:00
< div class = "buttonicon" style = "background-position:0px -218px" > < / div >
2011-07-06 12:48:18 +01:00
< / a >
2011-04-07 20:45:28 +02:00
< / li >
2011-08-18 12:16:00 +01:00
< li id = "usericon" onClick = "window.pad&&pad.editbarClick('showusers');return false;" >
< a title = "Show connected users" >
2011-08-27 13:48:02 +02:00
< div class = "buttonicon" style = "background-position:0px -183px;display:inline-block;" > < / div >
2011-07-31 19:41:42 +01:00
< span id = "online_count" > 1< / span >
2011-04-07 20:45:28 +02:00
< / a >
< / li >
2011-04-07 17:56:33 +02:00
< / ul >
2011-08-24 18:37:22 +01:00
< script > DOMTranslate ( "#editbar a" , "title" ) ; < / script >
2011-04-06 22:36:20 +02:00
< / div >
2011-03-26 18:44:30 +00:00
2011-04-07 17:56:33 +02:00
< div id = "users" >
2011-04-07 20:45:28 +02:00
< div id = "connectionstatus" >
<!-- -->
< / div >
< div id = "myuser" >
< div id = "mycolorpicker" >
2011-08-20 18:22:10 +01:00
< div id = "colorpicker" > < / div >
2011-04-07 20:45:28 +02:00
< span id = "mycolorpickersave" >
2011-08-24 18:37:22 +01:00
< a onclick = "closeColorPicker()" class = "translate" > Save< / a >
2011-04-07 20:45:28 +02:00
< / span >
< span id = "mycolorpickercancel" >
2011-08-24 18:37:22 +01:00
< a onclick = "closeColorPicker()" class = "translate" > Cancel< / a >
2011-04-07 20:45:28 +02:00
< / span >
2011-08-20 18:22:10 +01:00
< span id = "mycolorpickerpreview" class = "myswatchboxhoverable" > < / span >
2011-04-07 20:45:28 +02:00
< / div >
2011-08-20 18:22:10 +01:00
2011-04-07 20:45:28 +02:00
< div id = "myswatchbox" > < div id = "myswatch" > <!-- --> < / div > < / div >
< div id = "myusernameform" > < input type = "text" id = "myusernameedit" disabled = "disabled" / > < / div >
< div id = "mystatusform" > < input type = "text" id = "mystatusedit" disabled = "disabled" / > < / div >
< / div >
< div id = "otherusers" >
< div id = "guestprompts" > <!-- --> < / div >
< table id = "otheruserstable" cellspacing = "0" cellpadding = "0" border = "0" >
< tr >
< td >
< / td >
< / tr >
< / table >
< div id = "nootherusers" >
< / div >
< / div >
< div id = "userlistbuttonarea" >
<!-- <a href="javascript:void(0)" id="sharebutton">Share</a> -->
< / div >
< / div >
<!-- /padusers -->
<!-- <div id="users">
<!-- some example code so I can make the css - - *>
< / div > -->
2011-04-07 15:16:38 +02:00
2011-04-08 12:20:26 +02:00
< div id = "editorcontainerbox" >
2011-04-07 17:56:33 +02:00
2011-04-08 12:20:26 +02:00
< div id = "editorcontainer" >
2011-04-07 17:56:33 +02:00
<!-- -->
2011-04-07 15:16:38 +02:00
< / div >
2011-08-26 19:05:35 +01:00
< div id = "editorloadingbox" class = "translate" > Loading...< / div >
2011-04-07 15:16:38 +02:00
2011-04-07 17:56:33 +02:00
< / div >
2011-07-19 22:08:26 +01:00
<!-- import export code -->
< div id = "importexport" >
2011-07-20 16:01:10 +01:00
2011-07-19 22:08:26 +01:00
< div id = "import" >
2011-08-24 18:37:22 +01:00
< span id = "importtext" class = "translate" > Import from text file, HTML, PDF, Word, ODT or RTF:< / span > < br / > < br / >
2011-07-21 20:13:58 +01:00
< form id = "importform" method = "post" action = "" target = "importiframe" enctype = "multipart/form-data" >
2011-07-20 16:01:10 +01:00
< div class = "importformdiv" id = "importformfilediv" >
2011-08-21 20:17:38 +01:00
< input type = "file" name = "file" size = "15" id = "importfileinput" / >
2011-07-20 16:01:10 +01:00
< div class = "importmessage" id = "importmessagefail" > < / div >
< / div >
2011-08-24 18:37:22 +01:00
< div class = "importmessage translate" id = "importmessagesuccess" > Successful!< / div >
2011-07-20 16:01:10 +01:00
< div class = "importformdiv" id = "importformsubmitdiv" >
< input type = "hidden" name = "padId" value = "blpmaXT35R" / >
< span class = "nowrap" >
< input type = "submit" name = "submit" value = "Import Now" disabled = "disabled" id = "importsubmitinput" / >
2011-07-26 16:45:24 +03:00
< img alt = "" id = "importstatusball" src = "../static/img/loading.gif" align = "top" / >
< img alt = "" id = "importarrow" src = "../static/img/leftarrow.png" align = "top" / >
2011-07-20 16:01:10 +01:00
< / span >
< / div >
2011-07-21 20:13:58 +01:00
< / form >
2011-07-19 22:08:26 +01:00
< / div >
2011-07-20 16:01:10 +01:00
2011-08-26 19:05:35 +01:00
< script > DOMTranslate ( "#importsubmitinput" , "value" ) ; < / script >
2011-07-19 22:08:26 +01:00
< div id = "importexportline" > < / div >
2011-07-20 16:01:10 +01:00
2011-07-19 22:08:26 +01:00
< div id = "export" >
2011-08-24 18:37:22 +01:00
< span id = "exporttext" class = "translate" > Export current pad as:< / span >
< a id = "exporthtmla" target = "_blank" class = "exportlink" > < div class = "exporttype translate" id = "exporthtml" > HTML< / div > < / a >
< a id = "exportplaina" target = "_blank" class = "exportlink" > < div class = "exporttype translate" id = "exportplain" > Plain text< / div > < / a >
2011-08-25 09:52:19 +02:00
< a id = "exportdokuwikia" target = "_blank" class = "exportlink" > < div class = "exporttype translate" id = "exportdokuwiki" > DokuWiki text< / div > < / a >
2011-08-24 18:37:22 +01:00
< a id = "exportworda" target = "_blank" class = "exportlink" > < div class = "exporttype translate" id = "exportword" > Microsoft Word< / div > < / a >
< a id = "exportpdfa" target = "_blank" class = "exportlink" > < div class = "exporttype translate" id = "exportpdf" > PDF< / div > < / a >
< a id = "exportopena" target = "_blank" class = "exportlink" > < div class = "exporttype translate" id = "exportopen" > OpenDocument< / div > < / a >
< a id = "exportwordlea" target = "_blank" onClick = "padimpexp.export2Wordle();return false;" class = "exportlink" > < div class = "exporttype translate" id = "exportwordle" > Wordle< / div > < / a >
2011-07-20 16:38:03 +01:00
< form id = "wordlepost" name = "wall" action = "http://wordle.net/advanced" method = "POST" style = "margin-left:0px;" >
< div id = "hidetext" style = "" > < textarea id = "text" name = "text" id = "text" style = "display:none;" > Coming soon!< / textarea > < / div >
< / form >
2011-07-19 22:08:26 +01:00
< / div >
< / div >
2011-07-08 17:42:07 +01:00
<!-- the embed code -->
< div id = "embed" >
< div id = "embedcode" >
2011-08-24 18:37:22 +01:00
< span id = "embedtext" class = "translate" > Embed code:< / span > < input id = "embedinput" type = "text" value = "" >
2011-07-08 17:42:07 +01:00
< / div >
< / div >
<!-- the embed code -->
< div id = "readonly" >
< div id = "readonlyUrl" >
2011-08-24 18:37:22 +01:00
< span id = "readonlytext" class = "translate" > Use this link to share a read-only version of your pad:< / span > < input id = "readonlyInput" type = "text" value = "" >
2011-08-16 23:31:41 +03:00
< img id = "readonlyImage" src = "" alt = "" style = "margin: 10px 90px" >
2011-07-08 17:42:07 +01:00
< / div >
< / div >
2011-04-07 15:16:38 +02:00
2011-07-20 21:50:58 +01:00
< div id = "chatthrob" >
< / div >
2011-07-14 16:15:38 +01:00
< div id = "chaticon" >
2011-07-19 17:41:43 +01:00
< a onClick = "chat.show();return false;"
2011-07-14 16:15:38 +01:00
title="Open the chat for this pad">
2011-08-24 18:37:22 +01:00
< span id = "chatlabel" class = "translate" > Chat< / span >
2011-08-10 17:19:23 +01:00
< div class = "buttonicon" style = "background-position:0px -102px;display:inline-block;" > < / div >
2011-07-14 16:15:38 +01:00
< / a >
< span id = "chatcounter" > 0< / span >
< / div >
< div id = "chatbox" >
2011-08-24 18:37:22 +01:00
< div id = "titlebar" > < span id = "titlelabel" class = "translate" > Chat< / span > < a id = "titlecross" onClick = "chat.hide();return false;" > - < / a > < / div >
2011-07-14 16:15:38 +01:00
< div id = "chattext" class = "authorColors" > < / div >
< div id = "chatinputbox" >
< form >
< input id = "chatinput" type = "text" maxlength = "140" / >
< / form >
< / div >
< / div >
2011-08-10 18:18:50 +01:00
< div id = "focusprotector" > < / div >
2011-04-06 22:36:20 +02:00
<!-- /padeditor -->
< div id = "modaloverlay" >
< div id = "modaloverlay-inner" >
<!-- -->
2011-08-10 18:18:50 +01:00
2011-04-06 22:36:20 +02:00
< / div >
< / div >
< div id = "mainmodals" >
< div id = "connectionbox" class = "modaldialog" >
< div id = "connectionboxinner" class = "modaldialog-inner" >
< div class = "connecting" >
2011-08-24 18:37:22 +01:00
< span class = "translate" > Connecting...< / span >
2011-04-06 22:36:20 +02:00
< / div >
< div class = "reconnecting" >
2011-08-24 18:37:22 +01:00
< span class = "translate" > Reestablishing connection...< / span >
2011-04-06 22:36:20 +02:00
< / div >
< div class = "disconnected" >
2011-08-26 19:05:35 +01:00
< h2 class = "h2_disconnect translate" > Disconnected.< / h2 >
< h2 class = "h2_userdup translate" > Opened in another window.< / h2 >
< h2 class = "h2_unauth translate" > No Authorization.< / h2 >
2011-04-06 22:36:20 +02:00
< div id = "disconnected_looping" >
< p >
2011-08-24 18:37:22 +01:00
< b > < span class = "translate" > We're having trouble talking to the EtherPad lite synchronization server.< / span > < / b >
< span class = "translate" > You may be connecting through an incompatible firewall or proxy server.< / span >
2011-04-06 22:36:20 +02:00
< / p >
< / div >
< div id = "disconnected_initsocketfail" >
< p >
2011-08-24 18:37:22 +01:00
< b > < span class = "translate" > We were unable to connect to the EtherPad lite synchronization server.< / span > < / b >
< span class = "translate" > This may be due to an incompatibility with your web browser or internet connection.< / span >
2011-04-06 22:36:20 +02:00
< / p >
2011-03-26 13:10:41 +00:00
< / div >
2011-04-06 22:36:20 +02:00
< div id = "disconnected_userdup" >
< p >
2011-08-24 18:37:22 +01:00
< b > < span class = "translate" > You seem to have opened this pad in another browser window.< / span > < / b >
< span class = "translate" > If you'd like to use this window instead, you can reconnect.< / span >
2011-04-06 22:36:20 +02:00
< / p >
2011-03-26 13:10:41 +00:00
< / div >
2011-04-06 22:36:20 +02:00
< div id = "disconnected_unknown" >
< p >
2011-08-24 18:37:22 +01:00
< b > < span class = "translate" > Lost connection with the EtherPad lite synchronization server.< / b > This may be due to a loss of network connectivity.< / span >
2011-04-06 22:36:20 +02:00
< / p >
2011-03-26 13:10:41 +00:00
< / div >
2011-04-06 22:36:20 +02:00
< div id = "disconnected_slowcommit" >
< p >
2011-08-24 18:37:22 +01:00
< b > < span class = "translate" > Server not responding.< / span > < / b > < span class = "translate" > This may be due to network connectivity issues or high load on the server.< / span >
2011-04-06 22:36:20 +02:00
< / p >
< / div >
< div id = "disconnected_unauth" >
< p >
2011-08-24 18:37:22 +01:00
< span class = "translate" > Your browser's credentials or permissions have changed while viewing this pad. Try reconnecting.< / span >
2011-04-06 22:36:20 +02:00
< / p >
< / div >
2011-08-16 20:02:30 +01:00
< div id = "disconnected_deleted" >
< p >
2011-08-24 18:37:22 +01:00
< span class = "translate" > This pad was deleted.< / span >
2011-08-16 20:02:30 +01:00
< / p >
< / div >
2011-04-06 22:36:20 +02:00
< div id = "reconnect_advise" >
< p >
2011-08-24 18:37:22 +01:00
< span class = "translate" > If this continues to happen, please let us know< / span >
2011-04-06 22:36:20 +02:00
< / p >
< / div >
< div id = "reconnect_form" >
2011-08-24 18:37:22 +01:00
< button id = "forcereconnect" > < span class = "translate" > Reconnect Now< / span > < / button >
2011-04-06 22:36:20 +02:00
< / div >
< / div >
2011-03-27 10:28:55 +00:00
< / div >
2011-04-06 22:36:20 +02:00
< form id = "reconnectform" method = "post" action = "/ep/pad/reconnect" accept-charset = "UTF-8" style = "display: none;" >
< input type = "hidden" class = "padId" name = "padId" / >
< input type = "hidden" class = "diagnosticInfo" name = "diagnosticInfo" / >
< input type = "hidden" class = "missedChanges" name = "missedChanges" / >
< / form >
< / body >
2011-05-28 18:09:17 +01:00
< / html >