diff options
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> |