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
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 | |
http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<profiles> | |
<profile> | |
<id>liferay</id> | |
<properties> | |
<liferayinstall>/Users/mattitahvonenitmill/Applications/liferay-portal-6.2-ce-ga4</liferayinstall> | |
<plugin.type>portlet</plugin.type> |
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
handler: () => { | |
return this.data.load().then(() => { | |
return alert.dismiss(); | |
}).then(() => { | |
this.nav.pop(); | |
}); | |
return 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
{ | |
"Action On Incoming" : "{\n \"cancelButtonLabel\" : \"Cancel\",\n \"setNewActionConfigLabel\" : \"Set New Action Configuration\",\n \"action1DescriptionLabel\" : \"(e.g. Existing contact sends you sms, you can create case or task using that sms automatically)\",\n \"action2Label\" : \" Action 2 : If senders mobile number is unknown\",\n \"createTaskLabel\" : \"Create Task\",\n \"actionOnIncomingTitleLabel\" : \"Create new action on incoming SMS\",\n \"nameLabel\" : \"Name\",\n \"createCaseLabel\" : \"Create Case\",\n \"createOpportunityLabel\" : \"Create Opportunity\",\n \"saveButtonLabel\" : \"Save\",\n \"doNothingLabel\" : \"Do Nothing\",\n \"createContactLabel\" : \"Create Contact\",\n \"configureActionDescriptionLabel\" : \"When Incoming SMS is received in your org, You can configure following actions,\",\n \"action1Label\" : \"Action 1: If senders mobile number is already stored in some Objects Record\",\n \"helpLabel\" : \"Help for this page ?\",\n \"createLeadLabel\" : \"Create Lead |
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
<html> | |
<head> | |
<title>API Example</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script type="text/javascript"> | |
var accessToken = "<your agent's client access token>"; | |
var baseUrl = "https://api.api.ai/v1/"; |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<!-- | |
Licensed to the Apache Software Foundation (ASF) under one or more | |
contributor license agreements. See the NOTICE file distributed with | |
this work for additional information regarding copyright ownership. | |
The ASF licenses this file to You under the Apache License, Version 2.0 | |
(the "License"); you may not use this file except in compliance with | |
the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
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
class profile::oracle::db { | |
$install_type = hiera('oracle_install_type', 'EE') | |
$install_version = hiera('oracle_install_version', '12.1.0.2') | |
$oracle_base = hiera('oracle_base', '/oracle') | |
$oracle_home = hiera('oracle_home', '/oracle/product/12.1/db') | |
$ora_data_loc = hiera('oracle_data_loc', '/oracle/oradata') | |
$ora_rec_area_loc = hiera('oracle_recovery_loc', | |
'/oracle/flash_recovery_area') | |
$install_file_prefix = hiera('oracle_install_file_prefix', | |
'linuxamd64_12102_database') |
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 crypto = require('crypto') | |
// site name is your desk.com subdomain | |
, siteName = 'site_name' | |
// api key is generated here: https://your_subdomain.desk.com/admin/channels/support-center/auth_settings | |
, apiKey = 'multipass_token' | |
, data = JSON.stringify({ | |
uid: '19238333', | |
expires: (new Date(Date.now() + 120000)).toISOString(), | |
customer_email: '[email protected]', |
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
# This is not a complete Nginx configuration! It only shows the relevant parts for integrating Diaspora. | |
# [...] | |
http { | |
# Your standard server configuration goes here | |
# [...] | |
gzip_static on; |
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
// Mostly came from https://developers.google.com/google-apps/calendar/quickstart/nodejs | |
var fs = require('fs'); | |
var readline = require('readline'); | |
var google = require('googleapis'); | |
var googleAuth = require('google-auth-library'); | |
// If modifying these scopes, delete your previously saved credentials | |
// at ~/.credentials/calendar-nodejs-quickstart.json | |
var SCOPES = ['https://www.googleapis.com/auth/calendar']; |
OlderNewer