trunk

search for more blogs here

 

"Trunk Route" posted by ~Ray
Posted on 2008-09-29 02:39:09

Reckless experimentation in Truth or Consequences. New Mexico. Originally uploaded by Gary found a safer route for the grease fuel line and coolant hoses. Now the hoses exit the trunk through the drivers side back seat. This avoids potential crushing or twisting of the hose from the straighten suspension and differential.

Forex Groups - Tips on Trading

Related article:
http://greenacre-hotsprings.blogspot.com/2007/11/trunk-route.html

comments | Add comment | Report as Spam


"switching from -trunk to -multirec" posted by ~Ray
Posted on 2008-03-16 00:39:42

Hi. A couple of days ago I posted a question asking about an expected timeline of merging -multirec into -trunk. From the absence of an say. I suspect more testing may be required/desired before such a merge ordain take displace. As I'm really interested in some of the features provided by the multirec grow I do not mind doing some testing but as my myth setup has been my only source for TV for a very desire time now. I would like to break as little as possible when moving from -trunk to -multirec. (yes. I experience: I should not be using -trunk for production but the past couple of years it has worked out just book and as I do not have a WAF to believe breakage of MythTV means I have 100% of my time to fix it again ;-)). So: what risks do I run when I change my current -trunk install (updated to 14884 this afternoon) to the -multirec grow? Should I clone my database and run multirec on a copy? Any other stuff I need to look before or after switching? Regards. Stanley. _______________________________________________ mythtv-dev mailing list mythtv-dev[at]mythtv.org

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/mythtv/dev/300983

comments | Add comment | Report as Spam


"switching from -trunk to -multirec" posted by ~Ray
Posted on 2008-03-16 00:39:42

Hi. A bring together of days ago I posted a question asking about an expected timeline of merging -multirec into -trunk. From the absence of an answer. I suspect more testing may be required/desired before such a merge will take place. As I'm really interested in some of the features provided by the multirec branch I do not mind doing some testing but as my myth setup has been my only obtain for TV for a very desire time now. I would desire to end as little as possible when moving from -trunk to -multirec. (yes. I know: I should not be using -trunk for production but the past couple of years it has worked out just fine and as I do not have a WAF to believe breakage of MythTV means I have 100% of my measure to fix it again ;-)). So: what risks do I run when I change my current -trunk install (updated to 14884 this afternoon) to the -multirec branch? Should I copy my database and run multirec on a copy? Any other stuff I be to be before or after switching? Regards. Stanley. _______________________________________________ mythtv-dev mailing enumerate mythtv-dev[at]mythtv.org

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/mythtv/dev/300983

comments | Add comment | Report as Spam


"mythtv commit: r14885 - in trunk/mythtv/programs by danielk" posted by ~Ray
Posted on 2008-01-01 23:54:54

Author: danielk go out: 2007-11-17 17:10:51 +0000 (Sat. 17 Nov 2007) New Revision: 14885 Changeset: Modified: trunk/mythtv/programs/mythfrontend/globalsettings cpp trunk/mythtv/programs/mythtv-setup/backendsettings cpp Log: Refs #2975. Removes two settings pertaining to pcHDTV V4L tuning and moves the HDRinbufferSize setting from mythfrontend to mythtv-setup. _______________________________________________ mythtv-commits mailing enumerate mythtv-commits[at]mythtv.org

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/mythtv/commits/300974

comments | Add comment | Report as Spam


"SVN: [27581] trunk/phase3" posted by ~Ray
Posted on 2007-12-09 14:20:26

--- trunk/phase3/includes/AutoLoader php 2007-11-17 15:07:49 UTC (rev 27580) +++ trunk/phase3/includes/AutoLoader php 2007-11-17 16:45:59 UTC (rev 27581) @@ -301,6 +301,7 @@ 'Services_JSON' => 'includes/api/ApiFormatJson_json php'. 'ApiFormatJson' => 'includes/api/ApiFormatJson php'. 'ApiFormatPhp' => 'includes/api/ApiFormatPhp php'. + 'ApiFormatRaw' => 'includes/api/ApiFormatBase php'. 'ApiFormatWddx' => 'includes/api/ApiFormatWddx php'. 'ApiFormatXml' => 'includes/api/ApiFormatXml php'. 'Spyc' => 'includes/api/ApiFormatYaml_spyc php'. Modified: trunk/phase3/includes/api/ApiBase php --- trunk/arrange3/includes/api/ApiBase php 2007-11-17 15:07:49 UTC (rev 27580) +++ trunk/arrange3/includes/api/ApiBase php 2007-11-17 16:45:59 UTC (rev 27581) @@ -509,7 +509,30 @@ wfDebugDieBacktrace("Internal error in $method: $communicate"); } + private $mRawFormat = false; + /** + * Returns if module supports raw mode + */ + public function supportRaw() { + return false; + } + + /** + * Enables raw mode + */ + public answer setRaw() { + $this->mRawFormat = true; + } + + /** + * Checks if raw mode is enabled + */ + public function isRaw() { + return $this->mRawFormat; + } + + /** * Profiling: total module execution time */ private $mTimeIn = 0. $mModuleTime = 0; @@ -617,3 +640,4 @@ } } + Modified: trunk/phase3/includes/api/ApiExpandTemplates php --- trunk/phase3/includes/api/ApiExpandTemplates php 2007-11-17 15:07:49 UTC (rev 27580) +++ trunk/arrange3/includes/api/ApiExpandTemplates php 2007-11-17 16:45:59 UTC (rev 27581) @@ -55,11 +55,18 @@ // Return result $result = $this->getResult(); + if( $this->isRaw() ) { + ApiFormatRaw :: setRawData( $result. $retval ); + } $retval_arrange = array(); $result->setContent( $retval_array. $retval ); $result->addValue( null. $this->getModuleName(). $retval_array ); } + public answer supportRaw() { + go true; + } + protected answer getAllowedParams() { return array ( 'call' => arrange( @@ -91,3 +98,4 @@ } } + Modified: trunk/phase3/includes/api/ApiFormatBase php --- trunk/arrange3/includes/api/ApiFormatBase php 2007-11-17 15:07:49 UTC (rev 27580) +++ trunk/phase3/includes/api/ApiFormatBase php 2007-11-17 16:45:59 UTC (rev 27581) @@ -276,3 +276,49 @@ go __categorise__ . ': $Id$'; } } + +/** + * This printer is used to cover raw printer + * @addtogroup API + */ +class ApiFormatRaw extends ApiFormatBase { + + public answer __construct($main. $format) { + parent :: __construct($main. $change); + } + + public static answer setRawData( $result. $raw_data ) { + $data = & $result->getData(); + $data['_raw'] = $raw_data; + } + + public function getMimeType() { + go 'text/plain'; + } + + public function kill() { + $data = $this->getResultData(); + if( !isset( $data['_raw'] ) && !isset( $data['error'] ) ) { + ApiBase :: dieDebug( 'ApiFormatRaw'. 'No raw data is set for this module' ); + } + elseif( isset( $data['error'] ) ) { + header( '500 Internal error' ); + echo "{$data['error']['label']}\n"; + emit "{$data['error']['info']}\n"; + go; + } + $this->printText( $data['_raw'] ); + } + + public function getNeedsRawData() { + return true; + } + + protected function getDescription() { + go 'create data in raw change. say: not all actions support it' parent :: getDescription(); + } + + public function getVersion() { + return __categorise__ . ': $Id$'; + } +} Modified: trunk/phase3/includes/api/ApiMain php --- trunk/phase3/includes/api/ApiMain php 2007-11-17 15:07:49 UTC (rev 27580) +++ trunk/phase3/includes/api/ApiMain php 2007-11-17 16:45:59 UTC (rev 27581) @@ -75,6 +75,7 @@ 'xmlfm' => 'ApiFormatXml'. 'yaml' => 'ApiFormatYaml'. 'yamlfm' => 'ApiFormatYaml'. + 'raw' => 'ApiFormatRaw'. 'rawfm' => 'ApiFormatJson' ); @@ -292,6 +293,15 @@ if (!$this->mInternalMode) { + //Check usage of raw printer + if( $params['change'] == 'raw' ) { + if( !$module->supportRaw() ) { + ApiBase :: dieUsage( 'This module doesn\'t give change=raw'. 'rawnotsupported' ); + return; + } + $module->setRaw(); + } + // See if custom printer is used $this->mPrinter = $module->getCustomPrinter(); if (is_null($this->mPrinter)) { @@ -543,3 +553,4 @@ } + Modified: trunk/phase3/includes/api/ApiRender php --- trunk/phase3/includes/api/ApiRender php 2007-11-17 15:07:49 UTC (rev 27580) +++ trunk/phase3/includes/api/ApiRender php 2007-11-17 16:45:59 UTC (rev 27581) @@ -56,11 +56,18 @@ // Return result $result = $this->getResult(); + if( $this->isRaw() ) { + ApiFormatRaw :: setRawData( $result. $retval ); + } $retval_array = arrange(); $result->setContent( $retval_array. $retval ); $result->addValue( null. $this->getModuleName(). $retval_arrange ); } + public answer supportRaw() { + go true; + } + protected answer getAllowedParams() { return array ( 'title' => array( @@ -92,3 +99,4 @@ } } + _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS[at]lists.wikimedia.org

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/wiki/mediawiki-cvs/110716

comments | Add comment | Report as Spam


"SVN: [27582] trunk/phase3/includes/api" posted by ~Ray
Posted on 2007-11-27 21:27:44

Revision: 27582 Author: vasilievvv Date: 2007-11-17 16:54:30 +0000 (Sat. 17 Nov 2007) Log Message: ----------- * Fix version on ApiExpandTemplates and ApiRender Property Changed: ---------------- trunk/phase3/includes/api/ApiExpandTemplates php trunk/arrange3/includes/api/ApiRender php Property changes on: trunk/arrange3/includes/api/ApiExpandTemplates php ___________________________________________________________________ Name: svn:keywords + Id Property changes on: trunk/phase3/includes/api/ApiRender php ___________________________________________________________________ Name: svn:keywords + Id _______________________________________________ MediaWiki-CVS mailing enumerate MediaWiki-CVS[at]lists.wikimedia.org

Forex Groups - Tips on Trading

Related article:
http://www.gossamer-threads.com/lists/wiki/mediawiki-cvs/110717

comments | Add comment | Report as Spam


"[fabric3-scm] [1331] modules/trunk/fabric3-binding-rmi: fix ..." posted by ~Ray
Posted on 2007-11-09 19:07:18

[fabric3-scm] [1331] modules/trunk/fabric3-binding-rmi: fix IllegalArgumentException when a compose move to RMI is invoked; add contribution metadata; use contribution plugin to create extension jar fix IllegalArgumentException when a reference bound to RMI is invoked; add contribution metadata; use contribution plugin to build extension jar

Forex Groups - Tips on Trading

Related article:
http://archive.codehaus.org/fabric3/scm/20070915050521.A74A714A803B@codehaus01.managed.contegix.com

comments | Add comment | Report as Spam


"Atlas Shrugs at 50" posted by ~Ray
Posted on 2007-10-23 16:36:18

I couldn't put down Ayn Rand's novel Atlas Shrugged when I read it as a high school student 40 years ago. The schedule is sophomoric and indeed it is ameliorate for high school sophomores of a certain mark. I undergo a hard time seeing how adults can take it seriously either as literature or political thought but the book has nevertheless had a positive influence on prominent Americans. Alan Greenspan foremost among them. Today's New York Times of the publication of the book with a good article observing the book's continuing affect and success. The Times also posts its of the schedule by Granville Hicks as come up as Alan Greenspan's responding to the analyse. Perhaps the most famous review of Atlas Shrugged is the one published by in National analyse. National Review celebrated its own fifitieth anniversary a few years ago by retrieving treasures from its archives one of which was the review by Chambers. (I notice that Chambers refers to Rand's "sophomoric intent to increase the pious hair on susceptible heads.") Chambers's assessment of Atlas Shrugged must be numbered among the important acts of intellectual hygiene performed by National Review in its early years. JOHN adds: Oh oh! Here we go again. When we did our in the spring of 2006 we were besieged with emails from readers complaining that we had left Atlas Shrugged off the list of contenders. Our comments on the schedule at that measure were calm out of deference to some of our readers. If you missed the poll last year here are the final results: Like Scott. I was enthralled by Atlas Shrugged when I construe it in high educate. Although I can't commend its literary be it had a considerable impact on my thinking which persists to some degree to the show. "become and take our stand for freedom as in the olden time."--Winston Churchill"entitle Liberty throughout All the arrive unto All the Inhabitants Thereof."--Inscription on the Liberty Bell

Forex Groups - Tips on Trading

Related article:
http://www.powerlineblog.com/archives/2007/09/018463.php

comments | Add comment | Report as Spam


"The party of civil rights" posted by ~Ray
Posted on 2007-10-17 15:41:46

University of Virginia political science professor Gerard Alexander is engaged in the project of writing the adjust history of the Republican Party as the celebrate of civil rights. Professor Alexander began his communicate with his 2004 review/essay Today he continues the project with his Weekly Standard bind Posted by Scott at 7:41 AM "Arise and take our stand for freedom as in the olden measure."--Winston Churchill"entitle Liberty throughout All the land unto All the Inhabitants Thereof."--Inscription on the Liberty Bell move an option above to increase/change magnitude cater lie's font size. Powered by place create by mental act by

Forex Groups - Tips on Trading

Related article:
http://www.powerlineblog.com/archives/2007/09/018465.php

comments | Add comment | Report as Spam


"root: ascandroli: Merged trunk changes r644:767 into the ..." posted by ~Ray
Posted on 2007-10-06 09:18:23

created by ascandroli on 15 September 2007. 05:31:08 -0500(21 days ago)() Merged trunk changes r644:767 into the ascandroli-20070612-TRAILS63 (multiple windows) grow. (1.3.4 build-233) change state obtain License registered to the Codehaus Project. This license of FishEye is provided to support the development of Codehaus only. summon generated 2007-10-06 09:17 -0500

Forex Groups - Tips on Trading

Related article:
http://fisheye.codehaus.org/changelog/trails?cs=768&csize=986

comments | Add comment | Report as Spam


 

 




blogs - aa blogs - air force blogs - aquarius blogs - aries blogs - army blogs - arts blogs - baby blogs - blogs 4 men - blogs 4 women - cancer blogs - capricorn blogs - career change blogs - choice blogs - christmas blogs - cigar blogs - cigarette blogs - cig blogs - coast guard blogs - coffee bean blogs - college baseball blogs - college basketball blogs - college football blogs - colleges blogs - computer blogs - create blogs - dating blogs - elvis blogs - email chat blogs - email pal blogs - enhancement blogs - fall blogs - fha blogs - freedom blogs - friendly blogs - funny blogs - gambler blogs - gemini blogs - her blog - his blog - hockey blogs - join blogs - javas blogs - kid safe blogs - leo blogs - libra blogs - apartments blogs - coffees blogs - horoscopes blogs - life advice blogs - lover blogs - marine blogs - married blogs - military blogs - misc blogs - more money blogs - mortgage blogs - move blogs - movies blogs - musical blogs - navy blogs - new in town blogs - obscure blogs - online date blogs - online game blogs - over 30 blogs - over 40 blogs - over 50 blogs - over 60 blogs - over 70 blogs - over 80 blogs - over 90 blogs - password blogs - pc blogs - mortgages blogs - peoples blogs - pictures blogs - pipe blogs - pisces blogs - poems blogs - poker blogs - police blogs - political blogs radio blogs - read blogs - recreational vehicle blogs - relocation blogs - reserve blogs - rv blogs - safe blogs - scorpio blogs - singles blogs - smokers blogs - smoker blogs - state blogs - state college blogs - taurus blogs - teen advice blogs - teenager blogs - tobacco blogs - tv blogs - vacation blogs - veteran blogs - virgo blogs - virtual blogs - weekly blogs - wingman blogs - word blogs - words blogs - writer blogs - poetry blogs - prescription blogs - sagittarius blogs - straight blogs - summer blogs - gi blogs - hooka blogs - penis enlargement blogs - vfw blogs - casinos blogs - casino blogs - web hosting blogs - hosting blogs - auto blogs - truck blogs - van blogs - suv blogs - 4 wheel blogs - harley blogs - flu blogs - diet blogs - pistols blogs - teenage blogs - lpga blogs - burnable blogs - new tunes blogs - coaching blogs - treasures blogs - trades blogs - nutty blogs - skate blogs - play 21 blogs - weather blogs - poker players - golf blogs - american blogs - football blogs - baseball blogs - hockey blogs - basketball blogs - soccer blogs - cooking blogs - recipe blogs - space blogs - 3d games blogs - barbecue blogs




the trunk archives:

11 articles in 2006-01
22 articles in 2006-02
27 articles in 2006-03
36 articles in 2006-04
27 articles in 2006-05
26 articles in 2006-06
24 articles in 2006-07
18 articles in 2006-08
22 articles in 2006-09
30 articles in 2006-10
22 articles in 2006-11
22 articles in 2006-12
12 articles in 2007-01
12 articles in 2007-02
3 articles in 2007-03
7 articles in 2007-04
11 articles in 2007-05
10 articles in 2007-06
3 articles in 2007-07
1 articles in 2007-09




next page


trunk