Consider this blog post model:
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
| TCA (this is the Definition for an image field using FAL reference): | |
| 'image' => array( | |
| 'exclude' => 0, | |
| 'label' => 'LLL:EXT:abs_content_elements/Resources/Private/Language/locallang_db.xlf:tx_abscontentelements_domain_model_box.image', | |
| 'config' => array( | |
| 'maxitems' => 1, | |
| 'type' => 'inline', | |
| 'foreign_table' => 'sys_file_reference', | |
| 'foreign_field' => 'uid_foreign', |
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
| SQL: | |
| images int(11) unsigned DEFAULT '0', | |
| ======================================================= | |
| TCA | |
| .... | |
| 'images' => array( | |
| 'exclude' => 0, | |
| 'label' => 'images', | |
| 'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig( | |
| 'images', |
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 | |
| # Installation | |
| # - Move this to /etc/init.d/myservice | |
| # - chmod +x this | |
| # | |
| # Starting and stopping | |
| # - Start: `service myservice start` or `/etc/init.d/myservice start` | |
| # - Stop: `service myservice stop` or `/etc/init.d/myservice stop` |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # This Vagrantfile (vagrantup.com) spins up a MySQL server with your data | |
| # already loaded. Many of the settings below are the same suggestions you get | |
| # from `vagrant init`. | |
| # | |
| # Just be sure that (if you want data loaded) you have your .sql file sitting | |
| # in the directory that will be shared to the guest. Usually this is the folder | |
| # that your Vagrantfile is in. The database and user will have the same name as |
- Opening - Laser Intro 1 Laster Intro 2
- Robert Lemke - Keynote
- Christian Müller - Neos 101
- Sebastian Kurfürst - A Head Start Into TypoScript 2.0
- Martin Helmich - Bringing the Elephant up to speed - Running TYPO3 Flow on HipHop VM
- Tim Numan/Jesper Paardekooper - How Flow helps us save the world
- Henrik Møller Rasmussen - Domain Event - the hidden gem of DDD
- Karsten Dambekalns - [Migrating from TYPO3
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrant file for Modern IE (https://www.modern.ie/en-us) boxes | |
| # This file is for Windown 7 running IE9, but there are other possibilities. | |
| # NB: Vagrant wants to ssh into the VM, but these VMs don't have ssh. So, | |
| # you'll get a timeout error message, which is safe to ignore. | |
| # To use a different box, replace the config.vm.box_url with the URL and | |
| # update the config.vm.box to some name you want to refer to it as. |
Currently considering https://github.com/webdriverio/webdrivercss
Core Goals:
- Can test in up-to-date versions of all major browsers
- Can test on up-to-date versions of all major OSes
- Can test in IE9 (because Bootstrap v4 will support IE9+)
- Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
- Workflow for management of reference/baseline/norm screenshots
OlderNewer