diff options
author | alexanders@b2ef00c0-3703-41da-baef-cfe82387ac0c <none@none> | 2010-02-03 11:24:21 +0000 |
---|---|---|
committer | alexanders@b2ef00c0-3703-41da-baef-cfe82387ac0c <none@none> | 2010-02-03 11:24:21 +0000 |
commit | 46bcc1c05925f07313b11b6d9399151b0665d7a7 (patch) | |
tree | f3b15532db63d85ab4d77b40608581c240336d66 | |
parent | f817d01af684bd27e6978eb21ecbe0a190ead1a7 (diff) | |
download | etherpad-46bcc1c05925f07313b11b6d9399151b0665d7a7.tar.gz etherpad-46bcc1c05925f07313b11b6d9399151b0665d7a7.tar.xz etherpad-46bcc1c05925f07313b11b6d9399151b0665d7a7.zip |
removed links for word, pdf, odt export
--HG--
extra : convert_revision : svn%3Ab2ef00c0-3703-41da-baef-cfe82387ac0c/trunk%4019
Diffstat (limited to '')
-rw-r--r-- | etherpad/src/templates/pad/pad_body2.ejs | 5 | ||||
-rw-r--r-- | etherpad/src/templates/pad/pad_content.ejs | 3 | ||||
-rw-r--r-- | etherpad/src/templates/pad/padview_body.ejs | 2 |
3 files changed, 1 insertions, 9 deletions
diff --git a/etherpad/src/templates/pad/pad_body2.ejs b/etherpad/src/templates/pad/pad_body2.ejs index a49f453..55926d4 100644 --- a/etherpad/src/templates/pad/pad_body2.ejs +++ b/etherpad/src/templates/pad/pad_body2.ejs @@ -140,7 +140,7 @@ limitations under the License. */ %> <div class="dbpanel-bottom"><!-- --></div> <div id="importexport"> <div id="impexp-import"> - <div id="impexp-importlabel"><b>Import</b> from text file, HTML, Word, or RTF:</div> + <div id="impexp-importlabel"><b>Import</b> from text file, HTML:</div> <form id="importform" method="post" action="/ep/pad/impexp/import" target="importiframe" enctype="multipart/form-data"> <div class="importformdiv" id="importformfilediv"> @@ -164,9 +164,6 @@ limitations under the License. */ %> <%= exportLink('html', 1, 'HTML', false) %> <%= exportLink('txt', 2, 'Plain text', false) %> <%= exportLink('link', 3, 'Bookmark file', false, '/ep/pad/linkfile?padId='+localPadId, 'This will save a file that, when opened, takes you to this pad.') %> - <%= exportLink('doc', 4, 'Microsoft Word', true) %> - <%= exportLink('pdf', 5, 'PDF', true) %> - <%= exportLink('odt', 6, 'OpenDocument', true) %> </div> </div><!-- /impexp-export --> <div id="impexp-divider"><!-- --></div> diff --git a/etherpad/src/templates/pad/pad_content.ejs b/etherpad/src/templates/pad/pad_content.ejs index dbbd9bd..4e25c7f 100644 --- a/etherpad/src/templates/pad/pad_content.ejs +++ b/etherpad/src/templates/pad/pad_content.ejs @@ -193,17 +193,14 @@ limitations under the License. */ %><% <table> <tr> <td class="firsttd"><%= exportOption('html', 'HTML', false) %></td> - <td class="secondtd"><%= exportOption('doc', 'Microsoft Word', true) %></td> </tr> <tr> <td class="firsttd"><%= exportOption('txt', 'Plain text', false) %></td> - <td class="secondtd"><%= exportOption('pdf', 'PDF', true) %></td> </tr> <tr> <td class="firsttd"><%= exportOption('link', 'Bookmark file', false, '/ep/pad/linkfile?padId='+padId, 'This will save a file that, when opened, takes you to this pad.') %></td> - <td class="secondtd"><%= exportOption('odt', 'OpenDocument', true) %></td> </tr> </table> <div id="exportmessage"></div> diff --git a/etherpad/src/templates/pad/padview_body.ejs b/etherpad/src/templates/pad/padview_body.ejs index 75c38fe..e18ff12 100644 --- a/etherpad/src/templates/pad/padview_body.ejs +++ b/etherpad/src/templates/pad/padview_body.ejs @@ -113,8 +113,6 @@ limitations under the License. */ %><% <h2>Download as</h2> <img src="/static/img/may09/html.gif"><a class="tlink" href="/ep/pad/export/<%= padId %>/<%= revisionId %>?format=html" thref="/ep/pad/export/<%= padId %>/rev.%revision%?format=html">HTML</a><br> <img src="/static/img/may09/txt.gif" ><a class="tlink" href="/ep/pad/export/<%= padId %>/<%= revisionId %>?format=html" thref="/ep/pad/export/<%= padId %>/rev.%revision%?format=txt" >Plain text</a><br> -<img src="/static/img/may09/doc.gif" ><a class="tlink" href="/ep/pad/export/<%= padId %>/<%= revisionId %>?format=html" thref="/ep/pad/export/<%= padId %>/rev.%revision%?format=doc" >Microsoft Word</a><br> -<img src="/static/img/may09/pdf.gif" ><a class="tlink" href="/ep/pad/export/<%= padId %>/<%= revisionId %>?format=html" thref="/ep/pad/export/<%= padId %>/rev.%revision%?format=pdf" >PDF</a> </div> |