This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
byte[] buffer = new byte[1024]; | |
private void extractSources(File tmpDir) throws IOException { | |
InputStream is = ThemeCompiler.class.getClassLoader().getResourceAsStream("theme.zip"); | |
ZipInputStream zis = new ZipInputStream(is); | |
ZipEntry entry; | |
log.debug("------------- Unzip start -----------------"); | |
while ((entry = zis.getNextEntry()) != null) { | |
log.debug("Unzip : {} ", entry.getName()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Port of https://github.com/filamentgroup/jQuery-File-Download/blob/master/jQuery.download.js | |
download = (url, data, method) -> | |
#url and data options required | |
if url and data | |
#data can be string of parameters or array/object | |
data = (if typeof data is "string" then data else Ext.Object.toQueryString(data)) | |
#split params into form inputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
((supports, exports) => { | |
supports.forEach( | |
(support) => { | |
exports.supports = {}; | |
let el = document.body || document.documentElement; | |
let style = el.style; | |
let prefixes = ['Moz', 'Webkit', 'Ms', 'O', support.toLowerCase()]; | |
exports.supports[support] = prefixes.some((p) => typeof style[p + support] !== 'undefined'); | |
} | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('Ext.ux.Messages', { | |
_messages: Ext.MessageBox, | |
accessDeniedMessage: [ | |
"<span style='font-weight:bold;'>ΠΠ΅Π΄ΠΎΠΏΡΡΡΠΈΠΌΠ°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ.</span><br/>", | |
"ΠΠΎΡΡΡΠΏ Π·Π°ΠΊΡΡΡ. ΠΡΠ»ΠΈ Π²Ρ ΡΡΠΈΡΠ°Π΅ΡΠ΅, ΡΡΠΎ ΡΡΠΎ ΠΎΡΠΈΠ±ΠΎΡΠ½ΠΎ, ΠΏΠΎΠΆΠ°Π»ΡΠΉΡΡΠ°, ΠΎΠ±ΡΠ°ΡΠΈΡΠ΅ΡΡ Π² ΡΠ»ΡΠΆΠ±Ρ ΡΠ΅Ρ Π½ΠΈΡΠ΅ΡΠΊΠΎΠΉ ΠΏΠΎΠ΄Π΄Π΅ΡΠΆΠΊΠΈ." | |
].join(''), | |
eTypes: { | |
SDS: 'exception.sds', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define("Ext.ux.Login", { | |
extend: "Ext.Container", | |
formWrap: true, | |
loginButtonLabel: "Log In", | |
title: "Login form", | |
baseCls: Ext.baseCSSPrefix + 'wr-login', | |
headerCls: Ext.baseCSSPrefix + 'wr-login-header-panel', | |
innerCls: Ext.baseCSSPrefix + 'wr-login-inner-panel', | |
errorCls: Ext.baseCSSPrefix + 'wr-login-message', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----- Esc ----- | |
Quick change directory: Esc + c | |
Quick change directory history: Esc + c and then Esc + h | |
Quick change directory previous entry: Esc + c and then Esc + p | |
Command line history: Esc + h | |
Command line previous command: Esc + p | |
View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
Print current working directory in command line: Esc + a | |
Print current file name in command line: Esc + Enter | |
Switch between background command line and MC: Ctrl + o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
((root, props) -> | |
relayEvent = -> | |
a = _.chain(arguments).toArray() | |
a.unshift(@) if a.size().value() is 2 | |
((from, to, eventName) -> | |
from.on(eventName, -> | |
a = _.chain(arguments) | |
.toArray() | |
.unshift(eventName) | |
to.trigger.apply(to, a.value()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Control-U β pages up | |
Control-D β pages up | |
^ β goes to the beginning of a line | |
$ β goes to the end of a line | |
g β goes to the beginning of scroll history | |
G β goes to the end of scroll history | |
/ β search down | |
? β search up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const request = (url) => { | |
const xhr = new XMLHttpRequest() | |
const process = (method, body) => { | |
xhr.open(method, url, true) | |
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8') | |
xhr.send(body) | |
return new Promise((resolve, reject) => { | |
xhr.onreadystatechange = xhr.onerror = () => { | |
if (xhr.readyState === XMLHttpRequest.DONE) xhr.status >= 200 && xhr.status < 300 ? | |
resolve(JSON.parse(xhr.responseText)) : reject(xhr.responseText) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat /var/log/logifle | grep -Po 'connection timed out: \K.*\w+(?= to)' | sort | uniq -c |
OlderNewer