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
May 21, 2012 8:31:52 PM org.apache.catalina.core.AprLifecycleListener init | |
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: .:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java | |
May 21, 2012 8:31:52 PM org.apache.coyote.AbstractProtocol init | |
INFO: Initializing ProtocolHandler ["http-bio-8080"] | |
May 21, 2012 8:31:52 PM org.apache.coyote.AbstractProtocol init | |
INFO: Initializing ProtocolHandler ["ajp-bio-8009"] | |
May 21, 2012 8:31:52 PM org.apache.catalina.startup.Catalina load | |
INFO: Initialization processed in 803 ms | |
May 21, 2012 8:31:52 PM org.apache.catalina.core.StandardService startInternal | |
INFO: Starting service Catalina |
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
A.DataTable.prototype.getColumn = (function (original) { | |
return function (seed) { | |
if (A.instanceOf(seed, A.Node)) { | |
var cell = this.getCell(seed), | |
prefix = this.getClassName('col', ''); | |
seed = cell.get('className'); | |
seed = seed.substring(seed.indexOf(prefix)); | |
seed = seed.substring(prefix.length, seed.indexOf(' ')); | |
} |
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
<model-resource> | |
<model-name>com.liferay.calendar.model.Calendar</model-name> | |
<portlet-ref> | |
<portlet-name>1</portlet-name> | |
</portlet-ref> | |
<permissions> | |
<supports> | |
<action-key>DELETE</action-key> | |
<action-key>MANAGE_BOOKINGS</action-key> | |
<action-key>PERMISSIONS</action-key> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="../../build/aui/aui.js" type="text/javascript"></script> | |
</head> | |
<body class="yui3-skin-sam"> | |
<h1>Alloy - DataTable - Inline Cell Editing</h1> |
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
>> ant build-taglibs | |
Buildfile: /Volumes/liferay/github/liferay-portal/util-taglib/build.xml | |
build-taglibs: | |
[java] Loading file:/Volumes/liferay/github/liferay-portal/portal-web/docroot/WEB-INF/classes/system.properties | |
[java] May 4, 2012 10:36:21 PM com.liferay.portal.kernel.log.Jdk14LogImpl info | |
[java] INFO: No server detected | |
[java] May 4, 2012 10:36:21 PM com.liferay.portal.kernel.log.Jdk14LogImpl info | |
[java] INFO: Global lib directory | |
[java] May 4, 2012 10:36:21 PM com.liferay.portal.kernel.log.Jdk14LogImpl info |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="../../build/aui/aui.js" type="text/javascript"></script> | |
<link rel="stylesheet" href="../../build/aui-skin-classic/css/aui-skin-classic-all-min.css" type="text/css" media="screen" /> | |
<style type="text/css" media="screen"> | |
body { |
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
<aui:script> | |
Liferay.provide( | |
window, | |
'<portlet:namespace />load', | |
function(url, callback) { | |
var A = AUI(); | |
var response = null; | |
A.io.request( |
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
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.Calendar; | |
import java.util.Date; | |
import java.util.GregorianCalendar; | |
import java.util.TimeZone; | |
public class TestDate { |
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 CalendarResource addCalendarResource( | |
long userId, long groupId, String className, long classPK, | |
String classUuid, long defaultCalendarId, String code, Map<Locale, | |
String> nameMap, Map<Locale, String> descriptionMap, String type, | |
boolean active, ServiceContext serviceContext) | |
throws PortalException, SystemException { | |
// Calendar resource | |
long calendarResourceId = counterLocalService.increment(); |
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
A.SchedulerEvent = A.Component.create({ | |
NAME: 'scheduler-event', | |
ATTRS: { | |
allDay: { | |
value: false, | |
validator: isBoolean | |
}, | |
calendarId: { |