<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://159.203.101.162/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Karianna</id>
	<title>PCGen Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://159.203.101.162/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Karianna"/>
	<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php/Special:Contributions/Karianna"/>
	<updated>2026-05-13T23:54:24Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Autobuilds_for_Libraries&amp;diff=4306</id>
		<title>Autobuilds for Libraries</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Autobuilds_for_Libraries&amp;diff=4306"/>
		<updated>2018-07-23T11:22:38Z</updated>

		<summary type="html">&lt;p&gt;Karianna: Created page with &amp;quot;For posterity:  Assumes Red Hat or some equivalent Linux.  Once the system is started, run the following commands:  &amp;lt;code&amp;gt; sudo yum update -y sudo yum install git -y sudo yum...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For posterity:&lt;br /&gt;
&lt;br /&gt;
Assumes Red Hat or some equivalent Linux.&lt;br /&gt;
&lt;br /&gt;
Once the system is started, run the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo yum update -y&lt;br /&gt;
sudo yum install git -y&lt;br /&gt;
sudo yum install java-1.8.0-openjdk-devel -y&lt;br /&gt;
sudo yum remove java-1.7.0-openjdk -y&lt;br /&gt;
sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo&lt;br /&gt;
sudo rpm --import https://pkg.jenkins.io/redhat/jenkins.io.key&lt;br /&gt;
sudo yum install jenkins -y&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Before proceeding, in /etc/sysconfig/jenkins,&lt;br /&gt;
&lt;br /&gt;
1. change listen port to 8081&lt;br /&gt;
2. change listen address to 127.0.0.1&lt;br /&gt;
3. change JENKINS_ARGS=&amp;quot;--prefix=/jenkins&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Then run the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo service jenkins start&lt;br /&gt;
sudo yum install -y httpd24 php56 php56-mysqlnd&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then in /etc/httpd/conf/httpd.conf:&lt;br /&gt;
&lt;br /&gt;
change listen to port 8080&lt;br /&gt;
&lt;br /&gt;
Add at bottom:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ProxyPass         /jenkins  http://localhost:8081/jenkins nocanon&lt;br /&gt;
ProxyPassReverse  /jenkins  http://localhost:8081/jenkins&lt;br /&gt;
ProxyRequests     Off&lt;br /&gt;
AllowEncodedSlashes NoDecode&lt;br /&gt;
&lt;br /&gt;
# Local reverse proxy authorization override&lt;br /&gt;
# Most unix distribution deny proxy by default (ie /etc/apache2/mods-enabled/proxy.conf in Ubuntu)&lt;br /&gt;
&amp;lt;Proxy http://localhost:8081/jenkins*&amp;gt;&lt;br /&gt;
  Order deny,allow&lt;br /&gt;
  Allow from all&lt;br /&gt;
&amp;lt;/Proxy&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then run the following commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo service httpd start&lt;br /&gt;
sudo bash&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Inside the bash shell, run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir pcgen1&lt;br /&gt;
cd pcgen1&lt;br /&gt;
mkdir public_html&lt;br /&gt;
chmod 777 public_html&lt;br /&gt;
cd /var/www/html&lt;br /&gt;
ln -s /home/pcgen1/public_html/librepo&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Browse to IP:8080/jenkins&lt;br /&gt;
Give the necessary password (then exit the super user bash session) to Jenkins&lt;br /&gt;
Select the default plugins&lt;br /&gt;
Create the initial user&lt;br /&gt;
&lt;br /&gt;
Once logged into the Jenkins console, go to &amp;quot;Manage Jenkins&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure System&lt;br /&gt;
Change Jenkins URL to include /jenkins on the end of the URL&lt;br /&gt;
Add JIRA site&lt;br /&gt;
click Save&lt;br /&gt;
&lt;br /&gt;
Manage Jenkins&lt;br /&gt;
Click &amp;quot;Manage Plugins&amp;quot;&lt;br /&gt;
Select &amp;quot;Install&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Add the following plugins:&lt;br /&gt;
&lt;br /&gt;
Next Build Number&lt;br /&gt;
PMD&lt;br /&gt;
Checkstyle&lt;br /&gt;
Jacoco&lt;br /&gt;
Findbugs&lt;br /&gt;
jDepend&lt;br /&gt;
Static Analysis Collector&lt;br /&gt;
Static Analysis Utilities&lt;br /&gt;
Violations&lt;br /&gt;
JIRA&lt;br /&gt;
disk-usage&lt;br /&gt;
&lt;br /&gt;
click &amp;quot;install&amp;quot;&lt;br /&gt;
Then in the screen that appears, check the box to restart Jenkins after those items are installed (and jobs are idle)&lt;br /&gt;
(Jenkins will restart)&lt;br /&gt;
&lt;br /&gt;
Log back into Jenkins&lt;br /&gt;
&lt;br /&gt;
Manage Jenkins&lt;br /&gt;
Global Tool Configuration&lt;br /&gt;
Set up Java (latest 8.x)&lt;br /&gt;
Set up Gradle (4.0.1)&lt;br /&gt;
Click Save&lt;br /&gt;
&lt;br /&gt;
Go to Home Page&lt;br /&gt;
Create New Job&lt;br /&gt;
  Name is PCGen Base Library&lt;br /&gt;
  Select Freestyle Project&lt;br /&gt;
Click OK&lt;br /&gt;
&lt;br /&gt;
In the screen that appears:&lt;br /&gt;
select &amp;quot;Discard old builds&amp;quot;, then set keep to 25.&lt;br /&gt;
Check GitHub project and enter the URL (https://github.com/pcgen/PCGen-base)&lt;br /&gt;
&lt;br /&gt;
In Build Triggers:&lt;br /&gt;
Check Github hook trigger for GITScm Polling&lt;br /&gt;
Check Poll SCM, set item to &amp;quot;H *3 * * *&amp;quot;&lt;br /&gt;
&lt;br /&gt;
In Build Environment&lt;br /&gt;
Check Delete workspace before build starts&lt;br /&gt;
&lt;br /&gt;
In Source Code Management&lt;br /&gt;
Select Git, add .git file/insert repo&lt;br /&gt;
&lt;br /&gt;
In Build, do &amp;quot;Add Build Step&amp;quot;&lt;br /&gt;
Select Gradle&lt;br /&gt;
  Set Gradle to 4.0.1 (or latest)&lt;br /&gt;
  Click &amp;quot;Advanced&amp;quot;&lt;br /&gt;
    Add Tasks&lt;br /&gt;
    Provide root build script location: ${workspace}/PCGen-base&lt;br /&gt;
  Check Force Gradle User Home to workspace&lt;br /&gt;
&lt;br /&gt;
In Post Build, select &amp;quot;Publish JUnit&amp;quot;&lt;br /&gt;
  Add XML files: PCGen-base/build/test-results/test/*.xml&lt;br /&gt;
&lt;br /&gt;
In Post Build, select &amp;quot;Record Jacoco&amp;quot;&lt;br /&gt;
  Include **/*.class&lt;br /&gt;
  Exclude **/*Test*.class&lt;br /&gt;
    (may need to exclude more in the future...)&lt;br /&gt;
&lt;br /&gt;
In Post Build, select &amp;quot;Report Violations&amp;quot;&lt;br /&gt;
&lt;br /&gt;
In Post Build, Select Email Notification&lt;br /&gt;
  Send for Unstable&lt;br /&gt;
  Sent separate to people who broke the build&lt;br /&gt;
&lt;br /&gt;
click Save&lt;br /&gt;
&lt;br /&gt;
Go back to main console&lt;br /&gt;
Select the project&lt;br /&gt;
Set the next build number&lt;br /&gt;
click submit&lt;br /&gt;
Click Build Now.&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Code&amp;diff=4305</id>
		<title>Code</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Code&amp;diff=4305"/>
		<updated>2018-07-23T11:19:50Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Developer Environment */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the Wiki section for the Code Monkey team!&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
'''TBA'''&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Developers Meeting]]&lt;br /&gt;
* [[Dev Meeting Log 20090429]]&lt;br /&gt;
* [[Dev Meeting Log 20090815]]&lt;br /&gt;
* [[Dev Meeting Log 20090911]]&lt;br /&gt;
* [[Dev Meeting Log 20091017]]&lt;br /&gt;
* [[Dev Meeting Log 20091114]]&lt;br /&gt;
* [[Dev Meeting Log 20120309]]&lt;br /&gt;
* [[Dev Meeting Log 20120429]]&lt;br /&gt;
* [[Dev Meeting Log 20121103]]&lt;br /&gt;
* [[Dev Meeting Log 20140627]]&lt;br /&gt;
&lt;br /&gt;
==For New Starters==&lt;br /&gt;
* [[Joining the Code Team]] General steps to take to prepare yourself&lt;br /&gt;
* [[Code Monkey Introduction]]&lt;br /&gt;
&lt;br /&gt;
==Developer Environment==&lt;br /&gt;
* [[Basic Developer Setup]]&lt;br /&gt;
* [[Git Setup]]&lt;br /&gt;
* [[Subversion Setup]]&lt;br /&gt;
* [[Merging]] with SVN&lt;br /&gt;
* [[Building PCGen]], also see [[Gradle]]&lt;br /&gt;
* [[Continuous Integration]]&lt;br /&gt;
* [[Autobuilds for Libraries]]&lt;br /&gt;
* [[launch4j]]&lt;br /&gt;
&lt;br /&gt;
==Coding==&lt;br /&gt;
* [[Coding Standards]]&lt;br /&gt;
* [[Deprecating a Token]]&lt;br /&gt;
* [[Explanation of the Code Base]]&lt;br /&gt;
* [[PCGen Code Exploration Almanac]]&lt;br /&gt;
* [[Graph Theory]]&lt;br /&gt;
* [[Logging in the Code Base]]&lt;br /&gt;
* [[Unit Testing]]&lt;br /&gt;
* [[Removing Libraries]]&lt;br /&gt;
* [[Unnecessary Code Detector]]&lt;br /&gt;
&lt;br /&gt;
=Completed Sub Projects=&lt;br /&gt;
* [[Ability Object TODO List]]&lt;br /&gt;
* [[LST_Editor_Verification]]&lt;br /&gt;
&lt;br /&gt;
=Open Sub Projects=&lt;br /&gt;
* [[UI HTML Extraction]]&lt;br /&gt;
* [[Internationalization]]&lt;br /&gt;
* [[CDOM]]&lt;br /&gt;
* [[UI Overhaul]]&lt;br /&gt;
* [[LST_Editor]]&lt;br /&gt;
* [[Major Code Projects]]&lt;br /&gt;
* [[Template Engine]]&lt;br /&gt;
* [[Enhanced Networking Features]]&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* Connor Petty&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* TBA&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Tom Parker]]&lt;br /&gt;
* [[Stefan Radermacher]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
* Jayme Cox&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[Andrew Wilson]]&lt;br /&gt;
* [[Martijn Verburg]]&lt;br /&gt;
* [[Connor Petty]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
* [[Eddy Anthony]]&lt;br /&gt;
* Per Christian Henden&lt;br /&gt;
* Thomas Cooper &lt;br /&gt;
* [[Tod Milam]] - Mac Developer&lt;br /&gt;
* [[Kim Winz]]&lt;br /&gt;
&lt;br /&gt;
===[[X-Terminator Mark II]]===&lt;br /&gt;
* [[Greg Bingleman]] - [http://www.codemonkeypublishing.com Code Monkey Publishing]&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
* Brad Stiles, SVN advice&lt;br /&gt;
* Jason Buchanan, Advice on old code&lt;br /&gt;
* [[Jonas Karlson]], Advice on old code&lt;br /&gt;
&lt;br /&gt;
=Passive Team Members=&lt;br /&gt;
&lt;br /&gt;
* B. K. Oxley (Provides IntelliJ licenses)&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation_of_Teams#2nd|2nd]]===&lt;br /&gt;
* Devon Jones&lt;br /&gt;
&lt;br /&gt;
===[[Explanation_of_Teams#Chimp|Chimp]]===&lt;br /&gt;
* Aaron Divinsky&lt;br /&gt;
&lt;br /&gt;
===[[Explanation_of_Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* Andriy Sen&lt;br /&gt;
* [[Kevin Fernandes]]&lt;br /&gt;
* [[Koen Van Daele]]&lt;br /&gt;
* [[Joe Frazier, Jr.]]&lt;br /&gt;
* Per Christian Henden&lt;br /&gt;
&lt;br /&gt;
===[[Explanation_of_Teams#Lemur|Lemur]]===&lt;br /&gt;
* Bill Neumann&lt;br /&gt;
* Dan Parks&lt;br /&gt;
* [[Eduard Martinescu]]&lt;br /&gt;
* Eric Jarman&lt;br /&gt;
* Jasper Spaans&lt;br /&gt;
* Julio Esslinger Viegas&lt;br /&gt;
* Peter Barker&lt;br /&gt;
* [[Rick Ryker]]&lt;br /&gt;
* Thomas Clegg&lt;br /&gt;
* Tony Lavalle&lt;br /&gt;
* Hades Lucifer [7/20/10]&lt;br /&gt;
* Josh Johnston [7/20/10]&lt;br /&gt;
* MotorViper    [7/20/10]&lt;br /&gt;
* [[Steven West]] [7/20/10]&lt;br /&gt;
* [[Alec Ross]] [7/20/10]&lt;br /&gt;
* [[Tir Gwaith]] [7/20/10]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
* [[Andargor]], Suggestions&lt;br /&gt;
* [[Bryan McRoberts]], Advice on old code&lt;br /&gt;
* Kurt Wimmer, Suggestions&lt;br /&gt;
* Walter Duncan, Held the old pcgen_autobuild user&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Basic_Developer_Setup&amp;diff=4161</id>
		<title>Basic Developer Setup</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Basic_Developer_Setup&amp;diff=4161"/>
		<updated>2018-01-21T08:42:32Z</updated>

		<summary type="html">&lt;p&gt;Karianna: Mention IntelliJ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Initial Setup=&lt;br /&gt;
&lt;br /&gt;
Download eclipse or IntelliJ.  This guide will assume you are using Eclipse Oxygen (2) (released Sep 2017) or newer.&lt;br /&gt;
* http://www.eclipse.org/home/index.php&lt;br /&gt;
&lt;br /&gt;
Download Java 9.  You MUST download a Java Development Kit (JDK) not a Java Runtime Environment (JRE).  a JDK is required to be able to compile Java.&lt;br /&gt;
* http://www.oracle.com/technetwork/java/javase/documentation/jdk9-doc-downloads-3850606.html&lt;br /&gt;
&lt;br /&gt;
Go to github and set up an account if you don't have one already&lt;br /&gt;
* https://github.com/&lt;br /&gt;
&lt;br /&gt;
Go to HipChat and set up an account and join the PCGen channel: &lt;br /&gt;
* https://www.hipchat.com/gz9QBLp23&lt;br /&gt;
** This is the first place to go for help if you are having trouble getting set up.  You or someone can &amp;quot;page&amp;quot; @Tom Parker and I'll drop by when I can.&lt;br /&gt;
&lt;br /&gt;
=Repository Setup=&lt;br /&gt;
We use git as a Version Control System.  To use the git workflow, you will need to fork the primary PCGen code.&lt;br /&gt;
* While logged into github.com, go to: https://github.com/PCGen/pcgen&lt;br /&gt;
* On the right hand side, click &amp;quot;Fork&amp;quot;.  This will create a copy under your userid.&lt;br /&gt;
&lt;br /&gt;
Getting Eclipse Set up (The Basics)&lt;br /&gt;
* Start up eclipse.  If it's the first time you've used Eclipse, click on the &amp;quot;Go to Workbench&amp;quot; picture (an arrow of some form).&lt;br /&gt;
&lt;br /&gt;
* Under the Window menu, go to preferences.  &lt;br /&gt;
* Open the twistie for &amp;quot;Java&amp;quot;, select &amp;quot;Installed JREs&amp;quot;.  Ensure that the Java 9 JDK is selected.  If it is not selected, select it.  If it is not there, click the &amp;quot;Add&amp;quot; button and find it.  On Windows, this will likely be in c:\Program Files\Java&lt;br /&gt;
* Open the twistie for &amp;quot;Team&amp;quot;, then select &amp;quot;Git&amp;quot;.  Ensure it has a &amp;quot;Default Repository Folder&amp;quot; you are okay with.  (You will need to know this later)&lt;br /&gt;
* Click &amp;quot;Apply and Close&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Opening the PCGen git repository:&lt;br /&gt;
* Under the Window menu, select &amp;quot;Show View&amp;quot; and in the submenu, select &amp;quot;Other&amp;quot;.  Open the twistie for &amp;quot;Git&amp;quot; and then select &amp;quot;Git Repositories&amp;quot; and click &amp;quot;Open&amp;quot;&lt;br /&gt;
* That view will likely appear in the lower left.  Click the icon that is &amp;quot;Clone a Git Repository and add the clone to this view&amp;quot;.&lt;br /&gt;
* For the URI enter: https://github.com/&amp;lt;userid&amp;gt;/pcgen  (replace &amp;lt;userid&amp;gt; with your github userid)&lt;br /&gt;
* Ensure the host lists as &amp;quot;github.com&amp;quot;&lt;br /&gt;
* Ensure the Repository Path is /&amp;lt;userid&amp;gt;/pcgen&lt;br /&gt;
* Set the protocol to https&lt;br /&gt;
* Enter your github userid and password as well&lt;br /&gt;
* Click &amp;quot;Next&amp;gt;&amp;quot;&lt;br /&gt;
* For branches, deselect all and then just select &amp;quot;master&amp;quot;&lt;br /&gt;
* Click &amp;quot;Next&amp;gt;&amp;quot;&lt;br /&gt;
* Leave the remote name as &amp;quot;origin&amp;quot; and ensure you DO NOT click on &amp;quot;Import all existing eclipse projects&amp;quot;&lt;br /&gt;
* Click &amp;quot;Finish&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This will add a respository to the list called &amp;quot;pcgen&amp;quot;.&lt;br /&gt;
* Open the twistie and then right click on &amp;quot;remotes&amp;quot;.  Select &amp;quot;Create Remote&amp;quot;&lt;br /&gt;
* For the name, enter &amp;quot;upstream&amp;quot;.&lt;br /&gt;
* Click &amp;quot;Configure fetch&amp;quot;&lt;br /&gt;
* Click &amp;quot;OK&amp;quot;&lt;br /&gt;
* Click &amp;quot;Change&amp;quot; to set the URI; for the URI enter: https://github.com/PCGen/pcgen&lt;br /&gt;
* Ensure the host lists as &amp;quot;github.com&amp;quot;&lt;br /&gt;
* Set the protocol to https&lt;br /&gt;
* Ensure the Repository Path is /PCGen/pcgen&lt;br /&gt;
* Enter your github userid and password as well&lt;br /&gt;
* Click &amp;quot;Finish&amp;quot;&lt;br /&gt;
* Ensure the Ref mappings are:&lt;br /&gt;
* +refs/heads/*:refs/remotes/origin/*&lt;br /&gt;
** If this is not present, click &amp;quot;add&amp;quot;.  If it's not correct, click it then click &amp;quot;modify&amp;quot;.&lt;br /&gt;
** The part before the : goes in &amp;quot;Remote Branch or Tag&amp;quot;&lt;br /&gt;
** The part after the : goes in &amp;quot;Tracking branch:&amp;quot;&lt;br /&gt;
** If necessary, click &amp;quot;OK&amp;quot;&lt;br /&gt;
* Click &amp;quot;Save&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Import the Project&lt;br /&gt;
* From the &amp;quot;File&amp;quot; menu, select &amp;quot;Import...&amp;quot;&lt;br /&gt;
* Open the twistie for &amp;quot;Gradle&amp;quot; and then select &amp;quot;Existing Gradle Project&amp;quot;&lt;br /&gt;
* Click &amp;quot;Next&amp;gt;&amp;quot; (and again if your system shows the welcome screen)&lt;br /&gt;
* For the project root directory, click &amp;quot;Browse&amp;quot; and find the directory in which the git repository is located, and select the pcgen folder.&lt;br /&gt;
* Click &amp;quot;Next&amp;gt;&amp;quot;&lt;br /&gt;
* Don't override anything on the Import Options&lt;br /&gt;
* Click &amp;quot;Next&amp;gt;&amp;quot;&lt;br /&gt;
* At Import Preview, click &amp;quot;Finish&amp;quot;.  This will import the project, and you should now see it in the &amp;quot;Package Explorer&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Set up the Project&lt;br /&gt;
* Right click on the &amp;quot;pcgen&amp;quot; package and at the bottom select &amp;quot;Preferences&amp;quot;.&lt;br /&gt;
* Open the &amp;quot;Java Code Style&amp;quot; twistie and select &amp;quot;Formatter&amp;quot;&lt;br /&gt;
* On the right select &amp;quot;Enable Project Specific settings&amp;quot;&lt;br /&gt;
* For the active profile, click &amp;quot;Import&amp;quot;&lt;br /&gt;
* Browse into the git repository, then pcgen/code/standards/ and select &amp;quot;eclipse32_pcgen.xml&amp;quot;&lt;br /&gt;
* When that is the active profile, click the &amp;quot;Apply and Close&amp;quot; button at the bottom.&lt;br /&gt;
&lt;br /&gt;
TODO: *We need to get the organize imports set up here, but Eitan knows the formal list we adopted)&lt;br /&gt;
&lt;br /&gt;
We do NOT push pull requests from our local master, that is a bad practice.  We always operate from branches in our local repositories.&lt;br /&gt;
&lt;br /&gt;
Create Branch&lt;br /&gt;
* Down in &amp;quot;Git Repositories&amp;quot;, open the twistie &amp;quot;pcgen&amp;quot; then &amp;quot;branches&amp;quot;, then click on &amp;quot;master&amp;quot;&lt;br /&gt;
* Right click and select &amp;quot;create branch&amp;quot;&lt;br /&gt;
* Name the branch&lt;br /&gt;
* Click the check box for configure push and pull &lt;br /&gt;
* click &amp;quot;OK&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This will then check out the branch and the large black check mark will be on the branch.&lt;br /&gt;
&lt;br /&gt;
In these next steps, you may have to enter a password and may have an option to cache the password.  Since mine is cached, I can't specify how often this happens, but provide it as necessary.&lt;br /&gt;
&lt;br /&gt;
Commit code&lt;br /&gt;
* Make a sample change to a file (you can just open any file in the sources and change a comment)&lt;br /&gt;
* Right click on the repository up in the package explorer, and select &amp;quot;Commit&amp;quot;&lt;br /&gt;
* This will open the &amp;quot;Git Staging&amp;quot; Window. &lt;br /&gt;
* Ensure the items you want are in the lower left.  If they are in the upper left, you can click on them and select &amp;quot;add to index&amp;quot;. If you have files you don't expect, please investigate what they are!  &lt;br /&gt;
* On the right side, add a commit message.  Please make this useful as to what was done.  It can be short/terse.  If a JIRA tracker is involved, please include the tracker name as the START of the FIRST line.&lt;br /&gt;
* Click &amp;quot;Commit&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Run the build&lt;br /&gt;
* In general you should be testing before you push or submit a Pull Request - Please DO NOT rely solely on the automated tools to catch errors.  We have unit tests for a reason :)&lt;br /&gt;
* In the package explorer, find a file called &amp;quot;build.gradle&amp;quot;&lt;br /&gt;
* Right click on that and select &amp;quot;Run As&amp;quot; and then &amp;quot;run configurations&amp;quot;&lt;br /&gt;
* In the window that appears, create a new run configuration (click the new icon).  For the gradle tasks, include &amp;quot;clean build slowtest&amp;quot;.  These need to be on one line, with spaces separating them and NO R ETURN CARRIAGE at the end.  Eclipse Oxygen is very sensitive about this, unfortunately.&lt;br /&gt;
* You should not need to set anything else, just click &amp;quot;Run&amp;quot;&lt;br /&gt;
* The tests should run and complete successfully.&lt;br /&gt;
&lt;br /&gt;
Push code&lt;br /&gt;
* Right click on the pcgen repository in the Package Explorer and select &amp;quot;Team&amp;quot; and then &amp;quot;Push to Upstream&amp;quot;&lt;br /&gt;
* This pushes up to your repository on github.  &lt;br /&gt;
&lt;br /&gt;
Create a Pull Request&lt;br /&gt;
* Go to github.com and ensure you are logged in.&lt;br /&gt;
* Go to https://github.com/PCGen/pcgen&lt;br /&gt;
* You are likely to have a yellowish banner near the top that is &amp;quot;review and create pull request&amp;quot; (or some similar text)&lt;br /&gt;
* Click on that.&lt;br /&gt;
* Review the name of the issue to ensure any JIRA issue is at the START of the title.&lt;br /&gt;
** For your first PR, if you proceed through these steps, PLEASE INCLUDE &amp;quot;SAMPLE: DO NOT MERGE&amp;quot; if it is not intended as a real change.&lt;br /&gt;
* Add any additional comments that can explain the purpose of the pull request are helpful.  A code review will be performed.&lt;br /&gt;
* Click &amp;quot;create pull request&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Travis&lt;br /&gt;
* When a pull request is submitted, a few automatic jobs are kicked off.  This includes Travis (which performs a build) as well as other validation of code quality.  &lt;br /&gt;
* While these are running, a yellow dot appears next to the PR on the pull requests page: https://github.com/PCGen/pcgen/pulls&lt;br /&gt;
* If all are successful, that changes to a green check mark.  If any fail, a red X appears.  If the red X appears, please modify the code to fix the issue and do another push.&lt;br /&gt;
&lt;br /&gt;
Review and Merge&lt;br /&gt;
* All PRs are reviewed by more experienced code folks on the project.  &lt;br /&gt;
* We are checking for basic items as well as how well it will interact with existing systems. &lt;br /&gt;
** Any PR with more than 10 commits will be rejected unless there is a good explanation for the complexity.  It's best if it has one, but a second one to fix review issues is fine.&lt;br /&gt;
** Please squash as necessary to keep the commit count to a minimum.&lt;br /&gt;
** Please try to keep it one issue to a commit.  Smaller commits are better since we are reviewing what they do.&lt;br /&gt;
** Please do not submit any formatting PRs without first consulting with the team.  In many cases, we have multiple side projects going on, and having to merge and rebase those around minor changes can be time consuming.  We CAN find time to do that level of cleanup - it's good to do - but it needs to be properly scheduled so as to not waste time.&lt;br /&gt;
* If the PR is accepted, it will be merged; if not, you will get comments on what to address in the PR.&lt;br /&gt;
** In general, we try to &amp;quot;merge and rebase&amp;quot; since it keeps the commit history cleaner.  You may occasionally be asked to rebase your code to bring it up to a newer level.&lt;br /&gt;
&lt;br /&gt;
Updating&lt;br /&gt;
* Once any merge has been made, you will want to grab the updated code.&lt;br /&gt;
* Make sure you do NOT have any local changes - you should NOT have a black asterisk or a &amp;quot;&amp;gt;&amp;quot; sign next to the pcgen folder in the Package Explorer before proceeding.&lt;br /&gt;
* Check out your &amp;quot;master&amp;quot; branch by double clicking on it in the &amp;quot;Git Repositories&amp;quot; or right clicking on it and selecting &amp;quot;Checkout&amp;quot;&lt;br /&gt;
* right click on it and select &amp;quot;Configure Branch...&amp;quot;&lt;br /&gt;
* In the window that appears, set the remote to &amp;quot;upstream&amp;quot;&lt;br /&gt;
* Click &amp;quot;ok&amp;quot;&lt;br /&gt;
* In the package explorer right click on the &amp;quot;pcgen&amp;quot; project, select &amp;quot;Team&amp;quot; and &amp;quot;Pull&amp;quot;.&lt;br /&gt;
* Right click on it and select &amp;quot;Configure Branch...&amp;quot;&lt;br /&gt;
* In the window that appears, set the remote to &amp;quot;origin&amp;quot;&lt;br /&gt;
* Click &amp;quot;ok&amp;quot;&lt;br /&gt;
* In the package explorer right click on the &amp;quot;pcgen&amp;quot; project, select &amp;quot;Team&amp;quot; and &amp;quot;Push to Upstream&amp;quot;.&lt;br /&gt;
* This has now taken the changes from the team's master (upstream) to your master (origin).  At that point, you can rebranch off the new (cleaner) master and do other work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Social / Communication:&lt;br /&gt;
* We tend to hang out on HipChat for the most part.&lt;br /&gt;
* There is a developer list ( http://groups.yahoo.com/group/pcgen_developers/ ), but that's mostly for persistent things (votes or logs) at this point, most smaller questions end up on HipChat.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Participating in PCGen=&lt;br /&gt;
&lt;br /&gt;
# Play nice. Use common sense. We're all here because we enjoy it and want to participate in this project. Challenging ideas is ok (all of us will not always agree on a specific point), but don't attack people (no flames!)&lt;br /&gt;
# Make sure to run the unit tests and only create a Pull Request (PR) when they all pass. Having said that, I suspect we've all broken the code at least once, so *don't stress* about it if it happens. Just participate in fixing it or get help from someone who can (if you really have no idea what's broken).&lt;br /&gt;
# If you're changing LST Token syntax (from our data files) then you need to get permission from the Data monkeys. You will find them on the PCGen_experimental Yahoo! group and you can also read their [[LST Syntax FREQ]] Usually, items in the issue tracking system as feature requests are already vetted by the _experimental folks, but if it's pretty old or very complicated, a double check doesn't hurt.&lt;br /&gt;
# Try to change as little of the formatting in the code as possible. Others may look at your PR (to ensure it isn't interacting with other items we are working on that aren't checked in yet), and if the PR is mostly formatting change, one loses the content. If there are formatting changes to be made that are not local to code changes, they should be done in a separate PR. It is preferable to ask permission on significant formatting changes, since they make merging very difficult, and if one of us has a large project we are working on, it can become really hard to keep up and make sure we are actually doing useful work rather than formatting changes.&lt;br /&gt;
# Given the formatting comment above as more important, there are [[Coding Standards]] (for braces and the like).&lt;br /&gt;
# No major feature changes in a beta cycle - that's what the Alphas are for. Betas fix bugs for releases.&lt;br /&gt;
# You won't always know everything that is happening... so if you are thinking of major changes, talk to people.  If we have sensitive changes going on we will likely speak up, so in rare cases it's good to know where not to be!&lt;br /&gt;
&lt;br /&gt;
=Additional Eclipse Tools you may find useful=&lt;br /&gt;
&lt;br /&gt;
We run these at various time (PMD and Checkstyle are automated checks we run)&lt;br /&gt;
&lt;br /&gt;
* [http://pmd.sourceforge.net/ PMD]&lt;br /&gt;
* [http://checkstyle.sourceforge.net/ Checkstyle]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Localization&amp;diff=3134</id>
		<title>Localization</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Localization&amp;diff=3134"/>
		<updated>2012-08-25T12:17:04Z</updated>

		<summary type="html">&lt;p&gt;Karianna: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Localization (l8n) is the process of adapting software for its use in a particular location. It can only be done if the software has been [[Internationalization|internationnalized]] (i10n). It is mainly translation.&lt;br /&gt;
&lt;br /&gt;
In the case of PCGen, as with other free software, localization can only be done with the help of the community.&lt;br /&gt;
&lt;br /&gt;
PCGen both need translation for its user interface (UI) and its data. The data can not be translated for now (as of August 25th 2012), because the internationnalization for the data is not yet done. On top of it, PCGen data is mostly non-free, so providing translation has legal repercutions.&lt;br /&gt;
&lt;br /&gt;
The translation of the UI is simpler. There is a file for each language, and basically you need to translate all the messages. Beware that, as of August 25th 2012, there is many unused strings in the files.&lt;br /&gt;
&lt;br /&gt;
(eventually write more for beginners in l8n, provide links?)&lt;br /&gt;
&lt;br /&gt;
== My Process ==&lt;br /&gt;
&lt;br /&gt;
By [[User:Masaru20100|Masaru20100]] 03:44, 25 August 2012 (MIST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PCGen uses Java’s ResourceBundle, and use cryptic text as the key of strings (unlike PO that indicate to use ASCII text as keys). It means you need to see two text files at the same time to view original files. Do not edit a copy of another language file, because you’d have a file with a mix of the target language and the copied language, which make it difficult to see what is not yet translated (and also harder to merge). I don’t like the ResourceBundle format because it does not allow me to keep the information that my translations on some strings might not be good. That’s why I keep my main translation in po files and not in bundles.&lt;br /&gt;
&lt;br /&gt;
Another reason to keep separated files, is that only ASCII characters can be included in a ResourceBundle, other characters need to be unicode escaped (things like \u0145).&lt;br /&gt;
&lt;br /&gt;
Each time I update my svn copy, I create a new POT file from the default resource bundle. Then I update my latest po file of the language I’m working on, update it with the POT file and save it with a new name (using the svn version number). I then proceed to edit the po file. I save the file, update the resource bundle in the code directory then (I think its needed to see changes) build pcgen.&lt;br /&gt;
&lt;br /&gt;
To update, I just do&lt;br /&gt;
&lt;br /&gt;
 # svn up&lt;br /&gt;
&lt;br /&gt;
To create the new POT, I use prop2po which is part of the package translate-toolkit on Debian. I have a little script that I usually call with the svn number.&lt;br /&gt;
&lt;br /&gt;
 # newpot 17045&lt;br /&gt;
&lt;br /&gt;
''newpot''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/zsh&lt;br /&gt;
 &lt;br /&gt;
 # argument is name of version&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if [[ -z $1 ]];&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 then&lt;br /&gt;
         echo Argument needed&lt;br /&gt;
         exit 1&lt;br /&gt;
 else&lt;br /&gt;
         name=.$1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # Create the new POT from the Language bundle&lt;br /&gt;
 prop2po ../pcgen-svn/code/src/java/pcgen/resources/lang/LanguageBundle.properties LanguageBundle$name.pot&lt;br /&gt;
 #po2xliff -P LanguageBundle$name.pot LanguageBundle$name.xlf&lt;br /&gt;
&lt;br /&gt;
I use virtaal to open the latest po file, update it with the POT then save it with the new version number (poedit would work fine but doesn’t show the comments in the po file). I then edit the file.&lt;br /&gt;
&lt;br /&gt;
Once my change are done, or I want to view them, I use a script to update the resource bundle file. You’ll have to change the name of the language you’d work with there (fr ja en_GB in my case). It uses po2prop also part of the translate-toolkit package.&lt;br /&gt;
&lt;br /&gt;
 # updatebundle 17045&lt;br /&gt;
&lt;br /&gt;
''updatebundle''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/zsh&lt;br /&gt;
 &lt;br /&gt;
 # argument is name of version&lt;br /&gt;
 if &amp;lt;nowiki&amp;gt;[[ -z $1 ]];&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 then&lt;br /&gt;
         echo Argument needed&lt;br /&gt;
         exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # Create the new POT from the Language bundle&lt;br /&gt;
 for lang in fr ja en_GB&lt;br /&gt;
 do&lt;br /&gt;
         &amp;lt;nowiki&amp;gt;if [[ -f LanguageBundle.$1.$lang.po ]];&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
         then&lt;br /&gt;
                 po2prop --fuzzy --errorlevel=traceback -t ../pcgen-svn/code/src/java/pcgen/resources/lang/LanguageBundle.properties LanguageBundle.$1.$lang.po ../pcgen-svn/code/src/java/pcgen/resources/lang/LanguageBundle_$lang.properties&lt;br /&gt;
         fi&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
I hope those scripts help some one, you’ll probably need to change them (to fix the path for example).&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Localization&amp;diff=3133</id>
		<title>Localization</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Localization&amp;diff=3133"/>
		<updated>2012-08-25T12:16:43Z</updated>

		<summary type="html">&lt;p&gt;Karianna: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Localization (l8n) is the process of adapting software for its use in a particular location. It can only be done if the software has been [[Internationnalization|internationnalized]] (i10n). It is mainly translation.&lt;br /&gt;
&lt;br /&gt;
In the case of PCGen, as with other free software, localization can only be done with the help of the community.&lt;br /&gt;
&lt;br /&gt;
PCGen both need translation for its user interface (UI) and its data. The data can not be translated for now (as of August 25th 2012), because the internationnalization for the data is not yet done. On top of it, PCGen data is mostly non-free, so providing translation has legal repercutions.&lt;br /&gt;
&lt;br /&gt;
The translation of the UI is simpler. There is a file for each language, and basically you need to translate all the messages. Beware that, as of August 25th 2012, there is many unused strings in the files.&lt;br /&gt;
&lt;br /&gt;
(eventually write more for beginners in l8n, provide links?)&lt;br /&gt;
&lt;br /&gt;
== My Process ==&lt;br /&gt;
&lt;br /&gt;
By [[User:Masaru20100|Masaru20100]] 03:44, 25 August 2012 (MIST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PCGen uses Java’s ResourceBundle, and use cryptic text as the key of strings (unlike PO that indicate to use ASCII text as keys). It means you need to see two text files at the same time to view original files. Do not edit a copy of another language file, because you’d have a file with a mix of the target language and the copied language, which make it difficult to see what is not yet translated (and also harder to merge). I don’t like the ResourceBundle format because it does not allow me to keep the information that my translations on some strings might not be good. That’s why I keep my main translation in po files and not in bundles.&lt;br /&gt;
&lt;br /&gt;
Another reason to keep separated files, is that only ASCII characters can be included in a ResourceBundle, other characters need to be unicode escaped (things like \u0145).&lt;br /&gt;
&lt;br /&gt;
Each time I update my svn copy, I create a new POT file from the default resource bundle. Then I update my latest po file of the language I’m working on, update it with the POT file and save it with a new name (using the svn version number). I then proceed to edit the po file. I save the file, update the resource bundle in the code directory then (I think its needed to see changes) build pcgen.&lt;br /&gt;
&lt;br /&gt;
To update, I just do&lt;br /&gt;
&lt;br /&gt;
 # svn up&lt;br /&gt;
&lt;br /&gt;
To create the new POT, I use prop2po which is part of the package translate-toolkit on Debian. I have a little script that I usually call with the svn number.&lt;br /&gt;
&lt;br /&gt;
 # newpot 17045&lt;br /&gt;
&lt;br /&gt;
''newpot''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/zsh&lt;br /&gt;
 &lt;br /&gt;
 # argument is name of version&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if [[ -z $1 ]];&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 then&lt;br /&gt;
         echo Argument needed&lt;br /&gt;
         exit 1&lt;br /&gt;
 else&lt;br /&gt;
         name=.$1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # Create the new POT from the Language bundle&lt;br /&gt;
 prop2po ../pcgen-svn/code/src/java/pcgen/resources/lang/LanguageBundle.properties LanguageBundle$name.pot&lt;br /&gt;
 #po2xliff -P LanguageBundle$name.pot LanguageBundle$name.xlf&lt;br /&gt;
&lt;br /&gt;
I use virtaal to open the latest po file, update it with the POT then save it with the new version number (poedit would work fine but doesn’t show the comments in the po file). I then edit the file.&lt;br /&gt;
&lt;br /&gt;
Once my change are done, or I want to view them, I use a script to update the resource bundle file. You’ll have to change the name of the language you’d work with there (fr ja en_GB in my case). It uses po2prop also part of the translate-toolkit package.&lt;br /&gt;
&lt;br /&gt;
 # updatebundle 17045&lt;br /&gt;
&lt;br /&gt;
''updatebundle''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/zsh&lt;br /&gt;
 &lt;br /&gt;
 # argument is name of version&lt;br /&gt;
 if &amp;lt;nowiki&amp;gt;[[ -z $1 ]];&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 then&lt;br /&gt;
         echo Argument needed&lt;br /&gt;
         exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # Create the new POT from the Language bundle&lt;br /&gt;
 for lang in fr ja en_GB&lt;br /&gt;
 do&lt;br /&gt;
         &amp;lt;nowiki&amp;gt;if [[ -f LanguageBundle.$1.$lang.po ]];&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
         then&lt;br /&gt;
                 po2prop --fuzzy --errorlevel=traceback -t ../pcgen-svn/code/src/java/pcgen/resources/lang/LanguageBundle.properties LanguageBundle.$1.$lang.po ../pcgen-svn/code/src/java/pcgen/resources/lang/LanguageBundle_$lang.properties&lt;br /&gt;
         fi&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
I hope those scripts help some one, you’ll probably need to change them (to fix the path for example).&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Proposed_FREQ_Roadmap&amp;diff=2989</id>
		<title>Proposed FREQ Roadmap</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Proposed_FREQ_Roadmap&amp;diff=2989"/>
		<updated>2012-02-04T11:22:18Z</updated>

		<summary type="html">&lt;p&gt;Karianna: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
This page covers future planning of version 6.0+, see the individual roadmaps for details of the confirmed plans for 5.10, 5.12, 5.14 and 5.16.&lt;br /&gt;
&lt;br /&gt;
=6.0 CDOM Milestone - PRIMARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* CDOM theme (many freqs will fall under this banner as CDOM will resolve several outstanding freqs)&lt;br /&gt;
* [[Proposed 6.0 Implicit FREQS|Implicit 6.0 FREQs]]&lt;br /&gt;
&lt;br /&gt;
=6.0 Editor Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* [[Proposed 6.x Editor Rebuild FREQs|6.x Editor Rebuild FREQs]]&lt;br /&gt;
* So this requires an honest assessment of whether we can ship 6.0 without a GUI editor. The existing editor *will* irrevokably break, because it is heavily dependent upon function in the old core.... if we don't do a new one, 6.0 ships with no editor. Given past feedback I've received, I think &amp;quot;no editor is acceptable&amp;quot; is a minority opinion... besides, I've effectively committed one in comments on enWorld ;)&lt;br /&gt;
&lt;br /&gt;
=6.0 Community Development Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* This one is on the Admin team - web site with forums, our own wiki, etc.&lt;br /&gt;
&lt;br /&gt;
=6.0 Internationalization Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* I18n, language bundles and the first release of a new language&lt;br /&gt;
* If this is really going to happen, we need to buckle down on getting the spec for internationalization of the datasets and game modes worked out. It has been hashed around at a theoretical level, but requires more work to understand the consequences. CDOM today is *NOT* internationalized at the LST I/O level. (There is nothing that necessarily prevents it, but the fact is, the data format is undefined, so one can't exactly write parsers to process the text).&lt;br /&gt;
&lt;br /&gt;
=6.0 UI Milestone=&lt;br /&gt;
&lt;br /&gt;
* Refactoring of hard coded UI approved for 6.0&lt;br /&gt;
* First cut of the new UI&lt;br /&gt;
&lt;br /&gt;
=6.0 Ability Data Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* Finish PCGen-shipped data conversion to Ability objects&lt;br /&gt;
&lt;br /&gt;
=6.0/6.2 Function Enablement Milestone=&lt;br /&gt;
&lt;br /&gt;
* There are numerous FREQs which are simple adds to the existing structure that are d20-ish, but which I don't (necessarily) want to distract from 6.0. Examples include: 1697595, 1689172, 1678170, 1629726, ... there are probably dozens of them. I think these should be planned as a separate group, but perhaps we need to evaluate progress (specifically speed of implementation) on 6.0 to determine whether this defines 6.2 or is part of 6.0.&lt;br /&gt;
&lt;br /&gt;
=6.2 UI Milestone - PRIMARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Overhaul the basic UI for creating PCs, e.g. A Wizard for creating new PC's&lt;br /&gt;
&lt;br /&gt;
=6.2 CDOM Performance Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Look at the new CDOM core and assess whether there are performance issues, and address those.&lt;br /&gt;
* The reason I at least want the performance item is that we may expose a hotspot or two that are major code items (for example, but not limited to: bonuses, prerequisites, and/or JEP) that require a more significant rebuild than CDOM should address in the first pass.&lt;br /&gt;
&lt;br /&gt;
=6.2+ Formula Milestone=&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* At some point - and this could be minor or it could be very painful - I suspect we want to deprecate non-JEP formulae. This *requires* a method of catching problems at LST load (and probably an automatic converter), so this must be deferred to at least 6.2, if not 6.4 (more on how at a later point)&lt;br /&gt;
&lt;br /&gt;
=6.2+ d20 System Depth Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Gestalt, spellcasters with multiple spell lists (e.g. Arcane and Divine), 1072152, Equipment Variables, Workaround LST, Skill &amp;amp; Template Levels&lt;br /&gt;
* Perhaps Equipment containers and composition falls here (though it might be in the 6.x Function Enablement Milestone)&lt;br /&gt;
&lt;br /&gt;
=6.2+ System Breadth Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Might even be better phrased 7.0 System Breadth Milestone&lt;br /&gt;
* Start enabling strange campaign settings and perhaps even non-d20 systems&lt;br /&gt;
&lt;br /&gt;
=6.2+ Update code from within PCGen=&lt;br /&gt;
&lt;br /&gt;
* Like modern browsers do&lt;br /&gt;
&lt;br /&gt;
=Freqs (To be split into Milestones)=&lt;br /&gt;
&lt;br /&gt;
The following are the categories of FREQs as Tom (PCGen Architecture Second) sees them:&lt;br /&gt;
&lt;br /&gt;
[[Proposed Low Difficulty, 6.0-6.2 FREQs|Low Difficulty 6.0-6.2 FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Proposed Low-Moderate Difficulty 6.2-6.4 FREQs|Low-Moderate Difficulty 6.2-6.4 FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Moderate-High Difficulty To Be Scheduled FREQs|Moderate-High Difficulty FREQs, to be Scheduled]]&lt;br /&gt;
&lt;br /&gt;
[[High Difficulty FREQs, to be Scheduled]]&lt;br /&gt;
&lt;br /&gt;
[[Complex or Insufficiently Specified FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Non-Core FREQs]] (implementation not significantly constrained by CDOM/6.0)&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Proposed_FREQ_Roadmap&amp;diff=2988</id>
		<title>Proposed FREQ Roadmap</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Proposed_FREQ_Roadmap&amp;diff=2988"/>
		<updated>2012-02-04T11:19:35Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* 6.0 UI Milestone */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
This page covers future planning of version 6.0+, see the individual roadmaps for details of the confirmed plans for 5.10, 5.12, 5.14 and 5.16.&lt;br /&gt;
&lt;br /&gt;
=6.0 CDOM Milestone - PRIMARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* CDOM theme (many freqs will fall under this banner as CDOM will resolve several outstanding freqs)&lt;br /&gt;
* [[Proposed 6.0 Implicit FREQS|Implicit 6.0 FREQs]]&lt;br /&gt;
&lt;br /&gt;
=6.0 Editor Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* [[Proposed 6.x Editor Rebuild FREQs|6.x Editor Rebuild FREQs]]&lt;br /&gt;
* So this requires an honest assessment of whether we can ship 6.0 without a GUI editor. The existing editor *will* irrevokably break, because it is heavily dependent upon function in the old core.... if we don't do a new one, 6.0 ships with no editor. Given past feedback I've received, I think &amp;quot;no editor is acceptable&amp;quot; is a minority opinion... besides, I've effectively committed one in comments on enWorld ;)&lt;br /&gt;
&lt;br /&gt;
=6.0 Community Development Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* This one is on the Admin team - web site with forums, our own wiki, etc.&lt;br /&gt;
&lt;br /&gt;
=6.0 Internationalization Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* I18n, language bundles and the first release of a new language&lt;br /&gt;
* If this is really going to happen, we need to buckle down on getting the spec for internationalization of the datasets and game modes worked out. It has been hashed around at a theoretical level, but requires more work to understand the consequences. CDOM today is *NOT* internationalized at the LST I/O level. (There is nothing that necessarily prevents it, but the fact is, the data format is undefined, so one can't exactly write parsers to process the text).&lt;br /&gt;
&lt;br /&gt;
=6.0 UI Milestone=&lt;br /&gt;
&lt;br /&gt;
* Refactoring of hard coded UI approved for 6.0&lt;br /&gt;
* First cut of the new UI&lt;br /&gt;
&lt;br /&gt;
=6.0 Ability Data Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* Finish PCGen-shipped data conversion to Ability objects&lt;br /&gt;
&lt;br /&gt;
=6.0/6.2 Function Enablement Milestone=&lt;br /&gt;
&lt;br /&gt;
* There are numerous FREQs which are simple adds to the existing structure that are d20-ish, but which I don't (necessarily) want to distract from 6.0. Examples include: 1697595, 1689172, 1678170, 1629726, ... there are probably dozens of them. I think these should be planned as a separate group, but perhaps we need to evaluate progress (specifically speed of implementation) on 6.0 to determine whether this defines 6.2 or is part of 6.0.&lt;br /&gt;
&lt;br /&gt;
=6.2 UI Milestone - PRIMARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Overhaul the basic UI for creating PCs, e.g. A Wizard for creating new PC's&lt;br /&gt;
&lt;br /&gt;
=6.2 CDOM Performance Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Look at the new CDOM core and assess whether there are performance issues, and address those.&lt;br /&gt;
* The reason I at least want the performance item is that we may expose a hotspot or two that are major code items (for example, but not limited to: bonuses, prerequisites, and/or JEP) that require a more significant rebuild than CDOM should address in the first pass.&lt;br /&gt;
&lt;br /&gt;
=6.2+ Formula Milestone=&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* At some point - and this could be minor or it could be very painful - I suspect we want to deprecate non-JEP formulae. This *requires* a method of catching problems at LST load (and probably an automatic converter), so this must be deferred to at least 6.2, if not 6.4 (more on how at a later point)&lt;br /&gt;
&lt;br /&gt;
=6.2+ d20 System Depth Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Gestalt, spellcasters with multiple spell lists (e.g. Arcane and Divine), 1072152, Equipment Variables, Workaround LST, Skill &amp;amp; Template Levels&lt;br /&gt;
* Perhaps Equipment containers and composition falls here (though it might be in the 6.x Function Enablement Milestone)&lt;br /&gt;
&lt;br /&gt;
=6.2+ System Breadth Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Might even be better phrased 7.0 System Breadth Milestone&lt;br /&gt;
* Start enabling strange campaign settings and perhaps even non-d20 systems&lt;br /&gt;
&lt;br /&gt;
=Freqs (To be split into Milestones)=&lt;br /&gt;
&lt;br /&gt;
The following are the categories of FREQs as Tom (PCGen Architecture Second) sees them:&lt;br /&gt;
&lt;br /&gt;
[[Proposed Low Difficulty, 6.0-6.2 FREQs|Low Difficulty 6.0-6.2 FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Proposed Low-Moderate Difficulty 6.2-6.4 FREQs|Low-Moderate Difficulty 6.2-6.4 FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Moderate-High Difficulty To Be Scheduled FREQs|Moderate-High Difficulty FREQs, to be Scheduled]]&lt;br /&gt;
&lt;br /&gt;
[[High Difficulty FREQs, to be Scheduled]]&lt;br /&gt;
&lt;br /&gt;
[[Complex or Insufficiently Specified FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Non-Core FREQs]] (implementation not significantly constrained by CDOM/6.0)&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Proposed_FREQ_Roadmap&amp;diff=2987</id>
		<title>Proposed FREQ Roadmap</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Proposed_FREQ_Roadmap&amp;diff=2987"/>
		<updated>2012-02-04T11:17:05Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* 6.2 UI Milestone - PRIMARY OBJECTIVE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
This page covers future planning of version 6.0+, see the individual roadmaps for details of the confirmed plans for 5.10, 5.12, 5.14 and 5.16.&lt;br /&gt;
&lt;br /&gt;
=6.0 CDOM Milestone - PRIMARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* CDOM theme (many freqs will fall under this banner as CDOM will resolve several outstanding freqs)&lt;br /&gt;
* [[Proposed 6.0 Implicit FREQS|Implicit 6.0 FREQs]]&lt;br /&gt;
&lt;br /&gt;
=6.0 Editor Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* [[Proposed 6.x Editor Rebuild FREQs|6.x Editor Rebuild FREQs]]&lt;br /&gt;
* So this requires an honest assessment of whether we can ship 6.0 without a GUI editor. The existing editor *will* irrevokably break, because it is heavily dependent upon function in the old core.... if we don't do a new one, 6.0 ships with no editor. Given past feedback I've received, I think &amp;quot;no editor is acceptable&amp;quot; is a minority opinion... besides, I've effectively committed one in comments on enWorld ;)&lt;br /&gt;
&lt;br /&gt;
=6.0 Community Development Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* This one is on the Admin team - web site with forums, our own wiki, etc.&lt;br /&gt;
&lt;br /&gt;
=6.0 Internationalization Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* I18n, language bundles and the first release of a new language&lt;br /&gt;
* If this is really going to happen, we need to buckle down on getting the spec for internationalization of the datasets and game modes worked out. It has been hashed around at a theoretical level, but requires more work to understand the consequences. CDOM today is *NOT* internationalized at the LST I/O level. (There is nothing that necessarily prevents it, but the fact is, the data format is undefined, so one can't exactly write parsers to process the text).&lt;br /&gt;
&lt;br /&gt;
=6.0 UI Milestone=&lt;br /&gt;
&lt;br /&gt;
* Refactoring of hard coded UI approved for 6.0&lt;br /&gt;
* This is not the overhaul of the UI, see 6.2 Milestone for that&lt;br /&gt;
&lt;br /&gt;
=6.0 Ability Data Milestone - SECONDARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Approved for implementation in 6.0&lt;br /&gt;
* Finish PCGen-shipped data conversion to Ability objects&lt;br /&gt;
&lt;br /&gt;
=6.0/6.2 Function Enablement Milestone=&lt;br /&gt;
&lt;br /&gt;
* There are numerous FREQs which are simple adds to the existing structure that are d20-ish, but which I don't (necessarily) want to distract from 6.0. Examples include: 1697595, 1689172, 1678170, 1629726, ... there are probably dozens of them. I think these should be planned as a separate group, but perhaps we need to evaluate progress (specifically speed of implementation) on 6.0 to determine whether this defines 6.2 or is part of 6.0.&lt;br /&gt;
&lt;br /&gt;
=6.2 UI Milestone - PRIMARY OBJECTIVE=&lt;br /&gt;
&lt;br /&gt;
* Overhaul the basic UI for creating PCs, e.g. A Wizard for creating new PC's&lt;br /&gt;
&lt;br /&gt;
=6.2 CDOM Performance Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Look at the new CDOM core and assess whether there are performance issues, and address those.&lt;br /&gt;
* The reason I at least want the performance item is that we may expose a hotspot or two that are major code items (for example, but not limited to: bonuses, prerequisites, and/or JEP) that require a more significant rebuild than CDOM should address in the first pass.&lt;br /&gt;
&lt;br /&gt;
=6.2+ Formula Milestone=&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* At some point - and this could be minor or it could be very painful - I suspect we want to deprecate non-JEP formulae. This *requires* a method of catching problems at LST load (and probably an automatic converter), so this must be deferred to at least 6.2, if not 6.4 (more on how at a later point)&lt;br /&gt;
&lt;br /&gt;
=6.2+ d20 System Depth Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Gestalt, spellcasters with multiple spell lists (e.g. Arcane and Divine), 1072152, Equipment Variables, Workaround LST, Skill &amp;amp; Template Levels&lt;br /&gt;
* Perhaps Equipment containers and composition falls here (though it might be in the 6.x Function Enablement Milestone)&lt;br /&gt;
&lt;br /&gt;
=6.2+ System Breadth Milestone=&lt;br /&gt;
&lt;br /&gt;
* Not approved for implementation in 6.0&lt;br /&gt;
* Might even be better phrased 7.0 System Breadth Milestone&lt;br /&gt;
* Start enabling strange campaign settings and perhaps even non-d20 systems&lt;br /&gt;
&lt;br /&gt;
=Freqs (To be split into Milestones)=&lt;br /&gt;
&lt;br /&gt;
The following are the categories of FREQs as Tom (PCGen Architecture Second) sees them:&lt;br /&gt;
&lt;br /&gt;
[[Proposed Low Difficulty, 6.0-6.2 FREQs|Low Difficulty 6.0-6.2 FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Proposed Low-Moderate Difficulty 6.2-6.4 FREQs|Low-Moderate Difficulty 6.2-6.4 FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Moderate-High Difficulty To Be Scheduled FREQs|Moderate-High Difficulty FREQs, to be Scheduled]]&lt;br /&gt;
&lt;br /&gt;
[[High Difficulty FREQs, to be Scheduled]]&lt;br /&gt;
&lt;br /&gt;
[[Complex or Insufficiently Specified FREQs]]&lt;br /&gt;
&lt;br /&gt;
[[Non-Core FREQs]] (implementation not significantly constrained by CDOM/6.0)&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Compatible_3rd_Parties&amp;diff=2951</id>
		<title>Compatible 3rd Parties</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Compatible_3rd_Parties&amp;diff=2951"/>
		<updated>2011-12-09T13:15:32Z</updated>

		<summary type="html">&lt;p&gt;Karianna: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Other Software and PCGen=&lt;br /&gt;
&lt;br /&gt;
The following publishers rely directly on or use converted forms of PCGen code and/or data and/or outputsheets and/or character files. These Publishers have our full blessing and are Officially PCGen compatible:&lt;br /&gt;
&lt;br /&gt;
* [http://code.google.com/p/droidpcgenviewer Android PCGen Viewer] - Android software to view PCGen characters&lt;br /&gt;
* [http://www.metacraft.com/PCGScry/ PCGScry] - Pocket PC Program that displays PCGen exported characters&lt;br /&gt;
* [http://www.pcgenview.com/ pcgenview] - Palm Program that displays PCGen exported characters&lt;br /&gt;
* [http://www.openrpg.com/ OpenRPG] - Online Engine to assist remote PnP games&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Main_Page&amp;diff=2776</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Main_Page&amp;diff=2776"/>
		<updated>2011-01-15T14:52:31Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Community */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
PCGen is an Open Source '''FREE''' Java based character generator for d20 based Role-Playing games, it has many '''[[PCGen Features|Features]]''' and some '''[[PCGen Requirements|Requirements]]''' in order to run.&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
To be the worlds most flexible d20 character generation and maintenance software.&lt;br /&gt;
&lt;br /&gt;
=Latest News!=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen 5.17.4 (Alpha) Released!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen 5.16.4 (Production) Released!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[Chris Chandler Named Content Silverback]]'''&lt;br /&gt;
&lt;br /&gt;
'''[http://jira.pcgen.org Issue tracking has moved to http://jira.pcgen.org http://jira.pcgen.org]'''&lt;br /&gt;
&lt;br /&gt;
=Community=&lt;br /&gt;
* [[Users]], (some who want to get straight to the [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/index.html documentation]!)&lt;br /&gt;
* [http://pcgen.sourceforge.net/08_sponsors.php Sponsors]&lt;br /&gt;
* [[Publishers]]&lt;br /&gt;
* [http://pcgen.sourceforge.net/banners/ Our fantastic banners and images]&lt;br /&gt;
* [[Compatible 3rd Parties]]&lt;br /&gt;
* [[Conventions]]&lt;br /&gt;
* [[Mailing Lists and PCGen Links]]&lt;br /&gt;
* [http://jira.pcgen.org Issue Tracking] ('''Report Bugs and Feature Requests!''')&lt;br /&gt;
** [[JIRA Tracker List]]&lt;br /&gt;
* [[FAQ and Help]]&lt;br /&gt;
* [[Updating Homebrew Sets]]&lt;br /&gt;
* [[Beta Testers for Testing]]&lt;br /&gt;
* [[Open RPG Community Online Game]]&lt;br /&gt;
&lt;br /&gt;
=Strategic Development=&lt;br /&gt;
* [[Roadmap]]&lt;br /&gt;
* [[Development Specs]]&lt;br /&gt;
* [[Future Development]]&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
* [[Explanation of Teams]]&lt;br /&gt;
* [[Full Team Member Listing]] is a full listing of our current volunteers.&lt;br /&gt;
&lt;br /&gt;
==Specific Teams==&lt;br /&gt;
* [[Board of Directors]] - (aka BoD), governs the project&lt;br /&gt;
* [[Architecture]]&lt;br /&gt;
* [[Code]] - (aka CM)&lt;br /&gt;
* [[Content]]&lt;br /&gt;
** [[Data]] (aka DM or LM)&lt;br /&gt;
** [[Output Sheets]] (aka OS)&lt;br /&gt;
** [[Documentation]]&lt;br /&gt;
* [[Admin]]&lt;br /&gt;
** [[Tracker]] (aka TM)&lt;br /&gt;
** [[Release]]&lt;br /&gt;
** [[Website]]&lt;br /&gt;
* [[Public Relations]]&lt;br /&gt;
** [[Publisher Liaison]] - (aka PL)&lt;br /&gt;
** [[Data License]]&lt;br /&gt;
** [[Advertising]]&lt;br /&gt;
&lt;br /&gt;
= Licensing =&lt;br /&gt;
The core PCGen code is licensed under the [http://www.opensource.org/licenses/lgpl-2.1.php LGPL ver 2.1] open source license.  Its various data sources are licensed under individual agreements, see the [[Data License]] team for details.&lt;br /&gt;
&lt;br /&gt;
= Getting Started with the Wiki =&lt;br /&gt;
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Release_Instructions&amp;diff=2767</id>
		<title>Release Instructions</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Release_Instructions&amp;diff=2767"/>
		<updated>2011-01-07T10:25:13Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Release */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Here are the steps to follow when making a release of PCGen. If it is your first time, please check the prereqs section at the bottom of this page.&lt;br /&gt;
&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
The first time you run a release you will have to make sure you have the following tools available:&lt;br /&gt;
===Release Notes===&lt;br /&gt;
* Text editor&lt;br /&gt;
* Web browser&lt;br /&gt;
* Perl interpreter&lt;br /&gt;
* Perl modules: readonly (installed on Windows via ActivePerl's Perl Package Manager)&lt;br /&gt;
&lt;br /&gt;
===Release===&lt;br /&gt;
* Java SDK 1.5 (the one that includes the javac compiler)&lt;br /&gt;
* Maven 1.1&lt;br /&gt;
* [[ANT|Ant 1.6]]&lt;br /&gt;
* Perl interpreter&lt;br /&gt;
* Perl modules: readonly and File-Copy-Recursive (installed on Windows via ActivePerl's Perl Package Manager)&lt;br /&gt;
* [http://cygwin.com/ Cygwin] You'll need to install SSH (two modules under Net), an editor, and rsync)&lt;br /&gt;
* SVN&lt;br /&gt;
* [http://nsis.sourceforge.net/Download NSIS]&lt;br /&gt;
&lt;br /&gt;
===Outstanding Issues===&lt;br /&gt;
You need to check JIRA for any outstanding issues to ensure the release meets our QA std.&lt;br /&gt;
&lt;br /&gt;
* Alpha releases require no Blockers, allow Critical only with Code lead exception&lt;br /&gt;
* Beta releases require no Blockers or Criticals&lt;br /&gt;
* RCs/final releases require no Blockers, Criticals, or Majors&lt;br /&gt;
&lt;br /&gt;
==Create Release Notes==&lt;br /&gt;
&lt;br /&gt;
# Update your local copy of pcgen from SVN&lt;br /&gt;
# Copy the previous set of release notes to pcgen-release-notes-nnn.html where nnn is the version number.&lt;br /&gt;
# Do a global replace of the old version number to the new version number, both as n.nn.n and nnnn&lt;br /&gt;
# Open JIRA and for each project open the release notes for the version.&lt;br /&gt;
# Copy the html to the changelog section, changing h2 tags to h3.&lt;br /&gt;
# Update the What's New section with any high profile changes.&lt;br /&gt;
# Commit the new release notes and notify pcgen_bod so they can review it.&lt;br /&gt;
# Notify pcgen dev and experimental lists of upcoming release, asking for autobuilds to be tested. Best to give 24 hours notice.&lt;br /&gt;
&lt;br /&gt;
==The Build==&lt;br /&gt;
# Using a clean directory with no changes to the pcgen files&lt;br /&gt;
# '''svn update''' the PCGen repository (5 mins)&lt;br /&gt;
# Release manager edits src/java/pcgen/gui/prop/PCGenProp.properties to set the release date, version number, contributors, etc. and commit the result (5 mins)&lt;br /&gt;
# Execute '''ant clean build test''' for alpha and beta builds or '''ant clean build-optimize test''' for production builds in the pcgen directory and verify there are no failing Junit test (10 mins)&lt;br /&gt;
# Check the [https://sourceforge.net/tracker/?group_id=25576 trackers] for any closed requests missing from the release notes. Steps 4 and 6 of 'Create Release Notes' section above can be used to assist here. (10 mins)&lt;br /&gt;
# Smoke test the newly build pcgen.jar (you can use '''maven pcgen:genrelease''' to generate a testing zip). NB: If there are any &amp;quot;Unknown publisher&amp;quot; messages when running this you need to add new entries for the listed publishers to the gendatalist.pl script. (30 mins)&lt;br /&gt;
# Create a folder for the release under the [https://sourceforge.net/project/admin/explorer.php?group_id=25576 File Manager]&lt;br /&gt;
# Upload the release notes using the File Manager to the release fiolder&lt;br /&gt;
# Delete the generated files in the ../release folder and then run '''maven clean''' to tidy up the maven generated files in the target directory&lt;br /&gt;
# Run '''maven scm:prepare-release''' (which updates the maven files and tags the SVN repository). Tag format is '''release-x.x.x''' while the version format is '''x.x.x''' (2 mins)&lt;br /&gt;
# Run '''maven pcgen:release''' to generate the release files and upload them to SourceForge. (Takes 5-10 mins then 5 mins) This will:&lt;br /&gt;
## Run release.pl to create the .zip files and to prepare the nsis directory for the Windows installer&lt;br /&gt;
## Run the NSIS compiler to create the windows installation .exe&lt;br /&gt;
## Run gendigest.pl to generate the SHA1 checksums for the files.&lt;br /&gt;
# When the above command pauses (generally after 5-10 mins), sign the .exe and .zip files with PGP. See below for the method.&lt;br /&gt;
# Once the command completes, you need to upload the files to SourceForge. Some common options are listed below. See the [https://sourceforge.net/apps/trac/sourceforge/wiki/Release%20files%20for%20download SourceForge Release File System doco] for more information. (1 hour or more)&lt;br /&gt;
#* Using cygwin on Windows, or from the Unix prompt, point the program to your target directory e.g. '''/cygdrive/d/eclipse/pcgen/target''' and then use rsync to upload the generated files in the publish folder. e.g. '''rsync -avP -e ssh *.zip jdempsey@frs.sourceforge.net:/home/frs/project/p/pc/pcgen''' Repeat for exe and jar.  &lt;br /&gt;
#* Using an SCP client such as WinSCP, login to frs.sourceforge.net using you user name and upload the files from the target/publish folder to the release folder under /home/frs/project/p/pc/pcgen .&lt;br /&gt;
# Create a new release in Stable or Unstable, make a link to the release notes in the notes section and follow it with the SHA1 checksums from target/SHA1-digests.txt. Then paste the changes from the top section of the release notes into the changes list. (5 mins)&lt;br /&gt;
# Add all the uploaded PCGen files to the release and adjust all the file information (10 mins)&lt;br /&gt;
# Notify PCGen_bod of the new release. (5 mins)&lt;br /&gt;
# Send the notice for the new release (1 min)&lt;br /&gt;
# PR Monkeys create a news item for the new release&lt;br /&gt;
# PR Monkeys send announcement to all pcgen mailing list for the new release&lt;br /&gt;
&lt;br /&gt;
==Mac Installer==&lt;br /&gt;
&lt;br /&gt;
See [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/installers/mac-installer/instructions.html Instructions]&lt;br /&gt;
&lt;br /&gt;
==Signing Files with PGP==&lt;br /&gt;
We currently use the [[http://www.gnupg.org/ GnuPG for Windows]] to generate the signatures. You will need the private key, either your own, or the PCGen one (contact the PCGen BOD). Once GnuPG is installed and knows about the key you wish to use, it is just a matter fo right clicking on the files to be signed (multi-select is fine) and selecting GPGee &amp;gt; Sign and then making sure the PCGen key is selected, hitting OK and entering the passphrase for the key. This creates an .asc signature file for each selected file.&lt;br /&gt;
&lt;br /&gt;
==Troubleshooting==&lt;br /&gt;
Yes, even the best installs of all the program amount to nothing if there is a hitch. These are basic notes from the current issues cropping up and resolutions. These notes are not prettified yet. The idea being we will get a full set of troubleshooting tips and tricks here in the near future.&lt;br /&gt;
&lt;br /&gt;
Check your versions. &lt;br /&gt;
JDK1.5 is required with JAVA_HOME variable (see below)&lt;br /&gt;
Maven 1.1 (Not using 2.1)&lt;br /&gt;
SVN must be a true .exe install, TortoiseSVN will not meet this requirement&lt;br /&gt;
SVN exe can be found here [[http://subversion.tigris.org/files/documents/15/46531/Setup-Subversion-1.6.5.msi SVN]]&lt;br /&gt;
&lt;br /&gt;
My Computer &amp;gt; System &amp;gt; Advanced Settings:&lt;br /&gt;
For JAVA_HOME make sure it's a set System Variable and make sure it's using the correct path to your current installation base folder&lt;br /&gt;
&lt;br /&gt;
Same goes for MAVEN&lt;br /&gt;
&lt;br /&gt;
PATH Should have the Maven Install Path, PERL install Path, Java Install Path&lt;br /&gt;
&lt;br /&gt;
-&lt;br /&gt;
In the installers\Windows_Installer\Includes\ Directory you'll need to have your paths set for the Base Destination Folder&lt;br /&gt;
We are using localpaths.pl with the following code (Alter it for your circumstances, and if the file does not exist you will need to create it)&lt;br /&gt;
&lt;br /&gt;
* #!/usr/bin/perl\n&lt;br /&gt;
* $SRC_BRANCH = 'C:/Install/Path/To/BaseFolder';&lt;br /&gt;
* $DEST_BASE_FOLDER   = 'C:/Install/releaseFolder';&lt;br /&gt;
&lt;br /&gt;
-- Current Unresolved Error Messages:&lt;br /&gt;
&lt;br /&gt;
pcgen:release:&lt;br /&gt;
pcgen:genrelease:&lt;br /&gt;
    [exec] =================&lt;br /&gt;
    [exec] Paths in use are:&lt;br /&gt;
    [exec] $SRC_BRANCH is D:/eclipse/Clean_Trunk/Trunk/pcgen&lt;br /&gt;
    [exec] $DEST_BASE_FOLDER is D:/eclipse/release&lt;br /&gt;
    [exec] =================&lt;br /&gt;
    [exec]&lt;br /&gt;
    [exec] Removing old and creating new directories...&lt;br /&gt;
    [exec] Generating the Windows installer publisher list...&lt;br /&gt;
    [exec] Create Installer Constants file...&lt;br /&gt;
    [exec] Copy Windows local files...&lt;br /&gt;
    [exec] Can't rmtree(D:/eclipse/release/nsis_dir/Local/.svn), $! is &amp;quot;No such file or directory&amp;quot; at (eval 21) line 3&lt;br /&gt;
    [exec]      main::__ANON__('D:/eclipse/release/nsis_dir/Local/.svn') called at release.pl line 226&lt;br /&gt;
    [exec] [ERROR] Result: 2&lt;br /&gt;
&lt;br /&gt;
nsis:generate-project:&lt;br /&gt;
    [echo] Creating D:\eclipse\Clean_Trunk\Trunk/target/project.nsh ...&lt;br /&gt;
&lt;br /&gt;
nsis:generate-setup:&lt;br /&gt;
    [echo] Creating D:\eclipse\Clean_Trunk\Trunk/target/setup.nsi ...&lt;br /&gt;
&lt;br /&gt;
nsis:installer:&lt;br /&gt;
    [exec] LicenseData: open failed &amp;quot;D:/eclipse/release/nsis_dir\PCGen_5170b\docs\acknowledgments\PCGenLicense.txt&amp;quot;&lt;br /&gt;
    [exec] Usage: LicenseData local_file_that_has_license_text | license_lang_string&lt;br /&gt;
    [exec] Error in macro MUI_PAGE_LICENSE on macroline 21&lt;br /&gt;
    [exec] Error in script &amp;quot;D:\eclipse\Clean_Trunk\Trunk/target/setup.nsi&amp;quot; on line 153 -- aborting creation process&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
&amp;gt;&amp;gt; Unable to obtain goal [pcgen:release]&lt;br /&gt;
&amp;gt;&amp;gt; null returned: 1&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
BUILD FAILED&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
Total time   : 4 seconds&lt;br /&gt;
Finished at  : Tuesday, September 1, 2009 7:37:42 AM PDT&lt;br /&gt;
Final Memory : 4M/254M&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;gt;&amp;gt; Referenced Line 153 has:&lt;br /&gt;
&lt;br /&gt;
!insertmacro MUI_PAGE_LICENSE &amp;quot;${SrcDir}\PCGen_${SIMPVER}b\docs\acknowledgments\PCGenLicense.txt&amp;quot;&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=PCGen_Jira_Guide&amp;diff=2766</id>
		<title>PCGen Jira Guide</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=PCGen_Jira_Guide&amp;diff=2766"/>
		<updated>2011-01-07T10:20:30Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Mandatory Fields */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;  {| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the Wiki section for the PCGen Jira Guide!  This guide will walk you through on how to enter Bugs and Feature Requests into our new JIRA issue tracking system.&lt;br /&gt;
&lt;br /&gt;
=Creating a new account=&lt;br /&gt;
&lt;br /&gt;
* Go to the [http://jira.pcgen.org/secure/Signup!default.jspa Registration Page] and fill out the details&lt;br /&gt;
&lt;br /&gt;
=Logging In=&lt;br /&gt;
&lt;br /&gt;
* Go to the [http://jira.pcgen.org Home page] and enter you username and password&lt;br /&gt;
&lt;br /&gt;
=Dashboard=&lt;br /&gt;
&lt;br /&gt;
Initially you will be shown a Dashboard with:&lt;br /&gt;
&lt;br /&gt;
* 6 projects down the LHS (Code, Data, Documentation, Output Sheets, New Source and New Tag)&lt;br /&gt;
* Your filters and any items assigned to you on the RHS&lt;br /&gt;
&lt;br /&gt;
=Entering a New Issue=&lt;br /&gt;
&lt;br /&gt;
* You can select the CREATE NEW ISSUE in the top menu or go directly to [http://jira.pcgen.org/secure/CreateIssue!default.jspa Create Issue Page]&lt;br /&gt;
&lt;br /&gt;
# [[JIRA Tracker List|Select the Project that this issue is appropriate for.]]&lt;br /&gt;
# Select the Issue Type&lt;br /&gt;
# Click on the Next button&lt;br /&gt;
&lt;br /&gt;
Try to pick these carefully, but don't worry too much if you get it wrong, the [[Tracker]] team will correct the details for you later if need be.&lt;br /&gt;
&lt;br /&gt;
In the next section you'll want to edit as many of the fields as possible, but on the ones marked with an asterisk are mandatory.&lt;br /&gt;
&lt;br /&gt;
==Mandatory Fields==&lt;br /&gt;
&lt;br /&gt;
* '''Summary''' - A brief description of the problem/feature you're reporting, e.g.  &amp;quot;Chainmail AC bonus doesn't stack with Shield&amp;quot;&lt;br /&gt;
* '''Priority''' - You can click on the (?) button to get an explanation of the priorities, or go directly to [http://jira.pcgen.org/secure/ShowConstantsHelp.jspa?decorator=popup#PriorityLevels Priority Levels Help Page]&lt;br /&gt;
&lt;br /&gt;
To put these Priorities into PCGen terms:&lt;br /&gt;
&lt;br /&gt;
''Blocker'' - Is stopping the whole program from effectively working, e.g.  You start PCGen and it crashes.  You load any data set and it fails to load, PCGen is sooo ridiculously slow that its unusable.  Basically nothing works and PCGen is a virtual door stop.&lt;br /&gt;
&lt;br /&gt;
''Critical'' - Something really seriously important to a majority of users is wrong.  So RSRD/SRD/Pathfinder doesn't load, a couple of tabs fail, Output sheets refuse to be generated - that sort of thing&lt;br /&gt;
&lt;br /&gt;
''Major'' - Something seriously sucks.  A tab is so slow its unusable, pathfinder is missing equipment S-Z, CDOM goes into an infinite loop when you apply rule X etc.&lt;br /&gt;
&lt;br /&gt;
''Minor'' - There's a noticeable problem.  Incorrect/missing data for a single class, a single value on the UI doesn't update correctly etc.&lt;br /&gt;
&lt;br /&gt;
''Trivial'' - Typos in our docs etc&lt;br /&gt;
&lt;br /&gt;
* '''Reporter''' - This should be your username&lt;br /&gt;
&lt;br /&gt;
==Optional Fields==&lt;br /&gt;
&lt;br /&gt;
These fields are very useful to the PCGen team, so please do take time to fill them out as much as possible!&lt;br /&gt;
&lt;br /&gt;
* '''Component/s''' - What part(s) of PCGen does this issue affect?&amp;lt;br /&amp;gt;&lt;br /&gt;
'''NOTE'''  If there is a Component option you'd like to see in the list, please drop a note to the [http://games.groups.yahoo.com/group/pcgen_webteam/ PCGen Webteam] mailing list.&amp;lt;br /&amp;gt;&lt;br /&gt;
'''NOTE'''  If you are entering a CODE issue then please leave this blank, the Code team will set this once the issue has been confirmed.&lt;br /&gt;
* '''Affects Version/s''' - Which version of PCGen are you using? [or does this issue affect, you may select multiple versions if valid]&lt;br /&gt;
* '''Fix Version/s''' - Leave this blank. Fix Version will ONLY be entered when the item in question has been fixed. The Content SB and Data 2nd may assign a special Fix version for high priority versions. [Data Wishlist #1 or Data Wishlist #2, once resolved this special version will be removed from the Fix version]&lt;br /&gt;
* '''Assignee''' - If you are a team member or a team member has specifically asked you to assign it to them then you can select that person here.&lt;br /&gt;
* '''Environment''' - Here we'd like you to put in your Operating System, the version of Java that you're using and how much memeory you are running PCGen with&lt;br /&gt;
* '''Description''' - Enter the full description of the issue here, the more detail the better!&lt;br /&gt;
* '''Original Estimate''' - If you are a team member and already have a fair idea of how long it will take to fix this issue, then you can enter that here.&lt;br /&gt;
* '''Attachment''' - You can attach, screen shots, PCG files, Data files etc here.&lt;br /&gt;
&lt;br /&gt;
=Voting for an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
* You can click on the '''Vote''' link on the left hand menu.  The more votes an issue has means that it is more likely that the PCGen team will Roadmap this issue!&lt;br /&gt;
&lt;br /&gt;
=Viewing an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
There are some extra read-only fields that you may find useful when trying to track the history of changes for a JIRA:&lt;br /&gt;
&lt;br /&gt;
# '''Work Log''' - Shows a history of work logged against this issue, see [http://wiki.pcgen.org/index.php?title=PCGen_Jira_Guide#Logging_Work_Done Logging Work]&lt;br /&gt;
# '''Change History''' - Shows a history of all changes made to this JIRA (including SVN Commits, Comments, Work Logged and more)&lt;br /&gt;
# '''Subversion Commits''' - Shows commit messages from svn commits that reference this JIRA&lt;br /&gt;
&lt;br /&gt;
=Editing an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
==Starting Progress==&lt;br /&gt;
&lt;br /&gt;
Click on the '''Start Progress''' link in the left hand menu.   This will automatically set the Status to the next step in the workflow (for most projects this is '''In Progress''')&lt;br /&gt;
&lt;br /&gt;
==Logging Work Done==&lt;br /&gt;
&lt;br /&gt;
Click on the '''Log work done''' link in the left hand menu and then fill in the details in the next screen as appropriate&lt;br /&gt;
&lt;br /&gt;
==Resolving an Issue==&lt;br /&gt;
&lt;br /&gt;
You can set the status to Resolved if you think the problem has been fixed.&amp;lt;br /&amp;gt;&lt;br /&gt;
At this stage you should also set the '''Fix Version''' to the appropriate release (usually the next Alpha or a maintenance version).&lt;br /&gt;
&lt;br /&gt;
==Closing an Issue==&lt;br /&gt;
&lt;br /&gt;
You can set the status to Closed if problem has been fixed and that the fix has been verified.&amp;lt;br /&amp;gt;&lt;br /&gt;
This can occur in one of three ways:&lt;br /&gt;
# The original reporter confirms problem is resolved&lt;br /&gt;
# A second person confirms fix&lt;br /&gt;
# One release cycle without another bug report on the issue&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2759</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2759"/>
		<updated>2011-01-04T08:10:46Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for London Time Meetings (locked at 10 PM London Time) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || EST/EDT || -5/-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue UTC) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]] || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]] || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || No || No || No || No || No || Sometimes || Yes &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue Canberra) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]] || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Sometimes || Sometimes || Sometimes || Sometimes || Sometimes || Yes || Yes  &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2758</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2758"/>
		<updated>2011-01-04T08:10:23Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || EST/EDT || -5/-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue UTC) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]] || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]] || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || No || No || No || No || No || Sometimes || Yes &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue Canberra) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Sometimes || Sometimes || Sometimes || Sometimes || Sometimes || Yes || Yes  &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2757</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2757"/>
		<updated>2011-01-04T08:09:50Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate]) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || EST/EDT || -5/-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue UTC) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]] || Yes || Yes || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]] || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || No || No || No || No || No || Sometimes || Yes &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue Canberra) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Sometimes || Sometimes || Sometimes || Sometimes || Sometimes || Yes || Yes  &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2748</id>
		<title>Data License</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2748"/>
		<updated>2010-12-14T15:08:32Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Team Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the page for the Data License Team. This team is a subteam of the [[Public Relations|PR]] team.&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
=Licenses=&lt;br /&gt;
PCGen's data sets are distributed under several licenses, including the [http://www.wizards.com/default.asp?x=d20/article/srdarchive Open Gaming License (OGL)], Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy], and, in the case of &amp;quot;Closed Content&amp;quot;, as defined by the OGL, by special permission from the publisher of each source product. The complete list of permissions held by PCGen can be found on PCGen's [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions page].&lt;br /&gt;
&lt;br /&gt;
==Open Gaming License==&lt;br /&gt;
Open Gaming Content (OGC), as defined by the OGL, is released under the OGL.&lt;br /&gt;
&lt;br /&gt;
Visit the [http://www.wizards.com/default.asp?x=d20/article/srdarchive d20 System Archive] for more information on the OGL.&lt;br /&gt;
&lt;br /&gt;
==Pathfinder Community Use Policy==&lt;br /&gt;
Content from Paizo's Pathfinder products that is included in released PCGen data sets and is designated as &amp;quot;Product Identity&amp;quot;, as defined by the OGL, is released under Paizo's  [http://paizo.com/paizo/about/communityuse Community Use Policy].&lt;br /&gt;
&lt;br /&gt;
Visit Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Released by Permission==&lt;br /&gt;
PCGen maitains a list of Publisher Permissions which are defined on the [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#agreements Publishers and Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [http://www.pcgen-test.org/autobuilds/pcgen-docs/faqpages/faqdatasources.html FAQ on data sources and licensing]&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#sources Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* TBA&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
* [[Eric C Smith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[Tir Gwaith]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Advertising&amp;diff=2747</id>
		<title>Advertising</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Advertising&amp;diff=2747"/>
		<updated>2010-12-14T15:07:23Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Lemur */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the page for the [[Advertising]] Team page, a subteam of the [[Public Relations|PR Team]]!&lt;br /&gt;
&lt;br /&gt;
=Mission=&lt;br /&gt;
To increase and maintain PCGen's mindshare among the RPG and Open Source Java communities.&lt;br /&gt;
&lt;br /&gt;
=Advertisers=&lt;br /&gt;
* None&lt;br /&gt;
&lt;br /&gt;
= Press Releases =&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen 5.17.4 (Alpha) Released!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen 5.16.4 (Production) Released!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[Chris Chandler Named Content Silverback]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen Goes to Gen Con 2009!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen Goes to Gen Con 2008!]]'''&lt;br /&gt;
&lt;br /&gt;
=Articles=&lt;br /&gt;
* None&lt;br /&gt;
&lt;br /&gt;
=Press Release Instructions=&lt;br /&gt;
* [http://sourceforge.net/news/?group_id=25576 PCGen News Archive]&lt;br /&gt;
* A Guide to Writing Press Releases (TBD)&lt;br /&gt;
* PCGen News Release Channels:&lt;br /&gt;
: * [http://games.groups.yahoo.com/group/pcgen/ pcgen @ Yahoo!Groups]&lt;br /&gt;
: * [http://www.codemonkeypublishing.com/modules.php?op=modload&amp;amp;name=PNphpBB2&amp;amp;file=viewforum&amp;amp;f=11 Code Monkey Publishing Forums]&lt;br /&gt;
: * [http://forums.gleemax.com/forumdisplay.php?f=39 WotC Digital D&amp;amp;D]&lt;br /&gt;
: * [http://www.mortality.net/modules.php?op=modload&amp;amp;name=Submit_News&amp;amp;file=index Mortality.Net]&lt;br /&gt;
: * [http://www.enworld.org/forumdisplay.php?f=6 ENWorld]&lt;br /&gt;
: * [http://www.rpg.net/press RPG Net]&lt;br /&gt;
: * [http://www.rpgnews.com/ RPGNews]&lt;br /&gt;
: * [http://paizo.com/paizo/messageboards/paizoPublishing/pathfinder/general Paizo's Pathfinder General Discusion Board] for Pathfinder data set releases.&lt;br /&gt;
: * [http://paizo.com/paizo/messageboards/community/gaming/dnd Paizo's D&amp;amp;D 3.5/d20/OGL Message Board] for general press releases.&lt;br /&gt;
: * [http://www.eruvian.com Eruvian]&lt;br /&gt;
* Other Channels:&lt;br /&gt;
: * [http://en.wikipedia.org/wiki/PCGen PCGen@Wikipedia]&lt;br /&gt;
: * [http://annex.wikia.com/wiki/PCGen PCGen@Annex]&lt;br /&gt;
: * [http://linux.softpedia.com/get/Utilities/PCGen-12365.shtml PCGen@Softpedia]&lt;br /&gt;
: * [http://freshmeat.net/projects/pcgen/ PCGen@FreshMeat]&lt;br /&gt;
* [[Press Release Templates]]:&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[David R. Bender]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Eric C Smith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation_of_Teams#Lemur|Lemur]]===&lt;br /&gt;
* Robert Ward&lt;br /&gt;
* [[Tir Gwaith]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Advertising&amp;diff=2746</id>
		<title>Advertising</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Advertising&amp;diff=2746"/>
		<updated>2010-12-14T15:07:10Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Active Team Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the page for the [[Advertising]] Team page, a subteam of the [[Public Relations|PR Team]]!&lt;br /&gt;
&lt;br /&gt;
=Mission=&lt;br /&gt;
To increase and maintain PCGen's mindshare among the RPG and Open Source Java communities.&lt;br /&gt;
&lt;br /&gt;
=Advertisers=&lt;br /&gt;
* None&lt;br /&gt;
&lt;br /&gt;
= Press Releases =&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen 5.17.4 (Alpha) Released!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen 5.16.4 (Production) Released!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[Chris Chandler Named Content Silverback]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen Goes to Gen Con 2009!]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[PCGen Goes to Gen Con 2008!]]'''&lt;br /&gt;
&lt;br /&gt;
=Articles=&lt;br /&gt;
* None&lt;br /&gt;
&lt;br /&gt;
=Press Release Instructions=&lt;br /&gt;
* [http://sourceforge.net/news/?group_id=25576 PCGen News Archive]&lt;br /&gt;
* A Guide to Writing Press Releases (TBD)&lt;br /&gt;
* PCGen News Release Channels:&lt;br /&gt;
: * [http://games.groups.yahoo.com/group/pcgen/ pcgen @ Yahoo!Groups]&lt;br /&gt;
: * [http://www.codemonkeypublishing.com/modules.php?op=modload&amp;amp;name=PNphpBB2&amp;amp;file=viewforum&amp;amp;f=11 Code Monkey Publishing Forums]&lt;br /&gt;
: * [http://forums.gleemax.com/forumdisplay.php?f=39 WotC Digital D&amp;amp;D]&lt;br /&gt;
: * [http://www.mortality.net/modules.php?op=modload&amp;amp;name=Submit_News&amp;amp;file=index Mortality.Net]&lt;br /&gt;
: * [http://www.enworld.org/forumdisplay.php?f=6 ENWorld]&lt;br /&gt;
: * [http://www.rpg.net/press RPG Net]&lt;br /&gt;
: * [http://www.rpgnews.com/ RPGNews]&lt;br /&gt;
: * [http://paizo.com/paizo/messageboards/paizoPublishing/pathfinder/general Paizo's Pathfinder General Discusion Board] for Pathfinder data set releases.&lt;br /&gt;
: * [http://paizo.com/paizo/messageboards/community/gaming/dnd Paizo's D&amp;amp;D 3.5/d20/OGL Message Board] for general press releases.&lt;br /&gt;
: * [http://www.eruvian.com Eruvian]&lt;br /&gt;
* Other Channels:&lt;br /&gt;
: * [http://en.wikipedia.org/wiki/PCGen PCGen@Wikipedia]&lt;br /&gt;
: * [http://annex.wikia.com/wiki/PCGen PCGen@Annex]&lt;br /&gt;
: * [http://linux.softpedia.com/get/Utilities/PCGen-12365.shtml PCGen@Softpedia]&lt;br /&gt;
: * [http://freshmeat.net/projects/pcgen/ PCGen@FreshMeat]&lt;br /&gt;
* [[Press Release Templates]]:&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[David R. Bender]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Eric C Smith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation_of_Teams#Lemur|Lemur]]===&lt;br /&gt;
* Robert Ward&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2745</id>
		<title>Data License</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2745"/>
		<updated>2010-12-14T15:06:29Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Chimp */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the page for the Data License Team. This team is a subteam of the [[Public Relations|PR]] team.&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
=Licenses=&lt;br /&gt;
PCGen's data sets are distributed under several licenses, including the [http://www.wizards.com/default.asp?x=d20/article/srdarchive Open Gaming License (OGL)], Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy], and, in the case of &amp;quot;Closed Content&amp;quot;, as defined by the OGL, by special permission from the publisher of each source product. The complete list of permissions held by PCGen can be found on PCGen's [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions page].&lt;br /&gt;
&lt;br /&gt;
==Open Gaming License==&lt;br /&gt;
Open Gaming Content (OGC), as defined by the OGL, is released under the OGL.&lt;br /&gt;
&lt;br /&gt;
Visit the [http://www.wizards.com/default.asp?x=d20/article/srdarchive d20 System Archive] for more information on the OGL.&lt;br /&gt;
&lt;br /&gt;
==Pathfinder Community Use Policy==&lt;br /&gt;
Content from Paizo's Pathfinder products that is included in released PCGen data sets and is designated as &amp;quot;Product Identity&amp;quot;, as defined by the OGL, is released under Paizo's  [http://paizo.com/paizo/about/communityuse Community Use Policy].&lt;br /&gt;
&lt;br /&gt;
Visit Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Released by Permission==&lt;br /&gt;
PCGen maitains a list of Publisher Permissions which are defined on the [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#agreements Publishers and Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [http://www.pcgen-test.org/autobuilds/pcgen-docs/faqpages/faqdatasources.html FAQ on data sources and licensing]&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#sources Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Team Members=&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* TBA&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
* [[Eric C Smith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[Tir Gwaith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2744</id>
		<title>Data License</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2744"/>
		<updated>2010-12-14T15:06:11Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* 2nd */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the page for the Data License Team. This team is a subteam of the [[Public Relations|PR]] team.&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
=Licenses=&lt;br /&gt;
PCGen's data sets are distributed under several licenses, including the [http://www.wizards.com/default.asp?x=d20/article/srdarchive Open Gaming License (OGL)], Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy], and, in the case of &amp;quot;Closed Content&amp;quot;, as defined by the OGL, by special permission from the publisher of each source product. The complete list of permissions held by PCGen can be found on PCGen's [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions page].&lt;br /&gt;
&lt;br /&gt;
==Open Gaming License==&lt;br /&gt;
Open Gaming Content (OGC), as defined by the OGL, is released under the OGL.&lt;br /&gt;
&lt;br /&gt;
Visit the [http://www.wizards.com/default.asp?x=d20/article/srdarchive d20 System Archive] for more information on the OGL.&lt;br /&gt;
&lt;br /&gt;
==Pathfinder Community Use Policy==&lt;br /&gt;
Content from Paizo's Pathfinder products that is included in released PCGen data sets and is designated as &amp;quot;Product Identity&amp;quot;, as defined by the OGL, is released under Paizo's  [http://paizo.com/paizo/about/communityuse Community Use Policy].&lt;br /&gt;
&lt;br /&gt;
Visit Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Released by Permission==&lt;br /&gt;
PCGen maitains a list of Publisher Permissions which are defined on the [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#agreements Publishers and Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [http://www.pcgen-test.org/autobuilds/pcgen-docs/faqpages/faqdatasources.html FAQ on data sources and licensing]&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#sources Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Team Members=&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* TBA&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[Tir Gwaith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2743</id>
		<title>Data License</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Data_License&amp;diff=2743"/>
		<updated>2010-12-14T15:05:56Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Silverback */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the page for the Data License Team. This team is a subteam of the [[Public Relations|PR]] team.&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
=Licenses=&lt;br /&gt;
PCGen's data sets are distributed under several licenses, including the [http://www.wizards.com/default.asp?x=d20/article/srdarchive Open Gaming License (OGL)], Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy], and, in the case of &amp;quot;Closed Content&amp;quot;, as defined by the OGL, by special permission from the publisher of each source product. The complete list of permissions held by PCGen can be found on PCGen's [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions page].&lt;br /&gt;
&lt;br /&gt;
==Open Gaming License==&lt;br /&gt;
Open Gaming Content (OGC), as defined by the OGL, is released under the OGL.&lt;br /&gt;
&lt;br /&gt;
Visit the [http://www.wizards.com/default.asp?x=d20/article/srdarchive d20 System Archive] for more information on the OGL.&lt;br /&gt;
&lt;br /&gt;
==Pathfinder Community Use Policy==&lt;br /&gt;
Content from Paizo's Pathfinder products that is included in released PCGen data sets and is designated as &amp;quot;Product Identity&amp;quot;, as defined by the OGL, is released under Paizo's  [http://paizo.com/paizo/about/communityuse Community Use Policy].&lt;br /&gt;
&lt;br /&gt;
Visit Paizo's [http://paizo.com/paizo/about/communityuse Community Use Policy] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Released by Permission==&lt;br /&gt;
PCGen maitains a list of Publisher Permissions which are defined on the [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#agreements Publishers and Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [http://www.pcgen-test.org/autobuilds/pcgen-docs/faqpages/faqdatasources.html FAQ on data sources and licensing]&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#sources Sources] page.&lt;br /&gt;
&lt;br /&gt;
=Team Members=&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[User:Nylanfs|Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[Tir Gwaith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2742</id>
		<title>Publisher Liaison</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2742"/>
		<updated>2010-12-14T15:05:13Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Lemur */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the Wiki section for the Publisher Liaison team, a sub-team of the [[Public Relations|PR]] team! The members of this team serve as the [[PCGen]] Project's primary point-of-contact with games publishers.&lt;br /&gt;
&lt;br /&gt;
=Mission=&lt;br /&gt;
To ensure RPG Games Publishers wishes are understood and adhered to, while facilitating the inclusion of ever greater number of source datasets within PCGen. &lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Board of Directors|BoD]] [[Policies]] which include a section on permissions.&lt;br /&gt;
* [[Publisher Status]] tells us what level of relationship we have with each Publisher.&lt;br /&gt;
* The [[Publishers]] page.&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/acknowledgments/publishersandsources.html#Sources Sources] page.&lt;br /&gt;
* A Guide to Writing [[PL Letters|Letters to Publishers]] and the current templates:&lt;br /&gt;
** [[Request for Permission Letters|Request for Permission]]&lt;br /&gt;
** [[Permissions Review Request]]&lt;br /&gt;
** [[Source Review Request]]&lt;br /&gt;
** [[Dataset Release Letter]]&lt;br /&gt;
&lt;br /&gt;
=Letters to the Publishers=&lt;br /&gt;
* [[Permission for Cover Art and Hyperlinks]] - March 4, 2008&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Eric C Smith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[User:Nylanfs|Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
* [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
&lt;br /&gt;
==PL Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot; | Liaison !! Publisher&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || A-C&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || D-M&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || N-Z&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
* [[Charles Burkett]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2741</id>
		<title>Publisher Liaison</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2741"/>
		<updated>2010-12-14T15:04:58Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Chimp */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the Wiki section for the Publisher Liaison team, a sub-team of the [[Public Relations|PR]] team! The members of this team serve as the [[PCGen]] Project's primary point-of-contact with games publishers.&lt;br /&gt;
&lt;br /&gt;
=Mission=&lt;br /&gt;
To ensure RPG Games Publishers wishes are understood and adhered to, while facilitating the inclusion of ever greater number of source datasets within PCGen. &lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Board of Directors|BoD]] [[Policies]] which include a section on permissions.&lt;br /&gt;
* [[Publisher Status]] tells us what level of relationship we have with each Publisher.&lt;br /&gt;
* The [[Publishers]] page.&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/acknowledgments/publishersandsources.html#Sources Sources] page.&lt;br /&gt;
* A Guide to Writing [[PL Letters|Letters to Publishers]] and the current templates:&lt;br /&gt;
** [[Request for Permission Letters|Request for Permission]]&lt;br /&gt;
** [[Permissions Review Request]]&lt;br /&gt;
** [[Source Review Request]]&lt;br /&gt;
** [[Dataset Release Letter]]&lt;br /&gt;
&lt;br /&gt;
=Letters to the Publishers=&lt;br /&gt;
* [[Permission for Cover Art and Hyperlinks]] - March 4, 2008&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
* [[Eric C Smith]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[User:Nylanfs|Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
&lt;br /&gt;
==PL Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot; | Liaison !! Publisher&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || A-C&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || D-M&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || N-Z&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
* [[Charles Burkett]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2740</id>
		<title>Publisher Liaison</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2740"/>
		<updated>2010-12-14T15:04:33Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* PL Assignments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the Wiki section for the Publisher Liaison team, a sub-team of the [[Public Relations|PR]] team! The members of this team serve as the [[PCGen]] Project's primary point-of-contact with games publishers.&lt;br /&gt;
&lt;br /&gt;
=Mission=&lt;br /&gt;
To ensure RPG Games Publishers wishes are understood and adhered to, while facilitating the inclusion of ever greater number of source datasets within PCGen. &lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Board of Directors|BoD]] [[Policies]] which include a section on permissions.&lt;br /&gt;
* [[Publisher Status]] tells us what level of relationship we have with each Publisher.&lt;br /&gt;
* The [[Publishers]] page.&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/acknowledgments/publishersandsources.html#Sources Sources] page.&lt;br /&gt;
* A Guide to Writing [[PL Letters|Letters to Publishers]] and the current templates:&lt;br /&gt;
** [[Request for Permission Letters|Request for Permission]]&lt;br /&gt;
** [[Permissions Review Request]]&lt;br /&gt;
** [[Source Review Request]]&lt;br /&gt;
** [[Dataset Release Letter]]&lt;br /&gt;
&lt;br /&gt;
=Letters to the Publishers=&lt;br /&gt;
* [[Permission for Cover Art and Hyperlinks]] - March 4, 2008&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[User:Nylanfs|Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
&lt;br /&gt;
==PL Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot; | Liaison !! Publisher&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || A-C&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || D-M&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || N-Z&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
* [[Charles Burkett]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2739</id>
		<title>Publisher Liaison</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Publisher_Liaison&amp;diff=2739"/>
		<updated>2010-12-14T15:04:04Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Silverback */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
Welcome to the Wiki section for the Publisher Liaison team, a sub-team of the [[Public Relations|PR]] team! The members of this team serve as the [[PCGen]] Project's primary point-of-contact with games publishers.&lt;br /&gt;
&lt;br /&gt;
=Mission=&lt;br /&gt;
To ensure RPG Games Publishers wishes are understood and adhered to, while facilitating the inclusion of ever greater number of source datasets within PCGen. &lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Board of Directors|BoD]] [[Policies]] which include a section on permissions.&lt;br /&gt;
* [[Publisher Status]] tells us what level of relationship we have with each Publisher.&lt;br /&gt;
* The [[Publishers]] page.&lt;br /&gt;
* The [http://pcgen.svn.sourceforge.net/viewvc/pcgen/Trunk/pcgen/docs/acknowledgments/publishersandsources.html#publishers Publisher Permissions] page.&lt;br /&gt;
* Current [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/acknowledgments/publishersandsources.html#Sources Sources] page.&lt;br /&gt;
* A Guide to Writing [[PL Letters|Letters to Publishers]] and the current templates:&lt;br /&gt;
** [[Request for Permission Letters|Request for Permission]]&lt;br /&gt;
** [[Permissions Review Request]]&lt;br /&gt;
** [[Source Review Request]]&lt;br /&gt;
** [[Dataset Release Letter]]&lt;br /&gt;
&lt;br /&gt;
=Letters to the Publishers=&lt;br /&gt;
* [[Permission for Cover Art and Hyperlinks]] - March 4, 2008&lt;br /&gt;
&lt;br /&gt;
=Active Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Silverback|Silverback]]===&lt;br /&gt;
* [[Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Second|2nd]]===&lt;br /&gt;
* [[Paul W. King]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Chimp|Chimp]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Gibbon|Gibbon]]===&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Tamarin|Tamarin]]===&lt;br /&gt;
* [[User:Nylanfs|Paul Grosse]]&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
&lt;br /&gt;
==PL Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot; | Liaison !! Publisher&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || A-C&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || D-M&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || N-Z&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Team Members=&lt;br /&gt;
&lt;br /&gt;
===[[Explanation of Teams#Lemur|Lemur]]===&lt;br /&gt;
* [[Charles Burkett]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Public_Relations&amp;diff=2738</id>
		<title>Public Relations</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Public_Relations&amp;diff=2738"/>
		<updated>2010-12-14T15:03:32Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
The Public Relations team contains 3 sub teams and is lead by their [[Explanation_of_Teams#Silverback|Silverback]], [[Paul Grosse]].&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
=Sub Teams=&lt;br /&gt;
* [[Publisher Liaison]]&lt;br /&gt;
* [[Data License]]&lt;br /&gt;
* [[Advertising]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2737</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2737"/>
		<updated>2010-12-14T15:03:09Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for London Time Meetings (locked at 10 PM London Time) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || EST/EDT || -5/-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue UTC) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Mostly || Mostly || Mostly || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue Canberra) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || No || No || No || No || No || Maybe || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2736</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2736"/>
		<updated>2010-12-14T15:02:46Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || EST/EDT || -5/-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue UTC) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Mostly || Mostly || Mostly || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue Canberra) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]]&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || No || No || No || No || No || Maybe || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2735</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2735"/>
		<updated>2010-12-14T15:02:27Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate]) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || EST/EDT || -5/-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue UTC) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Mostly || Mostly || Mostly || No || No || No || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]]&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || Yes || No || Mostly || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Mostly || Mostly || Mostly || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon (Tue Canberra) !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[Martijn Verburg]]&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || No|| No || No || No || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Release || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || No || No || No || No || No || Maybe || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || [[David R. Bender]] || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2734</id>
		<title>Board of Directors</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2734"/>
		<updated>2010-12-14T15:01:30Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Seconds */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
The PCGen Board of Directors (BoD) governs the project. Each major team is represented by one [[Explanation_of_Teams#Silverback|Silverback]] (SB) and at least one [[Explanation_of_Teams#2nd|2nd]] for each team/sub team (in case of SB absence).&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
To provide overall governance to PCGen to ensure that it continues to be a leader in RPG character Generation&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Meeting Time]]&lt;br /&gt;
* [[Meeting Logs]]&lt;br /&gt;
* [[Bylaws]]&lt;br /&gt;
* [[Policies]]&lt;br /&gt;
* [[Holidays]]&lt;br /&gt;
&lt;br /&gt;
=Active Members=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey===&lt;br /&gt;
[[Martijn Verburg]] - The day to day project chairperson&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverbacks===&lt;br /&gt;
The Team leads&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || [[Architecture]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Code]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || [[Admin]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || [[Public Relations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Architecture]] || &lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Code]] ||&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Content]] || [[Data]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || [[Content]] || [[Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] || [[Content]] || [[Output Sheets]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || [[Public Relations]] || [[Publisher Liaison]] ([[Publisher Liaison|PL]])&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Public Relations]] || [[Data License]]&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || [[Public Relations]] || [[Advertising]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Admin]] || [[Release]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || [[Admin]] || [[Tracker]]&lt;br /&gt;
|-&lt;br /&gt;
| Anestis Kozakis || [[Admin]] || [[Website]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Members=&lt;br /&gt;
&lt;br /&gt;
===Benevolent Dictator===&lt;br /&gt;
[[Bryan McRoberts]] - The Project Creator&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[Eddy Anthony]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverback===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team &lt;br /&gt;
|-&lt;br /&gt;
| [[Frank Kliewe]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eddy Anthony]] || [[Content]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Architecture]] ||&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Code]] ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2733</id>
		<title>Board of Directors</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2733"/>
		<updated>2010-12-14T14:59:48Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Active Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
The PCGen Board of Directors (BoD) governs the project. Each major team is represented by one [[Explanation_of_Teams#Silverback|Silverback]] (SB) and at least one [[Explanation_of_Teams#2nd|2nd]] for each team/sub team (in case of SB absence).&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
To provide overall governance to PCGen to ensure that it continues to be a leader in RPG character Generation&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Meeting Time]]&lt;br /&gt;
* [[Meeting Logs]]&lt;br /&gt;
* [[Bylaws]]&lt;br /&gt;
* [[Policies]]&lt;br /&gt;
* [[Holidays]]&lt;br /&gt;
&lt;br /&gt;
=Active Members=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey===&lt;br /&gt;
[[Martijn Verburg]] - The day to day project chairperson&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverbacks===&lt;br /&gt;
The Team leads&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || [[Architecture]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Code]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || [[Admin]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul Grosse]] || [[Public Relations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Architecture]] || &lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Code]] ||&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Content]] || [[Data]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || [[Content]] || [[Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| Chuck Pint || [[Content]] || [[Output Sheets]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || [[Public Relations]] || [[Publisher Liaison]] ([[Publisher Liaison|PL]])&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Public Relations]] || [[Data License]]&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || [[Public Relations]] || [[Advertising]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Admin]] || [[Release]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || [[Admin]] || [[Tracker]]&lt;br /&gt;
|-&lt;br /&gt;
| Anestis Kozakis || [[Admin]] || [[Website]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Members=&lt;br /&gt;
&lt;br /&gt;
===Benevolent Dictator===&lt;br /&gt;
[[Bryan McRoberts]] - The Project Creator&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[Eddy Anthony]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverback===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team &lt;br /&gt;
|-&lt;br /&gt;
| [[Frank Kliewe]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eddy Anthony]] || [[Content]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Architecture]] ||&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Code]] ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Full_Team_Member_Listing&amp;diff=2732</id>
		<title>Full Team Member Listing</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Full_Team_Member_Listing&amp;diff=2732"/>
		<updated>2010-12-14T14:58:35Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Active Volunteers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
PCGen has been blessed with an amazing amount of volunteers over the course of its history. A historical listing of those who have contributed (past and present) can be seen in the [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/acknowledgments/contributors.html Contributors] section of our Documentation. The current team is listed below:&lt;br /&gt;
&lt;br /&gt;
=Active Volunteers=&lt;br /&gt;
These volunteers are currently active on the PCGen project&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|SF Team Name !! align=&amp;quot;left&amp;quot;|Real Name !! align=&amp;quot;left&amp;quot;|SF ID !! align=&amp;quot;left&amp;quot;|Yahoo ID !! align=&amp;quot;left&amp;quot;|AIM ID !! align=&amp;quot;left&amp;quot;|ICQ !! align=&amp;quot;left&amp;quot;|Teams&lt;br /&gt;
|-&lt;br /&gt;
| [[Alec Ross]] || [[Alec Ross]] || haelduksf || haelduksf || haelduksf || 50824602 || C &lt;br /&gt;
|-&lt;br /&gt;
| [[Tir Gwaith|Andrew McDougall]] || [[Tir Gwaith|Andrew McDougall]] || tir-gwaith || tir_gwaith || TirGwaith || - || Ad, '''B''', C, Da, Do, DL, R, O, T, W&lt;br /&gt;
|-&lt;br /&gt;
| Andrew Wilson || Andrew Wilson || nuance || ytitendi || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Anestis Kozakis || Anestis Kozakis || kenosti || xeno_h || Xeno1970 || 837313 || '''B''', W &lt;br /&gt;
|-&lt;br /&gt;
| ankur rathi || Ankur Rathi || ankurrathi || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Arjan van Ginneken || Arjan van Ginneken || Sjappo || Arjan_van_Ginneken || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Brad Stiles || Brad Stiles || bsmeister || - || - || - || C, R &lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler|Barak]] || [[Chris Chandler]] || barako || Barak20021 || - || - || '''B''', Da, Do, O &lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint|chuckpint]] || [[Chuck Pint]] || chuckpint || chuckpint || - || - || '''B''', O &lt;br /&gt;
|-&lt;br /&gt;
| [[Connor Petty]] || [[Connor Petty]] || cpmeister || mistercpp2000 || MrBooyah314 || - || A, C &lt;br /&gt;
|-&lt;br /&gt;
| Dark Mike || - || swtrse || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Dave Cheever || David Cheever || takeyabue || - || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || [[David R. Bender]] || papa_drb || Papa_DRB || - || - || Ad, Da, T&lt;br /&gt;
|-&lt;br /&gt;
| [[Eddy Anthony]] || [[Eddy Anthony]] || eddyanthony || eddyanthony || - || - || (formerly '''B'''), C, Da, Do, O, R, T, W &lt;br /&gt;
|-&lt;br /&gt;
| [[Terry FitzSimons|Fitzs]] || [[Terry FitzSimons]] || fitzs || Fitzsimons_T_J || - || - || Da, Do&lt;br /&gt;
|-&lt;br /&gt;
| Fluxxdog || [[Michael W. Fender]] || fluxxdog || fluxxdog || fluxxdog || 346992562 ||  Da, Do, O, T&lt;br /&gt;
|-&lt;br /&gt;
| [[Greg Bingleman]] || [[Greg Bingleman]] || byngl || gsbingl || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Hades Lucifer || - || hadeslucifer || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[James Dempsey]] || jdempsey || james_dempsey_au || tallandir || 21047253 || A, '''B''', C, R, W &lt;br /&gt;
|-&lt;br /&gt;
| Jason Buchanan || Jason Buchanan || lonejedi || - || CMPLoneJedi70 || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Jayme Cox || Jayme Cox || jaymecox || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonas Karlson|Jonas Karlsson]] || [[Jonas Karlson|Jonas Karlsson]] || jujutsunerd || pjak || jonask42 || 2345481 || C &lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing]] || [[LegacyKing|Andrew Maitland]] || amaitland || paramedic4553 || drew0500 || 5830737 || '''B''', Da, Do, O, R, T, W, P &lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || [[Martijn Verburg]] || karianna || karianna03 || karianna02 || 39886145 || '''B''', C, Da, Do, O, T, W&lt;br /&gt;
|-&lt;br /&gt;
| MotorViper || Mark Jeffries || motorviper || MotorViper || || || C&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith|Maredudd]] || [[Eric C Smith]] || maredudd800 || maredudd800 || Maredudd || - || Ad, '''B''', Da, Do, DL, P, T, W &lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || [[User:Nylanfs|Paul Grosse]] || nylanfs || Nylanfs || Nylan8 || 14397299 || Ad, '''B''', Da, DL, P, T &lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || [[Paul W. King]] || kingpaul || pkingdnd || ShutUpPaul || - || '''B''', Da, DL, O, P, T &lt;br /&gt;
|-&lt;br /&gt;
| Per Christian Henden || Per Christian Henden || perchrh || perchrh || - || 48325984 || C &lt;br /&gt;
|-&lt;br /&gt;
| Phantom of Krankor || Phantom of Krankor || y2krankor || - || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Robert Ward || Robert Ward || rward30 || rward_30 || - || - || R &lt;br /&gt;
|-&lt;br /&gt;
| [[Shelley Stephen|Shelley]] || [[Shelley Stephen]] || takenote61 || takenote61 || takenote61 || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| [[Stefan Radermacher]] || [[Stefan Radermacher]] || zaister || zaister || - || 6510566 || C, Da, Do, W &lt;br /&gt;
|-&lt;br /&gt;
| Thomas Cooper || Thomas Cooper || lordoxide || - || - || - || C, D, W &lt;br /&gt;
|-&lt;br /&gt;
| [[Tod Milam]] || [[Tod Milam]] || tmilam || twmilam || - || - || C, Da, R &lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || [[Tom Parker]] || thpr || thpr || - || - || A, '''B''', C, T&lt;br /&gt;
|-&lt;br /&gt;
| Zacharia Bickley || Zacharia Bickley  || kapnbanjo || - || - || - || -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Passive Volunteers=&lt;br /&gt;
These volunteers are currently passive on the PCGen project, that usually means they have insightful things to say on our internal mailing lists, but don't have enough time left over from RL to add code etc :).  '''Please do not remove these people from SF'''&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|SF Team Name !! align=&amp;quot;left&amp;quot;|Real Name !! align=&amp;quot;left&amp;quot;|SF ID !! align=&amp;quot;left&amp;quot;|Yahoo ID !! align=&amp;quot;left&amp;quot;|AIM ID !! align=&amp;quot;left&amp;quot;|ICQ !! align=&amp;quot;left&amp;quot;|Teams&lt;br /&gt;
|-&lt;br /&gt;
| '''[[Bryan McRoberts]]''' || '''[[Bryan McRoberts]]''' || '''merton_monk''' || '''merton_monk''' || - || - || '''B,C''' &lt;br /&gt;
|-&lt;br /&gt;
| B. K. Oxley (binkley) || B. K. Oxley || binkley || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Paul M. Lambert || Paul M. Lambert || plambert || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Thomas Clegg || Thomas Clegg || arknight || - || - || - || C&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Volunteers=&lt;br /&gt;
These volunteers are currently inactive on the PCGen project&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|SF Team Name !! align=&amp;quot;left&amp;quot;|Real Name !! align=&amp;quot;left&amp;quot;|SF ID !! align=&amp;quot;left&amp;quot;|Yahoo ID !! align=&amp;quot;left&amp;quot;|AIM ID !! align=&amp;quot;left&amp;quot;|ICQ !! align=&amp;quot;left&amp;quot;|Teams&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Divinsky || Aaron Divinsky || boomer70 || boomer70 || - || - || C, Da, Do&lt;br /&gt;
|-&lt;br /&gt;
| [[Andargor]] || - || Andargor || andargor || - || - || C, Da &lt;br /&gt;
|-&lt;br /&gt;
| apsen || Andriy Sen || apsen || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Bart || Bart Rompelman || necrodeath || - || - || - || T&lt;br /&gt;
|-&lt;br /&gt;
| Bill || Bill Neumann || lodivigo || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Brian || - || telechus || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Briarius || Brian Spurling || briarius || sirbriarius || SirBriari1 || 9007056 || - &lt;br /&gt;
|-&lt;br /&gt;
| Chad || - || litesgod || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Charles || Chuck Hazard || chuckhazard || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Charles Burkett]] || [[Charles Burkett]] || Kyth || Charlesb_06 || Phule50000 || - || Do, P &lt;br /&gt;
|-&lt;br /&gt;
| Schporto || Chris Donohue || chrisdonohue || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Dan Parks || [[Dan Parks]] || dbd22 || misanthropiclo || thedbd22 || - || C&lt;br /&gt;
|-&lt;br /&gt;
| David Lim || David Lim || aberrant80 || aberrant80 || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| David || David Rosenthal || rimbeaux || - || - || - || W &lt;br /&gt;
|-&lt;br /&gt;
| David Saulnier || David Saulnier || dsaulinar || - || - || - || Da&lt;br /&gt;
|-&lt;br /&gt;
| deltadave || David Lockwood || deltadave || roninkelt || deltadave || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Dennis Baker || Dennis Baker || mtbOgre || - || mtbogre || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || Devon Jones || soulcatcher || hunterd_us || - || - || A,B,C &lt;br /&gt;
|-&lt;br /&gt;
| [[Eduard Martinescu]] || [[Eduard Martinescu]] || arvoreen || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Edwin C Holley || Edwin C Holley || glasswalker || GlassWalkerTheurge1968 || - || - || R &lt;br /&gt;
|-&lt;br /&gt;
| Eric Jarman || Eric Jarman || oracleofbargth || - || - || - || C, Da&lt;br /&gt;
|-&lt;br /&gt;
| [[Frank Kliewe]] || [[Frank Kliewe]] || frank_kliewe || frank_kliewe || - || - || Da, Do, O, T&lt;br /&gt;
|-&lt;br /&gt;
| gawaine42 || Richard Bowers || gawaine42 || richardsbowers || richardsbowers || - || O &lt;br /&gt;
|-&lt;br /&gt;
| [[Jason Horner]] || [[Jason Horner]] || jlhorner1974 || jlhorner1974 || - || - || Da, O &lt;br /&gt;
|-&lt;br /&gt;
| Jasper Spaans || Jasper Spaans || jasperspaans || jasperspaans || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| [[Joe Frazier, Jr.]] || [[Joe Frazier, Jr.]] || jfrazierjr || joefrazierjr || jfrazierjr || - || C &lt;br /&gt;
|-&lt;br /&gt;
| John Zittlau || John Zittlau || naarok || naarok || naarok17 || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Josh || Josh Johnston || pucspifo || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Julio Esslinger Viegas || Julio Esslinger Viegas || julio_ev || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Dracorat || Keith Ratliff || dracorat || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Kent Behrends]] || [[Kent Behrends]] || bci || kent_behrends || KentAtBci || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Kevin Fernandes]] || [[Kevin Fernandes]] || darkstorm999 || kevin_fernandes01453 || darkstorm0000 || - || C &lt;br /&gt;
|-&lt;br /&gt;
| [[Koen Van Daele]] || [[Koen Van Daele]] || vandaelek || koen_van_daele || Kador99 || - || C, W&lt;br /&gt;
|-&lt;br /&gt;
| Kurt Wimmer || Kurt Wimmer || kwimmer || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Michael Beaver || Michael Beaver || michaelbeaver || - || - || - || B &lt;br /&gt;
|-&lt;br /&gt;
| Michael Durant || Michael Durant || miked_msn || miked_msn || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| Michael Gray || Michael Gray || mhgj || - || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Mike || - || javadrinker || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Peter Barker || Peter Barker || pjdb || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| PK Lucas || PK Lucas || pklucas || pklucas || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Phillip Ryan || Phillip Ryan || historyphil || phillipryan49 || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Ratheof Blithwyn || Anders Lindgren || blithwyn || - || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Reed Thornton || Reed Thornton || rthornton13 || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Rick Ryker]] || [[Rick Ryker]] || kerrik || rick_ryker || Rick Ryker || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Sigurdur H. Olafsson || Sigurdur H. Olafsson || sholafsson || - || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| Theryon Stormrune || David T Jacobson || shadowcat || - || - || - || R &lt;br /&gt;
|-&lt;br /&gt;
| Tistur || Miriam Sexton || tistur || gryphondreams || tistur || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| tlavalle || Tony Lavalle || tlavalle || - || - || - || C, O &lt;br /&gt;
|-&lt;br /&gt;
| Tymophil || Philippe Aube || tymophil_fr || - || - || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Vincent || Vincent Yanda || lunaticlord || lunaticlord || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Walter Duncan || Walter Duncan || wduncan || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Walter Duncan || Walter Duncan || pcgen_autobuild || - || - || - || C &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Teams Key=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|Key !! align=&amp;quot;left&amp;quot;|Team &lt;br /&gt;
|-&lt;br /&gt;
| A || [[Architecture]] &lt;br /&gt;
|-&lt;br /&gt;
| Ad || [[Advertising]] &lt;br /&gt;
|-&lt;br /&gt;
| B || [[Board of Directors]] &lt;br /&gt;
|-&lt;br /&gt;
| C || [[Code]] &lt;br /&gt;
|-&lt;br /&gt;
| Da || [[Data]] &lt;br /&gt;
|-&lt;br /&gt;
| Do || [[Documentation]] &lt;br /&gt;
|-&lt;br /&gt;
| DL || [[Data License]] &lt;br /&gt;
|-&lt;br /&gt;
| O || [[Output Sheets]] &lt;br /&gt;
|-&lt;br /&gt;
| P || [[Publisher Liaison]] &lt;br /&gt;
|-&lt;br /&gt;
| R || [[Release]] &lt;br /&gt;
|-&lt;br /&gt;
| T || [[Tracker]] &lt;br /&gt;
|-&lt;br /&gt;
| W || [[Website]] &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Roadmap&amp;diff=2698</id>
		<title>Roadmap</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Roadmap&amp;diff=2698"/>
		<updated>2010-11-23T22:43:58Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Releases */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
This page contains the PCGen Roadmap&lt;br /&gt;
&lt;br /&gt;
=Releases=&lt;br /&gt;
* [[Release 5.6.x]] - There is no further active development on this branch&lt;br /&gt;
* [[Release 5.8.x]] - 5.8.1 was last production release of this branch, there is no further active development&lt;br /&gt;
* [[Release 5.10.x]] - 5.10.2 was the last production release of this branch, there is no further active development&lt;br /&gt;
* [[Release 5.12.x]] - 5.12.1 was the last production release of this branch, there is no further active development&lt;br /&gt;
* [[Release 5.14.x]] - 5.14.1 was the last production release of this branch, there is no further active development&lt;br /&gt;
* [[Release 5.16.x]] - 5.16.4 is the current production release&lt;br /&gt;
* [[Release 6.0.x]] - Release 6.0.0 will be a major architectural change for PCGen&lt;br /&gt;
* Release 6.2.x - Release 6.2.0 will contain major feature enhancements for PCGen&lt;br /&gt;
&lt;br /&gt;
=Planning=&lt;br /&gt;
* [[Proposed FREQ Roadmap]]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Release_5.16.x&amp;diff=2697</id>
		<title>Release 5.16.x</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Release_5.16.x&amp;diff=2697"/>
		<updated>2010-11-23T22:42:46Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Release dates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
5.16 is an intermediate release that will pack a lot of punch! We aim to provide Pathfinder and 4e support (assuming we have permission) and will start the UI overhaul. Preparation for CDOM continues in this phase as well.&lt;br /&gt;
&lt;br /&gt;
==Roadmap Details==&lt;br /&gt;
&lt;br /&gt;
* 4e Support - GSL permitting&lt;br /&gt;
* Pathfinder Support, lead by [[Stefan Radermacher]]&lt;br /&gt;
* Initial [[UI Overhaul]], lead by [[Connor Petty]]&lt;br /&gt;
* [[Token_Change_Proposals_for_5.15_Alpha]]&lt;br /&gt;
* [[CDOM]] preperation, lead by [[Tom Parker]]&lt;br /&gt;
&lt;br /&gt;
==Release dates==&lt;br /&gt;
&lt;br /&gt;
* 5.15.0 (Alpha) - 27 July 2008&lt;br /&gt;
* 5.15.1 (Alpha) - 11 Aug 2008&lt;br /&gt;
* 5.15.2 (Alpha) - 08 Sep 2008&lt;br /&gt;
* 5.15.3 (Alpha) - 24 Sep 2008&lt;br /&gt;
* 5.15.4 (Alpha) - 04 Oct 2008&lt;br /&gt;
* 5.15.5 (Alpha) - 14 Oct 2008&lt;br /&gt;
* 5.15.6 (Alpha) - 25 Oct 2008&lt;br /&gt;
* 5.15.7 (Alpha) - 10 Nov 2008&lt;br /&gt;
* 5.15.8 (Alpha) - 04 Dec 2008&lt;br /&gt;
* 5.15.9 (Alpha) - 25 Dec 2008&lt;br /&gt;
* 5.15.10 (Beta) - 01 Feb 2009&lt;br /&gt;
* 5.15.11 (Beta) - 09 Feb 2009&lt;br /&gt;
* 5.15.12 (Beta) - 16 Feb 2009&lt;br /&gt;
* 5.15.13 (Beta) - 26 Feb 2009&lt;br /&gt;
* 5.15.14 (Beta) - 03 Mar 2009&lt;br /&gt;
* 5.16.0 (RC1) - 10 Mar 2009&lt;br /&gt;
* 5.16.0 (RC2) - 04 Apr 2009&lt;br /&gt;
* 5.16.0 (RC3) - 16 Apr 2009&lt;br /&gt;
* 5.16.0 (Prod) - 20 Apr 2009&lt;br /&gt;
* 5.16.1 (RC1) - 11 July 2009&lt;br /&gt;
* 5.16.1 (RC2) - 19 July 2009&lt;br /&gt;
* 5.16.1 (Prod) - 22 July 2009&lt;br /&gt;
* 5.16.2 (RC1) - 16 Nov 2009&lt;br /&gt;
* 5.16.2 (RC2) - 05 Dec 2009&lt;br /&gt;
* 5.16.2 (RC3) - 15 Dec 2009&lt;br /&gt;
* 5.16.2 (Prod) - 29 Dec 2009&lt;br /&gt;
* 5.16.3 (RC1) - 3 July 2010&lt;br /&gt;
* 5.16.3 (Prod) - &lt;br /&gt;
* 5.16.4 (Prod) - 25 November 2010&lt;br /&gt;
&lt;br /&gt;
==Subset of Trackers to support new Gamemodes==&lt;br /&gt;
&lt;br /&gt;
To find all trackers closed for 5.16, perform a Search/Filter on the Group field with &amp;quot;5.16.0&amp;quot; or &amp;quot;To be fixed in 5.16.0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Pathfinder Support ===&lt;br /&gt;
==== Development Specs ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Link !! align=&amp;quot;left&amp;quot; | Title !! Status&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1986962&amp;amp;group_id=25576&amp;amp;atid=837763 1986962] || BONUSFEATLEVEL Proposal || '''''Closed'''''&lt;br /&gt;
|}&lt;br /&gt;
==== Feature Requests ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Link !! align=&amp;quot;left&amp;quot; | Title !! Status&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1984590&amp;amp;group_id=25576&amp;amp;atid=384722 1984590] || Add a class skill indicator column to the skill tab || '''''Closed''''' &lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1986958&amp;amp;group_id=25576&amp;amp;atid=384722 1986958] || [Pathfinder] Skill Cost and CSKILL overhaul || '''Tabled'''&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=1999270&amp;amp;group_id=25576&amp;amp;atid=384722 1999270] || [Pathfinder] FAVCLASS:CHOOSE improvements || '''''Closed'''''&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2016413&amp;amp;group_id=25576&amp;amp;atid=384722 2016413] || [Pathfinder] Experience point tables || '''''Closed'''''&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2044260&amp;amp;group_id=25576&amp;amp;atid=384722 2044260] || [Pathfinder] bonus feat progression || '''Tabled'''&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2048071&amp;amp;group_id=25576&amp;amp;atid=384722 2048071] || [Pathfinder] LEVELSPERFEAT expansion || '''''Closed'''''&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2430832&amp;amp;group_id=25576&amp;amp;atid=384722 2430832] || [Pathfinder] ABILITYLIST tag for Ability Categories || '''''Closed'''''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== 4E Support ===&lt;br /&gt;
==== Feature Requests ====&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Link !! align=:left&amp;quot; | Title !! Status&lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2005316&amp;amp;group_id=25576&amp;amp;atid=384722 2005316] || [4E] BONUSSTATLEVELSTARTINTERVAL tag enhancement || '''''Closed''''' &lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2038169&amp;amp;group_id=25576&amp;amp;atid=384722 2038169] || [4E] ASPECT tag for Abilities and Feats || '''''Closed''''' &lt;br /&gt;
|-&lt;br /&gt;
| [http://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=2099750&amp;amp;group_id=25576&amp;amp;atid=384722 2099750] || [4E] Allow .MOD of ASPECT tag for Abilities and Feats || '''''Closed'''''&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2691</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2691"/>
		<updated>2010-11-22T10:18:43Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for London Time Meetings (locked at 10 PM London Time) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Yes || No || Mostly || Yes || No || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || Yes || No || Yes || No || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Possibly || Possibly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || No || No || No || No || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2690</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2690"/>
		<updated>2010-11-22T10:17:30Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Yes || No || Mostly || Yes || No || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || Yes || Yes || Yes || Yes || Yes || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || Yes || No || Yes || No || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || No || No || No || No || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2689</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2689"/>
		<updated>2010-11-22T10:16:26Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Timezones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || GMT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Yes || No || Mostly || Yes || No || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || Yes || No || Yes || No || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || No || No || No || No || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2688</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2688"/>
		<updated>2010-11-22T10:16:01Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Timezones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || EST/EDT || 0&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Yes || No || Mostly || Yes || No || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || Yes || No || Yes || No || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || No || No || No || No || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2687</id>
		<title>Meeting Time</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Meeting_Time&amp;diff=2687"/>
		<updated>2010-11-22T10:15:24Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
The [[Board of Directors|BoD]] meetings are on approximately every fortnight.&lt;br /&gt;
&lt;br /&gt;
=Timezones=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Current Timezone !! Offset from GMT&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || EDT || -4&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || AEDT || +11&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || PST/PDT || -8/-7&lt;br /&gt;
|-&lt;br /&gt;
| [[Chuck Pint]] ||   ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || EST/EDT || -5/-4&lt;br /&gt;
|-&lt;br /&gt;
| [[Anestis Kozakis]] || AEST/AEDST || +10/+11&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Availability for Eastern (US) Meetings (locked at 12 PM Australian Eastern Time [USA ET slot shifts to accommodate])=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 1 AM (next day)&lt;br /&gt;
*This is currently London 1 AM (next day)&lt;br /&gt;
*This is currently 8 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM PST (USA) (same day)&lt;br /&gt;
*This is currently Noon Canberra (next day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || No || No || No || No || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || Yes || No || No || Yes || Yes || With Notice || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Yes || Yes || Mostly || No || No || No || With Notice&lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Mostly || Mostly || Mostly || Mostly || Yes || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]]^^^ || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || Yes || No || Mostly || Yes || No || Mostly || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || No || Yes || Yes || No || Yes || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || Yes || Yes || Yes || Yes || No || No || No&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || Mostly || Mostly || Mostly || Mostly || No || Mostly || Mostly&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
^ = (8PM EST to 10PM EST and 4AM EST to 9AM EST)&amp;lt;br&amp;gt;&lt;br /&gt;
^^ = Evenings after 6 pm Mon-Fri, AEST or AEDST&amp;lt;br&amp;gt;&lt;br /&gt;
^^^ = Mornings/Afternoons 7AM EST to 1PM EST&amp;lt;br&amp;gt;&lt;br /&gt;
PST is GMT -8&amp;lt;br&amp;gt;&lt;br /&gt;
MST is GMT -7&amp;lt;br&amp;gt;&lt;br /&gt;
EST is GMT -5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for Australia East Meetings (locked at 10 PM Australian Eastern Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 11 AM (same day)&lt;br /&gt;
*This is currently London 11 AM (same day)&lt;br /&gt;
*This is currently 6 AM EST (USA) (same day)&lt;br /&gt;
*This is currently 3 AM PST (USA) (same day)&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=57&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || With Notice || With Notice || No || No || Yes || Yes || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || With Notice || Sometimes || Sometimes || Mostly || Mostly || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || Yes || No || Yes || No || Mostly || Mostly &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || Yes || Yes || Yes || Yes || Yes || No || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Availability for London Time Meetings (locked at 10 PM London Time)=&lt;br /&gt;
&lt;br /&gt;
*This is currently UTC 10 PM&lt;br /&gt;
*This is currently 2 PM PST (USA) (same day)&lt;br /&gt;
*This is currently 5 PM EST (USA) (same day)&lt;br /&gt;
*This is currently 9 AM the following day, Canberra&lt;br /&gt;
*These currency statements are made as of Nov 22, 2010:&lt;br /&gt;
http://www.timeanddate.com/worldclock/fixedtime.html?month=11&amp;amp;day=22&amp;amp;year=2010&amp;amp;hour=22&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=136&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Vote !! Team !! Name !! Mon !! Tue !! Wed !! Thu !! Fri !! Sat !! Sun&lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair || [[Martijn Verburg]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| Chair || Chair 2nd || [[LegacyKing|Andrew Maitland]] || No || No || No || Yes || Yes || Yes || No &lt;br /&gt;
|-&lt;br /&gt;
| SB || Admin ||[[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| SB || Arch || [[Tom Parker]] || Mostly || Mostly || No || No || Possibly || No || With Notice &lt;br /&gt;
|-&lt;br /&gt;
| SB || Code || [[James Dempsey]]^ || Yes || No || No || No || No || No || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || Content || [[Chris Chandler]] || No || No || No || No || No || Possibly || Yes &lt;br /&gt;
|-&lt;br /&gt;
| SB || PR || [[Eric C Smith]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || OS || [[Chuck Pint]] || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || License || [[User:Nylanfs|Paul Grosse]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || PL || [[Paul W. King]] (9PM EST+) || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Web || [[Anestis Kozakis]]^^ || ? || ? || ? || ? || ? || ? || ? &lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Tracker || [[James Dempsey]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Docs || [[Eric C Smith]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Data || [[LegacyKing|Andrew Maitland]]&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Advert || TBA&lt;br /&gt;
|-&lt;br /&gt;
| 2nd || Arch || TBA&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=PCGen_Jira_Guide&amp;diff=2614</id>
		<title>PCGen Jira Guide</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=PCGen_Jira_Guide&amp;diff=2614"/>
		<updated>2010-10-22T14:47:34Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Closing an Issue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;  {| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the Wiki section for the PCGen Jira Guide!  This guide will walk you through on how to enter Bugs and Feature Requests into our new JIRA issue tracking system.&lt;br /&gt;
&lt;br /&gt;
=Creating a new account=&lt;br /&gt;
&lt;br /&gt;
* Go to the [http://jira.pcgen.org/secure/Signup!default.jspa Registration Page] and fill out the details&lt;br /&gt;
&lt;br /&gt;
=Logging In=&lt;br /&gt;
&lt;br /&gt;
* Go to the [http://jira.pcgen.org Home page] and enter you username and password&lt;br /&gt;
&lt;br /&gt;
=Dashboard=&lt;br /&gt;
&lt;br /&gt;
Initially you will be shown a Dashboard with:&lt;br /&gt;
&lt;br /&gt;
* 6 projects down the LHS (Code, Data, Documentation, Output Sheets, New Source and New Tag)&lt;br /&gt;
* Your filters and any items assigned to you on the RHS&lt;br /&gt;
&lt;br /&gt;
=Entering a New Issue=&lt;br /&gt;
&lt;br /&gt;
* You can select the CREATE NEW ISSUE in the top menu or go directly to [http://jira.pcgen.org/secure/CreateIssue!default.jspa Create Issue Page]&lt;br /&gt;
&lt;br /&gt;
# [[JIRA Tracker List|Select the Project that this issue is appropriate for.]]&lt;br /&gt;
# Select the Issue Type&lt;br /&gt;
# Click on the Next button&lt;br /&gt;
&lt;br /&gt;
Try to pick these carefully, but don't worry too much if you get it wrong, the [[Tracker]] team will correct the details for you later if need be.&lt;br /&gt;
&lt;br /&gt;
In the next section you'll want to edit as many of the fields as possible, but on the ones marked with an asterisk are mandatory.&lt;br /&gt;
&lt;br /&gt;
==Mandatory Fields==&lt;br /&gt;
&lt;br /&gt;
* '''Summary''' - A brief description of the problem/feature you're reporting, e.g.  &amp;quot;Chainmail AC bonus doesn't stack with Shield&amp;quot;&lt;br /&gt;
* '''Priority''' - You can click on the (?) button to get an explanation of the priorities, or go directly to [http://jira.pcgen.org/secure/ShowConstantsHelp.jspa?decorator=popup#PriorityLevels Priority Levels Help Page]&lt;br /&gt;
* '''Reporter''' - This should be your username&lt;br /&gt;
&lt;br /&gt;
==Optional Fields==&lt;br /&gt;
&lt;br /&gt;
These fields are very useful to the PCGen team, so please do take time to fill them out as much as possible!&lt;br /&gt;
&lt;br /&gt;
* '''Component/s''' - What part(s) of PCGen does this issue affect?&amp;lt;br /&amp;gt;&lt;br /&gt;
'''NOTE'''  If there is a Component option you'd like to see in the list, please drop a note to the [http://games.groups.yahoo.com/group/pcgen_webteam/ PCGen Webteam] mailing list.&amp;lt;br /&amp;gt;&lt;br /&gt;
'''NOTE'''  If you are entering a CODE issue then please leave this blank, the Code team will set this once the issue has been confirmed.&lt;br /&gt;
* '''Affects Version/s''' - Which version of PCGen are you using?&lt;br /&gt;
* '''Fix Version/s''' - If you are a team member and have a fair understanding on our roadmap, you can select which version of PCGen this will be fixed in.  Otherwise, just leave this blank, the [Tracker] team will allocate a Fix Version later.&lt;br /&gt;
* '''Assignee''' - If you are a team member or a team member has specifically asked you to assign it to them then you can select that person here.&lt;br /&gt;
* '''Environment''' - Here we'd like you to put in your Operating System, the version of Java that you're using and how much memeory you are running PCGen with&lt;br /&gt;
* '''Description''' - Enter the full description of the issue here, the more detail the better!&lt;br /&gt;
* '''Original Estimate''' - If you are a team member and already have a fair idea of how long it will take to fix this issue, then you can enter that here.&lt;br /&gt;
* '''Attachment''' - You can attach, screenshots, PCG files, Data files etc here.&lt;br /&gt;
&lt;br /&gt;
=Voting for an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
* You can click on the '''Vote''' link on the left hand menu.  The more votes an issue has means that it is more likely that the PCGen team will Roadmap this issue!&lt;br /&gt;
&lt;br /&gt;
=Viewing an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
There are some extra read-only fields that you may find useful when trying to track the history of changes for a JIRA:&lt;br /&gt;
&lt;br /&gt;
# '''Work Log''' - Shows a history of work logged against this issue, see [wiki.pcgen.org/index.php?title=PCGen_Jira_Guide#Logging_Work_Done]&lt;br /&gt;
# '''Change History''' - Shows a history of all changes made to this JIRA (including SVN Commits, Comments, Work Logged and more)&lt;br /&gt;
# '''Subversion Commits''' - Shows commit messages from committers that reference this JIRA&lt;br /&gt;
&lt;br /&gt;
=Editing an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
==Starting Progress==&lt;br /&gt;
&lt;br /&gt;
Click on the '''Start Progress''' link in the left hand menu.   This will automatically set the Status to the next step in the workflow (for most projects this is '''In Progress''')&lt;br /&gt;
&lt;br /&gt;
==Logging Work Done==&lt;br /&gt;
&lt;br /&gt;
Click on the '''Log work done''' link in the left hand menu and then fill in the details in the next screen as appropriate&lt;br /&gt;
&lt;br /&gt;
==Resolving an Issue==&lt;br /&gt;
&lt;br /&gt;
You can set the status to Resolved if you think the problem has been fixed.&amp;lt;br /&amp;gt;&lt;br /&gt;
At this stage you should also set the '''Fix Version''' to the appropriate release (usually the next Alpha or a maintenance version).&lt;br /&gt;
&lt;br /&gt;
==Closing an Issue==&lt;br /&gt;
&lt;br /&gt;
You can set the status to Closed if problem has been fixed and that the fix has been verified.&amp;lt;br /&amp;gt;&lt;br /&gt;
This can occur in one of three ways:&lt;br /&gt;
# The original reporter confirms problem is resolved&lt;br /&gt;
# A second person confirms fix&lt;br /&gt;
# One release cycle without another bug report on the issue&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Explanation_of_Teams&amp;diff=2513</id>
		<title>Explanation of Teams</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Explanation_of_Teams&amp;diff=2513"/>
		<updated>2010-09-27T17:04:18Z</updated>

		<summary type="html">&lt;p&gt;Karianna: Reverted edits by RayRichardson (Talk) to last revision by Karianna&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
You'll quickly notice the PCGen has a Monkey theme. [[Bryan McRoberts]] chose &amp;quot;Chief Code Monkey&amp;quot; as his title when he first made [[Main Page|PCGen]] available to the public, and later adopted the title of Benevolent Dictator. Other teams formed to focus on different aspects of [[Main Page|PCGen]], and all have taken to referring to themselves as Monkeys. In the [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/index.html Documentation] provided with [[Main Page|PCGen]] and in the About box of the actual software we try to list everyone who has contributed to [[Main Page|PCGen]] in chronological order.&lt;br /&gt;
&lt;br /&gt;
==Benevolent Dictator==&lt;br /&gt;
A common term to refer to the Project Creator for an Open Source Project, in this case [[Bryan McRoberts]].&lt;br /&gt;
&lt;br /&gt;
==Chair Monkey==&lt;br /&gt;
The Chair Monkey works with the Board of Directors to ensure that the project runs as smoothly as possible and is often a neutral port of call for warring Monkeys :).  The current Chair Monkey is [[Martijn Verburg|Karianna]] (aka Martijn Verburg).&lt;br /&gt;
&lt;br /&gt;
==Monkey Ranks==&lt;br /&gt;
In keeping with the Monkey theme a ranking system has evolved as a way to express appreciation and confer status to those who have contributed their time and energy to the project. These monkey ranks are listed below in decreasing order of precedence.&lt;br /&gt;
&lt;br /&gt;
===Silverback===&lt;br /&gt;
The highest rank within the PCGen Team is that of Silverback. The Silverbacks are the leaders of the teams that make up the [[Main Page|PCGen]] project and hold seats on the [[Explanation of Teams#Board of Directors|Board of Directors]]. The responsibilities of the Silverback include determining how their team should be run, the overall goals of the team, and how these goals in turn fits in with the overall goals of the project. The Silverbacks have a [[Explanation of Teams#Second|2nd]] for each sub team. Finally, promoting Monkeys within the team is generally the privilege of the teams Silverback. Silverbacks are also really impressive Gorillas, see the [http://en.wikipedia.org/wiki/Silverback Wikipedia Reference] article on these amazing creatures!&lt;br /&gt;
&lt;br /&gt;
===Second===&lt;br /&gt;
2nd is a rank that we give to leaders of permanent sub teams. They are effectively the same as a [[Explanation of Teams#Chimp|Chimp]] but have a permanent team responsibility and can also substitute for a [[Explanation of Teams#Silverback|Silverback]] on the PCGen [[Board of Directors|BoD]].&lt;br /&gt;
&lt;br /&gt;
===Chimp===&lt;br /&gt;
Chimp is the rank we give to team members who are true gurus and experts in an area on PCGen and have also contributed a great deal.  Chimps are often leaders of smaller teams or one monkey machines in getting stuff done.  Chimps are also really cool apes, see the [http://en.wikipedia.org/wiki/Chimp Wikipedia Reference] article on these amazing creatures!&lt;br /&gt;
&lt;br /&gt;
===Gibbon===&lt;br /&gt;
Gibbon is the rank we give to team members who have contributed a good deal to the project and are considered to be capable of tackling tasks on their own initiative due to their solid understanding of their area in PCGen. Gibbons are like the NCOs of the PCGen team. Gibbons are also really cool monkeys, see the [http://en.wikipedia.org/wiki/Gibbon Wikipedia Reference] article on these amazing creatures!&lt;br /&gt;
&lt;br /&gt;
===Tamarin===&lt;br /&gt;
Tamarin is the rank we give to team members who have contributed more than just a couple of items to the project and have a good basic understanding of how to do things in PCGen for their area. Tamarins are a good place to start asking questions as they are at the coal face. Tamarins are also really cute little monkeys, see the [http://en.wikipedia.org/wiki/Tamarin Wikipedia Reference] article on these amazing creatures!&lt;br /&gt;
&lt;br /&gt;
===Lemur===&lt;br /&gt;
Lemur is the rank we give to team members who have started working in a team and have contributed something, whether it be large or small, to the project.  Lemurs are still learning their way around the world of PCGen but a much valued contributors.  Lemurs are also really cute little monkeys, see the [http://en.wikipedia.org/wiki/Lemur Wikipedia Reference] article on these amazing creatures!&lt;br /&gt;
&lt;br /&gt;
==Joining the project==&lt;br /&gt;
[[Main Page|PCGen]] is an Open Source Software Initiative and as such relies entirely on the efforts of many volunteers. The project is always in need of more volunteers, if you would like to join we would love to have you. The easiest way to join is to post a message to the [http://groups.yahoo.com/group/pcgen pcgen] message board with the subject of &amp;quot;I want to help&amp;quot; and you will be contacted by a [[Tracker]] Monkey and asked what area you would like to contribute to. You may also contact the [[Explanation of Teams#Silverback|Silverback]] of a team you are interested in joining directly. A list of the Silverbacks can be found in the [[Board of Directors|BoD]]&lt;br /&gt;
&lt;br /&gt;
=[[Board of Directors]]=&lt;br /&gt;
The Board of Directors (BoD) is the steering committee of PCGen, its members consist of the Team Leads from each team. It had overall governance of the project and is lead by the Chair Monkey.&lt;br /&gt;
&lt;br /&gt;
=[[Architecture]]=&lt;br /&gt;
This team works on the medium and long term gnarly architectural issues for PCGen, dealing with things such as [[Internationalization]], replacing the data layer etc.&lt;br /&gt;
&lt;br /&gt;
=[[Code]]=&lt;br /&gt;
This team works on the Java code, fixing Bugs and developing FREQs (Feature Requests).&lt;br /&gt;
&lt;br /&gt;
=[[Content]]=&lt;br /&gt;
[[Content]] encompasses [[Data]], [[Documentation]], [[Output Sheets]] and other non-Java code project files.&lt;br /&gt;
&lt;br /&gt;
===[[Data]]===&lt;br /&gt;
This team works on the data for all the books you load in [[Main Page|PCGen]]. They help answer data questions at the [http://groups.yahoo.com/group/PCGenListFileHelp PCGenListFileHelp]. They have [http://groups.yahoo.com/group/pcgen_experimental pcgen_experimental] group where they actually work on the different books we're trying to get into [[Main Page|PCGen]].&lt;br /&gt;
&lt;br /&gt;
===[[Documentation]]===&lt;br /&gt;
This team works on the [[Documentation]], this is a massive effort combing How To guides, [[Data]] and [[Output Sheets|OS]] tags, FAQ and much, much more.&lt;br /&gt;
&lt;br /&gt;
===[[Output Sheets|OS]]===&lt;br /&gt;
This team works on the output sheets which are used to export to character sheets in [[Main Page|PCGen]]. These templates involve XML, XSL, PDF and HTML/XHTML.&lt;br /&gt;
&lt;br /&gt;
=[[Admin]]=&lt;br /&gt;
This is the team that administers the project as a whole. They amongst other things monitor the [http://groups.yahoo.com/group/pcgen PCGen] yahoo site and consist of three sub teams.&lt;br /&gt;
&lt;br /&gt;
===[[Tracker]]===&lt;br /&gt;
They also prioritize all [http://jira.pcgen.org Issues] and provide assistance to all teams in a co-ordination role.&lt;br /&gt;
&lt;br /&gt;
===[[Release]]===&lt;br /&gt;
This team gathers all the elements and compiles the code to create the packages that are released to the public.&lt;br /&gt;
&lt;br /&gt;
===[[Website]]===&lt;br /&gt;
This team is the newest formed team; it's first tasked with finding a permanent website space to call home and building a fully operational website to facilitate our many needs. Once phase I is completed they will monitor and maintain the website. They have a tough job currently of merging our many groups and websites into one unified and professional website with the full capabilities we already enjoy today, plus more enhancements.&lt;br /&gt;
&lt;br /&gt;
=[[Public Relations]]=&lt;br /&gt;
The PR team covers dealing with the various stakeholders in PCGen's community, in particular the Publishers.&lt;br /&gt;
&lt;br /&gt;
===[[Publisher Liaison]]===&lt;br /&gt;
This team servers as the contact for all the [[Publishers]]. This way all contact with [[Publishers]] can be more easily managed and consistent.&lt;br /&gt;
&lt;br /&gt;
===[[Data License]]===&lt;br /&gt;
This team makes sure that all material included in [[Main Page|PCGen]] meets any license requirements (not just the OGL).&lt;br /&gt;
&lt;br /&gt;
===[[Advertising]]===&lt;br /&gt;
This team deals with PCGen's advertising budget and where and when the advertising should occur.&lt;br /&gt;
&lt;br /&gt;
That should just about cover it!&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Main_Page&amp;diff=2478</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Main_Page&amp;diff=2478"/>
		<updated>2010-07-21T06:38:24Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Community */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
PCGen is an Open Source '''FREE''' Java based character generator for d20 based Role-Playing games, it has many '''[[PCGen Features|Features]]''' and some '''[[PCGen Requirements|Requirements]]''' in order to run.&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
To be the worlds most flexible d20 character generation and maintenance software.&lt;br /&gt;
&lt;br /&gt;
=Latest News!=&lt;br /&gt;
&lt;br /&gt;
'''[[Chris Chandler Named Content Silverback]]'''&lt;br /&gt;
&lt;br /&gt;
'''[[Pathfinder Bestiary Data Set Released to PCGen Users]]'''&lt;br /&gt;
&lt;br /&gt;
'''[http://iweb.dl.sourceforge.net/project/pcgen/PCGen%20Stable/5.16.2/pcgen-release-notes-5162.html/download PCGen v5.16.2 Release Notes]'''&lt;br /&gt;
&lt;br /&gt;
'''[http://cdnetworks-us-2.dl.sourceforge.net/project/pcgen/PCGen%20Unstable/5.17.3%20Alpha/pcgen-release-notes-5173.html PCGen v5.17.3 (Alpha) Release Notes]'''&lt;br /&gt;
&lt;br /&gt;
'''[http://jira.pcgen.org Issue tracking has moved to http://jira.pcgen.org http://jira.pcgen.org]'''&lt;br /&gt;
&lt;br /&gt;
=Community=&lt;br /&gt;
* [[Users]], (some who want to get straight to the [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/index.html documentation]!)&lt;br /&gt;
* [http://pcgen.sourceforge.net/08_sponsors.php Sponsors]&lt;br /&gt;
* [[Publishers]]&lt;br /&gt;
* [[Compatible 3rd Parties]]&lt;br /&gt;
* [[Conventions]]&lt;br /&gt;
* [[Mailing Lists and PCGen Links]]&lt;br /&gt;
* [http://jira.pcgen.org Issue Tracking] ('''Report Bugs and Feature Requests!''')&lt;br /&gt;
** [[JIRA Tracker List]]&lt;br /&gt;
* [[FAQ and Help]]&lt;br /&gt;
* [[Updating Homebrew Sets]]&lt;br /&gt;
&lt;br /&gt;
=Strategic Development=&lt;br /&gt;
* [[Roadmap]]&lt;br /&gt;
* [[Development Specs]]&lt;br /&gt;
* [[Future Development]]&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
* [[Explanation of Teams]]&lt;br /&gt;
* [[Full Team Member Listing]] is a full listing of our current volunteers.&lt;br /&gt;
&lt;br /&gt;
==Specific Teams==&lt;br /&gt;
* [[Board of Directors]] - (aka BoD), governs the project&lt;br /&gt;
* [[Architecture]]&lt;br /&gt;
* [[Code]] - (aka CM)&lt;br /&gt;
* [[Content]]&lt;br /&gt;
** [[Data]] (aka DM or LM)&lt;br /&gt;
** [[Output Sheets]] (aka OS)&lt;br /&gt;
** [[Documentation]]&lt;br /&gt;
* [[Admin]]&lt;br /&gt;
** [[Tracker]] (aka TM)&lt;br /&gt;
** [[Release]]&lt;br /&gt;
** [[Website]]&lt;br /&gt;
* [[Public Relations]]&lt;br /&gt;
** [[Publisher Liaison]] - (aka PL)&lt;br /&gt;
** [[Data License]]&lt;br /&gt;
** [[Advertising]]&lt;br /&gt;
&lt;br /&gt;
= Licensing =&lt;br /&gt;
The core PCGen code is licensed under the [http://www.opensource.org/licenses/lgpl-2.1.php LGPL ver 2.1] open source license.  Its various data sources are licensed under individual agreements, see the [[Data License]] team for details.&lt;br /&gt;
&lt;br /&gt;
= Getting Started with the Wiki =&lt;br /&gt;
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Bylaws&amp;diff=2415</id>
		<title>Bylaws</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Bylaws&amp;diff=2415"/>
		<updated>2010-07-08T08:44:09Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Article V: Meetings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=PCGen Bylaws=&lt;br /&gt;
'''Initially adopted: 02 Nov 2003'''&lt;br /&gt;
'''Last Amended: 28 September 2009'''&lt;br /&gt;
'''Version: 8'''&lt;br /&gt;
&lt;br /&gt;
==Article I (Name)==&lt;br /&gt;
The name of this organization is to be PCGen.&lt;br /&gt;
&lt;br /&gt;
==Article II (Purpose)==&lt;br /&gt;
The purpose of PCGen is to create a character generator for all role-playing games.&lt;br /&gt;
&lt;br /&gt;
==Article III (Membership)==&lt;br /&gt;
&lt;br /&gt;
===Section 1: Membership===&lt;br /&gt;
Membership to PCGen is open to anyone. Members of PCGen are all volunteers.&lt;br /&gt;
&lt;br /&gt;
===Section 2: PCGen Teams===&lt;br /&gt;
PCGen is composed of numerous sub-teams that make up the whole. These teams are:&lt;br /&gt;
&lt;br /&gt;
# [[Architecture]]&lt;br /&gt;
# [[Code]]&lt;br /&gt;
# [[Content]] ([[Data]], [[Documentation]] and [[Output Sheets]])&lt;br /&gt;
# [[Admin]] ([[Tracker]], [[Release]] and [[Website]])&lt;br /&gt;
# [[Public Relations]] ([[Publisher Liaison]], [[Data License]] and [[Advertising]])&lt;br /&gt;
&lt;br /&gt;
===Section 3: Ranking===&lt;br /&gt;
Each team is composed of one or more people. Each team will have at least one [[Explanation of Teams#Silverback|Silverback]]. The duties of the Silverback(s) are:&lt;br /&gt;
&lt;br /&gt;
# Help recruit and train new members&lt;br /&gt;
# If requested, help mediate any team-member related tensions&lt;br /&gt;
# Remove inactive members from their group&lt;br /&gt;
# Vote in the BoD meetings or nominate a 2nd to vote in their place&lt;br /&gt;
&lt;br /&gt;
Below the Silverbacks, in decreasing status, are the following ranks:&lt;br /&gt;
&lt;br /&gt;
* [[Explanation of Teams#Second|2nd]]&lt;br /&gt;
* [[Explanation of Teams#Chimp|Chimp]]&lt;br /&gt;
* [[Explanation of Teams#Gibbon|Gibbon]]&lt;br /&gt;
* [[Explanation of Teams#Tamarin|Tamarin]]&lt;br /&gt;
* [[Explanation of Teams#Lemur|Lemur]]&lt;br /&gt;
&lt;br /&gt;
==Article IV: Board of Directors==&lt;br /&gt;
&lt;br /&gt;
===Section 1===&lt;br /&gt;
PCGen shall be run by a [[Board of Directors]]. This board shall be constituted by at least one [[Explanation_of_Teams#Silverback|Silverback]] from each of the [[Explanation_of_Teams|Teams]] and be chaired by the [[Explanation_of_Teams#Chair Monkey|Chair Monkey]]. One person can represent more than one team if needed. The size of the Board may vary with time. Duties of the board shall include, but not be limited to:&lt;br /&gt;
&lt;br /&gt;
# Dealing with a tracker that needs clarification/prioritization or syntax that can’t be agreed upon.&lt;br /&gt;
# Resolving tension on or between team members.&lt;br /&gt;
# When someone has done work above and beyond the call of duty, the BoD needs to be aware of it and acknowledge it publicly.&lt;br /&gt;
# Observe any other team in PCGen. If a board member wishes to actively participate in that sub-team, they will need to follow the lead of that team’s [[Explanation_of_Teams#Silverback|Silverback]](s).&lt;br /&gt;
&lt;br /&gt;
===Section 2===&lt;br /&gt;
New Silverbacks shall be approved by a simple majority vote of the existing Silverbacks.&lt;br /&gt;
&lt;br /&gt;
===Section 3===&lt;br /&gt;
A list of the current members of the Board shall be available for anyone to see. This list will include what sub-team(s) they are from and a preferred method of contacting them.&lt;br /&gt;
&lt;br /&gt;
===Section 4===&lt;br /&gt;
The PCGen [[Board of Directors]] will at all times endeavour to minimise the number of discussions by the Board or their teams on private mailing lists.&lt;br /&gt;
&lt;br /&gt;
Rationale: This is in order to foster an open community where decision making is transparent to all.&lt;br /&gt;
&lt;br /&gt;
==Article V: Meetings==&lt;br /&gt;
&lt;br /&gt;
===Section 1===&lt;br /&gt;
The [[Board of Directors]] shall meet at least once a month. The [[Explanation_of_Teams#Chair Monkey|Chair Monkey]] shall announce these meetings, and how they are to be carried out, to the Board at least one week in advance. If any items before the Board are to be voted on, a quorum (50% + 1) of the Board shall be present at the meeting. If a quorum does not prevail, then no voting can take place. A log of the Board meetings shall be kept for posterity. The log of the Board meeting shall be provided to the PCGen volunteers so that they may see what is going with the group.&lt;br /&gt;
&lt;br /&gt;
===Section 2===&lt;br /&gt;
The Teams shall meet in a manner most conducive for their work, as guided by their [[Explanation_of_Teams#Silverback|Silverback]].&lt;br /&gt;
&lt;br /&gt;
===Section 3===&lt;br /&gt;
In the event that there is no active SIlverback or 2nd representing a team, the existing active Chimps of that team will lead by consensus and can collectively vote as a 2nd.&lt;br /&gt;
&lt;br /&gt;
==Article VI: Voting==&lt;br /&gt;
&lt;br /&gt;
===Section 1===&lt;br /&gt;
Each team shall have one vote. A Silverback has a vote which they can pass on to a 2nd in case of absence.&lt;br /&gt;
&lt;br /&gt;
===Section 2===&lt;br /&gt;
Most items brought before the Board to be voted on will only require a simple (50% + 1) majority to pass. Amending these Bylaws, increasing/decreasing the size of the board and disciplining a volunteer in PCGen shall require a major (2/3) majority. The [[Chair Monkey]] will vote in the case of a tie and the Benevolent Dictator has the power of Veto.&lt;br /&gt;
&lt;br /&gt;
==Article VII: Releases==&lt;br /&gt;
The [[Release]] [[Explanation_of_Teams#2nd|2nd]] has the special power of veto over releases.&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Bylaws&amp;diff=2414</id>
		<title>Bylaws</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Bylaws&amp;diff=2414"/>
		<updated>2010-07-08T08:37:06Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Section 4 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=PCGen Bylaws=&lt;br /&gt;
'''Initially adopted: 02 Nov 2003'''&lt;br /&gt;
'''Last Amended: 28 September 2009'''&lt;br /&gt;
'''Version: 8'''&lt;br /&gt;
&lt;br /&gt;
==Article I (Name)==&lt;br /&gt;
The name of this organization is to be PCGen.&lt;br /&gt;
&lt;br /&gt;
==Article II (Purpose)==&lt;br /&gt;
The purpose of PCGen is to create a character generator for all role-playing games.&lt;br /&gt;
&lt;br /&gt;
==Article III (Membership)==&lt;br /&gt;
&lt;br /&gt;
===Section 1: Membership===&lt;br /&gt;
Membership to PCGen is open to anyone. Members of PCGen are all volunteers.&lt;br /&gt;
&lt;br /&gt;
===Section 2: PCGen Teams===&lt;br /&gt;
PCGen is composed of numerous sub-teams that make up the whole. These teams are:&lt;br /&gt;
&lt;br /&gt;
# [[Architecture]]&lt;br /&gt;
# [[Code]]&lt;br /&gt;
# [[Content]] ([[Data]], [[Documentation]] and [[Output Sheets]])&lt;br /&gt;
# [[Admin]] ([[Tracker]], [[Release]] and [[Website]])&lt;br /&gt;
# [[Public Relations]] ([[Publisher Liaison]], [[Data License]] and [[Advertising]])&lt;br /&gt;
&lt;br /&gt;
===Section 3: Ranking===&lt;br /&gt;
Each team is composed of one or more people. Each team will have at least one [[Explanation of Teams#Silverback|Silverback]]. The duties of the Silverback(s) are:&lt;br /&gt;
&lt;br /&gt;
# Help recruit and train new members&lt;br /&gt;
# If requested, help mediate any team-member related tensions&lt;br /&gt;
# Remove inactive members from their group&lt;br /&gt;
# Vote in the BoD meetings or nominate a 2nd to vote in their place&lt;br /&gt;
&lt;br /&gt;
Below the Silverbacks, in decreasing status, are the following ranks:&lt;br /&gt;
&lt;br /&gt;
* [[Explanation of Teams#Second|2nd]]&lt;br /&gt;
* [[Explanation of Teams#Chimp|Chimp]]&lt;br /&gt;
* [[Explanation of Teams#Gibbon|Gibbon]]&lt;br /&gt;
* [[Explanation of Teams#Tamarin|Tamarin]]&lt;br /&gt;
* [[Explanation of Teams#Lemur|Lemur]]&lt;br /&gt;
&lt;br /&gt;
==Article IV: Board of Directors==&lt;br /&gt;
&lt;br /&gt;
===Section 1===&lt;br /&gt;
PCGen shall be run by a [[Board of Directors]]. This board shall be constituted by at least one [[Explanation_of_Teams#Silverback|Silverback]] from each of the [[Explanation_of_Teams|Teams]] and be chaired by the [[Explanation_of_Teams#Chair Monkey|Chair Monkey]]. One person can represent more than one team if needed. The size of the Board may vary with time. Duties of the board shall include, but not be limited to:&lt;br /&gt;
&lt;br /&gt;
# Dealing with a tracker that needs clarification/prioritization or syntax that can’t be agreed upon.&lt;br /&gt;
# Resolving tension on or between team members.&lt;br /&gt;
# When someone has done work above and beyond the call of duty, the BoD needs to be aware of it and acknowledge it publicly.&lt;br /&gt;
# Observe any other team in PCGen. If a board member wishes to actively participate in that sub-team, they will need to follow the lead of that team’s [[Explanation_of_Teams#Silverback|Silverback]](s).&lt;br /&gt;
&lt;br /&gt;
===Section 2===&lt;br /&gt;
New Silverbacks shall be approved by a simple majority vote of the existing Silverbacks.&lt;br /&gt;
&lt;br /&gt;
===Section 3===&lt;br /&gt;
A list of the current members of the Board shall be available for anyone to see. This list will include what sub-team(s) they are from and a preferred method of contacting them.&lt;br /&gt;
&lt;br /&gt;
===Section 4===&lt;br /&gt;
The PCGen [[Board of Directors]] will at all times endeavour to minimise the number of discussions by the Board or their teams on private mailing lists.&lt;br /&gt;
&lt;br /&gt;
Rationale: This is in order to foster an open community where decision making is transparent to all.&lt;br /&gt;
&lt;br /&gt;
==Article V: Meetings==&lt;br /&gt;
&lt;br /&gt;
===Section 1===&lt;br /&gt;
The [[Board of Directors]] shall meet at least once a month. The [[Explanation_of_Teams#Chair Monkey|Chair Monkey]] shall announce these meetings, and how they are to be carried out, to the Board at least one week in advance. If any items before the Board are to be voted on, a quorum (50% + 1) of the Board shall be present at the meeting. If a quorum does not prevail, then no voting can take place. A log of the Board meetings shall be kept for posterity. The log of the Board meeting shall be provided to the PCGen volunteers so that they may see what is going with the group.&lt;br /&gt;
&lt;br /&gt;
===Section 2===&lt;br /&gt;
The Teams shall meet in a manner most conducive for their work, as guided by their [[Explanation_of_Teams#Silverback|Silverback]].&lt;br /&gt;
&lt;br /&gt;
==Article VI: Voting==&lt;br /&gt;
&lt;br /&gt;
===Section 1===&lt;br /&gt;
Each team shall have one vote. A Silverback has a vote which they can pass on to a 2nd in case of absence.&lt;br /&gt;
&lt;br /&gt;
===Section 2===&lt;br /&gt;
Most items brought before the Board to be voted on will only require a simple (50% + 1) majority to pass. Amending these Bylaws, increasing/decreasing the size of the board and disciplining a volunteer in PCGen shall require a major (2/3) majority. The [[Chair Monkey]] will vote in the case of a tie and the Benevolent Dictator has the power of Veto.&lt;br /&gt;
&lt;br /&gt;
==Article VII: Releases==&lt;br /&gt;
The [[Release]] [[Explanation_of_Teams#2nd|2nd]] has the special power of veto over releases.&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Compatible_3rd_Parties&amp;diff=2412</id>
		<title>Compatible 3rd Parties</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Compatible_3rd_Parties&amp;diff=2412"/>
		<updated>2010-07-07T15:04:26Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Other Software and PCGen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Other Software and PCGen=&lt;br /&gt;
&lt;br /&gt;
The following publishers rely directly on or use converted forms of PCGen code and/or data and/or outputsheets and/or character files. These Publishers have our full blessing and are Officially PCGen compatible:&lt;br /&gt;
&lt;br /&gt;
* [http://www.metacraft.com/PCGScry/ PCGScry] - Pocket PC Program that displays PCGen exported characters&lt;br /&gt;
* [http://www.pcgenview.com/ pcgenview] - Palm Program that displays PCGen exported characters&lt;br /&gt;
* [http://www.openrpg.com/ OpenRPG] - Online Engine to assist remote PnP games&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2386</id>
		<title>Board of Directors</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2386"/>
		<updated>2010-06-29T11:49:25Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Observers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
The PCGen Board of Directors (BoD) governs the project. Each major team is represented by one [[Explanation_of_Teams#Silverback|Silverback]] (SB) and at least one [[Explanation_of_Teams#2nd|2nd]] for each team/sub team (in case of SB absence).&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
To provide overall governance to PCGen to ensure that it continues to be a leader in RPG character Generation&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Meeting Time]]&lt;br /&gt;
* [[Meeting Logs]]&lt;br /&gt;
* [[Bylaws]]&lt;br /&gt;
* [[Policies]]&lt;br /&gt;
* [[Holidays]]&lt;br /&gt;
&lt;br /&gt;
=Active Members=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey===&lt;br /&gt;
[[Martijn Verburg]] - The day to day project chairperson&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverbacks===&lt;br /&gt;
The Team leads&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || [[Architecture]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Code]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || [[Admin]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || [[Public Relations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Architecture]] || &lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Code]] ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Tir Gwaith|Andrew McDougall]] || [[Content]] || [[Data]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || [[Content]] || [[Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| Chuck Pint || [[Content]] || [[Output Sheets]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || [[Public Relations]] || [[Publisher Liaison]] ([[Publisher Liaison|PL]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || [[Public Relations]] || [[Data License]]&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Public Relations]] || [[Advertising]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Admin]] || [[Release]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || [[Admin]] || [[Tracker]]&lt;br /&gt;
|-&lt;br /&gt;
| Anestis Kozakis || [[Admin]] || [[Website]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Members=&lt;br /&gt;
&lt;br /&gt;
===Benevolent Dictator===&lt;br /&gt;
[[Bryan McRoberts]] - The Project Creator&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[Eddy Anthony]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverback===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team &lt;br /&gt;
|-&lt;br /&gt;
| [[Frank Kliewe]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eddy Anthony]] || [[Content]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Architecture]] ||&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Code]] ||&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || [[Admin]] || [[Tracker]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2385</id>
		<title>Board of Directors</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Board_of_Directors&amp;diff=2385"/>
		<updated>2010-06-29T11:48:44Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Silverbacks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
The PCGen Board of Directors (BoD) governs the project. Each major team is represented by one [[Explanation_of_Teams#Silverback|Silverback]] (SB) and at least one [[Explanation_of_Teams#2nd|2nd]] for each team/sub team (in case of SB absence).&lt;br /&gt;
&lt;br /&gt;
=Mission Statement=&lt;br /&gt;
To provide overall governance to PCGen to ensure that it continues to be a leader in RPG character Generation&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
* [[Meeting Time]]&lt;br /&gt;
* [[Meeting Logs]]&lt;br /&gt;
* [[Bylaws]]&lt;br /&gt;
* [[Policies]]&lt;br /&gt;
* [[Holidays]]&lt;br /&gt;
&lt;br /&gt;
=Active Members=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey===&lt;br /&gt;
[[Martijn Verburg]] - The day to day project chairperson&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[LegacyKing|Andrew Maitland]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverbacks===&lt;br /&gt;
The Team leads&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team&lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || [[Architecture]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Code]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing|Andrew Maitland]] || [[Admin]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || [[Public Relations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Architecture]] || &lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Code]] ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Tir Gwaith|Andrew McDougall]] || [[Content]] || [[Data]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith]] || [[Content]] || [[Documentation]]&lt;br /&gt;
|-&lt;br /&gt;
| Chuck Pint || [[Content]] || [[Output Sheets]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || [[Public Relations]] || [[Publisher Liaison]] ([[Publisher Liaison|PL]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || [[Public Relations]] || [[Data License]]&lt;br /&gt;
|-&lt;br /&gt;
| TBA || [[Public Relations]] || [[Advertising]]&lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[Admin]] || [[Release]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || [[Admin]] || [[Tracker]]&lt;br /&gt;
|-&lt;br /&gt;
| Anestis Kozakis || [[Admin]] || [[Website]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Observers===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Organisation&lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler]] || [http://www.codemonkeypublishing.com Code Monkey Publishing]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Members=&lt;br /&gt;
&lt;br /&gt;
===Benevolent Dictator===&lt;br /&gt;
[[Bryan McRoberts]] - The Project Creator&lt;br /&gt;
&lt;br /&gt;
===Chair Monkey Backup===&lt;br /&gt;
[[Eddy Anthony]] - Chairs meetings&lt;br /&gt;
&lt;br /&gt;
===Silverback===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team &lt;br /&gt;
|-&lt;br /&gt;
| [[Frank Kliewe]] || [[Content]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Eddy Anthony]] || [[Content]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Seconds===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Name !! Team !! Subteam&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Architecture]] ||&lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || [[Code]] ||&lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || [[Admin]] || [[Tracker]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=Full_Team_Member_Listing&amp;diff=2384</id>
		<title>Full Team Member Listing</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=Full_Team_Member_Listing&amp;diff=2384"/>
		<updated>2010-06-29T11:48:18Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Active Volunteers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
PCGen has been blessed with an amazing amount of volunteers over the course of its history. A historical listing of those who have contributed (past and present) can be seen in the [http://pcgen.sourceforge.net/autobuilds/pcgen-docs/acknowledgments/contributors.html Contributors] section of our Documentation. The current team is listed below:&lt;br /&gt;
&lt;br /&gt;
=Active Volunteers=&lt;br /&gt;
These volunteers are currently active on the PCGen project&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|SF Team Name !! align=&amp;quot;left&amp;quot;|Real Name !! align=&amp;quot;left&amp;quot;|SF ID !! align=&amp;quot;left&amp;quot;|Yahoo ID !! align=&amp;quot;left&amp;quot;|AIM ID !! align=&amp;quot;left&amp;quot;|ICQ !! align=&amp;quot;left&amp;quot;|Teams&lt;br /&gt;
|-&lt;br /&gt;
| [[Alec Ross]] || [[Alec Ross]] || haelduksf || haelduksf || haelduksf || 50824602 || C &lt;br /&gt;
|-&lt;br /&gt;
| [[Tir Gwaith|Andrew McDougall]] || [[Tir Gwaith|Andrew McDougall]] || tir-gwaith || tir_gwaith || TirGwaith || - || Ad, '''B''', C, Da, Do, DL, R, O, T, W&lt;br /&gt;
|-&lt;br /&gt;
| Andrew Wilson || Andrew Wilson || nuance || ytitendi || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Anestis Kozakis || Anestis Kozakis || kenosti || xeno_h || Xeno1970 || 837313 || '''B''', W &lt;br /&gt;
|-&lt;br /&gt;
| ankur rathi || Ankur Rathi || ankurrathi || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Arjan van Ginneken || Arjan van Ginneken || Sjappo || Arjan_van_Ginneken || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Brad Stiles || Brad Stiles || bsmeister || - || - || - || C, R &lt;br /&gt;
|-&lt;br /&gt;
| [[Chris Chandler|Barak]] || [[Chris Chandler]] || barako || Barak20021 || - || - || '''B''', Da, Do, O &lt;br /&gt;
|-&lt;br /&gt;
| Chuck Pint || Chuck Pint || chuckpint || chuckpint || - || - || '''B''', O &lt;br /&gt;
|-&lt;br /&gt;
| [[Connor Petty]] || [[Connor Petty]] || cpmeister || mistercpp2000 || MrBooyah314 || - || A, C &lt;br /&gt;
|-&lt;br /&gt;
| Dark Mike || - || swtrse || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Dave Cheever || David Cheever || takeyabue || - || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| [[David R. Bender]] || [[David R. Bender]] || papa_drb || Papa_DRB || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| [[Eddy Anthony]] || [[Eddy Anthony]] || eddyanthony || eddyanthony || - || - || (formerly '''B'''), C, Da, Do, O, R, T, W &lt;br /&gt;
|-&lt;br /&gt;
| [[Terry FitzSimons|Fitzs]] || [[Terry FitzSimons]] || fitzs || Fitzsimons_T_J || - || - || Da, Do&lt;br /&gt;
|-&lt;br /&gt;
| Fluxxdog || [[Michael W. Fender]] || fluxxdog || fluxxdog || fluxxdog || 346992562 ||  Da, Do, O, T&lt;br /&gt;
|-&lt;br /&gt;
| [[Greg Bingleman]] || [[Greg Bingleman]] || byngl || gsbingl || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Hades Lucifer || - || hadeslucifer || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| [[James Dempsey]] || [[James Dempsey]] || jdempsey || james_dempsey_au || tallandir || 21047253 || A, '''B''', C, R, W &lt;br /&gt;
|-&lt;br /&gt;
| Jason Buchanan || Jason Buchanan || lonejedi || - || CMPLoneJedi70 || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Jayme Cox || Jayme Cox || jaymecox || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| [[Jonas Karlson|Jonas Karlsson]] || [[Jonas Karlson|Jonas Karlsson]] || jujutsunerd || pjak || jonask42 || 2345481 || C &lt;br /&gt;
|-&lt;br /&gt;
| [[LegacyKing]] || [[LegacyKing|Andrew Maitland]] || amaitland || paramedic4553 || drew0500 || 5830737 || '''B''', Da, Do, O, R, T, W, P &lt;br /&gt;
|-&lt;br /&gt;
| [[Martijn Verburg]] || [[Martijn Verburg]] || karianna || karianna03 || karianna02 || 39886145 || '''B''', C, Da, Do, O, T, W&lt;br /&gt;
|-&lt;br /&gt;
| MotorViper || Mark Jeffries || motorviper || MotorViper || || || C&lt;br /&gt;
|-&lt;br /&gt;
| [[Eric C Smith|Maredudd]] || [[Eric C Smith]] || maredudd800 || maredudd800 || Maredudd || - || Ad, '''B''', Da, Do, DL, P, T, W &lt;br /&gt;
|-&lt;br /&gt;
| [[User:Nylanfs|Paul Grosse]] || [[User:Nylanfs|Paul Grosse]] || nylanfs || Nylanfs || Nylan8 || 14397299 || '''B''', Da, DL, P, T &lt;br /&gt;
|-&lt;br /&gt;
| [[Paul W. King]] || [[Paul W. King]] || kingpaul || pkingdnd || ShutUpPaul || - || '''B''', Da, DL, O, P, T &lt;br /&gt;
|-&lt;br /&gt;
| Per Christian Henden || Per Christian Henden || perchrh || perchrh || - || 48325984 || C &lt;br /&gt;
|-&lt;br /&gt;
| Phantom of Krankor || Phantom of Krankor || y2krankor || - || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Robert Ward || Robert Ward || rward30 || rward_30 || - || - || R &lt;br /&gt;
|-&lt;br /&gt;
| [[Shelley Stephen|Shelley]] || [[Shelley Stephen]] || takenote61 || takenote61 || takenote61 || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| [[Stefan Radermacher]] || [[Stefan Radermacher]] || zaister || zaister || - || 6510566 || C, Da, Do, W &lt;br /&gt;
|-&lt;br /&gt;
| Thomas Cooper || Thomas Cooper || lordoxide || - || - || - || C, D, W &lt;br /&gt;
|-&lt;br /&gt;
| [[Tod Milam]] || [[Tod Milam]] || tmilam || twmilam || - || - || C, Da, R &lt;br /&gt;
|-&lt;br /&gt;
| [[Tom Parker]] || [[Tom Parker]] || thpr || thpr || - || - || A, '''B''', C, T&lt;br /&gt;
|-&lt;br /&gt;
| Zacharia Bickley || Zacharia Bickley  || kapnbanjo || - || - || - || -&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Passive Volunteers=&lt;br /&gt;
These volunteers are currently passive on the PCGen project, that usually means they have insightful things to say on our internal mailing lists, but don't have enough time left over from RL to add code etc :).  '''Please do not remove these people from SF'''&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|SF Team Name !! align=&amp;quot;left&amp;quot;|Real Name !! align=&amp;quot;left&amp;quot;|SF ID !! align=&amp;quot;left&amp;quot;|Yahoo ID !! align=&amp;quot;left&amp;quot;|AIM ID !! align=&amp;quot;left&amp;quot;|ICQ !! align=&amp;quot;left&amp;quot;|Teams&lt;br /&gt;
|-&lt;br /&gt;
| '''[[Bryan McRoberts]]''' || '''[[Bryan McRoberts]]''' || '''merton_monk''' || '''merton_monk''' || - || - || '''B,C''' &lt;br /&gt;
|-&lt;br /&gt;
| B. K. Oxley (binkley) || B. K. Oxley || binkley || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| Paul M. Lambert || Paul M. Lambert || plambert || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Thomas Clegg || Thomas Clegg || arknight || - || - || - || C&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Inactive Volunteers=&lt;br /&gt;
These volunteers are currently inactive on the PCGen project&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|SF Team Name !! align=&amp;quot;left&amp;quot;|Real Name !! align=&amp;quot;left&amp;quot;|SF ID !! align=&amp;quot;left&amp;quot;|Yahoo ID !! align=&amp;quot;left&amp;quot;|AIM ID !! align=&amp;quot;left&amp;quot;|ICQ !! align=&amp;quot;left&amp;quot;|Teams&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Aaron Divinsky || Aaron Divinsky || boomer70 || boomer70 || - || - || C, Da, Do&lt;br /&gt;
|-&lt;br /&gt;
| [[Andargor]] || - || Andargor || andargor || - || - || C, Da &lt;br /&gt;
|-&lt;br /&gt;
| apsen || Andriy Sen || apsen || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Bart || Bart Rompelman || necrodeath || - || - || - || T&lt;br /&gt;
|-&lt;br /&gt;
| Bill || Bill Neumann || lodivigo || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Brian || - || telechus || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Briarius || Brian Spurling || briarius || sirbriarius || SirBriari1 || 9007056 || - &lt;br /&gt;
|-&lt;br /&gt;
| Chad || - || litesgod || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Charles || Chuck Hazard || chuckhazard || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Charles Burkett]] || [[Charles Burkett]] || Kyth || Charlesb_06 || Phule50000 || - || Do, P &lt;br /&gt;
|-&lt;br /&gt;
| Schporto || Chris Donohue || chrisdonohue || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Dan Parks || [[Dan Parks]] || dbd22 || misanthropiclo || thedbd22 || - || C&lt;br /&gt;
|-&lt;br /&gt;
| David Lim || David Lim || aberrant80 || aberrant80 || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| David || David Rosenthal || rimbeaux || - || - || - || W &lt;br /&gt;
|-&lt;br /&gt;
| David Saulnier || David Saulnier || dsaulinar || - || - || - || Da&lt;br /&gt;
|-&lt;br /&gt;
| deltadave || David Lockwood || deltadave || roninkelt || deltadave || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Dennis Baker || Dennis Baker || mtbOgre || - || mtbogre || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Devon Jones || Devon Jones || soulcatcher || hunterd_us || - || - || A,B,C &lt;br /&gt;
|-&lt;br /&gt;
| [[Eduard Martinescu]] || [[Eduard Martinescu]] || arvoreen || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Edwin C Holley || Edwin C Holley || glasswalker || GlassWalkerTheurge1968 || - || - || R &lt;br /&gt;
|-&lt;br /&gt;
| Eric Jarman || Eric Jarman || oracleofbargth || - || - || - || C, Da&lt;br /&gt;
|-&lt;br /&gt;
| [[Frank Kliewe]] || [[Frank Kliewe]] || frank_kliewe || frank_kliewe || - || - || Da, Do, O, T&lt;br /&gt;
|-&lt;br /&gt;
| gawaine42 || Richard Bowers || gawaine42 || richardsbowers || richardsbowers || - || O &lt;br /&gt;
|-&lt;br /&gt;
| [[Jason Horner]] || [[Jason Horner]] || jlhorner1974 || jlhorner1974 || - || - || Da, O &lt;br /&gt;
|-&lt;br /&gt;
| Jasper Spaans || Jasper Spaans || jasperspaans || jasperspaans || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| [[Joe Frazier, Jr.]] || [[Joe Frazier, Jr.]] || jfrazierjr || joefrazierjr || jfrazierjr || - || C &lt;br /&gt;
|-&lt;br /&gt;
| John Zittlau || John Zittlau || naarok || naarok || naarok17 || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Josh || Josh Johnston || pucspifo || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Julio Esslinger Viegas || Julio Esslinger Viegas || julio_ev || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Dracorat || Keith Ratliff || dracorat || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Kent Behrends]] || [[Kent Behrends]] || bci || kent_behrends || KentAtBci || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Kevin Fernandes]] || [[Kevin Fernandes]] || darkstorm999 || kevin_fernandes01453 || darkstorm0000 || - || C &lt;br /&gt;
|-&lt;br /&gt;
| [[Koen Van Daele]] || [[Koen Van Daele]] || vandaelek || koen_van_daele || Kador99 || - || C, W&lt;br /&gt;
|-&lt;br /&gt;
| Kurt Wimmer || Kurt Wimmer || kwimmer || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Michael Beaver || Michael Beaver || michaelbeaver || - || - || - || B &lt;br /&gt;
|-&lt;br /&gt;
| Michael Durant || Michael Durant || miked_msn || miked_msn || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| Michael Gray || Michael Gray || mhgj || - || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Mike || - || javadrinker || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Peter Barker || Peter Barker || pjdb || - || - || - || C&lt;br /&gt;
|-&lt;br /&gt;
| PK Lucas || PK Lucas || pklucas || pklucas || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Phillip Ryan || Phillip Ryan || historyphil || phillipryan49 || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Ratheof Blithwyn || Anders Lindgren || blithwyn || - || - || - || Da &lt;br /&gt;
|-&lt;br /&gt;
| Reed Thornton || Reed Thornton || rthornton13 || - || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| [[Rick Ryker]] || [[Rick Ryker]] || kerrik || rick_ryker || Rick Ryker || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Sigurdur H. Olafsson || Sigurdur H. Olafsson || sholafsson || - || - || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| Theryon Stormrune || David T Jacobson || shadowcat || - || - || - || R &lt;br /&gt;
|-&lt;br /&gt;
| Tistur || Miriam Sexton || tistur || gryphondreams || tistur || - || Do &lt;br /&gt;
|-&lt;br /&gt;
| tlavalle || Tony Lavalle || tlavalle || - || - || - || C, O &lt;br /&gt;
|-&lt;br /&gt;
| Tymophil || Philippe Aube || tymophil_fr || - || - || - || -&lt;br /&gt;
|-&lt;br /&gt;
| Vincent || Vincent Yanda || lunaticlord || lunaticlord || - || - || - &lt;br /&gt;
|-&lt;br /&gt;
| Walter Duncan || Walter Duncan || wduncan || - || - || - || C &lt;br /&gt;
|-&lt;br /&gt;
| Walter Duncan || Walter Duncan || pcgen_autobuild || - || - || - || C &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Teams Key=&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! align=&amp;quot;left&amp;quot;|Key !! align=&amp;quot;left&amp;quot;|Team &lt;br /&gt;
|-&lt;br /&gt;
| A || [[Architecture]] &lt;br /&gt;
|-&lt;br /&gt;
| Ad || [[Advertising]] &lt;br /&gt;
|-&lt;br /&gt;
| B || [[Board of Directors]] &lt;br /&gt;
|-&lt;br /&gt;
| C || [[Code]] &lt;br /&gt;
|-&lt;br /&gt;
| Da || [[Data]] &lt;br /&gt;
|-&lt;br /&gt;
| Do || [[Documentation]] &lt;br /&gt;
|-&lt;br /&gt;
| DL || [[Data License]] &lt;br /&gt;
|-&lt;br /&gt;
| O || [[Output Sheets]] &lt;br /&gt;
|-&lt;br /&gt;
| P || [[Publisher Liaison]] &lt;br /&gt;
|-&lt;br /&gt;
| R || [[Release]] &lt;br /&gt;
|-&lt;br /&gt;
| T || [[Tracker]] &lt;br /&gt;
|-&lt;br /&gt;
| W || [[Website]] &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=UI_Overhaul&amp;diff=2357</id>
		<title>UI Overhaul</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=UI_Overhaul&amp;diff=2357"/>
		<updated>2010-06-24T09:42:41Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Global Changes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
PCGen is undertaking a UI overhaul, details below, .  It is being lead by [[Connor Petty]], [[James Dempsey]] and [[Tom Parker]] on the Code side and [[John Carimando]] and [[Kerry Kenneally]] on the Look and Feel side.&lt;br /&gt;
&lt;br /&gt;
==Other useful links==&lt;br /&gt;
* [[Old UI Overhaul Page]]&lt;br /&gt;
* '''Please give feedback here: [[Talk:UI_Overhaul]]'''&lt;br /&gt;
&lt;br /&gt;
=Overall Approach=&lt;br /&gt;
&lt;br /&gt;
# We feel that PCGen doesn't need a radical overhaul, it just needs lots of tweaks to the existing design to make it really feel like a RPG app.&lt;br /&gt;
# We feel that the UI overhaul from a design perspective can be done in lots and lots of small changes, hopefully making it easier for developers to tackle items as well as minimising the impact to end users.  They have a fairly long list of small changes to make, which will be detailed in this wiki over time.&lt;br /&gt;
# The designers will run any possible designs past the developers first as they're not 100% aware of the limitations of Swing and they want to make sure that their designs aren't too time consuming or too difficult to implement.  This will probably be in the format of screenshots and/or text.&lt;br /&gt;
# Once a rough design is agreed upon between the developers and the designers then the idea is to throw it to the community for discussion (wiki/polls etc where appropriate).  The idea is to give the users a solid idea to discuss around as opposed to a free-for-all.  The design is then finalised once the community has had its say.&lt;br /&gt;
# Developers can pick up on the various small feature requests and develop them on trunk and/or on cdomui branch as appropriate.  These changes can be applied over the course of 6.0/6.2 and beyond, we realise that we already have enough on our plates for 6.0!&lt;br /&gt;
&lt;br /&gt;
=Global Changes=&lt;br /&gt;
&lt;br /&gt;
* New Minimum supported resolution of 1024x600&lt;br /&gt;
* [[Sort Dropdowns]]&lt;br /&gt;
* [[Logo]]&lt;br /&gt;
&lt;br /&gt;
=Tabs=&lt;br /&gt;
&lt;br /&gt;
* [[Summary]]&lt;br /&gt;
* TBA&lt;br /&gt;
&lt;br /&gt;
=Demo=&lt;br /&gt;
&lt;br /&gt;
You can now give the new user interface a go on your own PC. As part of the autobuild of the CDOM UI branch, we are now creating a downloadable program. Go to [http://www.pcgen-test.org/cdomui/download.html CDOM UI Autobuild] to download the files. To run it you will need the following:&lt;br /&gt;
* [http://www.pcgen-test.org/cdomui/downloads/pcgen-1.0-SNAPSHOT-libraries.zip Libraries archive] - only needs to be downloaded once&lt;br /&gt;
* [http://www.pcgen-test.org/cdomui/downloads/pcgen-1.0-SNAPSHOT-program.zip Program archive] - The PCGen program as updated with the latest UI work, download this regularly to try out our latest work.&lt;br /&gt;
* A source of data - copy the data, outputsheets, preview and system folders from your 5.16.2 or later install of pcgen or grab the data download from the [http://www.pcgen-test.org/autobuilds/downloads/pcgen-5.17.0-data.zip main autobuild] .&lt;br /&gt;
Note: To get the above files you will need to be logged into Hudson. A more widely accessible distribution channel will be set up shortly.&lt;br /&gt;
&lt;br /&gt;
==Demo Status==&lt;br /&gt;
* 2010-05-10: Characters can be created, but not loaded or saved.&lt;br /&gt;
* 2010-05-06: Sources can now be loaded, but characters are currently not accessible.&lt;br /&gt;
* 2010-05-01: New downloadable demo added to CI process.&lt;br /&gt;
* 2010-04-30: Revised load sources page added. Sources cannot be loaded and characters are not currently accessible.&lt;br /&gt;
&lt;br /&gt;
=Code Details=&lt;br /&gt;
&lt;br /&gt;
==New Utilities==&lt;br /&gt;
&lt;br /&gt;
* JTreeViewTable&lt;br /&gt;
:This class is an improvement upon JTreeTable that uses a JTreeViewModel instead of a TreeTableModel to display the data in a JTreeTable. Use of the JTreeViewTable is preferred over use of the JTreeTablePane&lt;br /&gt;
&lt;br /&gt;
* ListFacade&lt;br /&gt;
:This is a new type of list format for which its interface contains read only methods. This is used in much of the facade layer due to since listeners can be attached to it to monitor changes to the list. The ListFacade has one of 3 types of change events: Element Added, Element Removed, and Contents Changed. The Element Added/Removed events contain not only the element that was added or removed from the list but also the index at which the event occurred. The Contents Changed event tells the listener that more than one of the elements in the list has been changed and the whole list should be considered changed.&lt;br /&gt;
&lt;br /&gt;
==Design Specification==&lt;br /&gt;
&lt;br /&gt;
The most important design aspect of the new UI is that it will have an inherent separation from the core by having all of the data accessible through facades. This means that the UI will never know the implementation of the underlying data.&lt;br /&gt;
&lt;br /&gt;
*Facade Implementation&lt;br /&gt;
:Facades are expected to override their toString() method because they are going to be displayed directly in the UI.&lt;br /&gt;
:The ListFacades that are returned from methods are expected to be the same instances each time that method is called. Also, any changes to the underlying data must be reflected with changes in the ListFacade.&lt;br /&gt;
&lt;br /&gt;
*Swing Components&lt;br /&gt;
:Any class that extends a swing component is expected to have a null constructor&lt;br /&gt;
&lt;br /&gt;
*CharacterInfo Tabs&lt;br /&gt;
:All of the data on these tabs must be loaded and saved to a hashtable. The reason for this is that all of the models that are used to display information should not need to be recreated each time that tab is selected. If the tab reuses the models then the amount of time between tab switching would become milliseconds instead of seconds. The models themselves are expected to listen to changes from the ListFacade that they associate with and update themselves accordingly.&lt;br /&gt;
&lt;br /&gt;
==Things to be done==&lt;br /&gt;
See [[UI_TODO_LIST]] for a shared memory of things to be done.&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
	<entry>
		<id>http://159.203.101.162/w/index.php?title=PCGen_Jira_Guide&amp;diff=2285</id>
		<title>PCGen Jira Guide</title>
		<link rel="alternate" type="text/html" href="http://159.203.101.162/w/index.php?title=PCGen_Jira_Guide&amp;diff=2285"/>
		<updated>2010-05-26T12:02:35Z</updated>

		<summary type="html">&lt;p&gt;Karianna: /* Closing an Issue */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;  {| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
Welcome to the Wiki section for the PCGen Jira Guide!  This guide will walk you through on how to enter Bugs and Feature Requests into our new JIRA issue tracking system.&lt;br /&gt;
&lt;br /&gt;
=Creating a new account=&lt;br /&gt;
&lt;br /&gt;
* Go to the [http://jira.pcgen.org/secure/Signup!default.jspa Registration Page] and fill out the details&lt;br /&gt;
&lt;br /&gt;
=Logging In=&lt;br /&gt;
&lt;br /&gt;
* Go to the [http://jira.pcgen.org Home page] and enter you username and password&lt;br /&gt;
&lt;br /&gt;
=Dashboard=&lt;br /&gt;
&lt;br /&gt;
Initially you will be shown a Dashboard with:&lt;br /&gt;
&lt;br /&gt;
* 6 projects down the LHS (Code, Data, Documentation, Output Sheets, New Source and New Tag)&lt;br /&gt;
* Your filters and any items assigned to you on the RHS&lt;br /&gt;
&lt;br /&gt;
=Entering a New Issue=&lt;br /&gt;
&lt;br /&gt;
* You can select the CREATE NEW ISSUE in the top menu or go directly to [http://jira.pcgen.org/secure/CreateIssue!default.jspa Create Issue Page]&lt;br /&gt;
&lt;br /&gt;
# Select the Project that this issue is appropriate for.&lt;br /&gt;
# Select the Issue Type&lt;br /&gt;
# Click on the Next button&lt;br /&gt;
&lt;br /&gt;
Try to pick these carefully, but don't worry too much if you get it wrong, the [[Tracker]] team will correct the details for you later if need be.&lt;br /&gt;
&lt;br /&gt;
In the next section you'll want to edit as many of the fields as possible, but on the ones marked with an asterisk are mandatory.&lt;br /&gt;
&lt;br /&gt;
==Mandatory Fields==&lt;br /&gt;
&lt;br /&gt;
* '''Summary''' - A brief description of the problem/feature you're reporting, e.g.  &amp;quot;Chainmail AC bonus doesn't stack with Shield&amp;quot;&lt;br /&gt;
* '''Priority''' - You can click on the (?) button to get an explanation of the priorities, or go directly to [http://jira.pcgen.org/secure/ShowConstantsHelp.jspa?decorator=popup#PriorityLevels Priority Levels Help Page]&lt;br /&gt;
* '''Reporter''' - This should be your username&lt;br /&gt;
&lt;br /&gt;
==Optional Fields==&lt;br /&gt;
&lt;br /&gt;
These fields are very useful to the PCGen team, so please do take time to fill them out as much as possible!&lt;br /&gt;
&lt;br /&gt;
* '''Component/s''' - What part(s) of PCGen does this issue affect?&amp;lt;br /&amp;gt;&lt;br /&gt;
'''NOTE'''  If there is a Component option you'd like to see in the list, please drop a note to the [http://games.groups.yahoo.com/group/pcgen_webteam/ PCGen Webteam] mailing list.&amp;lt;br /&amp;gt;&lt;br /&gt;
'''NOTE'''  If you are entering a CODE issue then please leave this blank, the Code team will set this once the issue has been confirmed.&lt;br /&gt;
* '''Affects Version/s''' - Which version of PCGen are you using?&lt;br /&gt;
* '''Fix Version/s''' - If you are a team member and have a fair understanding on our roadmap, you can select which version of PCGen this will be fixed in.  Otherwise, just leave this blank, the [Tracker] team will allocate a Fix Version later.&lt;br /&gt;
* '''Assignee''' - If you are a team member or a team member has specifically asked you to assign it to them then you can select that person here.&lt;br /&gt;
* '''Environment''' - Here we'd like you to put in your Operating System, the version of Java that you're using and how much memeory you are running PCGen with&lt;br /&gt;
* '''Description''' - Enter the full description of the issue here, the more detail the better!&lt;br /&gt;
* '''Original Estimate''' - If you are a team member and already have a fair idea of how long it will take to fix this issue, then you can enter that here.&lt;br /&gt;
* '''Attachment''' - You can attach, screenshots, PCG files, Data files etc here.&lt;br /&gt;
&lt;br /&gt;
=Voting for an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
* You can click on the '''Vote''' link on the left hand menu.  The more votes an issue has means that it is more likely that the PCGen team will Roadmap this issue!&lt;br /&gt;
&lt;br /&gt;
=Viewing an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
There are some extra read-only fields that you may find useful when trying to track the history of changes for a JIRA:&lt;br /&gt;
&lt;br /&gt;
# '''Work Log''' - Shows a history of work logged against this issue, see [wiki.pcgen.org/index.php?title=PCGen_Jira_Guide#Logging_Work_Done]&lt;br /&gt;
# '''Change History''' - Shows a history of all changes made to this JIRA (including SVN Commits, Comments, Work Logged and more)&lt;br /&gt;
# '''Subversion Commits''' - Shows commit messages from committers that reference this JIRA&lt;br /&gt;
&lt;br /&gt;
=Editing an Existing Issue=&lt;br /&gt;
&lt;br /&gt;
==Starting Progress==&lt;br /&gt;
&lt;br /&gt;
Click on the '''Start Progress''' link in the left hand menu.   This will automatically set the Status to the next step in the workflow (for most projects this is '''In Progress''')&lt;br /&gt;
&lt;br /&gt;
==Logging Work Done==&lt;br /&gt;
&lt;br /&gt;
Click on the '''Log work done''' link in the left hand menu and then fill in the details in the next screen as appropriate&lt;br /&gt;
&lt;br /&gt;
==Resolving an Issue==&lt;br /&gt;
&lt;br /&gt;
You can set the status to Resolved if you think the problem has been fixed.&amp;lt;br /&amp;gt;&lt;br /&gt;
At this stage you should also set the '''Fix Version''' to the appropriate release (usually the next Alpha or a maintenance version).&lt;br /&gt;
&lt;br /&gt;
==Closing an Issue==&lt;br /&gt;
&lt;br /&gt;
You can set the status to Closed if problem has been fixed and that the fix has been verified.&amp;lt;br /&amp;gt;&lt;br /&gt;
This should be done after a release is cut but '''before''' the subsequent release.  e.g.  If Fix Version is 5.17.3 and 5.17.3 is released then the issue should be closed '''before''' 5.17.4 is released.&lt;/div&gt;</summary>
		<author><name>Karianna</name></author>
		
	</entry>
</feed>