Pastoid

Search Results

February 22, 2013 at 10:37 am - View

<footer> <?php if ( count( $post->tags ) > 0 ) { ?> <div class="tags"><?php _e('Tagged:'); ?> <?php echo $post->tags_out; ?></div> <?php } ?> </footer>

February 21, 2013 at 1:55 pm - View

Sure. This I can do! Hold on tight, because this is going to be long! First, Habari is strictly object-oriented. This was an important design decision early on, and has had a lot of long-term ramifications. Just about everything in Habari is an object. Each

February 19, 2013 at 8:56 am - View

<div class="post-z-frame">

February 19, 2013 at 8:53 am - View

This is my plain text.

February 1, 2013 at 9:51 am - View

#!/usr/bin/php <?php // we only want to run every five minutes // but OpenShift invokes us every minute

January 23, 2013 at 2:37 pm - View

$ git push Username: Password: Counting objects: 9, done. Compressing objects: 100% (5/5), done.

January 23, 2013 at 2:16 pm - View

public function silo_get( $path, $qualities = null ) { $flickr = new Flickr( $this->params ); $results = array(); $size = Options::get( 'flickrsilo__flickr_size' );

January 23, 2013 at 2:15 pm - View

$silos = Plugins::get_by_interface('FlickrSilo'); $flickrsilo = reset($silos); $image = $flickrsilo->silo_get( 8408096959 ); var_export( $image );

January 23, 2013 at 10:27 am - View

SimpleXMLElement::__set_state(array( '@attributes' => array ( 'id' => '8400046888', 'secret' => 'b869915b25',

January 10, 2013 at 4:28 pm - View

array ( 'slug' => 'test', 'title' => 'test', 'tags' => 'pbem', 'content' => '[flickr id=8368825042/]This is a test. ', 'user_id' => '1', 'pubdate' => HabariDateTime::__set_state(array( 'date' => '2013-01-10 21:24:46', 'timezone_type' => 3, 'timezone' => 'UTC', )), 'status' => '2', 'content_type' => '1', )

January 9, 2013 at 7:58 pm - View

SimpleXMLElement::__set_state(array( '@attributes' => array ( 'id' => '8364818379', 'secret' => 'a5a7831c5f', 'server' => '8214', 'farm' => '9', 'dateuploaded' => '1357766329', 'isfavorite' => '0', 'license' => '5', 'safety_level' => '0', 'rotation' => '0', 'originalsecret' => 'e4e75e8aae', 'originalformat' => 'jpg', 'views' => '1', 'media' => 'photo', ), 'owner' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'nsid' => '42774892@N00', 'username' => 'skpy', 'realname' => 'Scott', 'location' => '', 'iconserver' => '2051', 'iconfarm' => '3', ), )), 'title' => 'little-skippy-200', 'description' => SimpleXMLElement::__set_state(array( )), 'visibility' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'ispublic' => '1', 'isfriend' => '0', 'isfamily' => '0', ), )), 'dates' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'posted' => '1357766329', 'taken' => '2013-01-09 16:18:49', 'takengranularity' => '0', 'lastupdate' => '1357766331', ), )), 'permissions' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'permcomment' => '3', 'permaddmeta' => '2', ), )), 'editability' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'cancomment' => '1', 'canaddmeta' => '1', ), )), 'publiceditability' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'cancomment' => '1', 'canaddmeta' => '0', ), )), 'usage' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'candownload' => '1', 'canblog' => '1', 'canprint' => '1', 'canshare' => '1', ), )), 'comments' => '0', 'notes' => SimpleXMLElement::__set_state(array( )), 'people' => SimpleXMLElement::__set_state(array( '@attributes' => array ( 'haspeople' => '0', ), )), 'tags' => SimpleXMLElement::__set_state(array( 'tag' => array ( 0 => 'test', 1 => 'test1', 2 => 'test2', ), )), 'urls' => SimpleXMLElement::__set_state(array( 'url' => 'http://www.flickr.com/photos/skippy/8364818379/', )), ))

January 6, 2013 at 2:04 pm - View

<?xml version="1.0" encoding="utf-8" ?> <rsp stat="ok"> <photo id="8354829372" secret="463c0687cf" server="8333" farm="9" dateuploaded="1357496457" isfavorite="0" license="5" safety_level="0" rotation="0" originalsecret="a96dd2b903" originalformat="jpg" views="0" media="video"> <owner nsid="42774892@N00" username="skpy" realname="Scott" location="" iconserver="2051" iconfarm="3" /> <title>peek-a-boo</title>

January 4, 2013 at 12:28 pm - View

diff --git a/plugins/flickrsilo/flickrsilo.plugin.php b/plugins/flickrsilo/flickrsilo.plugin.php index 2fe1ce4..0084699 100644 --- a/plugins/flickrsilo/flickrsilo.plugin.php +++ b/plugins/flickrsilo/flickrsilo.plugin.php @@ -325,7 +325,7 @@ class Flickr extends flickrAPI

January 4, 2013 at 12:27 pm - View

<?php if ( !defined( 'HABARI_PATH' ) ) { die( 'No direct access' ); } class pbem_storage_flickr extends Plugin {

January 4, 2013 at 11:30 am - View

diff --git a/pbem.plugin.php b/pbem.plugin.php index 11fb46f..1e10455 100644 --- a/pbem.plugin.php +++ b/pbem.plugin.php @@ -12,7 +12,7 @@ class pbem extends Plugin

January 4, 2013 at 10:41 am - View

15c15 < public static function store_attachment( $filename = null, $content = null ) { --- > public function filter_pbem_store_local( $url, $filename = null, $content = null, $user = null ) { 35c35,39

January 4, 2013 at 9:00 am - View

SimpleXMLElement::__set_state(array( '@attributes' => array ( 'stat' => 'ok', ),

January 3, 2013 at 11:38 am - View

$pbem_storage = $form->pbem->append( 'select', 'pbem_storage', 'null:null', _t('Where to store attachments: ', 'pbem' ) ); $pbem_storage->class[] = 'item clear'; $pbem_storage->options = array( 'local' => 'Local' ); $pbem_storage->options = Plugins::filter('pbem_storage_provider', $pbem_storage->options ); $pbem_storage->template = 'optionscontrol_select' );

October 3, 2012 at 2:56 pm - View

$prios = array(); $nonprio = array(); $new = array(); foreach ( $this->tasks as $task ) { if ( $task->priority ) {

September 16, 2012 at 3:57 pm - View

1 · 2 · 3 · 4 · 5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 · 16 · 17 · 18 · 19 · 20 · 21 · 22 · 23 · 24 · 25 · 26 · 27 · 28 · 29 · 30 · 31 · 32 · 33 · 34 · 35 · 36 · 37 · 38 · 39 · 40 · 41 · 42 · 43 · 44 · 45 · 46 · 47 · 48 · 49 · 50 · 51 · 52 · 53 · 54 · 55 · 56 · 57 · 58 · 59 · 60 · 61 · 62 · 63 · 64 · 65 · 66 · 67 · 68 · 69 · 70 · 71 · 72 · 73 · 74 · 75 · 76 · 77 · 78 · 79 · 80 · 81 · 82 · 83 · 84 · 85 · 86 · 87 · 88 · 89 · 90 · 91 · 92 · 93 · 94 · 95 · 96 · 97 · 98 · 99 · 100 · 101 · 102 · 103 · 104 · 105 · 106 · 107 · 108 · 109 · 110 · 111 · 112 · 113 · 114 · 115 · 116 · 117 · 118 · 119 · 120 · 121 · 122 · 123 · 124 · 125 · 126 · 127 · 128 · 129 · 130 · 131 · 132 · 133 · 134 · 135 · 136 · 137 · 138 · 139 · 140 · 141 · 142 · 143 · 144 · 145 · 146 · 147 · 148 · 149 · 150 · 151 · 152 · 153 · 154 · 155 · 156 · 157 · 158 · 159 · 160 · 161 · 162 · 163

<Hide