/jsonws/calendar-portlet/calendar/get-calendar/calendar-id/10466
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
YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || {}; | |
Y.mix(YUI.Env[Y.version].modules, { | |
"aui-base": { | |
"use": [ | |
"oop", | |
"yui-throttle", | |
"aui-classnamemanager", | |
"aui-debounce", | |
"aui-base-core", | |
"aui-base-lang", |
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
protected void addCalendarJSONObject( | |
PortletRequest portletRequest, JSONArray jsonArray, | |
long classNameId, long classPK, String permissionAction) | |
throws PortalException, SystemException { | |
CalendarResource calendarResource = | |
CalendarResourceUtil.getCalendarResource( | |
portletRequest, classNameId, classPK); | |
if (calendarResource == null) { |
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
var STR_CHAR_CRLF = '\r\n'; | |
var STR_BLANK = ''; | |
var STR_CHAR_TAB = '\t'; | |
var repeat = function(str, length) { | |
return new Array(length + 1).join(str); | |
}; | |
var XMLUtil = { | |
REGEX_TOKEN_1: /(>)(<)(\/*)/g, |
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
var ServiceUtil = { | |
invoke: function(payload, ioConfig) { | |
var instance = this; | |
if (ioConfig) { | |
if (!owns(ioConfig, 'cache') && REGEX_METHOD_GET.test(ioConfig.method)) { | |
ioConfig.cache = false; | |
} | |
if (Liferay.PropsValues.NTLM_AUTH_ENABLED && Liferay.Browser.isIe()) { |
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.add( | |
'liferay-asset-categories-selector', | |
function(A) { | |
var Lang = A.Lang; | |
var AObject = A.Object; | |
var BOUNDING_BOX = 'boundingBox'; | |
var CSS_TAGS_LIST = 'lfr-categories-selector-list'; |
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 = window.Liferay || {}; | |
(function(A, Liferay) { | |
var Lang = A.Lang; | |
var owns = A.Object.owns; | |
Liferay.namespace = A.namespace; | |
A.mix( |
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
<%-- | |
/** | |
* Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. | |
* | |
* This library is free software; you can redistribute it and/or modify it under | |
* the terms of the GNU Lesser General Public License as published by the Free | |
* Software Foundation; either version 2.1 of the License, or (at your option) | |
* any later version. | |
* | |
* This library is distributed in the hope that it will be useful, but WITHOUT |
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
DisjointSet = function(size) { | |
var instance = this, | |
parent_, | |
i; | |
size = instance.size = size || 0; | |
parent_ = instance.parent = new Uint32Array(size); | |
for (i = 0; i < size; i++) { |
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 type="text/javascript" src="http://yui.yahooapis.com/3.1.0/build/yui/yui-min.js"></script> | |
</head> | |
<body> | |
<h1>Modules</h1> |