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
javascript.log.enabled=false |
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="portlets/google-maps-portlet, webs/kaleo-web, portlets/mail-portlet, themes/sevencogs-mobile-theme, themes/sevencogs-theme, portlets/social-networking-portlet, portlets/web-form-portlet"; for v in ${var//,/ }; do cd $v; ant clean deploy; cd ../..; done |
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 class="columns-1-2-1" id="main-content" role="main"> | |
#if ($browserSniffer.isIe($request) && $browserSniffer.getMajorVersion($request) < 8) | |
<table class="portlet-layout"> | |
<tr> | |
<td class="portlet-column portlet-column-only" id="column-1"> | |
$processor.processColumn("column-1", "portlet-column-content portlet-column-content-only") | |
</td> | |
</tr> | |
</table> | |
<table class="portlet-layout"> |
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
/* -------- Mobile Views 320px -------- */ | |
$footer-width: 320px; | |
@function calculated-width($padding) { | |
@return $footer-width - $padding; | |
} | |
.aui-view-4, | |
.aui-view-320 { |
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
<a href="javascript:alert(document.documentElement.className)">GET HTML</a> |
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
@import "compass"; | |
/* ---------- Global ---------- */ | |
body { | |
background-color: #EEF0F2; | |
color: #333; | |
font: 12px/1 Arial, Helvetica, Verdana, sans-serif; | |
} |
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
#foreach ($nav_item in $nav_items) | |
#if($velocityCount == 1) | |
// Do something for the first $nav_item | |
#end | |
#if(!$velocityHasNext) | |
// Do something for the last $nav_item | |
#end | |
#end | |
#foreach ($nav_item in $nav_items) |
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
<script type="text/javascript"> | |
AUI().ready('aui-paginator', function(A) { | |
var pgA = new A.Paginator({ | |
page: ${targetPage}, | |
containers: '.paginatorA', | |
total: 10, | |
maxPageLinks: 10, | |
rowsPerPage: 1, |