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
# gzip compression. | |
<IfModule mod_deflate.c> | |
# html, txt, css, js, json, xml, htc: | |
AddOutputFilterByType DEFLATE text/html text/plain text/css application/json | |
AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript | |
AddOutputFilterByType DEFLATE text/xml application/xml text/x-component | |
# webfonts and svg: | |
<FilesMatch "\.(ttf|otf|eot|svg)$" > |
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 | |
/* | |
Plugin Name: Flickr Feed Gallery | |
Plugin URI: http://www.jaysonjc.com/projects/wordpress-plugins/flickr-feed-gallery | |
Description: Enables easy integration of Flickr photo feed to a WordPress blog. Configure feed parameters from settings page. Use <code><?php show_flickr_feed_gallery();?></code> in your theme or add plugin as a Widget. | |
Version: 1.1 | |
Author: Jayson Joseph Chacko | |
Author URI: http://www.jaysonjc.com | |
*/ | |
class Flickr_Feed_Gallery { |
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
file = GIFBUILDER | |
file { | |
XY = 180,160 | |
format = png | |
quality = 100 | |
10 = IMAGE | |
10 { | |
offset = 0,0 | |
file.import.current = 1 | |
file.maxW = 160 |
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 | |
Tx_Extbase_Utility_Extension::configurePlugin( | |
$_EXTKEY, | |
'Screening', | |
array( // An array holding the controller-action-combinations that are accessible | |
'Screening' => 'show, index', | |
'Season' => 'index' // The first controller and its first action will be the default | |
), | |
array( // An array of non-cachable controller-action-combinations (they must already be enabled) | |
'Screening' => '', |
NewerOlder