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
#!/bin/sh | |
dir=`dirname "$0"` | |
cd "$dir" | |
classpath=./:./lib/touchLibs/etc/fonts/fonts | |
for i in `ls ./lib` | |
do | |
classpath=$classpath:./lib/$i | |
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
/home/liferay/portale/tomcat-7.0.32/logs/catalina.out { | |
copytruncate | |
daily | |
rotate 5 | |
compress | |
missingok | |
size 200M | |
} |
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
<?php | |
/** | |
* Project: SugarCRM Logic Expression for checking User role | |
* Original Dev: Antonio Musarra, January 2014 | |
* @2009-2014 Antonio Musarra <antonio.musarra[at]gmail.com> | |
* | |
* Desc: SugarCRM Logic Expression ext class | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by |
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 dataSource = new A.DataSource.IO( | |
{ | |
source: '<%=getAccountResourceURL%>', | |
ioConfig: { | |
method: 'post', | |
} | |
} | |
); | |
var autoComplete = new A.AutoComplete( |
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
<?php | |
/** | |
* This class can add WSSecurity authentication support to SOAP clients | |
* implemented with the PHP 5 SOAP extension. | |
* | |
* It extends the PHP 5 SOAP client support to add the necessary XML tags to | |
* the SOAP client requests in order to authenticate on behalf of a given | |
* user with a given 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
Name: SugarCRM 7 Development Environment | |
Groups: /Server Linux - CRM | |
Guest OS: Red Hat (64 bit) | |
UUID: 079d17c4-a1e7-46b1-b50c-3fa5497c66d1 | |
Config file: /Users/amusarra/Library/VirtualBox/Machines/Server Linux - CRM/SugarCRM 7 Development Environment/SugarCRM 7 Development Environment.vbox | |
Snapshot folder: /Users/amusarra/Library/VirtualBox/Machines/Server Linux - CRM/SugarCRM 7 Development Environment/Snapshots | |
Log folder: /Users/amusarra/Library/VirtualBox/Machines/Server Linux - CRM/SugarCRM 7 Development Environment/Logs | |
Hardware UUID: 079d17c4-a1e7-46b1-b50c-3fa5497c66d1 | |
Memory size: 4096MB | |
Page Fusion: off |
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
#!/bin/bash | |
## | |
# Set Required evironment variable for IDS Informix 10 | |
# Add. 12/06/2008 Antonio Musarra <[email protected]> | |
## | |
INFORMIXDIR=/opt/IBM/informix | |
PATH=$PATH:$INFORMIXDIR/bin | |
ONCONFIG=onconfig.cormonet | |
INFORMIXSERVER=cormonet |
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
<%-- | |
/** | |
* Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. | |
* | |
* The contents of this file are subject to the terms of the Liferay Enterprise | |
* Subscription License ("License"). You may not use this file except in | |
* compliance with the License. You can obtain a copy of the License by | |
* contacting Liferay, Inc. See the License for the specific language governing | |
* permissions and limitations under the License, including but not limited to | |
* distribution rights of the Software. |
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
[ | |
{ | |
"id": "e865ab32-d695-9aca-226d-534331a99563", | |
"module": "Calls", | |
"date_due": "2014-04-16 23:15:00", | |
"summary": "Call for Spring Integration" | |
}, | |
{ | |
"id": "906a0565-01ab-4681-1562-534336998344", | |
"module": "Opportunities", |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>SugarCRM Login via REST API</title> | |
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | |
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script> | |
</head> | |
<body> |