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
https://help.github.com/articles/searching-issues/#search-by-a-commenter-within-an-issue-or-pull-request | |
commenter:BugBuster1701 |
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
in Backend css Datei | |
.w50h .tl_tip | |
{ | |
height: auto; | |
} | |
in DCA bei eval: statt | |
array('tl_class'=>'w50' ...) | |
nun | |
array('tl_class'=>'w50 w50h' ...) |
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
http://www.thewebhatesme.com/entwicklung/travis-ci/ | |
http://www.thewebhatesme.com/entwicklung/travis-ci-fuer-fortgschrittene/ | |
http://blog.sebastianbrosch.de/entwicklung/github-travis-ci-coveralls-code-climate-95/ | |
http://www.espend.de/artikel/testing-mit-composer-travis-ci-phpunit-und-github.html | |
https://github.com/codefog/contao-haste/blob/master/.travis.yml | |
http://www.sitepoint.com/getting-started-with-phpunit/ |
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
// Rebuild internal cache | |
if (!$GLOBALS['TL_CONFIG']['bypassCache']) | |
{ | |
$this->import('Automator'); | |
$this->Automator->generateConfigCache(); | |
$this->Automator->generateDcaCache(); | |
$this->Automator->generateDcaExtracts(); | |
} |
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
To make different pull requests, you create separate branches in your repository. | |
It is pretty common to name them after the issue they address. | |
It depends on the GIT interface you use but in plain command line the usual workflow goes like this: | |
# clone your own fork | |
git clone [email protected]:rolandschuetz/core.git | |
# add the upstream repository to the fork. | |
git add remote upstream [email protected]:contao/core.git | |
# checkout the correct maintenance branch you want to base upon |
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
http://www.phprpc.org/en/docs/#[[PHPRPC%20for%20PHP]] | |
oder als composer github Variante: | |
https://github.com/codegun/php-phprpc |
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
'color' => array | |
( | |
'label' => &$GLOBALS['TL_LANG']['tl_fp_gallery']['color'], | |
'exclude' => true, | |
'inputType' => 'select', | |
'options_callback' => array('Class', 'getColors'), | |
'eval' => array('tl_class'=>'w50 wizard'), | |
'wizard' => array | |
( | |
function($dc) { |
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
<?php | |
$path = 'tl_files/shoot/me.jpg'; | |
$file = \FilesModel::findOneByPath($path); | |
echo $file->uuid; // binär | |
echo \String::binToUuid($file->uuid); // menschenlesbar |
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
http://www.sr-tag.de/blog-details/mootools-accordeon-mit-positions-korrektur.html |
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
https://github.com/blog/1841-nested-task-lists |