Pastoid

Search Results

March 3, 2010 at 9:45 pm - View

Index: bitmaskTest.php =================================================================== --- bitmaskTest.php (revision 4061) +++ bitmaskTest.php (working copy) @@ -2,7 +2,7 @@

March 3, 2010 at 2:37 pm - View

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="en"/>

March 1, 2010 at 10:54 pm - View

<?php $theme->display( 'header' ); ?> <div class="span-12 append-2 first" id="blog"> <h2>Posts tagged <em><?php echo $tag; ?></em></h2>

March 1, 2010 at 10:54 pm - View

<?php // Apply Format::autop() to post content... //Format::apply( 'autop', 'post_content_out' ); //Format::apply( 'autop', 'post_content_more' );

vocab testing - View

/** * Retrieve the vocabulary * @return Array The Term objects in the vocabulary, in tree order **/ public function get_tree($orderby = 'mptt_left ASC')

vocab testing - View

//create the vocabulary in hconsole $x = Vocabulary::get( 'categories' ); foreach($x->get_tree() as $t) {$x->delete_term($t);} $x->add_term( 'A' ); $x->add_term( 'G' );

March 1, 2010 at 3:18 pm - View

//create the vocabulary in hconsole $x = Vocabulary::get( 'categories' ); foreach($x->get_tree() as $t) {$x->delete_term($t);} $x->add_term( 'A' ); $x->add_term( 'G' );

March 1, 2010 at 12:39 pm - View

/** * Moves a term within the vocabulary. Returns a Term object. null parameters append the term to the end of any hierarchies. * @return Term The Term object added **/ public function move_term( $term, $target_term = null, $before = FALSE )

March 1, 2010 at 12:39 pm - View

/* this worked, run one line at a time */ $x = Vocabulary::get( 'categories' ); $x->move_term( $x->get_term( 'B' ), $x->get_term( 'F' ), true ); $x->displace_term( 'B', -8 ); $params = array( 6, $x->id, 2 );

March 1, 2010 at 12:39 pm - View

/** * Moves a term within the vocabulary. Returns a Term object. null parameters append the term to the end of any hierarchies. * @return Term The Term object added **/ public function move_term( $term, $target_term = null, $before = FALSE )

March 1, 2010 at 12:39 pm - View

/* this worked, run one line at a time */ $x = Vocabulary::get( 'categories' ); $x->move_term( $x->get_term( 'B' ), $x->get_term( 'F' ), true ); $x->displace_term( 'B', -8 ); $params = array( 6, $x->id, 2 );

March 1, 2010 at 12:39 pm - View

//create the vocabulary in hconsole $x = Vocabulary::get( 'categories' ); $x->add_term( 'A' ); $x->add_term( 'G' ); $x->add_term( 'H' );

March 1, 2010 at 12:39 pm - View

/** * Moves a term within the vocabulary. Returns a Term object. null parameters append the term to the end of any hierarchies. * @return Term The Term object added **/ public function move_term( $term, $target_term = null, $before = FALSE )

March 1, 2010 at 12:39 pm - View

/* this worked, run one line at a time */ $x = Vocabulary::get( 'categories' ); $x->move_term( $x->get_term( 'B' ), $x->get_term( 'F' ), true ); $x->displace_term( 'B', -8 ); $params = array( 6, $x->id, 2 );

March 1, 2010 at 12:39 pm - View

//create the vocabulary in hconsole $x = Vocabulary::get( 'categories' ); $x->add_term( 'A' ); $x->add_term( 'G' ); $x->add_term( 'H' );

March 1, 2010 at 12:39 pm - View

/** * Moves a term within the vocabulary. Returns a Term object. null parameters append the term to the end of any hierarchies. * @return Term The Term object added **/ public function move_term( $term, $target_term = null, $before = FALSE )

March 1, 2010 at 12:39 pm - View

/* this worked, run one line at a time */ $x = Vocabulary::get( 'categories' ); $x->move_term( $x->get_term( 'B' ), $x->get_term( 'F' ), true ); $x->displace_term( 'B', -8 ); $params = array( 6, $x->id, 2 );

March 1, 2010 at 12:39 pm - View

//create the vocabulary in hconsole $x = Vocabulary::get( 'categories' ); $x->add_term( 'A' ); $x->add_term( 'G' ); $x->add_term( 'H' );

March 1, 2010 at 12:39 pm - View

/** * Moves a term within the vocabulary. Returns a Term object. null parameters append the term to the end of any hierarchies. * @return Term The Term object added **/ public function move_term( $term, $target_term = null, $before = FALSE )

March 1, 2010 at 12:39 pm - View

/* this worked, run one line at a time */ $x = Vocabulary::get( 'categories' ); $x->move_term( $x->get_term( 'B' ), $x->get_term( 'F' ), true ); $x->displace_term( 'B', -8 ); $params = array( 6, $x->id, 2 );

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

<Hide