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
app.server.type=tomcat | |
app.server.parent.dir=C:/Users/liferay/Desktop/Liferay/bundles/6.2.x | |
##app.server.parent.dir=C:/Users/liferay/Desktop/Liferay/bundles/7.0.x | |
app.server.tomcat.dir=${app.server.parent.dir}/tomcat-7.0.42 |
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
BUILD FAILED | |
[exec] e:\repos\liferay-portal\modules\build.xml:13: The following error occurred while executing this line: | |
[exec] e:\repos\liferay-portal\tools\sdk\build-common.xml:74: e:\repos\liferay-portal\tools\sdk\dependencies\aQute.bnd\lib does not exist. |
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
<style> | |
#container { | |
background-image: url(http://www.fordmuscleforums.com/imagehosting/x106653467eed575f69a.jpg.pagespeed.ic.eqQRzXhPsv.jpg); | |
height: 200px; | |
width: 1000px; | |
} | |
.polygon { | |
stroke: black; | |
} |
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
npm ERR! fstream_finish_call chmod | |
npm ERR! code ENOENT | |
npm ERR! errno 34 | |
npm ERR! fstream_stack Writer._finish (c:\Program Files\nodejs\node_modules\npm\node_modules\fstream\lib\writer.js:305:19) | |
npm ERR! fstream_stack Object.oncomplete (fs.js:297:15) | |
npm ERR! Error: ENOENT, lstat 'C:\Users\liferay\AppData\Roaming\npm\node_modules\yogi\node_modules\request\node_modules\hawk\test\browser.js' | |
npm ERR! If you need help, you may report this log at: | |
npm ERR! <http://github.com/isaacs/npm/issues> | |
npm ERR! or email it to: | |
npm ERR! <[email protected]> |
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
public static boolean isMatchRegex(String s, String regex) { | |
//s.matches(regex) | |
} |
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
liferay@DREW-BROKKE-LR /e/repos/alloy/alloy-ui/src/aui-datepicker (master) | |
$ gulp build | |
[09:37:30] Working directory changed to e:\repos\alloy\alloy-ui | |
[09:37:32] Using gulpfile e:\repos\alloy\alloy-ui\gulpfile.js | |
[09:37:32] Starting 'init-bower'... | |
[09:37:34] Finished 'init-bower' after 1.8 s | |
[09:37:34] Starting 'init'... | |
[09:37:38] Finished 'init' after 4.51 s | |
[09:37:38] Starting 'build'... |
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
/** | |
* @deprecated As of 6.2.0, replaced by {@link #portletIconRefresh} | |
*/ | |
@Deprecated | |
public void iconRefresh() throws Exception; | |
public void include(ServletContext servletContext, String page) | |
throws Exception; |
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
_handleKeypressEvent: function(event) { | |
var instance = this; | |
var target = event.target; | |
else if (target.hasClass("form-builder-field")) { | |
var keyCode = event.keyCode; | |
var field = target; |
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
if (target.hasClass("form-builder-field-node")) { | |
if ((keyCode === 27) || | |
(keyCode === 13 && !target.hasClass("field-textarea")) || | |
(target.hasClass("field-textarea") && keyCode === 13 && event.ctrlKey === true)) { | |
target.ancestor(".form-builder-field").focus(); | |
} | |
// if ((keyCode === 13 && !target.hasClass("field-textarea"))) { | |
// target.ancestor(".form-builder-field").focus(); |
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
_handleKeypressEvent: function(event) { | |
var instance = this; | |
var target = event.target; | |
var type = target.get('nodeType'); | |
console.log("event: ", event); | |
var field = target; |
OlderNewer