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 | |
set -x | |
if [ "$#" -ne 4 ] | |
then | |
echo "Usage $0 <hostname> <email> <clproject> <apikey>" | |
exit 1 | |
fi |
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 | |
set -x | |
if [ "$#" -ne 4 ] | |
then | |
echo "Usage $0 <hostname> <email> <clproject> <apikey>" | |
exit 1 | |
fi |
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
HEADING_BROWSER_TAB = "Account settings" | |
ACTION_SHOW_IFRAMEAPP = "IframeApp" | |
LABEL_SETTINGS_TAB = "Account settings" | |
HEADING_SETTINGS_TAB = "Iframe App" | |
LABEL_ALLOW_IFRAMEAPP = "Enable Iframe App" | |
LABEL_IFRAME_URL = "External App URL" | |
LABEL_APP_NAME = "Iframe App" | |
LABEL_AUTH_MODE = "Auth mode" |
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
/* Copied from CoreWebclient/Default */ | |
.panel.left_panel .items_list .item > .title .icon::before { | |
position: relative; | |
top: 2px; | |
} | |
.compose_popup.minimized .toolbar { | |
background: #2e4b64 !important; | |
} | |
.compose_popup.minimized .toolbar * { | |
font-size: 12px !important; |
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
test |
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: date | |
execute-command: date | |
include-command-output-in-response: true | |
- id: echo | |
execute-command: echo | |
include-command-output-in-response: true | |
pass-arguments-to-command: | |
- source: payload | |
name: text | |
- id: redeploy |
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
// tests/AppBundle/Controller/PostControllerTest.php | |
namespace Tests\AppBundle\Controller; | |
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | |
class PostControllerTest extends WebTestCase | |
{ | |
public function testShowPost() | |
{ | |
$mock = /** mocked version of the service with data relevant to this test**/ |
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
// tests/AppBundle/Controller/PostControllerTest.php | |
namespace Tests\AppBundle\Controller; | |
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | |
class PostControllerTest extends WebTestCase | |
{ | |
public function testShowPost() | |
{ | |
$client = static::createClient(); |
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
def jobName = sh ( | |
script: 'echo ${JOB_NAME%/*}', | |
returnStdout: true | |
).trim() |
NewerOlder