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
# /etc/gitlab/gitlab.rb | |
gitlab_rails['gitlab_email_from'] = "[email protected]" | |
gitlab_rails['smtp_enable'] = true | |
gitlab_rails['smtp_address'] = "smtp.gmail.com" | |
gitlab_rails['smtp_port'] = 587 | |
gitlab_rails['smtp_user_name'] = "[email protected]" | |
gitlab_rails['smtp_password'] = "NicePassword" | |
gitlab_rails['smtp_domain'] = "owndomain.at" | |
gitlab_rails['smtp_authentication'] = :plain |
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
<?php | |
namespace O10\Theme\Configuration; | |
/** | |
* $DESCRIPTION$ | |
* | |
* @author Josef Glatz <[email protected]> | |
* @package $PACKAGE$ | |
* @subpackage $SUBPACKAGE$ | |
*/ |
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
<?php | |
/** | |
* This file is part of the TYPO3 CMS project. | |
* | |
* It is free software; you can redistribute it and/or modify it under | |
* the terms of the GNU General Public License, either version 2 | |
* of the License, or any later version. | |
* | |
* For the full copyright and license information, please read the |
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
# | |
# Nginx config - hostname t3o.dev | |
# | |
server { | |
listen 80 default_server; | |
root /var/www/t3o/htdocs; | |
index index.php index.html index.htm; | |
server_name t3o.dev; |
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
lib.SysCategoryList = CONTENT | |
lib.SysCategoryList { | |
stdWrap.dataWrap = <div id="c{field:contentUid}-filter-{field:filterGroup}" class="button-group categories-list categories-list-filter--{field:filterGroup}" data-filter-group="c{field:contentUid}-{field:filterGroup}"><button class="button reset-mobile is-checked" data-filter="">{LLL:EXT:theme/Resources/Private/Language/locallang.xlf:menu.filterReset}</button>|</div> | |
table = sys_category | |
select { | |
languageField = sys_language_uid | |
selectFields = uid,title | |
where { | |
data = field:parentCategories | |
intval = 1 |
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
tt_content.uploads { | |
wrap = <div class="filelinks">|</div> | |
// drop in replacement for ext:css_filelinks | |
200 = COA | |
200 { | |
10 = FILES | |
10 { | |
references { | |
table = tt_content |
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
lib.View.SingleSujet = FILES | |
lib.View.SingleSujet { | |
references { | |
table = tx_news_domain_model_news | |
uid.data = GP:tx_news_pi1|news | |
fieldName = fal_media | |
} | |
begin = 0 | |
maxItems = 1 |
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
# Create a database table | |
# Add necessary fields | |
# Import csv and map fields | |
# run if you table is named "Shirts" and the T-Shirt size column is named "Size" | |
SELECT Size,COUNT(*) FROM Shirts GROUP BY Size; |