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
{ | |
"Client_ID": "571358931HB160700000", | |
"rad_Name": "Bathroom downstaris" | |
} |
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
configurations { | |
embeddedLibs | |
compileOnly.extendsFrom embeddedLibs | |
} | |
dependencies { | |
embeddedLibs group: 'org.hibernate', name: 'hibernate-core', version: '5.2.5.Final' | |
} |
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
map = new google.maps.Map(document.getElementById('gmaps'), { | |
zoom: 5, | |
center: { | |
lat: 43, | |
lng: 12 | |
}, | |
mapTypeId: google.maps.MapTypeId.ROADMAP, | |
styles: [{ | |
"stylers": [{ | |
"hue": "#ff1a00" |
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
/* | |
Needs Hibernate 5.2.11.Final | |
*/ | |
public List<ObjectNode> getQuery( | |
Integer anno, | |
Integer settimana) { | |
Query q = em.createNativeQuery( | |
"NATIVE SQL....",Tuple.class); |
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
[INFO] Eclipse Milo Build Tools ........................... SUCCESS [ 1.591 s] | |
[INFO] Eclipse Milo - OPC-UA (IEC 62541) .................. SUCCESS [ 2.323 s] | |
[INFO] opc-ua-stack ....................................... SUCCESS [ 1.592 s] | |
[INFO] stack-core ......................................... SUCCESS [ 21.689 s] | |
[INFO] stack-client ....................................... SUCCESS [ 1.886 s] | |
[INFO] opc-ua-sdk ......................................... SUCCESS [ 1.695 s] | |
[INFO] sdk-core ........................................... SUCCESS [ 5.960 s] | |
[INFO] bsd-parser ......................................... SUCCESS [ 1.108 s] |
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 com.liferay.util.mail.MailEngine; | |
import javax.mail.internet.InternetAddress; | |
MailEngine.send(new InternetAddress("[email protected]"), | |
new InternetAddress("[email protected]"), | |
"test email sub", "HOLA, this is the body", false); |
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 com.liferay.util.mail.MailEngine; import javax.mail.internet.InternetAddress; | |
MailEngine.send(new InternetAddress("[email protected]"), | |
new InternetAddress("[email protected]"), | |
"your-appointment-has-been-scheduled", | |
"HOLA", false); |
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
[ | |
{ | |
"expanded": true, | |
"children": [ | |
{ | |
"label": "TEMP_DU1", | |
"id": "9", | |
"type": "check", | |
"leaf": true | |
} |
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
[ | |
{ | |
"dateTime": 1558606273941, | |
"entry": "Box Temperature", | |
"entryType": "String", | |
"gravityId": "4", | |
"gravityTypeData": { | |
"additional": "0", | |
"shortDescription": "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
<#assign TITLE = .vars['reserved-article-title'].data /> | |
<#assign DISPLAYDATE = .vars['reserved-article-display-date'].data?date('EEE, dd MMM yyyy HH:mm:ss Z') /> | |
${DISPLAYDATE?string["dd MMMM yyyy"]} | |
<button type="button" class="btn btn-secondary btn-sm"> | |
<@liferay_ui["message"] key="read-more"/> | |
</button> | |