To add basic event tracking to an element on the page, add this attribute with the appropriate values you'd like to send, separated by pipes |.
<button data-track="category|action|opt_label|opt_value|opt_noninteraction">
Basic Tracking
</button>
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| import groovy.json.* | |
| import hudson.model.* | |
| import static groovy.json.JsonOutput.* | |
| import java.util.logging.* | |
| import java.security.MessageDigest | |
| class Bitbucket { | |
| def static BITBUCKET_REST_URL = "https://bitbucket.org" | |
| def static BITBUCKET_API_URL = BITBUCKET_REST_URL + "/api/2.0/" | |
| def static LOGGER = Logger.getLogger("connect.bitbucket.commit.groovy.Bitbucket") |
| #!/bin/bash | |
| ## This script Converts the Typo3 Database to the Correct encoding | |
| ## by Exporting the database converting it and importing it agaion; | |
| ## CONFIGURATION: | |
| DATE=$(date +"%Y%m%d%H%M") | |
| FILENAME="temp_mysqldump_for_utf8conversion_$DATE.sql" | |
| if [ -n "$1" ] || [-n "$2"] | |
| then | |
| echo "Create dump" |
| #!/bin/bash | |
| # | |
| # Creates a backup of a database in mirgrates every table to UTF-8 Including Collation | |
| # written by christian Wolff cwolff@aer.de | |
| ## Configuration | |
| DB_USER=$1 | |
| DB_PASS=$2 | |
| DB_NAME=$3 |
| <f:form.validationResults for="{propertyPath}"> | |
| <f:if condition="{validationResults.flattenedErrors}"> | |
| <ul> | |
| <f:for each="{validationResults.flattenedErrors}" as="errors"> | |
| <li> | |
| <ul> | |
| <f:for each="{errors}" as="error"><li>{error}</li></f:for> | |
| </ul> | |
| </li> | |
| </f:for></ul> |
| #!/bin/sh | |
| export PATH=/usr/local/bin:$PATH; | |
| yum update | |
| yum install docker -y | |
| service docker start | |
| # Docker login notes: | |
| # - For no email, just put one blank space. | |
| # - Also the private repo protocol and version are needed for docker | |
| # to properly setup the .dockercfg file to work with compose |
| #!/usr/bin/env python | |
| #-*- coding: utf-8 -*- | |
| """A post-update Git hook to execute `composer install` when composer.json changes | |
| :Author: Cody Halovich | |
| :Company: HootSuite Media Inc. | |
| """ | |
| import subprocess |
| <T3DataStructure> | |
| <meta> | |
| <langDisable>1</langDisable> | |
| </meta> | |
| <sheets> | |
| <sDEF> | |
| <ROOT> | |
| <TCEforms> | |
| <sheetTitle>General</sheetTitle> | |
| </TCEforms> |