--- Creation ----- 124 days - 04/05/12 (Created Zoe Political Ticket) - 05/08/12 (Design Finishes Mockup) - 05/15/12 (Road Block concerning Resources Importer) - 08/07/12 (Development Resumes) --- Review --- 180 days
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
<input type="email" id="email" name="email" /> | |
<input type="password" id="password" name="password" /> |
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
<?xml version="1.0"?> | |
<!DOCTYPE look-and-feel PUBLIC "-//Liferay//DTD Look and Feel 6.0.0//EN" "http://www.liferay.com/dtd/liferay-look-andfeel_6_0_0.dtd"> | |
<look-and-feel> | |
<compatibility> | |
<version>6.0.0+</version> | |
</compatibility> | |
<theme id="foo" name="Foo Theme"> | |
<settings> | |
<setting key="portlet-setup-show-borders-default" value="false"></setting> |
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> | |
// Can also be used with $(document).ready() | |
$(window).load(function() { | |
$('.flexslider.carousel-${reserved-article-id.data}').flexslider({ | |
animation: "slide", | |
#if ($loop.data != "") | |
animationLoop: true, | |
#else | |
animationLoop: false, | |
#end |
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( | |
'get', | |
function(A){ | |
if (A.one('.flexslider')){ | |
A.Get.script(Liferay.ThemeDisplay.getPathThemeRoot() + 'js/jquery.flexslider-min.js', { | |
onSuccess: function(){ | |
console.log('Flexslider has been loaded'); | |
} | |
}); | |
} |
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
## ---------- Check for Web Form Portlet ---------- ## | |
#set ($portletLocalServiceUtil = $portal.getClass().forName("com.liferay.portal.service.PortletLocalServiceUtil")) | |
#set ($webformPortletId = "1_WAR_webformportlet") | |
#if ($portletLocalServiceUtil.hasPortlet($company_id, $webformPortletId) == true) | |
#set ($hasWebFormPortlet = true) | |
#end |
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
### --- Logo --- ### | |
#set ($organizationLocalService = $serviceLocator.findService('com.liferay.portal.service.OrganizationLocalService')) | |
#set ($imageLocalService = $serviceLocator.findService('com.liferay.portal.service.ImageLocalService')) | |
#if ($page_group.isOrganization()) | |
#set ($current_organization = $organizationLocalService.fetchOrganization($page_group.getOrganizationId())) | |
#set ($image = $imageLocalService.getImage($current_organization.getLogoId())) |
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> | |
AUI().ready( | |
'node', | |
function(A) { | |
var login = A.one('#p_p_id_58_'); | |
var links = login.all('.taglib-text'); | |
var createAcct = ""; | |
links.each(function(node){ | |
if (node.html() == Liferay.Language.get('create-account')){ |