Go to SublimeText 2 > Preferences > User Settings. This should open your User Settings as a JSON file. Add the following to your file:
"trim_trailing_white_space_on_save": true
Go to SublimeText 2 > Preferences > User Settings. This should open your User Settings as a JSON file. Add the following to your file:
"trim_trailing_white_space_on_save": true
#!/bin/bash | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
apt-get update | |
apt-get install -y git-core autoconf bison libxml2-dev libbz2-dev libmcrypt-dev libcurl4-openssl-dev libltdl-dev libpng-dev libpspell-dev libreadline-dev make | |
mkdir -p /etc/php7/conf.d | |
mkdir -p /etc/php7/cli/conf.d | |
mkdir /usr/local/php7 |
<?php | |
$arr = json_decode(json_encode(simplexml_load_string($xml, null, LIBXML_NOCDATA)), true); | |
?> |
<?php | |
/** | |
* Copyright (C) 2016 Prabhas Gupte | |
* | |
* This is free script: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This script is distributed in the hope that it will be useful, |
The following script provides you the licences of Jenkins plugins (e.g. for Open Source compliance checks) read from their pom.xml
file on the respective Github repository.
Before using the script, you have to
your.jenkins.host.com
with the domain of your Jenkins server~/.jenkins-api-token
// opens a new u_error_reporting record from an sc_task record | |
function openOverlay(overlayID, overlayTitle, iframeURI, height, width) { | |
// Instantiate the GlideOverlay | |
// Note: GlideOverlay extends GlideBox, which contains the close() method | |
var overlayWindow = new GlideOverlay({ | |
id: overlayID, | |
title: overlayTitle, | |
iframe: iframeURI, | |
allowOverflowX: true, | |
closeOnEscape: true, |