open(); $lists = array('user' => array('t' => 'Users', 'd' => 'If you use Thrift, please subscribe to the Thrift user mailing list. This list is for questions about Thrift and announcements from the team relevant to all users.'), 'dev' => array('t' => 'Developers', 'd' => 'If you would like to contribute to Thrift, subscribe to the Thrift developer mailing list.'), 'commits' => array('t' => 'Commits', 'd' => 'This list receives notifications about all code changes made to Thrift.') ); echo $page->welcome(array( 'In accordance with the principles of the Apache Software Foundation, Thrift encourages a collaborative and community-based development environment.', 'All project discussion is carried out publicly, on the following archived lists.')); foreach ($lists as $k => $list) { echo '
'. '

'.txt2html($list['t']).'

'. '

'.$list['d'].'

'. '
'. alink('Subscribe', 'mailto:thrift-'.$k.'-subscribe@incubator.apache.org'). ' | '. alink('Unsubscribe', 'mailto:thrift-'.$k.'-unsubscribe@incubator.apache.org'). ' | '. alink('View Archives', 'http://mail-archives.apache.org/mod_mbox/incubator-thrift-'.$k.'/'). '
'. // actions '
'; // list } echo '

Note: subscription is required to post to all lists.

'; echo $page->close();