- about:blank
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
| # Fetch&render fe_users (just as an example) | |
| temp.userList = RECORDS | |
| temp.userList { | |
| source.field = users | |
| tables = fe_users | |
| conf.fe_users = COA | |
| conf.fe_users { | |
| 10 = ... | |
| wrap = <li>|</li> |
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
| temp.checkbox_with_split = COA | |
| temp.checkbox_with_split { | |
| # Define data | |
| 10 = LOAD_REGISTER | |
| 10 { | |
| # Valid bits in the field | |
| bits = 1,2,3,4,5,6,7 | |
| # Field name in the database. Don't move below other registers! |
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 DmitryDulepov\Sample\Xclass; | |
| class Typo3DbQueryParser extends \TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbQueryParser { | |
| /** | |
| * Fixes incorrect localisation handling in Extbase. | |
| * | |
| * @param string $tableName | |
| * @param array $sql |
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
| (function($) { | |
| $(document).ready(function() { | |
| /** | |
| * Turns the currently active facet link to "reset facet" link by removing the filter segment. | |
| */ | |
| function modifyFacetLinkToReset() { | |
| if (document.location.search.indexOf('tx_solr%5Bfilter%5D') > 0) { | |
| $('.tx-solr-collapsible-facets a').each(function() { |
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
| plugin.tx_solr { | |
| index { | |
| queue { | |
| tx_news_domain_model_news = 1 | |
| tx_news_domain_model_news { | |
| tableName = tx_news_domain_model_news | |
| additionalWhereClause = tx_news_domain_model_news.type=0 | |
| fields { | |
| title = title |
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
| diff --git a/www/typo3conf/ext/solr/Classes/IndexQueue/PageIndexerRequest.php b/www/typo3conf/ext/solr/Classes/IndexQueue/PageIndexerRequest.php | |
| index b34aee4..ca3247f 100644 | |
| --- a/www/typo3conf/ext/solr/Classes/IndexQueue/PageIndexerRequest.php | |
| +++ b/www/typo3conf/ext/solr/Classes/IndexQueue/PageIndexerRequest.php | |
| @@ -138,7 +138,11 @@ class Tx_Solr_IndexQueue_PageIndexerRequest { | |
| 'http' => array( | |
| 'header' => implode(CRLF, $headers), | |
| 'timeout' => $this->timeout | |
| - ) | |
| + ), |
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 DmitryDulepov\Myext\Controller; | |
| class MyController { | |
| /** | |
| * @var \DmitryDulepov\Myext\\Domain\Repository\RecordRepository | |
| * @inject | |
| */ | |
| protected $recordRepository; |
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
| To embed a video using the `<lj-template>` tag, use the following code: | |
| YouTube: | |
| ```html | |
| <lj-template name="video">http://www.youtube.com/watch?v=example</lj-template> | |
| ``` | |
| Photobucket: | |
| ```html | |
| <lj-template name="video">http://xxx.photobucket.com/albums/xxx/example/?action=view¤t=example.flv | |
| </lj-template> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>Label</key> | |
| <string>local.automasq</string> | |
| <key>ProgramArguments</key> | |
| <array> |
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/bash | |
| # | |
| # @see https://youtrack.jetbrains.com/issue/IDEA-129941 | |
| # | |
| # Make sure you have Wi-Fi on and automatic time zone on on your Mac! | |
| sudo codesign --force --deep --sign - /Applications/PhpStorm.app/ |
OlderNewer