2014-02-12 10:23:40 +00:00
|
|
|
extends ../layout
|
|
|
|
|
2014-06-21 21:20:37 +00:00
|
|
|
block vars
|
|
|
|
- var suppressNavbar = true
|
|
|
|
- var suppressFooter = true
|
2014-07-24 13:04:26 +00:00
|
|
|
- var suppressSystemMessages = true
|
2014-06-21 21:20:37 +00:00
|
|
|
|
2014-02-12 10:23:40 +00:00
|
|
|
block content
|
2014-07-28 14:57:06 +00:00
|
|
|
.editor(ng-controller="IdeController").full-size
|
2017-02-23 15:47:48 +00:00
|
|
|
.loading-screen(ng-if="state.loading")
|
|
|
|
.loading-screen-lion-container
|
|
|
|
.loading-screen-lion(
|
|
|
|
style="height: 20%;"
|
|
|
|
ng-style="{ 'height': state.load_progress + '%' }"
|
|
|
|
)
|
|
|
|
h3.loading-screen-label(ng-if="!state.error") #{translate("loading")}
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
p.loading-screen-error(ng-if="state.error").ng-cloak
|
|
|
|
span(ng-bind-html="state.error")
|
2015-07-31 14:42:47 +00:00
|
|
|
|
2016-10-20 15:39:43 +00:00
|
|
|
include ./editor/feature-onboarding
|
|
|
|
|
2014-06-24 15:33:36 +00:00
|
|
|
.global-alerts(ng-cloak)
|
|
|
|
.alert.alert-danger.small(ng-if="connection.forced_disconnect")
|
2014-07-31 16:07:43 +00:00
|
|
|
strong #{translate("disconnected")}
|
|
|
|
| #{translate("please_refresh")}
|
2014-06-24 15:33:36 +00:00
|
|
|
|
|
|
|
.alert.alert-warning.small(ng-if="connection.reconnection_countdown")
|
2014-07-31 16:07:43 +00:00
|
|
|
strong #{translate("lost_connection")}.
|
|
|
|
| #{translate("reconnecting_in_x_secs", {seconds:"{{ connection.reconnection_countdown }}"})}.
|
2015-09-29 09:23:21 +00:00
|
|
|
a#try-reconnect-now-button.pull-right(href, ng-click="tryReconnectNow()") #{translate("try_now")}
|
2014-06-24 15:33:36 +00:00
|
|
|
|
|
|
|
.alert.alert-warning.small(ng-if="connection.reconnecting")
|
2014-07-31 16:07:43 +00:00
|
|
|
strong #{translate("reconnecting")}...
|
2014-06-24 15:33:36 +00:00
|
|
|
|
2015-10-14 13:15:33 +00:00
|
|
|
.alert.alert-warning.small(ng-if="connection.inactive_disconnect")
|
|
|
|
strong #{translate("editor_disconected_click_to_reconnect")}
|
|
|
|
|
2014-07-02 16:41:07 +00:00
|
|
|
.div(ng-controller="SavingNotificationController")
|
2015-10-14 13:15:33 +00:00
|
|
|
.alert.alert-warning.small(ng-repeat="(doc_id, state) in docSavingStatus" ng-if="state.unsavedSeconds > 8") #{translate("saving_notification_with_seconds", {docname:"{{ state.doc.name }}", seconds:"{{ state.unsavedSeconds }}"})}
|
2014-07-02 16:41:07 +00:00
|
|
|
|
2014-06-26 15:39:52 +00:00
|
|
|
include ./editor/left-menu
|
2014-06-25 12:51:02 +00:00
|
|
|
|
2016-10-11 13:24:01 +00:00
|
|
|
#chat-wrapper.full-size(
|
2014-07-02 12:23:04 +00:00
|
|
|
layout="chat",
|
|
|
|
spacing-open="12",
|
|
|
|
spacing-closed="0",
|
|
|
|
initial-size-east="250",
|
|
|
|
init-closed-east="true",
|
|
|
|
open-east="ui.chatOpen",
|
|
|
|
ng-hide="state.loading",
|
|
|
|
ng-cloak
|
|
|
|
)
|
|
|
|
.ui-layout-center
|
|
|
|
include ./editor/header
|
2014-06-21 21:20:37 +00:00
|
|
|
|
2014-07-02 12:23:04 +00:00
|
|
|
include ./editor/share
|
2014-07-01 13:12:28 +00:00
|
|
|
|
2016-02-23 15:21:22 +00:00
|
|
|
#ide-body(
|
|
|
|
ng-cloak,
|
|
|
|
layout="main",
|
|
|
|
ng-hide="state.loading",
|
|
|
|
resize-on="layout:chat:resize",
|
|
|
|
minimum-restore-size-west="130"
|
|
|
|
)
|
2014-07-02 12:23:04 +00:00
|
|
|
.ui-layout-west
|
|
|
|
include ./editor/file-tree
|
|
|
|
|
|
|
|
.ui-layout-center
|
|
|
|
include ./editor/editor
|
2014-07-03 16:05:50 +00:00
|
|
|
include ./editor/binary-file
|
2016-10-05 10:04:39 +00:00
|
|
|
include ./editor/history
|
2014-07-15 16:56:09 +00:00
|
|
|
include ./editor/publish-template
|
2014-07-02 12:23:04 +00:00
|
|
|
|
2014-07-21 11:19:13 +00:00
|
|
|
.ui-layout-east
|
2014-07-15 17:25:12 +00:00
|
|
|
include ./editor/chat
|
2014-07-22 13:38:32 +00:00
|
|
|
|
|
|
|
include ./editor/hotkeys
|
2014-06-22 19:08:56 +00:00
|
|
|
|
2014-07-02 16:04:29 +00:00
|
|
|
script(type="text/ng-template", id="genericMessageModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
button.close(
|
|
|
|
type="button"
|
|
|
|
data-dismiss="modal"
|
|
|
|
ng-click="done()"
|
|
|
|
) ×
|
|
|
|
h3 {{ title }}
|
2015-12-04 08:43:34 +00:00
|
|
|
.modal-body(ng-bind-html="message")
|
2014-07-02 16:04:29 +00:00
|
|
|
.modal-footer
|
2014-07-31 16:07:43 +00:00
|
|
|
button.btn.btn-info(ng-click="done()") #{translate("ok")}
|
2014-06-21 21:20:37 +00:00
|
|
|
|
2016-11-02 16:59:57 +00:00
|
|
|
script(type="text/ng-template", id="lockEditorModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
h3 {{ title }}
|
|
|
|
.modal-body(ng-bind-html="message")
|
|
|
|
|
2016-10-11 13:30:27 +00:00
|
|
|
block requirejs
|
|
|
|
script(type="text/javascript" src='/socket.io/socket.io.js')
|
2016-10-13 13:51:21 +00:00
|
|
|
|
2016-11-01 14:58:58 +00:00
|
|
|
//- don't use cdn for workers
|
|
|
|
- var aceWorkerPath = buildJsPath(lib('ace'), {cdn:false,fingerprint:false})
|
2016-10-13 13:51:21 +00:00
|
|
|
- var pdfWorkerPath = buildJsPath('/libs/' + lib('pdfjs') + '/pdf.worker', {cdn:false,fingerprint:false})
|
|
|
|
|
2014-07-09 10:17:16 +00:00
|
|
|
//- We need to do .replace(/\//g, '\\/') do that '</script>' -> '<\/script>'
|
2014-07-09 10:05:00 +00:00
|
|
|
//- and doesn't prematurely end the script tag.
|
2014-06-04 15:28:20 +00:00
|
|
|
script(type='text/javascript').
|
2014-11-17 13:38:33 +00:00
|
|
|
window.project_id = "!{project_id}";
|
2014-07-09 10:17:16 +00:00
|
|
|
window.userSettings = !{JSON.stringify(userSettings).replace(/\//g, '\\/')};
|
|
|
|
window.user = !{JSON.stringify(user).replace(/\//g, '\\/')};
|
2014-02-12 10:23:40 +00:00
|
|
|
window.csrfToken = "!{csrfToken}";
|
2014-07-21 10:56:49 +00:00
|
|
|
window.anonymous = #{anonymous};
|
2015-11-06 12:51:43 +00:00
|
|
|
window.maxDocLength = #{maxDocLength};
|
2017-01-10 15:11:12 +00:00
|
|
|
window.trackChangesEnabled = #{trackChangesEnabled};
|
2017-02-14 10:13:12 +00:00
|
|
|
window.showTrackChangesOnboarding = #{!!showTrackChangesOnboarding};
|
2016-06-27 10:34:24 +00:00
|
|
|
window.wikiEnabled = #{!!(settings.apis.wiki && settings.apis.wiki.url)};
|
2014-02-12 10:23:40 +00:00
|
|
|
window.requirejs = {
|
|
|
|
"paths" : {
|
2016-09-02 15:20:16 +00:00
|
|
|
"mathjax": "#{buildJsPath('/libs/mathjax/MathJax.js', {cdn:false, fingerprint:false, qs:{config:'TeX-AMS_HTML'}})}",
|
2016-09-22 10:36:53 +00:00
|
|
|
"moment": "libs/#{lib('moment')}",
|
2016-10-13 13:51:21 +00:00
|
|
|
"pdfjs-dist/build/pdf": "libs/#{lib('pdfjs')}/pdf",
|
|
|
|
"pdfjs-dist/build/pdf.worker": "#{pdfWorkerPath}",
|
2016-09-22 10:02:20 +00:00
|
|
|
"ace": "#{lib('ace')}"
|
2014-02-12 10:23:40 +00:00
|
|
|
},
|
2014-07-18 11:08:35 +00:00
|
|
|
"urlArgs" : "fingerprint=#{fingerprint(jsPath + 'ide.js')}-#{fingerprint(jsPath + 'libs.js')}",
|
2014-02-12 10:23:40 +00:00
|
|
|
"waitSeconds": 0,
|
|
|
|
"shim": {
|
2016-10-13 13:51:21 +00:00
|
|
|
"pdfjs-dist/build/pdf": {
|
2016-09-23 12:51:21 +00:00
|
|
|
"deps": ["libs/#{lib('pdfjs')}/compatibility"]
|
2014-07-16 10:28:52 +00:00
|
|
|
},
|
|
|
|
"ace/ext-searchbox": {
|
2016-09-23 12:51:21 +00:00
|
|
|
"deps": ["ace/ace"]
|
2015-05-05 13:33:18 +00:00
|
|
|
},
|
2016-10-25 13:16:52 +00:00
|
|
|
"ace/ext-modelist": {
|
|
|
|
"deps": ["ace/ace"]
|
|
|
|
},
|
2015-05-05 13:33:18 +00:00
|
|
|
"ace/ext-language_tools": {
|
2016-09-23 12:51:21 +00:00
|
|
|
"deps": ["ace/ace"]
|
2014-02-12 10:23:40 +00:00
|
|
|
}
|
2015-01-29 18:31:11 +00:00
|
|
|
},
|
2016-09-23 12:51:21 +00:00
|
|
|
"config":{
|
|
|
|
"moment":{
|
|
|
|
"noGlobal": true
|
2015-01-29 18:31:11 +00:00
|
|
|
}
|
2014-02-12 10:23:40 +00:00
|
|
|
}
|
|
|
|
};
|
2016-09-22 10:02:20 +00:00
|
|
|
window.aceFingerprint = "#{fingerprint(jsPath + lib('ace') + '/ace.js')}"
|
2016-09-14 14:17:24 +00:00
|
|
|
window.aceWorkerPath = "#{aceWorkerPath}";
|
2014-02-12 10:23:40 +00:00
|
|
|
|
|
|
|
script(
|
2016-07-20 14:17:01 +00:00
|
|
|
data-main=buildJsPath("ide.js", {fingerprint:false}),
|
2016-07-20 11:58:32 +00:00
|
|
|
baseurl=fullJsPath,
|
2016-09-22 10:02:20 +00:00
|
|
|
data-ace-base=buildJsPath(lib('ace'), {fingerprint:false}),
|
2016-07-18 16:18:51 +00:00
|
|
|
src=buildJsPath('libs/require.js')
|
2014-02-12 10:23:40 +00:00
|
|
|
)
|
2016-07-20 11:58:32 +00:00
|
|
|
|
2016-10-13 13:22:43 +00:00
|
|
|
|