Pastoid

Search Results

April 14, 2008 at 10:39 am - View

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of the distribution. deb http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted

April 13, 2008 at 9:15 am - View

$controls= array(); $controls[]= $ui->add('checkbox', 'undo', 'undo', false); $controls[]= $ui->add('checkbox', 'redo', 'redo', false); $container= $ui->add('fieldset', 'container', $controls); $container->class= 'foo';

April 13, 2008 at 9:15 am - View

<fieldset class="formcontrol checkbox"> <legend>container</legend> <div class="formcontrol checkbox"> <label>undo<input type="checkbox" value="1" name="e370bbf2"/></label> <input type="hidden" value="1" name="e370bbf2_submitted"/>

April 13, 2008 at 12:59 am - View

April 12, 2008 at 6:19 pm - View

class MyFormat extends Format { function autopx($value) { $regex = '/(<\\s*(address|blockquote|div|h[1-6]|hr|p|pre|ul|ol|dl|table)[^>]*?'.'>.*?<\\s*\/\\s*\\2\\s*>)/sm'; $target = str_replace("\r\n", "\n", $value); $target = preg_replace('/<\\s*br\\s*\/\\s*>(\s*)/m', "\n", $target);

April 11, 2008 at 1:53 pm - View

searching for compatible vm... testing /usr/lib/jvm/java-7-icedtea...not found testing /usr/lib/jvm/java-gcj...found !SESSION 2008-04-11 13:45:46.033 ----------------------------------------------- eclipse.buildId=M20070212-1330

April 11, 2008 at 1:30 pm - View

April 11, 2008 at 1:14 pm - View

April 11, 2008 at 4:05 am - View

function returnRolls($userName, $password) { $connection = mysql_connect("p50mysql43.secureserver.net", "dicebag", "ibod42"); mysql_select_db(dicebag); $viewResults = mysql_query( "SELECT

April 9, 2008 at 2:39 pm - View

<?php public static function dispatch_request() { /* OK, set the wheels in motion... */ Plugins::act('handler_' . Controller::instance()->action, Controller::get_handler_vars()); if(method_exists(Controller::instance()->handler, 'act')) { Controller::instance()->handler->act(Controller::instance()->action); } }?>

April 9, 2008 at 2:37 pm - View

public static function dispatch_request() { /* OK, set the wheels in motion... */ Plugins::act('handler_' . Controller::instance()->action, Controller::get_handler_vars()); if(method_exists(Controller::instance()->handler, 'act')) { Controller::instance()->handler->act(Controller::instance()->action); } }

April 9, 2008 at 2:37 pm - View

<?php public static function dispatch_request() { Plugins::act('handler_' . Controller::instance()->action, Controller::get_handler_vars()); if(method_exists(Controller::instance()->handler, 'act')) { Controller::instance()->handler->act(Controller::instance()->action); } }?>

April 9, 2008 at 2:02 pm - View

April 7, 2008 at 11:27 pm - View

April 7, 2008 at 6:49 pm - View

<div class="container center"> <div class="column span-24 last"> <?php echo $this->validation->error_string; ?> </div>

April 7, 2008 at 6:49 pm - View

the register button's row seems to start left-aligned with the second column. it's all the way off to the right again

April 7, 2008 at 6:36 pm - View

<div class="container center"> <div class="column span-24 last"> <?php echo $this->validation->error_string; ?> </div>

April 7, 2008 at 6:36 pm - View

the validation error string div works fine (when it exists), and spans the whole width of the page. the first row (username and email) works fine the second row (password and confirm) works fine the "register" button, which should be the only column on the 3rd row, ends up getting appended at the far right side of the second row

April 6, 2008 at 6:17 pm - View

<?php Plugins::act( 'admin_header', $this ); Stack::add('admin_stylesheet', array('path-to-css', 'screen'), 'style'); Stack::out( 'admin_stylesheet', '<link rel="stylesheet" type="text/css" href="%s" media="%s">'."\r\n" ); Stack::out( 'admin_header_javascript', '<script src="%s" type="text/javascript"></script>'."\r\n" );

April 6, 2008 at 6:17 pm - View

<link rel="stylesheet" type="text/css" href="path-to-css" media="screen"> <script src="/system/plugins/viddlersilo/vidfuncs.js" type="text/javascript"></script>

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