Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
8564183b
Commit
8564183b
authored
Mar 10, 2016
by
Tristan Cavelier
Committed by
Romain Courteaud
Mar 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_code_mirror: make gadget
parent
b0ced01b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
312 additions
and
0 deletions
+312
-0
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.html.html
...s/erp5_code_mirror/codemirror/codemirror.gadget.html.html
+26
-0
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.html.xml
...ns/erp5_code_mirror/codemirror/codemirror.gadget.html.xml
+36
-0
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.js.js
...skins/erp5_code_mirror/codemirror/codemirror.gadget.js.js
+214
-0
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.js.xml
...kins/erp5_code_mirror/codemirror/codemirror.gadget.js.xml
+36
-0
No files found.
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.html.html
0 → 100644
View file @
8564183b
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
Codemirror
</title>
<script
src=
"../rsvp.js"
></script>
<script
src=
"../renderjs.js"
></script>
<link
rel=
"stylesheet"
href=
"lib/codemirror.css"
/>
<link
rel=
"stylesheet"
href=
"addon/display/fullscreen.css"
/>
<!-- link rel="stylesheet" href="addon/dialog/dialog.css" / -->
<script
src=
"lib/codemirror.js"
></script>
<!-- script src="addon/search/searchcursor.js"></script>
<script src="addon/cm_edit/matchbrackets.js"></script -->
<script
src=
"addon/display/fullscreen.js"
></script>
<!-- script src="addon/dialog/dialog.js"></script>
<script src="mode/javascript/javascript.js"></script -->
<script
src=
"codemirror.gadget.js"
></script>
</head>
<body>
</body>
</html>
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.html.xml
0 → 100644
View file @
8564183b
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"File"
module=
"OFS.Image"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_EtagSupport__etag
</string>
</key>
<value>
<string>
ts57455860.13
</string>
</value>
</item>
<item>
<key>
<string>
__name__
</string>
</key>
<value>
<string>
codemirror.gadget.html
</string>
</value>
</item>
<item>
<key>
<string>
content_type
</string>
</key>
<value>
<string>
text/html
</string>
</value>
</item>
<item>
<key>
<string>
precondition
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
size
</string>
</key>
<value>
<int>
865
</int>
</value>
</item>
<item>
<key>
<string>
title
</string>
</key>
<value>
<string></string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.js.js
0 → 100644
View file @
8564183b
/*jslint nomen: true, indent: 2 */
/*global window, rJS, CodeMirror, document, RSVP, loopEventListener */
(
function
(
window
,
rJS
,
CodeMirror
,
RSVP
)
{
//, loopEventListener) {
"
use strict
"
;
// XXXXXXXXXXXXXXXXXXX REMOVE THIS FUNCTION AFTER ADDING IT ON ERP5 GLOBALS ON CLASSIC VIEWS
var
loopEventListener
=
function
(
target
,
type
,
useCapture
,
callback
,
prevent_default
)
{
//////////////////////////
// Infinite event listener (promise is never resolved)
// eventListener is removed when promise is cancelled/rejected
//////////////////////////
var
handle_event_callback
,
callback_promise
;
if
(
prevent_default
===
undefined
)
{
prevent_default
=
true
;
}
function
cancelResolver
()
{
if
((
callback_promise
!==
undefined
)
&&
(
typeof
callback_promise
.
cancel
===
"
function
"
))
{
callback_promise
.
cancel
();
}
}
function
canceller
()
{
if
(
handle_event_callback
!==
undefined
)
{
target
.
removeEventListener
(
type
,
handle_event_callback
,
useCapture
);
}
cancelResolver
();
}
function
itsANonResolvableTrap
(
resolve
,
reject
)
{
var
result
;
handle_event_callback
=
function
(
evt
)
{
if
(
prevent_default
)
{
evt
.
stopPropagation
();
evt
.
preventDefault
();
}
cancelResolver
();
try
{
result
=
callback
(
evt
);
}
catch
(
e
)
{
result
=
RSVP
.
reject
(
e
);
}
callback_promise
=
result
;
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
result
;
})
.
push
(
undefined
,
function
(
error
)
{
if
(
!
(
error
instanceof
RSVP
.
CancellationError
))
{
canceller
();
reject
(
error
);
}
});
};
target
.
addEventListener
(
type
,
handle_event_callback
,
useCapture
);
}
return
new
RSVP
.
Promise
(
itsANonResolvableTrap
,
canceller
);
};
function
requestFullScreen
(
element
)
{
if
((
document
.
fullScreenElement
&&
document
.
fullScreenElement
!==
null
)
||
(
!
document
.
mozFullScreen
&&
!
document
.
webkitIsFullScreen
))
{
if
(
element
.
requestFullScreen
)
{
element
.
requestFullScreen
();
}
else
if
(
element
.
mozRequestFullScreen
)
{
element
.
mozRequestFullScreen
();
}
else
if
(
element
.
webkitRequestFullScreen
)
{
/*global Element */
element
.
webkitRequestFullScreen
(
Element
.
ALLOW_KEYBOARD_INPUT
);
}
}
}
function
multiAddEventListener
(
object
,
event_names
,
listener
)
{
event_names
.
forEach
(
function
(
event_name
)
{
object
.
addEventListener
(
event_name
,
listener
);
// XXX don't use addEventListener!
});
}
function
multiRemoveEventListener
(
object
,
event_names
,
listener
)
{
event_names
.
forEach
(
function
(
event_name
)
{
object
.
removeEventListener
(
event_name
,
listener
);
// XXX don't use removeEventListener!
});
}
function
gadgetRequestFullScreen
(
gadget
)
{
var
cm
=
gadget
.
props
.
editor
,
event_names
=
[
"
webkitfullscreenchange
"
,
"
mozfullscreenchange
"
,
"
fullscreenchange
"
];
requestFullScreen
(
cm
.
getWrapperElement
());
multiAddEventListener
(
document
,
event_names
,
function
listener
()
{
multiRemoveEventListener
(
document
,
event_names
,
listener
);
cm
.
setOption
(
"
fullScreen
"
,
true
);
multiAddEventListener
(
document
,
event_names
,
function
listener2
()
{
multiRemoveEventListener
(
document
,
event_names
,
listener2
);
cm
.
setOption
(
"
fullScreen
"
,
false
);
});
});
}
function
gadgetRequestMaximize
(
gadget
)
{
// put to a declared method ? (maximize)
return
gadget
.
requestMaximize
()
.
push
(
function
(
accepted
)
{
if
(
accepted
)
{
if
(
gadget
.
props
.
maximizeButton
)
{
// XXX display button on maximized ?
gadget
.
props
.
maximizeButton
.
textContent
=
"
Unmaximize
"
;
}
gadget
.
props
.
maximized
=
true
;
gadget
.
props
.
editor
.
getWrapperElement
().
style
.
height
=
"
100%
"
;
gadget
.
props
.
editor
.
refresh
();
}
});
}
function
gadgetLeaveMaximize
(
gadget
)
{
// put to a declared method ? (unmaximize)
return
gadget
.
leaveMaximize
()
.
push
(
function
(
accepted
)
{
if
(
accepted
)
{
if
(
gadget
.
props
.
maximizeButton
)
{
// XXX display button on maximized ?
gadget
.
props
.
maximizeButton
.
textContent
=
"
Maximize
"
;
}
gadget
.
props
.
maximized
=
false
;
gadget
.
props
.
editor
.
getWrapperElement
().
style
.
height
=
""
;
gadget
.
props
.
editor
.
refresh
();
}
});
}
function
cmFoldAtCursor
(
cm
)
{
cm
.
foldCode
(
cm
.
getCursor
());
}
rJS
(
window
)
//.declareAcquiredMethod("submitData", "triggerSubmit")
.
declareAcquiredMethod
(
"
requestMaximize
"
,
"
requestMaximize
"
)
.
declareAcquiredMethod
(
"
leaveMaximize
"
,
"
leaveMaximize
"
)
.
ready
(
function
(
g
)
{
g
.
props
=
{};
g
.
options
=
null
;
return
g
.
getElement
()
.
push
(
function
(
element
)
{
g
.
props
.
element
=
element
;
});
})
.
declareMethod
(
'
render
'
,
function
(
options
)
{
var
event_list
=
[],
submit_data_deferred
=
RSVP
.
defer
();
this
.
props
.
key
=
options
.
key
;
this
.
props
.
value
=
options
.
value
||
""
;
this
.
props
.
editable
=
options
.
editable
===
undefined
?
true
:
options
.
editable
;
if
(
this
.
props
.
editable
)
{
this
.
props
.
textarea
=
document
.
createElement
(
"
textarea
"
);
this
.
props
.
textarea
.
value
=
this
.
props
.
value
;
this
.
props
.
maximizeButton
=
document
.
createElement
(
"
button
"
);
this
.
props
.
maximizeButton
.
textContent
=
"
Maximize
"
;
this
.
props
.
fullScreenButton
=
document
.
createElement
(
"
button
"
);
this
.
props
.
fullScreenButton
.
textContent
=
"
Fullscreen
"
;
this
.
props
.
element
.
appendChild
(
this
.
props
.
maximizeButton
);
this
.
props
.
element
.
appendChild
(
this
.
props
.
fullScreenButton
);
this
.
props
.
element
.
appendChild
(
this
.
props
.
textarea
);
this
.
props
.
editor
=
CodeMirror
.
fromTextArea
(
this
.
props
.
textarea
,
{
lineNumbers
:
true
,
matchBrackets
:
true
,
showCursorWhenSelecting
:
true
,
autofocus
:
false
,
indentWithTabs
:
false
,
fullScreen
:
false
,
extraKeys
:
{
"
Ctrl-Space
"
:
"
autocomplete
"
,
"
Ctrl-Q
"
:
cmFoldAtCursor
,
"
Ctrl-S
"
:
function
(
cm
)
{
this
.
submitData
().
push
(
null
,
submit_data_deferred
.
reject
);
}.
bind
(
this
)
}
}
);
event_list
.
push
(
submit_data_deferred
.
promise
);
event_list
.
push
(
loopEventListener
(
this
.
props
.
element
,
"
keyup
"
,
false
,
function
(
event
)
{
if
(
this
.
props
.
maximized
&&
event
.
keyCode
===
27
)
{
event
.
preventDefault
();
return
gadgetLeaveMaximize
(
this
);
}
}.
bind
(
this
),
false
));
event_list
.
push
(
loopEventListener
(
this
.
props
.
maximizeButton
,
"
click
"
,
false
,
function
(
event
)
{
this
.
props
.
editor
.
focus
();
if
(
this
.
props
.
maximized
)
{
// XXX display button on maximized ?
return
gadgetLeaveMaximize
(
this
);
}
return
gadgetRequestMaximize
(
this
);
}.
bind
(
this
)));
event_list
.
push
(
loopEventListener
(
this
.
props
.
fullScreenButton
,
"
click
"
,
false
,
function
(
event
)
{
this
.
props
.
editor
.
focus
();
return
gadgetRequestFullScreen
(
this
);
}.
bind
(
this
)));
}
else
{
this
.
props
.
pre
=
document
.
createElement
(
"
pre
"
);
this
.
props
.
pre
.
textContent
=
this
.
props
.
value
;
this
.
props
.
element
.
appendChild
(
this
.
props
.
pre
);
}
return
RSVP
.
all
([
event_list
]);
})
.
declareMethod
(
'
getContent
'
,
function
()
{
var
form_data
=
{};
if
(
this
.
props
.
editable
)
{
form_data
[
this
.
props
.
key
]
=
this
.
props
.
editor
.
getValue
();
}
else
{
form_data
[
this
.
props
.
key
]
=
this
.
props
.
value
;
}
return
form_data
;
});
}(
window
,
rJS
,
CodeMirror
,
RSVP
));
//, loopEventListener));
bt5/erp5_code_mirror/SkinTemplateItem/portal_skins/erp5_code_mirror/codemirror/codemirror.gadget.js.xml
0 → 100644
View file @
8564183b
<?xml version="1.0"?>
<ZopeData>
<record
id=
"1"
aka=
"AAAAAAAAAAE="
>
<pickle>
<global
name=
"File"
module=
"OFS.Image"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_EtagSupport__etag
</string>
</key>
<value>
<string>
ts57608537.76
</string>
</value>
</item>
<item>
<key>
<string>
__name__
</string>
</key>
<value>
<string>
codemirror.gadget.js
</string>
</value>
</item>
<item>
<key>
<string>
content_type
</string>
</key>
<value>
<string>
application/javascript
</string>
</value>
</item>
<item>
<key>
<string>
precondition
</string>
</key>
<value>
<string></string>
</value>
</item>
<item>
<key>
<string>
size
</string>
</key>
<value>
<int>
7916
</int>
</value>
</item>
<item>
<key>
<string>
title
</string>
</key>
<value>
<string></string>
</value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment