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
{ | |
"hits" : { | |
"hits" : [ | |
{ | |
"_source" : { | |
"textWithHtml" : "<p>...</p>", | |
"section" : "News", | |
"contribs" : [ | |
"182261" |
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
<%init>; | |
my $offset = $burner->notes('last_offset') || 0; | |
my $cat = $burner->get_cat->get_uri; | |
$cat = undef if $cat eq '/archive/'; | |
my @sorted; | |
if ($burner->notes('story_list')) { | |
@sorted = @{$burner->notes('story_list')}; | |
} else { |
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
<%args> | |
$category => undef | |
@cat_ids => undef | |
$element_key => undef | |
$site_id => $story->get_site_id | |
$pages => 10 | |
$stories_per_page => 10 | |
$order => undef | |
$sort => undef | |
</%args> |
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
- module: CustomFeed::Mailman::Private | |
config: | |
list: https://lists.domain.org/cgi-bin/mailman/private/list-name/ | |
username: username | |
password: PASSW0RD | |
- module: CustomFeed::Mailman::Private | |
config: | |
list: https://lists.domain.org/cgi-bin/mailman/private/list-name1/ | |
username: username1 |
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
global: | |
# Make plagger more verbose than default | |
log: | |
level: debug | |
assets_path: /Users/username/Development/plagger/assets | |
plugins: | |
# Subscribe to a couple of "My Feeds" on the web | |
# They could be either Feeds URL or Blog URL (with Auto-Discovery support) | |
- module: CustomFeed::Mailman |
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
body.cartoon div#column1 | |
{ | |
width: 100%; | |
margin: 0; | |
padding: 0; | |
} | |
body.cartoon div#column1 img, body.cartoon div#column1 p { | |
padding: 0; | |
margin: 0; | |
} |
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
Odd number of elements in anonymous hash at /Library/Perl/5.8.8/Padre/Config/Setting.pm line 26, <DATA> line 1. | |
You Wx.pm is not new enough (need 0.91, found 0.74) at /Library/Perl/5.8.8/Padre/Wx.pm line 30, <DATA> line 1. | |
BEGIN failed--compilation aborted at /Library/Perl/5.8.8/Padre/Wx.pm line 32, <DATA> line 1. | |
Compilation failed in require at /Library/Perl/5.8.8/Padre/Locale.pm line 47, <DATA> line 1. | |
BEGIN failed--compilation aborted at /Library/Perl/5.8.8/Padre/Locale.pm line 47, <DATA> line 1. | |
Compilation failed in require at /Library/Perl/5.8.8/Padre/PluginHandle.pm line 8, <DATA> line 1. | |
BEGIN failed--compilation aborted at /Library/Perl/5.8.8/Padre/PluginHandle.pm line 8, <DATA> line 1. | |
Compilation failed in require at /Library/Perl/5.8.8/Padre/PluginManager.pm line 37, <DATA> line 1. | |
BEGIN failed--compilation aborted at /Library/Perl/5.8.8/Padre/PluginManager.pm line 37, <DATA> line 1. | |
Compilation failed in require at /Library/Perl/5.8.8/Padre.pm line 150, <DATA> line 1. |
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
Compiled at Aug 28 2009 17:18:21 | |
@INC: | |
/usr/local/lib/perl5/5.10.1/darwin-thread-multi-2level | |
/usr/local/lib/perl5/5.10.1 | |
/usr/local/lib/perl5/site_perl/5.10.1/darwin-thread-multi-2level | |
/usr/local/lib/perl5/site_perl/5.10.1 | |
. |
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
/** | |
* views template to output a view. | |
* This code was generated by the views theming wizard | |
* Date: June 26, 2009 - 12:34pm | |
* View: enews_dail_top_picks | |
* | |
* This function goes in your template.php file | |
*/ | |
function phptemplate_views_view_list_enews_dail_top_picks($view, $nodes, $type) { | |
$fields = _views_get_fields(); |
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
SELECT node.nid AS node_id, | |
FROM_UNIXTIME(node.created) AS created, | |
node.title, | |
nr.teaser, | |
nr.body AS text, | |
( SELECT GROUP_CONCAT( name SEPARATOR ':' ) AS name_list FROM ( term_data LEFT JOIN (term_node) ON term_data.tid = term_node.tid ) WHERE term_node.nid=node_id ) AS keywords, | |
CONCAT_WS("/","http://interact.newint.org",url_alias.dst) AS slug | |
FROM node, | |
term_node AS tn, | |
node_revisions as nr, |