This file contains hidden or 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
/etc/apt/source.list | |
deb http://ftp.debian.org/debian/ squeeze main contrib non-free | |
deb-src http://ftp.debian.org/debian/ squeeze main contrib non-free | |
###### Debian Update Repos |
This file contains hidden or 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
apt-get update | |
apt-get install sun-java6-jdk | |
echo 'JAVA_HOME=”/usr/share/jvm/java-6-sun”' > /etc/environment | |
echo 'JRE_HOME=”/usr/share/jvm/java-6-sun/jre”' > /etc/environment |
This file contains hidden or 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
sudo apt-get install tomcat6 tomcat6-admin |
This file contains hidden or 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
Maven architype catalogs Vaadin - Liferay: | |
http://repo1.maven.org/maven2/archetype-catalog.xml |
This file contains hidden or 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
<div id="myDataTable"></div> | |
<script src="http://cdn.alloyui.com/1.7.0/aui/aui-min.js"></script> | |
<script> | |
AUI({ | |
modules: { | |
'bootstrap': { | |
fullpath: 'http://alloyui.com/versions/1.7.x/website/css/bootstrap.css', | |
type: 'css' | |
}, |
This file contains hidden or 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
var io = A.io.request( | |
url.toString(), | |
{ | |
autoLoad: false, | |
cache: true, | |
method: 'get', | |
on: { | |
start: function(event,id) { | |
console.log('start'); | |
console.log(event); |
This file contains hidden or 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
<aui:script> | |
AUI({ | |
groups: { | |
'jquery': { | |
async: false, | |
modules: { | |
'jquery': { | |
fullpath: 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js' | |
}, | |
'galleria': { |
This file contains hidden or 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
AUI().use( | |
'aui-base', | |
function(A) { | |
var WIN = A.getWin(); | |
var lazyLoadNode = A.all('.lazy-load'); | |
var lazyLoad = function() { | |
var currentScrollPos = WIN.get('docScrollY'); |
This file contains hidden or 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
AUI().use( | |
'aui-base', | |
function(A) { | |
var popClicks = A.all('.pop-click'); | |
var popClickHandle; | |
var togglePopClick = function(event) { | |
event.stopPropagation(); |
This file contains hidden or 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
AUI().use( | |
'aui-base', | |
function(A) { | |
var WIN = A.getWin(); | |
var onScreenHelperNode = A.all('.on-screen-helper'); | |
var updateOnScreen = function() { | |
var currentScrollPos = WIN.get('docScrollY'); |
OlderNewer