>$property = trim($line);
}
}
}
}
}
return $obj;
}
}
}
?> include($_smarty_compile_path);
}
// pop the local vars off the front of the stack
array_shift($this->_config);
$this->_inclusion_depth--;
if ($this->debugging) {
// capture time for debugging info
$_params = array();
require_once(SMARTY_CORE_DIR . 'core.get_microtime.php');
$this->_smarty_debug_info[$included_tpls_idx]['exec_time'] = smarty_core_get_microtime($_params, $this) - $debug_start_time;
}
if ($this->caching) {
$this->_cache_info['template'][$params['smarty_include_tpl_file']] = true;
}
}
/**
* get or set an array of cached attributes for function that is
* not cacheable
* @return array
*/
function &_smarty_cache_attrs($cache_serial, $count) {
$_cache_attrs =& $this->_cache_info['cache_attrs'][$cache_serial][$count];
if ($this->_cache_including) {
/* return next set of cache_attrs */
$_return = current($_cache_attrs);
next($_cache_attrs);
return $_return;
} else {
/* add a reference to a new set of cache_attrs */
$_cache_attrs[] = array();
return $_cache_attrs[count($_cache_attrs)-1];
}
}
/**
* wrapper for include() retaining $this
* @return mixed
*/
function _include($filename, $once=false, $params=null)
{
if ($once) {
return include_once($filename);
} else {
return include($filename);
}
}
/**
* wrapper for eval() retaining $this
* @return mixed
*/
function _eval($code, $params=null)
{
return eval($code);
}
/**#@-*/
}
/* vim: set expandtab: */
?>
($this->_nocache_count++)
. '}\'; endif;';
}
/**
* push opening tag-name, file-name and line-number on the tag-stack
* @param string the opening tag's name
*/
function _push_tag($open_tag)
{
array_push($this->_tag_stack, array($open_tag, $this->_current_line_no));
}
/**
* pop closing tag-name
* raise an error if this stack-top doesn't match with the closing tag
* @param string the closing tag's name
* @return string the opening tag's name
*/
function _pop_tag($close_tag)
{
$message = '';
if (count($this->_tag_stack)>0) {
list($_open_tag, $_line_no) = array_pop($this->_tag_stack);
if ($close_tag == $_open_tag) {
return $_open_tag;
}
if ($close_tag == 'if' && ($_open_tag == 'else' || $_open_tag == 'elseif' )) {
return $this->_pop_tag($close_tag);
}
if ($close_tag == 'section' && $_open_tag == 'sectionelse') {
$this->_pop_tag($close_tag);
return $_open_tag;
}
if ($close_tag == 'foreach' && $_open_tag == 'foreachelse') {
$this->_pop_tag($close_tag);
return $_open_tag;
}
if ($_open_tag == 'else' || $_open_tag == 'elseif') {
$_open_tag = 'if';
} elseif ($_open_tag == 'sectionelse') {
$_open_tag = 'section';
} elseif ($_open_tag == 'foreachelse') {
$_open_tag = 'foreach';
}
$message = " expected {/$_open_tag} (opened line $_line_no).";
}
$this->_syntax_error("mismatched tag {/$close_tag}.$message",
E_USER_ERROR, __FILE__, __LINE__);
}
}
/**
* compare to values by their string length
*
* @access private
* @param string $a
* @param string $b
* @return 0|-1|1
*/
function _smarty_sort_length($a, $b)
{
if($a == $b)
return 0;
if(strlen($a) == strlen($b))
return ($a > $b) ? -1 : 1;
return (strlen($a) > strlen($b)) ? -1 : 1;
}
/* vim: set et: */
?>
Items Tagged With the Farm
Episode 31: Life on the Farm - Part 1Written By: Administrator
Section:
Category: 2007-05-02 14:39:00


In this 31st episode of the C-Realm Podcast, KMO visits the Farm in
Summertown, Tennesse and talks to Hippy Lawyer, Alan Graf and Farm
founder, Stephen Gaskin.
Albert Bates founded the Ecovillage Training Center on the Farm, and as Alan Graf says in our three-way interview, can also
be described as a recovering lawyer. Albert appeared on episodes 29 and 30 of the C-Realm Podcast.
Alan Graf (A.K.A. "Hippie Lawyer")
is a civil rights attorney and a podcast. He podcasts his Third Planet
Report from the Farm twice a week. Albert Bates and I appear in a recent episode of his podcast talking about the corporate media and independent media, like podcasts.
Stephen Gaskin lead the spiritual movement which resulted in the exodus of 300 some
hippie seekers from San Francisco in 1970 to, eventually, Summer Town,
Tennesse, where they established the Farm. You can find his bio here.
The first chapter of Stephen's classic book, Monday Night Class.
Episode 32: Life on the Farm - Part 2Written By: Administrator
Section:
Category: 2007-05-09 11:43:00


In this episode we conclude the conversation with Stephen Gaskin. We also hear from Cliff Davis, the head gardener and site coordinator for the Ecovillage Training Center on the Farm, about the basic principles of permaculture. Alan Shoemaker makes a return visit to explain exactly how to get to Iquitos for the Amazonian Shamanism conference.
Here's the
link to the article that Patrick/Cakestr sent me.
Also, the Wikipedia entry for Permaculture is worth checking out.
There are 2 items tagged with the Farm. You can view all our tags in the Tag Cloud
<< Start < Previous 1 Next > End >>
Page 1 Of 1