<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Warmerdam</id>
	<title>OSGeo - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Warmerdam"/>
	<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/wiki/Special:Contributions/Warmerdam"/>
	<updated>2026-04-13T09:18:28Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Subversion&amp;diff=128689</id>
		<title>Subversion</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Subversion&amp;diff=128689"/>
		<updated>2022-06-29T03:46:33Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Intro = &lt;br /&gt;
&lt;br /&gt;
OSGeo maintains a set of subversion services, running at '''http://svn.osgeo.org/''' (the [[TracsvnVM|tracsvn VM]] at OSU OSL).&lt;br /&gt;
&lt;br /&gt;
Subversion access is authenticated based on [http://www.osgeo.org/osgeo_userid OSGeo Userids] and each project has a committer list also maintained in LDAP.  Excellent general information on subversion is available from the [http://svnbook.red-bean.com/nightly/en/index.html Subversion Book].&lt;br /&gt;
&lt;br /&gt;
= Current Repositories = &lt;br /&gt;
&lt;br /&gt;
* Full list: http://svn.osgeo.org/&lt;br /&gt;
* http://svn.osgeo.org/fdo - FDO (also a bunch of old repositories exist for FDO)&lt;br /&gt;
* http://svn.osgeo.org/gdal - GDAL (now at https://github.com/osgeo/gdal)&lt;br /&gt;
* http://svn.osgeo.org/geotools - GeoTools ( now at https://github.com/geotools/geotools ) &lt;br /&gt;
* http://svn.osgeo.org/grass - GRASS GIS&lt;br /&gt;
* http://svn.osgeo.org/mapbender - Mapbender&lt;br /&gt;
* http://svn.osgeo.org/mapguide - MapGuide&lt;br /&gt;
* http://svn.osgeo.org/moss4g - MOSS4g&lt;br /&gt;
* http://svn.osgeo.org/osgeo - OSGeo &lt;br /&gt;
* http://svn.osgeo.org/ossim - OSSIM&lt;br /&gt;
* http://svn.osgeo.org/geos - GEOS&lt;br /&gt;
* http://svn.osgeo.org/mapserver - MapServer (now at https://github.com/mapserver/mapserver )&lt;br /&gt;
* http://svn.osgeo.org/qgis - QGIS (now at https://github.com/qgis/QGIS )&lt;br /&gt;
* http://svn.osgeo.org/fusion - Fusion&lt;br /&gt;
* http://svn.osgeo.org/osgeo4w - OSGeo4W&lt;br /&gt;
* http://svn.osgeo.org/postgis - PostGIS&lt;br /&gt;
* http://svn.osgeo.org/metacrs - MetaCRS&lt;br /&gt;
* http://svn.osgeo.org/geoinformatica/ - Geoinformatica&lt;br /&gt;
&lt;br /&gt;
= Administration = &lt;br /&gt;
&lt;br /&gt;
Frank Warmerdam (warmerdam), Howard Butler (hobu), and Chris Schmidt (crschmidt) are the primary contacts for Subversion administration issues.  Requests can be submitted via the [http://trac.osgeo.org/osgeo/newticket SAC Trac]. &lt;br /&gt;
&lt;br /&gt;
== Add/Remove Committer ==&lt;br /&gt;
&lt;br /&gt;
Any member of a subversion committer group can add and remove members to the commiter group at an url of the following form, with the project name substituted for gdal.  [http://www.osgeo.org/osgeo_userid  OSGeo Userids] has details on finding or creating OSGeo userids. &lt;br /&gt;
&lt;br /&gt;
  https://www.osgeo.org/cgi-bin/auth/ldap_group.py?group=gdal&lt;br /&gt;
&lt;br /&gt;
== Creating a repository ==&lt;br /&gt;
&lt;br /&gt;
Create the repository on the main server using the create_svn_repo.sh script on tracsvn.osgeo.org&lt;br /&gt;
   $ cd /osgeo/tools&lt;br /&gt;
   $ sudo ./create_svn_repo.sh project_name&lt;br /&gt;
&lt;br /&gt;
Create the authorization group for the svn repository by using the tool &lt;br /&gt;
   &lt;br /&gt;
   /osgeo/tools/create_ldap_group.py group_name admin_username&lt;br /&gt;
&lt;br /&gt;
This will prompt you for the manager password.&lt;br /&gt;
&lt;br /&gt;
Then restart apache gracefully:&lt;br /&gt;
&lt;br /&gt;
  $ sudo /etc/init.d/apache2 reload&lt;br /&gt;
&lt;br /&gt;
Notify hobu/mloskot about adding a mirror of the newly created repository to http://svnmirror.osgeo.org&lt;br /&gt;
&lt;br /&gt;
== Loading a repository from a dumpfile ==&lt;br /&gt;
&lt;br /&gt;
By root on main server:&lt;br /&gt;
   $ sudo svnadmin load /var/www/svn/repos/&amp;lt;repo_name&amp;gt; &amp;lt; /path/to/dumpfile&lt;br /&gt;
   $ sudo chown -R www-data:www-data /var/www/svn/repos/&amp;lt;repo_name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dumping a repository ==&lt;br /&gt;
&lt;br /&gt;
By root on main server:&lt;br /&gt;
   $ sudo svnadmin dump /var/www/svn/repos/&amp;lt;repo_name&amp;gt; &amp;gt; dumpfile&lt;br /&gt;
&lt;br /&gt;
== Recovering / unlocking repository ==&lt;br /&gt;
* subversion may lock if user ctl-c during checkout or checkout is interupted with an apache restart&lt;br /&gt;
* Need policy on who to contact and who can run 'svnadmin recover' as&lt;br /&gt;
priviledged access is needed (may need to stop/start apache to drop&lt;br /&gt;
requests to repository before recover)&lt;br /&gt;
&lt;br /&gt;
Subversion was upgraded to version 1.4.3 (30 Jan. 2007) to reduce the repository locking problem if ctl-c used to end a checkout.&lt;br /&gt;
&lt;br /&gt;
If the repository locks the following command should be used to recover the repository:&lt;br /&gt;
&lt;br /&gt;
   $ sudo svnadmin --wait recover /var/www/svn/repos/&amp;lt;repo_name&amp;gt;&lt;br /&gt;
   $ sudo chown -R www-data:www-data /var/www/svn/repos/&amp;lt;repo_name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In most cases this will work in the odd case that you are waiting a very long time for the command to run then apache may have to be restarted to drop anything accessing the repository and preventing the repository from being recovered&lt;br /&gt;
&lt;br /&gt;
   $ sudo /sbin/service httpd restart&lt;br /&gt;
   $ sudo svnadmin --wait recover /var/www/svn/repos/&amp;lt;repo_name&amp;gt;&lt;br /&gt;
   $ sudo chown -R www-data:www-data /var/www/svn/repos/&amp;lt;repo_name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Authz Rules =&lt;br /&gt;
&lt;br /&gt;
By default we use one LDAP &amp;quot;group&amp;quot; for an entire subversion repository.  Everyone in that group has commit priveledges on the whole repository.  However, some project desire to have subgroups.  For instance a core commiter group with update on the trunk source tree, and a broader contributor group that has commit access in a subarea, such as /sandbox.  We accomplish this using an &amp;quot;authz&amp;quot; file to hold the rules for the respository, and multiple LDAP groups.  &lt;br /&gt;
&lt;br /&gt;
A project wishing this will need to prepare an authz template file looking something like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[groups]&lt;br /&gt;
committers = @@gdal@@&lt;br /&gt;
sandbox = @@gdal_sandbox@@&lt;br /&gt;
&lt;br /&gt;
[/]&lt;br /&gt;
* = r&lt;br /&gt;
@committers = rw&lt;br /&gt;
&lt;br /&gt;
[/sandbox]&lt;br /&gt;
* = r&lt;br /&gt;
@committers = rw&lt;br /&gt;
@sandbox = rw&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This file should be submitted to SAC via a Trac ticket for placement on the server, and for creation of any corresponding LDAP groups.  Thereafter any successful update via https://www.osgeo.org/cgi-bin/auth/ldap_group.py?group=project will result in the authz being generated from the corresponding authz.tmpl.&lt;br /&gt;
&lt;br /&gt;
== Administration Notes ==&lt;br /&gt;
&lt;br /&gt;
The authz.tmpl files need to be named exactly authz.tmpl and place in the corresponding project repository directory, /var/www/svn/repos/gdal for instance.  Make sure the file is owned by www-date.www-data. &lt;br /&gt;
&lt;br /&gt;
The corresponding /etc/httpd/conf.d/subversion/project.conf file should look something like the following.  Note the removal of &amp;lt;LimitExcept&amp;gt; stuff, and reference to any specific ldap group as     well as the AuthzSVNAccessFile. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
    &amp;lt;Location /gdal&amp;gt;&lt;br /&gt;
      DAV svn&lt;br /&gt;
      SVNPath /var/www/svn/repos/gdal&lt;br /&gt;
      AuthzSVNAccessFile /var/www/svn/repos/gdal/authz&lt;br /&gt;
      Include conf.d/ldap_auth_url.inc&lt;br /&gt;
      Satisfy Any&lt;br /&gt;
      Require valid-user&lt;br /&gt;
    &amp;lt;/Location&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The LDAP groups should be created as ''groupOfNames'' nodes below the ou=svn element using PHPLDAPAdmin.  Make sure the membership is pre-initialized with an administrator for the project so they can do future updates themselves.  Try to keep the names of the groups clearly related to the base project.  eg. gdal, gdal_sandbox, gdal_documentors.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
The script /var/www/svn/site-local/ldap_update_authz.py script is run by an os.system() call out of ldap_group.py on any successful group update.  It will scan for /var/www/svn/repos/*/authz.tmpl.  &lt;br /&gt;
&lt;br /&gt;
There are lots of things that can go wrong in the script which has poor error checking, and it might only manifest as some or all of the authz file no longer getting regenerated.  So when an authz.tmpl file is put in place, or updated do a test update and verify that all authz files are being updated (check timestamps).&lt;br /&gt;
&lt;br /&gt;
Anyone (on osgeo1) can run ldap_update_authz.py, but if authz files are created by someone that apache.apache can't delete, problems may ensue.  If this occurs, the following as root may help.&lt;br /&gt;
&lt;br /&gt;
  cd /var/www/svn&lt;br /&gt;
  chown www-data.www-data */*/authz*&lt;br /&gt;
&lt;br /&gt;
= SVN Mirror = &lt;br /&gt;
&lt;br /&gt;
OSGeo uses &amp;quot;svnsync&amp;quot; to mirror SVN repositories to ensure we have a live SVN backup with full history.  Currently a mirror is maintained at Frank's system (iweb.gdal.org) but it is also possible for others to setup their own mirrors.  To mirror all repositories you can do the following steps:&lt;br /&gt;
&lt;br /&gt;
  % mkdir osgeo-svn-mirror&lt;br /&gt;
  % cd osgeo-svn-mirror&lt;br /&gt;
  % wget http://svn.osgeo.org/osgeo-svn-mirror.sh&lt;br /&gt;
  % chmod a+x osgeo-svn-mirror.sh&lt;br /&gt;
  % ./osgeo-svn-mirror.sh&lt;br /&gt;
&lt;br /&gt;
The above will run for a long time creating and mirroring repos in osgeo-svn-mirror/repos.  To keep them up to date setup a cronjob to run the osgeo-svn-mirror.sh script regularly. &lt;br /&gt;
&lt;br /&gt;
Currently the mirrored svn at iweb can be examined, but not updated using urls of the form:&lt;br /&gt;
&lt;br /&gt;
  svn://iweb.gdal.org/home/warmerda/osgeo-svn-mirror/repos/&amp;lt;project&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So for instance, gdal could be extracted like:&lt;br /&gt;
&lt;br /&gt;
  svn checkout svn://localhost/home/warmerda/osgeo-svn-mirror/repos/gdal/trunk/gdal gdal-local&lt;br /&gt;
&lt;br /&gt;
'''TODO: add details on how to setup apache so these repositories will just work.'''&lt;br /&gt;
&lt;br /&gt;
'''TODO: make sure that svnmirror.osgeo.org points to a live svn mirror, possibly at iweb.'''&lt;br /&gt;
&lt;br /&gt;
Note: SVN mirrors do *not* capture special per-repository configurations like authz files.  &lt;br /&gt;
&lt;br /&gt;
See also: [http://svn.apache.org/repos/asf/subversion/trunk/notes/svnsync.txt svnsync.txt] - useful general info on svnsync.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=User:Warmerda&amp;diff=126177</id>
		<title>User:Warmerda</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=User:Warmerda&amp;diff=126177"/>
		<updated>2021-01-29T21:42:38Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{OSGeo Member&lt;br /&gt;
|Name=Frank Warmerdam&lt;br /&gt;
|Company=Planet&lt;br /&gt;
|Country=Canada&lt;br /&gt;
|State=Ontario&lt;br /&gt;
|City=Eganville&lt;br /&gt;
|Coordinate=45.4630735,-77.27171&lt;br /&gt;
|LocalChapter=California Chapter&lt;br /&gt;
|Email=warmerdam@pobox.com&lt;br /&gt;
|Phone=+1 (650) 701-7823&lt;br /&gt;
|Website=&lt;br /&gt;
|Photo=warmerda.jpg&lt;br /&gt;
|Info=Frank Warmerdam is a C++, Java and Python geospatial software developer, primarily known for founding the [http://www.gdal.org GDAL/OGR] multi format geospatial data access and translation project.  He is also active on the PROJ.4, libtiff, and libgeotiff projects, was a founding director of OSGeo, and is a [[SAC:Primary_Administrators|Primary Administrator]] on the OSGeo [[SAC|System Administration Committee]].&lt;br /&gt;
}}&lt;br /&gt;
{{OSGeo Experience&lt;br /&gt;
|User=Yes&lt;br /&gt;
|Committee=Yes&lt;br /&gt;
|Board=No&lt;br /&gt;
|Coder=No&lt;br /&gt;
|Translate=No&lt;br /&gt;
|PSC=Yes&lt;br /&gt;
|ExBoard=Yes&lt;br /&gt;
|Charter=Yes&lt;br /&gt;
|Chair=No&lt;br /&gt;
|SolKatz=Yes&lt;br /&gt;
|Committer=No&lt;br /&gt;
}}&lt;br /&gt;
=== Frank Warmerdam ===&lt;br /&gt;
&lt;br /&gt;
[[File:warmerda.jpg|thumb|right|100px|Frank Warmerdam]]&lt;br /&gt;
&lt;br /&gt;
Employment: Google&lt;br /&gt;
&lt;br /&gt;
Location: Mountain View, California, USA&lt;br /&gt;
&lt;br /&gt;
Frank Warmerdam is a C++, Java and Python geospatial software developer, primarily known for founding the [http://www.gdal.org GDAL/OGR] multi format geospatial data access and translation project.  He is also active on the PROJ.4, libtiff, and libgeotiff projects, was a founding director of OSGeo, and is a [[SAC:Primary_Administrators|Primary Administrator]] on the OSGeo [[SAC|System Administration Committee]].  &lt;br /&gt;
&lt;br /&gt;
;OSGeo Experience [[File:OSGeo_exboard.png|link=OSGeo_Advocate#OSGeo_Board_Members]][[File:OSGeo_user.png|link=OSGeo_Advocate#OSGeo_Community_Members]] [[File:OSGeo_committee.png|link=OSGeo_Advocate#Developers_and_Committee_Members]] [[File:OSGeo_charter.png|link=OSGeo_Advocate#OSGeo_Charter_Members]] [[File:SolKatz.png|link=OSGeo_Advocate#Sol_Katz_Award]]&lt;br /&gt;
&lt;br /&gt;
;Contact &lt;br /&gt;
: Email: warmerdam@pobox.com&lt;br /&gt;
: Web:   http://pobox.com/~warmerdam/&lt;br /&gt;
: Phone: +1 (650) 701-7823&lt;br /&gt;
&lt;br /&gt;
;Spoken Language(s): English&lt;br /&gt;
&lt;br /&gt;
;Profile last updated: 17 August 2012&lt;br /&gt;
&lt;br /&gt;
[[Category:Former_OSGeo_Director]]&lt;br /&gt;
[[Category:Sol Katz Awardee]]&lt;br /&gt;
[[Category:OSGeo Advocate]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Daytona_Beach_Code_Sprint_2017&amp;diff=104988</id>
		<title>Daytona Beach Code Sprint 2017</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Daytona_Beach_Code_Sprint_2017&amp;diff=104988"/>
		<updated>2017-02-04T21:20:33Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== Gold Sponsors ===&lt;br /&gt;
[[File:GC-Group_logo.png|320px|Link=http://www.geocue.com]]&lt;br /&gt;
&lt;br /&gt;
=== Silver Sponsors ===&lt;br /&gt;
&lt;br /&gt;
=== Bronze Sponsors ===&lt;br /&gt;
[[File:CoordinateSolutions_TRANS.png|320px|link=http://www.coordinatesolutions.com/]]&lt;br /&gt;
&lt;br /&gt;
[[file:Azavea_med-300x143.png|320px|link=http://www.azavea.com]]&lt;br /&gt;
&lt;br /&gt;
[[File:mobileGeographicslogo.png|320px|link=http://www.mobilegeographics.com]]&lt;br /&gt;
&lt;br /&gt;
[[File:RBT_Blue_and_White.png|320px|link=http://http://radiantblue.com/]]&lt;br /&gt;
&lt;br /&gt;
=== Venue Sponsor ===&lt;br /&gt;
&lt;br /&gt;
[[File:Erau_logo_images.jpeg|320px|link=https://erau.edu/]]&lt;br /&gt;
&lt;br /&gt;
=== Other/in-kind sponsors ===&lt;br /&gt;
&lt;br /&gt;
{| border=0 cellspacing=15 cellpadding=10&lt;br /&gt;
|&lt;br /&gt;
[[File:OSGeo_logo.png|260px|OSGeo|link=http://www.osgeo.org/]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.osgeo.org/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
Bring together project members to make decisions and tackle larger geospatial &lt;br /&gt;
problems as in previous years: &lt;br /&gt;
&lt;br /&gt;
* [[Paris Code Sprint 2016|Paris]] (2016)&lt;br /&gt;
* [[Philadelphia Code Sprint 2015|Philadelphia]] (2015)&lt;br /&gt;
* [[Vienna Code Sprint 2014|Vienna]] (2014)&lt;br /&gt;
* [[Boston Code Sprint 2013|Boston]] (2013)&lt;br /&gt;
* [[IslandWood Code Sprint 2012|Island Wood (Seattle)]] (2012)&lt;br /&gt;
* [[Montreal Code Sprint 2011|Montreal]] (2011)&lt;br /&gt;
* [[New York Code Sprint 2010|New York City]] (2010)&lt;br /&gt;
* [[Toronto Code Sprint 2009|Toronto]] (2009)&lt;br /&gt;
&lt;br /&gt;
== Other Events from January to March 2017 ==&lt;br /&gt;
&lt;br /&gt;
* FOSSGIS Hacking event January 20-22&lt;br /&gt;
* FOSS4G Asia January 26-29&lt;br /&gt;
* '''OSGeo's 11th birthday Feb 4'''&lt;br /&gt;
* FOSDEM Feb 4-5&lt;br /&gt;
* FOSS4G-IT (Genoa) Feb 8-11&lt;br /&gt;
* Daytona 500 NASCAR race Feb 26&lt;br /&gt;
* OGC Technical meeting March 7-11&lt;br /&gt;
&lt;br /&gt;
== Dates and Times ==&lt;br /&gt;
&lt;br /&gt;
Dates:  &lt;br /&gt;
* Sprint: Tuesday-Friday, Feb 7 to 10, 2017 (4 days)&lt;br /&gt;
* Welcome event: International Speed Way WingHouse Monday afternoon - Welcome to Daytona!&lt;br /&gt;
&lt;br /&gt;
== Location ==&lt;br /&gt;
&lt;br /&gt;
=== Coding Venue ===&lt;br /&gt;
* Embry Riddle Aeronautical University, College of Arts &amp;amp; Science (COAS) building: https://www.openstreetmap.org/way/361201184#map=16/29.1912/-81.0494&lt;br /&gt;
* Located 5 minutes from Daytona International Airport (DAB)&lt;br /&gt;
* Three Conference Rooms within COAS&lt;br /&gt;
* Bring your laptop, excellent wifi and printing available&lt;br /&gt;
* We'll eat on campus, to ease transportation burden&lt;br /&gt;
&lt;br /&gt;
=== Accommodations ===&lt;br /&gt;
Several hotels are within walking distance of the venue. Here are a few options:&lt;br /&gt;
{|border=1&lt;br /&gt;
|-&lt;br /&gt;
| '''Hotel Name''' || '''Price Range (USD)''' || '''TripAdvisor Rank''' || '''Distance''' || '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.marriott.com/hotels/travel/dabri-residence-inn-daytona-beach-speedway-airport/?pid=corptbta&amp;amp;scid=b661a3c4-9c47-48c8-9e13-75b66089dd79 Marriott Residence Inn] || 115$+ || [https://www.tripadvisor.ca/Hotel_Review-g34172-d596573-Reviews-Residence_Inn_Daytona_Beach_Speedway_Airport-Daytona_Beach_Florida.html #28 of 103] || 1.1 mile || Right next to University Campus&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.choicehotels.com/florida/daytona-beach/quality-inn-hotels/fl931 Quality Inn Daytona Speedway]  || 80-90$ || [https://www.tripadvisor.ca/Hotel_Review-g34172-d240235-Reviews-Quality_Inn_Daytona_Speedway-Daytona_Beach_Florida.html #3 of 103] || 2.4 miles || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Airport options ===&lt;br /&gt;
Airports to look at DAB - Daytona Beach International - Connects thru Atlanta on Delta, Charolette NC on American Airlines, and JFK from Jet Blue   this might help with connections ideas:  http://www.flydaytonafirst.com/schedule.stml&lt;br /&gt;
&lt;br /&gt;
DAB is super easy in/out 5 minutes away from Embry-Riddle Aeronautical University, actually the college is situated off the runway for the flight school.  Here are the other airports that might be cheaper on the surface, but between having to commute another hour plus the extra time dealing with the airports...DAB is probably $200 more to fly in/out of, but you save hours of transportation time and costs.  Of course if you are hitting Disney World while you are here or something, then fly out of Orlando or Sanford.  Or Kennedy Space Center which is an hour South, you could fly out of Melbourne FL or again Orlando.  MCO is the main Orlando airport and probably has the &amp;quot;cheapest flights&amp;quot; because of the volume, but security takes a good bit of time, and typically you need to check in 90 minutes early, and traffic in Orlando can build quickly.&lt;br /&gt;
&lt;br /&gt;
SFB is about 50 minutes South West and typically has good deals on Allegiant Airlines (no-frills)  http://www.orlandosanfordairport.com/&lt;br /&gt;
&lt;br /&gt;
MCO is about 90 minutes West in Orlando FL&lt;br /&gt;
&lt;br /&gt;
JAX is about 90 minutes North in Jacksonville FL&lt;br /&gt;
&lt;br /&gt;
== Schedule ==&lt;br /&gt;
&lt;br /&gt;
===   Mon Feb 6, 2017 Welcoming Event ===&lt;br /&gt;
Gathering at the Wing House, International Speedway location-&lt;br /&gt;
6:00 - 9:00 PM&lt;br /&gt;
&lt;br /&gt;
===   Tue Feb 7, 2017 - First Sprint Day / Evening ===&lt;br /&gt;
9:00  Breakfast on Campus &lt;br /&gt;
12:00 Lunch on Campus&lt;br /&gt;
&lt;br /&gt;
3:00 - 5:00 GIS Night Introduction for ERAU students, demonstrate current projects, introduce open source, OSGEO, to Embry-Riddle Students, discuss weeks goals.  10 Round tables with monitors set up around the room, bring a pictures, and show how your code is used for students and show them code.  ERAU has Unmanned Aerial Systems course (perfect for Open Drone Map), Mechanical Engineering - LIDAR/PDAL, Software Engineering - developers, Aviation/Weather Community - Satellite Imagery, remote Sensing, gdal/ogr/proj4; Aerospace Engineering - satellite imagery, deployment, imaging; Engineering Physics - all the above.  &lt;br /&gt;
&lt;br /&gt;
5:00 - 7:00 GIS Night for ERAU Faculty, Researchers, Administrators, Volusia County GIS Professionals - Introduction of OSGEO Sprinters and Projects being worked on this week, introduce OSGEO.  Short 10 minute presentations, with the goal of sparking an interest for faculty/researchers into the GIS Community (let steve@qpublic.net know if your interested in presenting). ERAU recently added a GIS Minor and has a renowned Computational Weather Program, extensive robotics teams, Google Self Driving Car Project, about 5000 technical students interested in Aviation/Aerospace.&lt;br /&gt;
&lt;br /&gt;
8:00 - 10:00 Ale House for a few pints and collaboration&lt;br /&gt;
&lt;br /&gt;
===   Wed Feb 8, 2017 - Second Sprint Day / Evening ===&lt;br /&gt;
9:00 Breakfast on Campus&lt;br /&gt;
12:00 Lunch on Campus&lt;br /&gt;
7:00 - 10:00 Ocean Deck for dinner and collaborative thinking and planning&lt;br /&gt;
&lt;br /&gt;
===   Thu Feb 9, 2017 - Third Sprint Day / Evening ===&lt;br /&gt;
9:00 Breakfast on Campus&lt;br /&gt;
12:00 Lunch on Campus&lt;br /&gt;
3:00 - 10:00 Daytona Internal Speedway for VIP Tour, Dinner, Collaboration/Socializing&lt;br /&gt;
&lt;br /&gt;
===   Fri Feb 10, 2017 - Fourth Sprint Day ===&lt;br /&gt;
9:00 Breakfast on Campus&lt;br /&gt;
12:00 Lunch on Campus&lt;br /&gt;
7:00 - 10:00 Crabby Joe's, Port Orange Pier, for dinner and collaborative thinking and planning (transportation provided)&lt;br /&gt;
&lt;br /&gt;
== Project Plans ==&lt;br /&gt;
(i.e what do you wish/want/plan to work on during the sprint ?)&lt;br /&gt;
&lt;br /&gt;
* Mapserver&lt;br /&gt;
* PDAL&lt;br /&gt;
* Open Drone Map&lt;br /&gt;
* GDAL/OGR, PROJ4&lt;br /&gt;
&lt;br /&gt;
== Social ideas ==&lt;br /&gt;
&lt;br /&gt;
If you need to take a break, some ideas close to the sprint place:&lt;br /&gt;
Daytona Beach!!! (5 miles away, water temp around 76F)&lt;br /&gt;
http://www.volusia.org/services/public-protection/beach-safety/beachcams-and-daily-safety-report.stml&lt;br /&gt;
&lt;br /&gt;
Daytona International Speedway (2 miles away, tours, driving experience)&lt;br /&gt;
https://www.daytonainternationalspeedway.com/&lt;br /&gt;
&lt;br /&gt;
Barnes Noble&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
&lt;br /&gt;
We are planning for attendance of ~50. Please add your name and the projects &lt;br /&gt;
you are planning to sprint and note the likeliness of your attendance.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: solid grey 1px; width:100%&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
|+ Participants&lt;br /&gt;
|-&lt;br /&gt;
| # || Participant || Country || Organization || Arrival ||  Departure || Project Work on || Attendance / Notes&lt;br /&gt;
|-&lt;br /&gt;
|1 || [[User:remanuele|Rob Emanuele]] || US || Azavea || first day || last day || PDAL, GDAL || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|2 || [[User:dmorissette|Daniel Morissette]] || CA || Mapgears || first day || last day || MapServer, GDAL/OGR || Booked&lt;br /&gt;
|-&lt;br /&gt;
|3 || [[User:msmitherdc|Michael Smith]] || US || US Army Corp || first day || last day || MapServer, PDAL || Booked&lt;br /&gt;
|-&lt;br /&gt;
|4 || [[User:Schpidi|Stephan Meißl]] || AT || EOX || first day || last day || MapServer || Tentative&lt;br /&gt;
|-&lt;br /&gt;
|5 || [[User:smathermather|Stephen Mather]] || US || Cleveland Metroparks || first day || last day || OpenDroneMap || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|6 || [[User:hobu|Howard Butler]] || US || Hobu Inc || Monday|| Friday morning || PDAL, MapServer, Proj.4, GDAL || Booked&lt;br /&gt;
|-&lt;br /&gt;
|7 || [[User:tomkralidis|Tom Kralidis]] || CA || self || first day|| Friday afternoon || pycsw, OWSLib, GeoHealthCheck, pygeometa, other geopython, MapServer || Booked&lt;br /&gt;
|-&lt;br /&gt;
|8 || [[User:pomadchin|Grigory Pomadchin]] || RU || Azavea || first day || last day || PDAL || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|9 || [[User:sdlime|Steve Lime]] || US || self || first day || last day || MapServer || Booked&lt;br /&gt;
|-&lt;br /&gt;
|10 || [[User:dbenjamin|Dakota Benjamin]] || US || Cleveland Metroparks || first day || last day || OpenDroneMap || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|11 ||Steve Lehr || US || ERAU || first day || last day || Mapserver, PDAL || Booked&lt;br /&gt;
|-&lt;br /&gt;
|12 ||[[User:warmerda|Frank Warmerdam]] || hmm || Planet Labs || first day || last day || GDAL, PROJ.4 || Booked&lt;br /&gt;
|-&lt;br /&gt;
|13 ||[[User:connormanning|Connor Manning]] || US || Hobu Inc || first day || last day || PDAL, Entwine, Greyhound || Booked&lt;br /&gt;
|-&lt;br /&gt;
|14 ||[[User:chambbj|Brad Chambers]] || US || RadiantBlue || Monday || Friday morning || PDAL || Booked&lt;br /&gt;
|-&lt;br /&gt;
|15 || Jim Hughes || US || CCRi || Monday afternoon || Friday morning || GeoMesa || Booked &lt;br /&gt;
|-&lt;br /&gt;
|16 || Tom Kunicki || US || CCRi || Monday afternoon || Friday morning || GeoMesa || Booked&lt;br /&gt;
|-&lt;br /&gt;
|-|#|| your name || country code || org || date || date || project name || Confirmed, tentative, etc &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Communication ==&lt;br /&gt;
&lt;br /&gt;
* Please join the mailing list: http://lists.osgeo.org/mailman/listinfo/tosprint&lt;br /&gt;
* IRC chat during the event: #tosprint Server: irc.freenode.net&lt;br /&gt;
* Twitter: #TOSprint ( https://twitter.com/search?q=tosprint )&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
Embry Riddle Flight Line -&amp;gt; https://www.google.com/search?q=embry+riddle+flight+line&amp;amp;source=lnms&amp;amp;tbm=isch&amp;amp;sa=X&amp;amp;ved=0ahUKEwj3vY-Ng9bRAhXCOBQKHRvYCJ0Q_AUICCgB&amp;amp;biw=1408&amp;amp;bih=692&lt;br /&gt;
&lt;br /&gt;
Daytona Beach -&amp;gt; https://www.google.com/search?q=daytona+speedway+photos&amp;amp;biw=1408&amp;amp;bih=692&amp;amp;source=lnms&amp;amp;tbm=isch&amp;amp;sa=X&amp;amp;ved=0ahUKEwi89bPAg9bRAhWDuhQKHRYLC6MQ_AUIBigB#tbm=isch&amp;amp;q=daytona+beach+photos&lt;br /&gt;
&lt;br /&gt;
Daytona Speedway Photos -&amp;gt; https://www.google.com/search?q=daytona+speedway+photos&amp;amp;biw=1408&amp;amp;bih=692&amp;amp;source=lnms&amp;amp;tbm=isch&amp;amp;sa=X&amp;amp;ved=0ahUKEwi89bPAg9bRAhWDuhQKHRYLC6MQ_AUIBigB&lt;br /&gt;
&lt;br /&gt;
Did we mention the Atlantic Ocean is 76F in January!&lt;br /&gt;
&lt;br /&gt;
== Costs ==&lt;br /&gt;
&lt;br /&gt;
Participants should plan for the following costs:&lt;br /&gt;
&lt;br /&gt;
* Travel to Daytona Beach&lt;br /&gt;
* Accommodation for four nights &lt;br /&gt;
&lt;br /&gt;
All other costs - food, outings and entertainment - should/will be covered by the sponsors&lt;br /&gt;
&lt;br /&gt;
== Financial == &lt;br /&gt;
&lt;br /&gt;
'''Detailed budget'''&lt;br /&gt;
* [[Daytona_Beach_Code_Sprint_2017_:_Budget|Budget]]&lt;br /&gt;
&lt;br /&gt;
== Individual preparation ==&lt;br /&gt;
&lt;br /&gt;
* Bring your own laptop&lt;br /&gt;
* Install GIT and compiler tools, and come with a working development environment&lt;br /&gt;
* If your laptop need it, video export adapter to DVI and/or VGA&lt;br /&gt;
* Optional: something to take pictures (camera, smartphone, small tablet...)&lt;br /&gt;
&lt;br /&gt;
== Sponsors ==&lt;br /&gt;
&lt;br /&gt;
We have three sponsorship levels:&lt;br /&gt;
&lt;br /&gt;
* Gold: &amp;gt;= 2500 USD&lt;br /&gt;
* Silver: 1500 USD&lt;br /&gt;
* Bronze: 750 USD&lt;br /&gt;
&lt;br /&gt;
We encourage sponsors to support nutriment and entertainment for the &lt;br /&gt;
sprinters as they work hard and play hard for four or five productive days. &lt;br /&gt;
Contributions will be put towards lunch, snacks, and dinner costs for the &lt;br /&gt;
sprinters, and potentially bringing in sprinters who might otherwise be unable &lt;br /&gt;
to attend. Any surplus at the end of the event will be turned over to OSGeo or &lt;br /&gt;
used for a future code sprint.&lt;br /&gt;
 &lt;br /&gt;
Sponsors will receive the following:&lt;br /&gt;
&lt;br /&gt;
* Your logo at the top of this page&lt;br /&gt;
* Mention in all of our public communication&lt;br /&gt;
* Our undying gratitude, which comes in handy when you least expect it (Remember that feature you wanted...) &lt;br /&gt;
* And as extra, for Silver and Gold: Kakemono in the event room (if you provide it)&lt;br /&gt;
&lt;br /&gt;
To sponsor, please contact steve@qpublic.net directly.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Code Sprints]]&lt;br /&gt;
[[Category:C Tribe Code Sprint]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Daytona_Beach_Code_Sprint_2017&amp;diff=104750</id>
		<title>Daytona Beach Code Sprint 2017</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Daytona_Beach_Code_Sprint_2017&amp;diff=104750"/>
		<updated>2017-01-19T00:45:14Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Participants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== Gold Sponsors ===&lt;br /&gt;
[[File:GC-Group_logo.png|320px|Link=http://www.geocue.com]]&lt;br /&gt;
&lt;br /&gt;
=== Silver Sponsors ===&lt;br /&gt;
&lt;br /&gt;
=== Bronze Sponsors ===&lt;br /&gt;
[[File:CoordinateSolutions_TRANS.png|320px|link=http://www.coordinatesolutions.com/]]&lt;br /&gt;
=== Venue Sponsor ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Other/in-kind sponsors ===&lt;br /&gt;
&lt;br /&gt;
{| border=0 cellspacing=15 cellpadding=10&lt;br /&gt;
|&lt;br /&gt;
[[File:OSGeo_logo.png|260px|OSGeo|link=http://www.osgeo.org/]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.osgeo.org/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
Bring together project members to make decisions and tackle larger geospatial &lt;br /&gt;
problems as in previous years: &lt;br /&gt;
&lt;br /&gt;
* [[Paris Code Sprint 2016|Paris]] (2016)&lt;br /&gt;
* [[Philadelphia Code Sprint 2015|Philadelphia]] (2015)&lt;br /&gt;
* [[Vienna Code Sprint 2014|Vienna]] (2014)&lt;br /&gt;
* [[Boston Code Sprint 2013|Boston]] (2013)&lt;br /&gt;
* [[IslandWood Code Sprint 2012|Island Wood (Seattle)]] (2012)&lt;br /&gt;
* [[Montreal Code Sprint 2011|Montreal]] (2011)&lt;br /&gt;
* [[New York Code Sprint 2010|New York City]] (2010)&lt;br /&gt;
* [[Toronto Code Sprint 2009|Toronto]] (2009)&lt;br /&gt;
&lt;br /&gt;
== Other Events from January to March 2017 ==&lt;br /&gt;
&lt;br /&gt;
* FOSSGIS Hacking event January 20-22&lt;br /&gt;
* FOSS4G Asia January 26-29&lt;br /&gt;
* '''OSGeo's 11th birthday Feb 4'''&lt;br /&gt;
* FOSDEM Feb 4-5&lt;br /&gt;
* FOSS4G-IT (Genoa) Feb 8-11&lt;br /&gt;
* Daytona 500 NASCAR race Feb 26&lt;br /&gt;
* OGC Technical meeting March 7-11&lt;br /&gt;
&lt;br /&gt;
== Dates and Times ==&lt;br /&gt;
&lt;br /&gt;
Dates:  &lt;br /&gt;
* Sprint: Tuesday-Friday, Feb 7 to 10, 2017 (4 days)&lt;br /&gt;
* Welcome event: TBD&lt;br /&gt;
&lt;br /&gt;
== Location ==&lt;br /&gt;
&lt;br /&gt;
=== Coding Venue ===&lt;br /&gt;
* Embry Riddle Aeronautical University, College of Arts &amp;amp; Science building: https://www.openstreetmap.org/way/361201184#map=16/29.1912/-81.0494&lt;br /&gt;
* Located 5 minutes from Daytona International Airport (DAB)&lt;br /&gt;
&lt;br /&gt;
=== Accommodations ===&lt;br /&gt;
Several hotels are within walking distance of the venue. Here are a few options:&lt;br /&gt;
{|border=1&lt;br /&gt;
|-&lt;br /&gt;
| '''Hotel Name''' || '''Price Range (USD)''' || '''TripAdvisor Rank''' || '''Distance''' || '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.marriott.com/hotels/travel/dabri-residence-inn-daytona-beach-speedway-airport/?pid=corptbta&amp;amp;scid=b661a3c4-9c47-48c8-9e13-75b66089dd79 Marriott Residence Inn] || 115$+ || [https://www.tripadvisor.ca/Hotel_Review-g34172-d596573-Reviews-Residence_Inn_Daytona_Beach_Speedway_Airport-Daytona_Beach_Florida.html #28 of 103] || 1.1 mile || Right next to University Campus&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.choicehotels.com/florida/daytona-beach/quality-inn-hotels/fl931 Quality Inn Daytona Speedway]  || 80-90$ || [https://www.tripadvisor.ca/Hotel_Review-g34172-d240235-Reviews-Quality_Inn_Daytona_Speedway-Daytona_Beach_Florida.html #3 of 103] || 2.4 miles || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Airport options ===&lt;br /&gt;
Airports to look at DAB - Daytona Beach International - Connects thru Atlanta on Delta, Charolette NC on American Airlines, and JFK from Jet Blue   this might help with connections ideas:  http://www.flydaytonafirst.com/schedule.stml&lt;br /&gt;
&lt;br /&gt;
DAB is super easy in/out 5 minutes away from Embry-Riddle Aeronautical University, actually the college is situated off the runway for the flight school.  Here are the other airports that might be cheaper on the surface, but between having to commute another hour plus the extra time dealing with the airports...DAB is probably $200 more to fly in/out of, but you save hours of transportation time and costs.  Of course if you are hitting Disney World while you are here or something, then fly out of Orlando or Sanford.  Or Kennedy Space Center which is an hour South, you could fly out of Melbourne FL or again Orlando.  MCO is the main Orlando airport and probably has the &amp;quot;cheapest flights&amp;quot; because of the volume, but security takes a good bit of time, and typically you need to check in 90 minutes early, and traffic in Orlando can build quickly.&lt;br /&gt;
&lt;br /&gt;
SFB is about 50 minutes South West and typically has good deals on Allegiant Airlines (no-frills)  http://www.orlandosanfordairport.com/&lt;br /&gt;
&lt;br /&gt;
MCO is about 90 minutes West in Orlando FL&lt;br /&gt;
&lt;br /&gt;
JAX is about 90 minutes North in Jacksonville FL&lt;br /&gt;
&lt;br /&gt;
== Schedule ==&lt;br /&gt;
&lt;br /&gt;
===   Mon Feb 6, 2017 Welcoming Event ===&lt;br /&gt;
&lt;br /&gt;
===   Tue Feb 7, 2017 - First Sprint Day / Evening ===&lt;br /&gt;
&lt;br /&gt;
===   Wed Feb 8, 2017 - Second Sprint Day / Evening ===&lt;br /&gt;
&lt;br /&gt;
===   Thu Feb 9, 2017 - Third Sprint Day / Evening ===&lt;br /&gt;
&lt;br /&gt;
===   Fri Feb 10, 2017 - Fourth Sprint Day ===&lt;br /&gt;
&lt;br /&gt;
== Project Plans ==&lt;br /&gt;
(i.e what do you wish/want/plan to work on during the sprint ?)&lt;br /&gt;
&lt;br /&gt;
* &lt;br /&gt;
== Social ideas ==&lt;br /&gt;
&lt;br /&gt;
If you need to take a break, some ideas close to the sprint place:&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
&lt;br /&gt;
We are planning for attendance of ~50. Please add your name and the projects &lt;br /&gt;
you are planning to sprint and note the likeliness of your attendance.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: solid grey 1px; width:100%&amp;quot; class=&amp;quot;sortable&amp;quot;&lt;br /&gt;
|+ Participants&lt;br /&gt;
|-&lt;br /&gt;
| # || Participant || Country || Organization || Arrival ||  Departure || Project Work on || Attendance / Notes&lt;br /&gt;
|-&lt;br /&gt;
|1 || [[User:remanuele|Rob Emanuele]] || US || Azavea || first day || last day || PDAL, GDAL || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|2 || [[User:dmorissette|Daniel Morissette]] || CA || Mapgears || first day || last day || MapServer, GDAL/OGR || Booked&lt;br /&gt;
|-&lt;br /&gt;
|3 || [[User:msmitherdc|Michael Smith]] || US || US Army Corp || first day || last day || MapServer, PDAL || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|4 || [[User:Schpidi|Stephan Meißl]] || AT || EOX || first day || last day || MapServer || Tentative&lt;br /&gt;
|-&lt;br /&gt;
|5 || [[User:smathermather|Stephen Mather]] || US || Cleveland Metroparks || first day || last day || OpenDroneMap || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|6 || [[User:hobu|Howard Butler]] || US || Hobu Inc || Monday|| Friday morning || PDAL, MapServer, Proj.4, GDAL || Booked&lt;br /&gt;
|-&lt;br /&gt;
|7 || [[User:tomkralidis|Tom Kralidis]] || CA || self || first day|| Friday afternoon || pycsw, OWSLib, GeoHealthCheck, pygeometa, other geopython, MapServer || Booked&lt;br /&gt;
|-&lt;br /&gt;
|8 || [[User:pomadchin|Grigory Pomadchin]] || RU || Azavea || first day || last day || PDAL || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|9 || [[User:sdlime|Steve Lime]] || US || self || first day || last day || MapServer || Booked&lt;br /&gt;
|-&lt;br /&gt;
|10 || [[User:dbenjamin|Dakota Benjamin]] || US || Cleveland Metroparks || first day || last day || OpenDroneMap || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|11 ||Steve Lehr || US || ERAU || first day || last day || Mapserver, PDAL || Booked&lt;br /&gt;
|-&lt;br /&gt;
|12 ||[[User:jive|Jody Garnett]] || Canada || Boundless || first day || last day || GeoTools || Perhaps&lt;br /&gt;
|-&lt;br /&gt;
|13 ||[[User:warmerda|Frank Warmerdam]] || hmm || Planet Labs || first day || last day || GDAL, PROJ.4 || Highly Likely&lt;br /&gt;
|-&lt;br /&gt;
|-|#|| your name || country code || org || date || date || project name || Confirmed, tentative, etc &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Communication ==&lt;br /&gt;
&lt;br /&gt;
* Please join the mailing list: http://lists.osgeo.org/mailman/listinfo/tosprint&lt;br /&gt;
* IRC chat during the event: #tosprint Server: irc.freenode.net&lt;br /&gt;
* Twitter: #TOSprint ( https://twitter.com/search?q=tosprint )&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
&lt;br /&gt;
== Costs ==&lt;br /&gt;
&lt;br /&gt;
Participants should plan for the following costs:&lt;br /&gt;
&lt;br /&gt;
* Travel to Daytona Beach&lt;br /&gt;
* Accommodation for four nights (including breakfast)&lt;br /&gt;
&lt;br /&gt;
All other costs - food, outings and entertainment - should/will be covered by the sponsors&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Financial == &lt;br /&gt;
&lt;br /&gt;
'''Detailed budget'''&lt;br /&gt;
* [[Daytona_Beach_Code_Sprint_2017_:_Budget|Budget]]&lt;br /&gt;
&lt;br /&gt;
== Individual preparation ==&lt;br /&gt;
&lt;br /&gt;
* Bring your own laptop&lt;br /&gt;
* Install GIT and compiler tools, and come with a working development environment&lt;br /&gt;
* If your laptop need it, video export adapter to DVI and/or VGA&lt;br /&gt;
* Optional: something to take pictures (camera, smartphone, small tablet...)&lt;br /&gt;
&lt;br /&gt;
== Sponsors ==&lt;br /&gt;
&lt;br /&gt;
We have three sponsorship levels:&lt;br /&gt;
&lt;br /&gt;
* Gold: &amp;gt;= 2500 USD&lt;br /&gt;
* Silver: 1500 USD&lt;br /&gt;
* Bronze: 750 USD&lt;br /&gt;
&lt;br /&gt;
We encourage sponsors to support nutriment and entertainment for the &lt;br /&gt;
sprinters as they work hard and play hard for four or five productive days. &lt;br /&gt;
Contributions will be put towards lunch, snacks, and dinner costs for the &lt;br /&gt;
sprinters, and potentially bringing in sprinters who might otherwise be unable &lt;br /&gt;
to attend. Any surplus at the end of the event will be turned over to OSGeo or &lt;br /&gt;
used for a future code sprint.&lt;br /&gt;
 &lt;br /&gt;
Sponsors will receive the following:&lt;br /&gt;
&lt;br /&gt;
* Your logo at the top of this page&lt;br /&gt;
* Mention in all of our public communication&lt;br /&gt;
* Our undying gratitude, which comes in handy when you least expect it (Remember that feature you wanted...) &lt;br /&gt;
* And as extra, for Silver and Gold: Kakemono in the event room (if you provide it)&lt;br /&gt;
&lt;br /&gt;
To sponsor, please contact steve@qpublic.net directly.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Code Sprints]]&lt;br /&gt;
[[Category:C Tribe Code Sprint]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=User_talk:Afreeman_foss4g&amp;diff=96418</id>
		<title>User talk:Afreeman foss4g</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=User_talk:Afreeman_foss4g&amp;diff=96418"/>
		<updated>2016-02-09T04:35:07Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''OSGeo Wiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Warmerda|Warmerda]] ([[User talk:Warmerda|talk]]) 20:35, 8 February 2016 (PST)&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=User:Afreeman_foss4g&amp;diff=96417</id>
		<title>User:Afreeman foss4g</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=User:Afreeman_foss4g&amp;diff=96417"/>
		<updated>2016-02-09T04:35:07Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Web mapping services manager at MassGIS, MassIT, Commonwealth of MA&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=User_talk:Andrewc&amp;diff=96370</id>
		<title>User talk:Andrewc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=User_talk:Andrewc&amp;diff=96370"/>
		<updated>2016-02-05T16:44:38Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''OSGeo Wiki''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Warmerda|Warmerda]] ([[User talk:Warmerda|talk]]) 08:44, 5 February 2016 (PST)&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=User:Andrewc&amp;diff=96369</id>
		<title>User:Andrewc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=User:Andrewc&amp;diff=96369"/>
		<updated>2016-02-05T16:44:38Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Provide research computing support to staff and students at a university in the South West of England ... relevant interests include UNIX/GNU Linux, GIS, Python scripting and data management etc.&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Trac&amp;diff=84246</id>
		<title>Trac</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Trac&amp;diff=84246"/>
		<updated>2015-05-29T01:05:30Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Procedures */ add Making trac read-only section.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary = &lt;br /&gt;
&lt;br /&gt;
Trac 0.11.7 is running at http://trac.osgeo.org/ (the tracsvn VM at OSU OSL).&lt;br /&gt;
&lt;br /&gt;
* [http://trac.edgewall.org/wiki/TracGuide Trac Guide]&lt;br /&gt;
* All data and configurations live under /var/www/trac&lt;br /&gt;
* virtual server configurations are under /etc/httpd/conf.d/trac&lt;br /&gt;
* [http://trac.osgeo.org/ Existing Instances]&lt;br /&gt;
* Actual python is installed in /usr/lib/python2.3/site-packages/trac&lt;br /&gt;
* Frank Warmerdam and Howard Butler have configuration experience, and can help maintain instances.&lt;br /&gt;
* available plugins:&lt;br /&gt;
** [http://trac-hacks.org/wiki/TocMacro TOC] - multi page tables of contents.&lt;br /&gt;
** MediaWikiMacro - provides media wiki like format support (link? details?&lt;br /&gt;
** [http://trac-hacks.org/wiki/DoxygenPlugin TracDoxygen] - mix doxygen docs into trac interface (needs extra admin support)&lt;br /&gt;
** SecureTickets - The authz policy mechanism provides fine-grained permissions for tickets.&lt;br /&gt;
&lt;br /&gt;
= Procedures = &lt;br /&gt;
&lt;br /&gt;
== Local Customizations == &lt;br /&gt;
&lt;br /&gt;
The file /usr/lib/python2.3/site-packages/trac/notification.py was substantially modified to support looking up email addresses in LDAP, and will need to be re-adjusted if we upgrade to a new version of Trac.  &lt;br /&gt;
&lt;br /&gt;
* http://trac.osgeo.org/osgeo/ticket/39&lt;br /&gt;
&lt;br /&gt;
== Creating a trac instance ==&lt;br /&gt;
&lt;br /&gt;
   $ sudo createdb -U postgres trac_&amp;lt;proj_name&amp;gt;&lt;br /&gt;
   $ sudo trac-admin /var/www/trac/&amp;lt;proj_name&amp;gt; initenv&lt;br /&gt;
&lt;br /&gt;
* Make sure to set the db connection to postgres://postgres@/trac_&amp;lt;proj_name&amp;gt;&lt;br /&gt;
* Use /var/www/svn/repos/&amp;lt;proj_name&amp;gt; for the svn path&lt;br /&gt;
&lt;br /&gt;
   $ sudo trac-admin /var/www/trac/&amp;lt;proj_name&amp;gt; permission add &amp;lt;osgeo_userid&amp;gt; TRAC_ADMIN&lt;br /&gt;
   $ sudo chown -R www-data:www-data /var/www/trac/&amp;lt;proj_name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Update /var/www/trac//&amp;lt;proj_name&amp;gt;/conf/trac.ini to enable email notification.&lt;br /&gt;
* Add virtual host file /etc/apache2/conf.d/trac/&amp;lt;proj_name&amp;gt;.conf enabling LDAP based authentication. &lt;br /&gt;
* Logo can be referenced in /var/www/trac/&amp;lt;proj_name&amp;gt;/conf/trac.ini and placed in /var/www/trac/&amp;lt;proj_name&amp;gt;/htdocs&lt;br /&gt;
* modify webadmin.* setting in trac.ini to enabled for web based administration.&lt;br /&gt;
* Add to /var/www/trac/index.html&lt;br /&gt;
* Regenerate the robots.txt file with the command:&lt;br /&gt;
&lt;br /&gt;
  $ sudo /var/www/trac/mkrobots.sh&lt;br /&gt;
&lt;br /&gt;
Recommended Trac permissions:&lt;br /&gt;
        anonymous       BROWSER_VIEW&lt;br /&gt;
        anonymous       CHANGESET_VIEW&lt;br /&gt;
        anonymous       FILE_VIEW&lt;br /&gt;
        anonymous       LOG_VIEW&lt;br /&gt;
        anonymous       MILESTONE_VIEW&lt;br /&gt;
        anonymous       REPORT_SQL_VIEW&lt;br /&gt;
        anonymous       REPORT_VIEW&lt;br /&gt;
        anonymous       ROADMAP_VIEW&lt;br /&gt;
        anonymous       SEARCH_VIEW&lt;br /&gt;
        anonymous       TICKET_VIEW&lt;br /&gt;
        anonymous       TIMELINE_VIEW&lt;br /&gt;
        anonymous       WIKI_VIEW&lt;br /&gt;
        authenticated   TICKET_CHGPROP&lt;br /&gt;
        authenticated   TICKET_CREATE&lt;br /&gt;
        authenticated   TICKET_MODIFY&lt;br /&gt;
        authenticated   WIKI_CREATE&lt;br /&gt;
        authenticated   WIKI_MODIFY&lt;br /&gt;
        developers      DOXYGEN_VIEW&lt;br /&gt;
        developers      MILESTONE_ADMIN&lt;br /&gt;
        developers      REPORT_ADMIN&lt;br /&gt;
        developers      REPORT_CREATE&lt;br /&gt;
        developers      WIKI_ADMIN&lt;br /&gt;
        warmerdam       developers&lt;br /&gt;
        warmerdam       TRAC_ADMIN&lt;br /&gt;
        ...&lt;br /&gt;
&lt;br /&gt;
SQL Compatability Issue with Postgres&lt;br /&gt;
&lt;br /&gt;
You will have to modify the SQL statement of the ''All Ticket by Milestone'' report. This can be done by accessing the trac report page and click the ''Edit report'' button (You need to be an admin of the trac instance). Check the sql statement of another trac instance and replace the one of the new instance.&lt;br /&gt;
&lt;br /&gt;
== Plugins ==&lt;br /&gt;
&lt;br /&gt;
Installed plugins (do in every trac instance, [http://trac.edgewall.org/wiki/TracPlugins installation guide]):&lt;br /&gt;
&lt;br /&gt;
* http://trac-hacks.org/wiki/TocMacro&lt;br /&gt;
&lt;br /&gt;
== Custom fields ==&lt;br /&gt;
&lt;br /&gt;
See http://trac.edgewall.org/wiki/TracTicketsCustomFields&lt;br /&gt;
&lt;br /&gt;
for example, in trac.ini:&lt;br /&gt;
&lt;br /&gt;
     [ticket-custom]&lt;br /&gt;
     platform = select&lt;br /&gt;
     platform.label = Platform&lt;br /&gt;
     platform.options = Unspecified|MSWindows 2K|MSWindows XP|MSWindows Vista|MSWindows CygWin|MacOSX|Linux|Other Unix|All&lt;br /&gt;
     platform.value = Unspecified&lt;br /&gt;
&lt;br /&gt;
     cpu = select&lt;br /&gt;
     cpu.label = CPU&lt;br /&gt;
     cpu.options = Unspecified|x86-32|x86-64|OSX/PPC|OSX/Intel|Other|All&lt;br /&gt;
     cpu.value = Unspecified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Secure Tickets ==&lt;br /&gt;
&lt;br /&gt;
See http://trac-hacks.org/wiki/SecureTicketsPlugin (Note that the installed plugin has been modified for OSGeo)&lt;br /&gt;
&lt;br /&gt;
The initial behavior of the plugin was to set all tickets private, then let the user &lt;br /&gt;
defines what are the public components. It has been modified this to fit osgeo needs. &lt;br /&gt;
Since everything is public by default, we'll set manually the private &lt;br /&gt;
components and everything else will be public.&lt;br /&gt;
&lt;br /&gt;
'''Using the plugin'''&lt;br /&gt;
&lt;br /&gt;
1- Enable the plugin in trac.ini:&lt;br /&gt;
&lt;br /&gt;
  [components]&lt;br /&gt;
  securetickets.* = enabled&lt;br /&gt;
&lt;br /&gt;
2- Modify the permission_policies in trac.ini:&lt;br /&gt;
&lt;br /&gt;
  permission_policies = SecureTicketsPolicy, DefaultPermissionPolicy, ...&lt;br /&gt;
&lt;br /&gt;
3- Define private components in trac.ini:&lt;br /&gt;
&lt;br /&gt;
  [securetickets]&lt;br /&gt;
  private_components = Vulnerabilities, Component2, ...&lt;br /&gt;
&lt;br /&gt;
To allow a user or a group to view the private tickets, you'll have to add him &lt;br /&gt;
the permission SECURE_TICKET_VIEW&lt;br /&gt;
&lt;br /&gt;
== Making Trac Read-Only == &lt;br /&gt;
&lt;br /&gt;
It appears the usual way of making Trac read-only is to remove all permissions on the &amp;quot;authenticated&amp;quot; group in the Admin/Permissions dialog.  This will remove the authenticated group and then only those with special admin priviledges can edit the wiki, create tickets, etc.&lt;br /&gt;
&lt;br /&gt;
== Timeline with filename indication ==&lt;br /&gt;
&lt;br /&gt;
  [timeline]&lt;br /&gt;
  changeset_long_messages = false&lt;br /&gt;
  changeset_show_files = 1&lt;br /&gt;
  changeset_files_count = 3&lt;br /&gt;
  default_daysback = 30&lt;br /&gt;
  ticket_show_details = false&lt;br /&gt;
&lt;br /&gt;
(see for example [http://trac.osgeo.org/grass/timeline here])&lt;br /&gt;
&lt;br /&gt;
== Hotcopy a trac instance ==&lt;br /&gt;
&lt;br /&gt;
   $ sudo trac-admin /var/www/html/trac/&amp;lt;proj_name&amp;gt; hotcopy /path/to/copy/trac/to&lt;br /&gt;
&lt;br /&gt;
= Trac Spam = &lt;br /&gt;
&lt;br /&gt;
We have had problems with trac spam when ticket create and ticket modify permissions were set to anonymous (the default).  To get around this most (all?) instances have been changed to require authenticated users to do these actions. &lt;br /&gt;
&lt;br /&gt;
But some projects strongly desire to support anonymous ticket creation and modification and at some point this might be viable using image captcha technology to keep out the spammers.  A Trac plugin for this is apparently under development, and described at:&lt;br /&gt;
&lt;br /&gt;
 http://trac.edgewall.org/browser/sandbox/spam-filter-captcha&lt;br /&gt;
&lt;br /&gt;
= Trac notification forward to project mailing list = &lt;br /&gt;
&lt;br /&gt;
To fwd notifications from trac to e.g. a project developers mailing list, you need to&lt;br /&gt;
* set in trac the mailing list address as default (trac Admin section)&lt;br /&gt;
* add the trac@osgeo.org address (or trac_osgeo@.., or ...) in Mailman to&lt;br /&gt;
** &amp;quot;Privacy options&amp;quot;&lt;br /&gt;
*** &amp;quot;Subscription rules&amp;quot;&lt;br /&gt;
*** &amp;quot;[Sender filters]&amp;quot; &lt;br /&gt;
**** &amp;quot;Non-member filters&amp;quot;&lt;br /&gt;
***** &amp;quot;List of non-member addresses whose postings should be automatically accepted.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* As the mail may be addressed to &amp;quot;undisclosed recipients&amp;quot; instead of directly to the list, the messages may be held for moderator approval. To avoid this add &amp;quot;undisclosed recipients&amp;quot; to the list of acceptable aliases at&lt;br /&gt;
** &amp;quot;Privacy options&amp;quot;&lt;br /&gt;
*** &amp;quot;[Recipient filters]&amp;quot;&lt;br /&gt;
**** ''acceptable_aliases''&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Trac&amp;diff=84228</id>
		<title>Trac</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Trac&amp;diff=84228"/>
		<updated>2015-05-27T17:44:49Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: remove upgrade plan as it is complete and then some.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary = &lt;br /&gt;
&lt;br /&gt;
Trac 0.11.7 is running at http://trac.osgeo.org/ (the tracsvn VM at OSU OSL).&lt;br /&gt;
&lt;br /&gt;
* [http://trac.edgewall.org/wiki/TracGuide Trac Guide]&lt;br /&gt;
* All data and configurations live under /var/www/trac&lt;br /&gt;
* virtual server configurations are under /etc/httpd/conf.d/trac&lt;br /&gt;
* [http://trac.osgeo.org/ Existing Instances]&lt;br /&gt;
* Actual python is installed in /usr/lib/python2.3/site-packages/trac&lt;br /&gt;
* Frank Warmerdam and Howard Butler have configuration experience, and can help maintain instances.&lt;br /&gt;
* available plugins:&lt;br /&gt;
** [http://trac-hacks.org/wiki/TocMacro TOC] - multi page tables of contents.&lt;br /&gt;
** MediaWikiMacro - provides media wiki like format support (link? details?&lt;br /&gt;
** [http://trac-hacks.org/wiki/DoxygenPlugin TracDoxygen] - mix doxygen docs into trac interface (needs extra admin support)&lt;br /&gt;
** SecureTickets - The authz policy mechanism provides fine-grained permissions for tickets.&lt;br /&gt;
&lt;br /&gt;
= Procedures = &lt;br /&gt;
&lt;br /&gt;
== Local Customizations == &lt;br /&gt;
&lt;br /&gt;
The file /usr/lib/python2.3/site-packages/trac/notification.py was substantially modified to support looking up email addresses in LDAP, and will need to be re-adjusted if we upgrade to a new version of Trac.  &lt;br /&gt;
&lt;br /&gt;
* http://trac.osgeo.org/osgeo/ticket/39&lt;br /&gt;
&lt;br /&gt;
== Creating a trac instance ==&lt;br /&gt;
&lt;br /&gt;
   $ sudo createdb -U postgres trac_&amp;lt;proj_name&amp;gt;&lt;br /&gt;
   $ sudo trac-admin /var/www/trac/&amp;lt;proj_name&amp;gt; initenv&lt;br /&gt;
&lt;br /&gt;
* Make sure to set the db connection to postgres://postgres@/trac_&amp;lt;proj_name&amp;gt;&lt;br /&gt;
* Use /var/www/svn/repos/&amp;lt;proj_name&amp;gt; for the svn path&lt;br /&gt;
&lt;br /&gt;
   $ sudo trac-admin /var/www/trac/&amp;lt;proj_name&amp;gt; permission add &amp;lt;osgeo_userid&amp;gt; TRAC_ADMIN&lt;br /&gt;
   $ sudo chown -R www-data:www-data /var/www/trac/&amp;lt;proj_name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Update /var/www/trac//&amp;lt;proj_name&amp;gt;/conf/trac.ini to enable email notification.&lt;br /&gt;
* Add virtual host file /etc/apache2/conf.d/trac/&amp;lt;proj_name&amp;gt;.conf enabling LDAP based authentication. &lt;br /&gt;
* Logo can be referenced in /var/www/trac/&amp;lt;proj_name&amp;gt;/conf/trac.ini and placed in /var/www/trac/&amp;lt;proj_name&amp;gt;/htdocs&lt;br /&gt;
* modify webadmin.* setting in trac.ini to enabled for web based administration.&lt;br /&gt;
* Add to /var/www/trac/index.html&lt;br /&gt;
* Regenerate the robots.txt file with the command:&lt;br /&gt;
&lt;br /&gt;
  $ sudo /var/www/trac/mkrobots.sh&lt;br /&gt;
&lt;br /&gt;
Recommended Trac permissions:&lt;br /&gt;
        anonymous       BROWSER_VIEW&lt;br /&gt;
        anonymous       CHANGESET_VIEW&lt;br /&gt;
        anonymous       FILE_VIEW&lt;br /&gt;
        anonymous       LOG_VIEW&lt;br /&gt;
        anonymous       MILESTONE_VIEW&lt;br /&gt;
        anonymous       REPORT_SQL_VIEW&lt;br /&gt;
        anonymous       REPORT_VIEW&lt;br /&gt;
        anonymous       ROADMAP_VIEW&lt;br /&gt;
        anonymous       SEARCH_VIEW&lt;br /&gt;
        anonymous       TICKET_VIEW&lt;br /&gt;
        anonymous       TIMELINE_VIEW&lt;br /&gt;
        anonymous       WIKI_VIEW&lt;br /&gt;
        authenticated   TICKET_CHGPROP&lt;br /&gt;
        authenticated   TICKET_CREATE&lt;br /&gt;
        authenticated   TICKET_MODIFY&lt;br /&gt;
        authenticated   WIKI_CREATE&lt;br /&gt;
        authenticated   WIKI_MODIFY&lt;br /&gt;
        developers      DOXYGEN_VIEW&lt;br /&gt;
        developers      MILESTONE_ADMIN&lt;br /&gt;
        developers      REPORT_ADMIN&lt;br /&gt;
        developers      REPORT_CREATE&lt;br /&gt;
        developers      WIKI_ADMIN&lt;br /&gt;
        warmerdam       developers&lt;br /&gt;
        warmerdam       TRAC_ADMIN&lt;br /&gt;
        ...&lt;br /&gt;
&lt;br /&gt;
SQL Compatability Issue with Postgres&lt;br /&gt;
&lt;br /&gt;
You will have to modify the SQL statement of the ''All Ticket by Milestone'' report. This can be done by accessing the trac report page and click the ''Edit report'' button (You need to be an admin of the trac instance). Check the sql statement of another trac instance and replace the one of the new instance.&lt;br /&gt;
&lt;br /&gt;
== Plugins ==&lt;br /&gt;
&lt;br /&gt;
Installed plugins (do in every trac instance, [http://trac.edgewall.org/wiki/TracPlugins installation guide]):&lt;br /&gt;
&lt;br /&gt;
* http://trac-hacks.org/wiki/TocMacro&lt;br /&gt;
&lt;br /&gt;
== Custom fields ==&lt;br /&gt;
&lt;br /&gt;
See http://trac.edgewall.org/wiki/TracTicketsCustomFields&lt;br /&gt;
&lt;br /&gt;
for example, in trac.ini:&lt;br /&gt;
&lt;br /&gt;
     [ticket-custom]&lt;br /&gt;
     platform = select&lt;br /&gt;
     platform.label = Platform&lt;br /&gt;
     platform.options = Unspecified|MSWindows 2K|MSWindows XP|MSWindows Vista|MSWindows CygWin|MacOSX|Linux|Other Unix|All&lt;br /&gt;
     platform.value = Unspecified&lt;br /&gt;
&lt;br /&gt;
     cpu = select&lt;br /&gt;
     cpu.label = CPU&lt;br /&gt;
     cpu.options = Unspecified|x86-32|x86-64|OSX/PPC|OSX/Intel|Other|All&lt;br /&gt;
     cpu.value = Unspecified&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Secure Tickets ==&lt;br /&gt;
&lt;br /&gt;
See http://trac-hacks.org/wiki/SecureTicketsPlugin (Note that the installed plugin has been modified for OSGeo)&lt;br /&gt;
&lt;br /&gt;
The initial behavior of the plugin was to set all tickets private, then let the user &lt;br /&gt;
defines what are the public components. It has been modified this to fit osgeo needs. &lt;br /&gt;
Since everything is public by default, we'll set manually the private &lt;br /&gt;
components and everything else will be public.&lt;br /&gt;
&lt;br /&gt;
'''Using the plugin'''&lt;br /&gt;
&lt;br /&gt;
1- Enable the plugin in trac.ini:&lt;br /&gt;
&lt;br /&gt;
  [components]&lt;br /&gt;
  securetickets.* = enabled&lt;br /&gt;
&lt;br /&gt;
2- Modify the permission_policies in trac.ini:&lt;br /&gt;
&lt;br /&gt;
  permission_policies = SecureTicketsPolicy, DefaultPermissionPolicy, ...&lt;br /&gt;
&lt;br /&gt;
3- Define private components in trac.ini:&lt;br /&gt;
&lt;br /&gt;
  [securetickets]&lt;br /&gt;
  private_components = Vulnerabilities, Component2, ...&lt;br /&gt;
&lt;br /&gt;
To allow a user or a group to view the private tickets, you'll have to add him &lt;br /&gt;
the permission SECURE_TICKET_VIEW&lt;br /&gt;
&lt;br /&gt;
== Timeline with filename indication ==&lt;br /&gt;
&lt;br /&gt;
  [timeline]&lt;br /&gt;
  changeset_long_messages = false&lt;br /&gt;
  changeset_show_files = 1&lt;br /&gt;
  changeset_files_count = 3&lt;br /&gt;
  default_daysback = 30&lt;br /&gt;
  ticket_show_details = false&lt;br /&gt;
&lt;br /&gt;
(see for example [http://trac.osgeo.org/grass/timeline here])&lt;br /&gt;
&lt;br /&gt;
== Hotcopy a trac instance ==&lt;br /&gt;
&lt;br /&gt;
   $ sudo trac-admin /var/www/html/trac/&amp;lt;proj_name&amp;gt; hotcopy /path/to/copy/trac/to&lt;br /&gt;
&lt;br /&gt;
= Trac Spam = &lt;br /&gt;
&lt;br /&gt;
We have had problems with trac spam when ticket create and ticket modify permissions were set to anonymous (the default).  To get around this most (all?) instances have been changed to require authenticated users to do these actions. &lt;br /&gt;
&lt;br /&gt;
But some projects strongly desire to support anonymous ticket creation and modification and at some point this might be viable using image captcha technology to keep out the spammers.  A Trac plugin for this is apparently under development, and described at:&lt;br /&gt;
&lt;br /&gt;
 http://trac.edgewall.org/browser/sandbox/spam-filter-captcha&lt;br /&gt;
&lt;br /&gt;
= Trac notification forward to project mailing list = &lt;br /&gt;
&lt;br /&gt;
To fwd notifications from trac to e.g. a project developers mailing list, you need to&lt;br /&gt;
* set in trac the mailing list address as default (trac Admin section)&lt;br /&gt;
* add the trac@osgeo.org address (or trac_osgeo@.., or ...) in Mailman to&lt;br /&gt;
** &amp;quot;Privacy options&amp;quot;&lt;br /&gt;
*** &amp;quot;Subscription rules&amp;quot;&lt;br /&gt;
*** &amp;quot;[Sender filters]&amp;quot; &lt;br /&gt;
**** &amp;quot;Non-member filters&amp;quot;&lt;br /&gt;
***** &amp;quot;List of non-member addresses whose postings should be automatically accepted.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* As the mail may be addressed to &amp;quot;undisclosed recipients&amp;quot; instead of directly to the list, the messages may be held for moderator approval. To avoid this add &amp;quot;undisclosed recipients&amp;quot; to the list of acceptable aliases at&lt;br /&gt;
** &amp;quot;Privacy options&amp;quot;&lt;br /&gt;
*** &amp;quot;[Recipient filters]&amp;quot;&lt;br /&gt;
**** ''acceptable_aliases''&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Conference_Committee&amp;diff=84040</id>
		<title>Conference Committee</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Conference_Committee&amp;diff=84040"/>
		<updated>2015-05-15T16:39:22Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: moved myself to past members.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Conference Committee is the official committee of OSGeo responsible for operating the annual [[FOSS4G]] conferences.&lt;br /&gt;
&lt;br /&gt;
= Noteworthy Documents = &lt;br /&gt;
&lt;br /&gt;
* [http://www.osgeo.org/conference OSGeo Conference Committee main page] (includes RFP, proposals, and archived files from past conferences)&lt;br /&gt;
* http://lists.osgeo.org/mailman/listinfo/conference_dev - Conference Committee email list&lt;br /&gt;
* [[Motion to form Conference Committee]]&lt;br /&gt;
* [[Conference website management]]&lt;br /&gt;
&lt;br /&gt;
= Goals =&lt;br /&gt;
&lt;br /&gt;
* facilitate the hosting application/decision process&lt;br /&gt;
* assist the conference local organizing committees in planning&lt;br /&gt;
* make sure OSGeo foundation principles exist in all conferences&lt;br /&gt;
* possibly support other affiliated conferences&lt;br /&gt;
&lt;br /&gt;
== Other  Responsibilities ==&lt;br /&gt;
&lt;br /&gt;
* [[Sol Katz Award]]&lt;br /&gt;
&lt;br /&gt;
= Current Members = &lt;br /&gt;
&lt;br /&gt;
* Eli Adam&lt;br /&gt;
* Thierry Badard&lt;br /&gt;
* Peter Batty&lt;br /&gt;
* David Bitner&lt;br /&gt;
* Jachym Cepicky&lt;br /&gt;
* Vasile Craciunescu&lt;br /&gt;
* David Fawcett&lt;br /&gt;
* Steven Feldman&lt;br /&gt;
* Gavin Fleming&lt;br /&gt;
* Darrell Fuhrman&lt;br /&gt;
* Dave McIlhagga&lt;br /&gt;
* Helena Mitasova&lt;br /&gt;
* Claude Philipona &lt;br /&gt;
* Venkatesh Raghavan&lt;br /&gt;
* Paul Ramsey&lt;br /&gt;
* Cameron Shorter&lt;br /&gt;
* Jeroen Ticheler&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Past Members = &lt;br /&gt;
&lt;br /&gt;
* Lorenzo Becchi&lt;br /&gt;
* Allan Doyle&lt;br /&gt;
* Olivier Ertz&lt;br /&gt;
* Alain Grignon&lt;br /&gt;
* Luc Maurer&lt;br /&gt;
* Daniel Rappo&lt;br /&gt;
* Dave Patton&lt;br /&gt;
* Rafael Medeiros Sperb&lt;br /&gt;
* [[Jeff McKenna]]&lt;br /&gt;
* Arnulf Christl&lt;br /&gt;
* [[Markus Neteler]]&lt;br /&gt;
* Steve Lime&lt;br /&gt;
* Frank Warmerdam&lt;br /&gt;
&lt;br /&gt;
= Meetings =&lt;br /&gt;
&lt;br /&gt;
* Meetings occur in IRC in the #foss4g channel (on irc.freenode.net) &lt;br /&gt;
* See the [[Conference_Committee_Meetings | Conference Committee Meetings]] page for information about the committee's meetings.&lt;br /&gt;
&lt;br /&gt;
= 2016 Pages =&lt;br /&gt;
&lt;br /&gt;
* [http://www.osgeo.org/conference/rfp/ 2016 RFP schedule]&lt;br /&gt;
&lt;br /&gt;
= 2015 Pages =&lt;br /&gt;
&lt;br /&gt;
* [[FOSS4G 2015 Bid Process]]&lt;br /&gt;
&lt;br /&gt;
= 2014 Pages =&lt;br /&gt;
&lt;br /&gt;
* [[FOSS4G 2014 Bid Process]]&lt;br /&gt;
* [[FOSS4G 2014]]&lt;br /&gt;
* [[FOSS4G Europe 2014]]&lt;br /&gt;
* [[FOSS4G Handbook]] (provides guidance to future FOSS4G and FOSS4G related events, based upon the collective wisdom gained during prior events)&lt;br /&gt;
&lt;br /&gt;
= 2013 Pages =&lt;br /&gt;
&lt;br /&gt;
* Main page: [[FOSS4G_2013]]&lt;br /&gt;
* [http://svn.osgeo.org/osgeo/foss4g/2013/documents/FOSS4G_2013_UK_Proposal-Final_version.pdf 2013 Proposal]&lt;br /&gt;
* Reflections on the event by the LOC (includes lessons learnt and supersedes the old Lessons Learned page): [[FOSS4G2013_Reflections_by_the_LOC]]&lt;br /&gt;
&lt;br /&gt;
= 2012 Pages =&lt;br /&gt;
Main page: [[FOSS4G 2012]]&lt;br /&gt;
* RFP ([http://svn.osgeo.org/osgeo/foss4g/rfp/2012/osgeo-conference-2012-request-for-proposal.odt OpenOffice], [http://svn.osgeo.org/osgeo/foss4g/rfp/2012/osgeo-conference-2012-request-for-proposal.pdf pdf])&lt;br /&gt;
* budget template ([http://svn.osgeo.org/osgeo/foss4g/rfp/2012/osgeo-conference-budget-template.ods OpenOffice])&lt;br /&gt;
* Important dates:&lt;br /&gt;
** Letters of Intent (Stage 1) due: 2011-06-30 ([http://www.timeanddate.com/worldclock/fixedtime.html?year=2011&amp;amp;month=06&amp;amp;day=30&amp;amp;hour=23&amp;amp;min=0&amp;amp;sec=0 23:00 UTC])&lt;br /&gt;
** Stage 1 question period: 2011-06-30 to 2011-07-07&lt;br /&gt;
** Stage 1 decision: 2011-07-07&lt;br /&gt;
** Proposals (Stage 2) due: 2011-08-01 ([http://www.timeanddate.com/worldclock/fixedtime.html?year=2011&amp;amp;month=08&amp;amp;day=01&amp;amp;hour=23&amp;amp;min=0&amp;amp;sec=0 23:00 UTC])&lt;br /&gt;
** Stage 2 question period: 2011-08-01 to 2011-08-05&lt;br /&gt;
** Final decision: 2011-08-05&lt;br /&gt;
&lt;br /&gt;
= 2011 Pages = &lt;br /&gt;
&lt;br /&gt;
* [http://www.osgeo.org/conference/rfp RFP and Letters of Intent]&lt;br /&gt;
* [[FOSS4G_2011_Bid_Process | 2011 Bid Process]]&lt;br /&gt;
* [[FOSS4G Reboot 2011 | Initial thoughts on 2011 required changes]]&lt;br /&gt;
&lt;br /&gt;
= 2010 Pages = &lt;br /&gt;
&lt;br /&gt;
* [http://www.osgeo.org/conference/rfp RFP and Proposals]&lt;br /&gt;
* [[Conference_Committee_2010_Bid_Questions | Bid Questions]]&lt;br /&gt;
* [[Conference_Committee_2010_Voting_Process | Voting Process]]&lt;br /&gt;
&lt;br /&gt;
= 2009 Pages = &lt;br /&gt;
&lt;br /&gt;
* [[FOSS4G 2009 Governance]]&lt;br /&gt;
* All [http://wiki.osgeo.org/wiki/Category:FOSS4G2009 FOSS4G 2009] pages.&lt;br /&gt;
&lt;br /&gt;
= 2008 Pages =&lt;br /&gt;
&lt;br /&gt;
* [http://www.osgeo.org/conference/rfp RFP and Proposals]&lt;br /&gt;
* [http://lists.osgeo.org/pipermail/conference_dev/2007-July/000355.html Voting Process]&lt;br /&gt;
* [[FOSS4G 2008 Governance]]&lt;br /&gt;
* [[FOSS4GLOC matters]]&lt;br /&gt;
* [http://spreadsheets.google.com/pub?key=p6mc38S7PA8lHWRQuIgExDA Workshop and lab evaluations]&lt;br /&gt;
&lt;br /&gt;
= 2007 Pages =&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.osgeo.org/index.php/Category:FOSS4G2007 Pages in category &amp;quot;FOSS4G2007&amp;quot;]&lt;br /&gt;
* [[FOSS4G2007]] - wiki page&lt;br /&gt;
* http://www.foss4g2007.org/ - Conference Site &lt;br /&gt;
* [http://www.osgeo.org/conference/rfp Proposals and RFP]&lt;br /&gt;
* [[OSGeo_Conference_RFP_2007#RFP_Response_Requirements | requirements Wiki page]]&lt;br /&gt;
* [[OSGeo_Conference_Naming_Results | Naming results]]&lt;br /&gt;
* [http://www.foss4g2007.org/bid_site/ Victoria 2007 Proposal]&lt;br /&gt;
* [[FOSS4G 2007 Governance]]&lt;br /&gt;
* [[FOSS4G2007 Lessons Learned]]&lt;br /&gt;
&lt;br /&gt;
= 2006 Pages =&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.osgeo.org/index.php/Category:FOSS4G2006 Pages in category &amp;quot;FOSS4G2006&amp;quot;]&lt;br /&gt;
* http://www.foss4g2006.org/ - Conference Site&lt;br /&gt;
* [[FOSS4G2006]] information&lt;br /&gt;
&lt;br /&gt;
= Event Policy Pages =&lt;br /&gt;
&lt;br /&gt;
* [[Official_OSGeo_Event_Policy | OSGeo Event policy]] (in review)&lt;br /&gt;
* [[OSGeo_Conference_Policy | Board notes]] regarding event policy&lt;br /&gt;
&lt;br /&gt;
[[Category:FOSS4G]]&lt;br /&gt;
[[Category:Committees]]&lt;br /&gt;
[[Category:Conference Committee]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=LIDAR_Format_Letter&amp;diff=83634</id>
		<title>LIDAR Format Letter</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=LIDAR_Format_Letter&amp;diff=83634"/>
		<updated>2015-04-18T01:38:42Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Signed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Open Letter of the Need for Open Standards in LiDAR=&lt;br /&gt;
April 2015.&lt;br /&gt;
&lt;br /&gt;
We, the undersigned, are concerned that the current interoperability between LiDAR applications, through use of the open &amp;quot;LAS&amp;quot; format, is being threatened by ESRI's introduction and promotion of an alternative &amp;quot;Optimized LAS&amp;quot; '''''proprietary format.''''' This is of grave concern given that fragmentation of the LAS format will reduce interoperability between applications and organisations, and introduce vendor lock-in.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We request that:&lt;br /&gt;
# The OGC initiate the formalisation of an open standard for storing LiDAR data, and that OGC sponsors help prioritise the development of this open LiDAR standard.&lt;br /&gt;
# ESRI support the OGC in their [http://www.opengeospatial.org/ogc/vision mission] &amp;quot;to advance the development and use of international standards and supporting services that promote geospatial interoperability.&amp;quot; In particular, ESRI join the OGC in consolidating an Open Standard for use of LiDAR data. This might include proposing ESRI's &amp;quot;Optimized LAS&amp;quot; as an Open Standard to remove any technical or legal hurdles in use of &amp;quot;Optimized LAS&amp;quot; as an Open Standard. A simple test to determine if &amp;quot;Optimized LAS&amp;quot; can be used as an Open Standard would be if &amp;quot;Optimized LAS&amp;quot; can legally be implemented by Open Source software such as libLAS or LASzip.&lt;br /&gt;
# Users and sponsors of LiDAR data, publicly state their preference for the use of an open LiDAR format over proprietary when selecting software and services.&lt;br /&gt;
# The custodians of the open LAS format [http://www.asprs.org/LD-Division/LAS-Working-Group.html LAS Working Group (LWG)], who are part of [http://www.asprs.org/ American Society for Photogrammetry and Remote Sensing (ASPRS)], request the term &amp;quot;LAS&amp;quot; not to be included in the name of a proprietary format, as it makes such a proprietary format appear to be an approved derivative of LAS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Signed=&lt;br /&gt;
Name, Affiliation(s), Optional comment on interest in Open LiDAR format&lt;br /&gt;
&lt;br /&gt;
# Suchith Anand, Geo for All, committed to Open Principles in Geo Education and Policy.&lt;br /&gt;
# Martin Isenburg, founder of [http://rapidlasso.com rapidlasso GmbH] and creator of [http://rapidlasso.com/LASzip LASzip], [http://rapidlasso.com/LAStools LAStools], and [http://rapidlasso.com/PulseWaves PulseWaves].&lt;br /&gt;
# Cameron Shorter, GeoSpatial Director at [http://lisasoft.com LISAsoft]. Core contributor and coordinator of [http://live.osgeo.org OSGeo-Live]. Contributor to numerous OGC testbeds, technical lead on a range of previous Australian and New Zealand Open Government initiatives.&lt;br /&gt;
# Stefan Keller, founder and director of [http://www.hsr.ch/geometalab Geometa Lab]; Professor in GIS, databases, open (government) data and interoperability; maintainer of GeoConverter; contributor to open source software (GDAL/OGR, QGIS).&lt;br /&gt;
# Patrick Hogan, NASA World Wind Project Manager, committed to the US National Spatial Data Infrastructure principles, one being &amp;quot;to make geographic data more accessible to the public&amp;quot; [http://www.fgdc.gov/nsdi/nsdi.html NSDI]. Open standards are essential for this.&lt;br /&gt;
# Lene Fischer, Associate Professor, Department of Geosciences and Natural Resource Management, University of Copenhagen. User of Open and free Data from The Danish Geodata Agency - Using LAZ and LAS http://download.kortforsyningen.dk/content/dhmpunktsky.&lt;br /&gt;
# [http://www.ege-como.polimi.it/index.php?content=maria_brovelli Maria Antonia Brovelli], Full Professor, Department of Civil and Environmental Engineering, Politecnico di Milano. Geo For All, committed to Open Principles in Geo Education and Policy. Committed to Open Principles in Research.&lt;br /&gt;
# Ron Fortunato, President of [http://www.trilliumlearning.com/AmericaBridge/ Trillium Learning] LLC. Committed to open data standards that are necessary for education and all levels of communication.&lt;br /&gt;
# [http://www.geodatawiz.com/armin-schmidt Armin Schmidt], Chief Developer at [http://www.GeodataWIZ.com GeodataWIZ Ltd] and Chairman of [http://www.archprospection.org ISAP], committed to better science through Open Data.&lt;br /&gt;
# [http://www.linkedin.com/in/gconti Giuseppe Conti], CTO Trilogis Srl, Italy. Committed to open data standards that maximize opportunity for innovative solutions, unencumbered by artificial obstacles to data exchange.&lt;br /&gt;
# [http://pt.linkedin.com/pub/jorge-rocha/1b/560/499 Jorge Gustavo Rocha], Professor, Computer Science Department, University of Minho, Portugal, committed to better science through [http://www.gistam.org/EventChairs.aspx?y=2016 Open Data].&lt;br /&gt;
# [http://people.eecs.ku.edu/~miller/ Jim Miller], University of Kansas, Professor, Computer Science. Open standards for data exchange are essential for education and research.&lt;br /&gt;
# [http://www.linkedin.com/pub/brandt-melick/22/869/261 Brandt Melick], Information Technology Department Director, Springfield Oregon USA. The need to promote open solutions is paramount.&lt;br /&gt;
# Alex Paza Makini, National University Solomon Islands, Natural Resources and Applied Science. Committed to open data standards for education and research, and everything beyond.&lt;br /&gt;
# Jorg M. Hacker, Professor, Director/Chief Scientist of [http://www.airborneresearchaustralia.com Airborne Research Australia], Flinders University, Adelaide, Australia. Open formats have always been a great benefit to airborne LiDAR.&lt;br /&gt;
# Didier Richard, Head of IS Training Dept. in Education and Research Directorate of [http://www.ign.fr Institut National de l'Information Géographique et Forestière], France. OGC user, Contributor to OSGeO projects like GDAL.&lt;br /&gt;
# [http://www.linkedin.com/pub/adryane-gorayeb/74/517/96a Adryane Gorayeb], [http://www.ufc.br/ Federal University of Ceará Brazil], Geography Department. Open standards for data exchange are essential for education and research.&lt;br /&gt;
# [http://www.linkedin.com/in/yuryryabov Yury Ryabov], PhD, Senior researcher at [http://www.istc.ru/istc/db/inst.nsf/wsu/i0001823 Russian Scientific-Research Centre for Ecological Safety], [http://www.interacademies.net/Academies/ByRegion/CentralEasternEurope/13383.aspx Russian Academy of Sciences], Saint Petersburg, Russia. Open data formats are essential for successful and reproducible scientific research.&lt;br /&gt;
# [http://www.linkedin.com/pub/teresa-lamelas-gracia/40/4a7/20b María Teresa Lamelas], [http://cud.unizar.es/ Centro Universitario de la Defensa Zaragoza], [http://geoforest.unizar.es/es/index.php GeoForest-IUCA]. Committed to open data standards for education and research.&lt;br /&gt;
# [http://www.linkedin.com/in/davidherries David Herries], [http://www.interpine.co.nz/SitePages/Home.aspx Using LiDAR for forest yield modelling at Interpine Innovation]. Establishing open data standards provide scope for exponential growth in innovation.  This is key to a rapidly developing technology like LiDAR.&lt;br /&gt;
# [[User:Ivansanchez|Iván Sánchez Ortega]], [http://www.mazemap.no Mazemap]. OSGeo Charter member and Open Data nerd.&lt;br /&gt;
# [[User:AnitaGraser|Anita Graser]], GIS specialist with AIT Austrian Institute of Technology, OSGeo Charter member and QGIS team member. Committed to open data standards for education and research.&lt;br /&gt;
# [[User:vehrka|Pedro-Juan Ferrer]], [http://www.geomaticblog.net Geomaticblog]. OSGeo Charter member and member of the Open Knowledge Foundation.&lt;br /&gt;
# [http://www.linkedin.com/pub/karl-donert/3/160/571 Professor Karl Donert], President European Association of Geographers (http://www.eurogeo.nl/ EUROGEO)&lt;br /&gt;
# Drew Fenton, Boulder Creek, CA [http://www.savetheredwoods.org/redwoods/coast-redwoods/ Countdown to the Last Coast Redwood]. Please protect Open Standards for geospatial data!&lt;br /&gt;
# [[User:Bolosig|Wladimir Szczerban]], [http://www.geoinquiets.cat Geoinquiets] Geogeek &amp;amp; OSGeo Spanish Local Chapter Member, Spain&lt;br /&gt;
# [http://vmx.cx Volker Mische], OSGeo Charter member and creator of GeoCouch&lt;br /&gt;
# [http://www.linkedin.com/in/clquintanilla Carlos López Quintanilla], [http://www.psig.es PSIG]  [http://www.geoinquiets.cat Geoinquiets] GIS consultant, Spain&lt;br /&gt;
# [[User:woodbri|Stephen Woodbridge]], [http://imaptools.com iMaptools], OSGeo Charter member.&lt;br /&gt;
# [[User:odoepner|Oliver Doepner]], [http://oliver.doepner.net doepner.net], Software Engineer (Java,Linux), Open Standards and Open Source advocate&lt;br /&gt;
# [[User:Lucadelu|Luca Delucchi]], [http://gis.cri.fmach.it Fondazione Edmund Mach], OSGeo Charter member, FOSS4G and Open Data developer, advocate, contributor and user.&lt;br /&gt;
# Antoine Cottin, CTO of [http://www.carbomap.com Carbomap Ltd.] and creator of [http://github.com/carbomap/Fleurdelas Fleurdelas], Edinburgh, United Kingdom.&lt;br /&gt;
# [http://strk.keybit.net Sandro Santilli], [http://strk.keybit.net/services.html NetLab], Free Software Hacker. There are already too many users slave to their tools, let's stop that!&lt;br /&gt;
# [http://www.itopen.it Alessandro Pasotti], [http://www.itopen.it ItOpen], GIS Free Software Developer.&lt;br /&gt;
# [http://www.roccatello.com Eduard Roccatello], [http://www.3dgis.it 3DGIS], 3DGIS CTO and co-Founder&lt;br /&gt;
# [[User:moovida|Andrea Antonello]], [http://www.hydrologis.com HydroloGIS], OSGeo Charter member, Open Source GIS developer, HydroloGIS co-founder.&lt;br /&gt;
# [http://www.associazionegfoss.it Stefano Campus], President of [http://www.associazionegfoss.it GFOSS.it] Association (Associazione Italiana per l'Informazione Geografica Libera), Italian Local Chapter of OSGeo Foundation.&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Madi Margherita Di Leo], OSGeo Charter Member&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Sacosta Sergio Acosta y Lara], OSGeo Charter Member&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Maximdubinin Maxim Dubinin], CEO at NextGIS, OSGeo Charter Member. Another 'standard' proprietary format? No, thank you.&lt;br /&gt;
# [[User:Steko|Stefano Costa]], Soprintendenza Archeologia della Liguria, Ministero dei Beni e delle Attività Culturali e del Turismo, Italy&lt;br /&gt;
# [http://www.geog.illinois.edu/people/jgrn Jonathan Greenberg], Assistant Professor, [http://publish.illinois.edu/jgrn/ GEARS Laboratory], Department of Geography and Geographic Information Science, University of Illinois at Urbana-Champaign.&lt;br /&gt;
# Bob Basques, Saint Paul, Mn., Technical Director for SharedGeo.&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Maning Maning Sambale], OSGeo Charter Member&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Pcav Paolo Cavallini], QGIS PSC&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Dr Phillip Davis], Member OSGeo Geo For All education advisory board, Director @ GeoAcademy&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Nbozon Nicolas Bozon], [http://zoo-project.org ZOO-Project PSC], OSGeo Charter Member&lt;br /&gt;
# [http://www.linkedin.com/in/ruslanrainis Ruslan Rainis], Professor, Director, [http://www.research.usm.my/default.asp?tag=36 Centre for Research Initiatives in Liberal Arts &amp;amp; Social Sciences](CRI-LASS). Open GeoInformation for a Sustainable Tomorrow and the Bottom Billions.&lt;br /&gt;
# [[User:Silli|Silvia Franceschi]], [http://www.hydrologis.com HydroloGIS], OSGeo Charter member, Environmental Engineer Open Source GIS power user, HydroloGIS co-founder.&lt;br /&gt;
# Oscar Martinez Rubi [http://esciencecenter.nl Netherlands eScience Center] eScience engineer.&lt;br /&gt;
# Werner Macho, QGIS team member. Committed to open data standards for education and research.&lt;br /&gt;
# Giuseppe Patti, Geologist and Freelance Geospatial Advisor, GFOSS supporter.&lt;br /&gt;
# [http://wiki.osgeo.org/wiki/User:Drappo Daniel Rappo], Professor, University of Applied Sciences and Arts Western Switzerland, School of Business and Engineering Vaud.&lt;br /&gt;
# [[User:nachouve|Juan Ignacio Varela]], Freelance Geospatial Advisor and OSGeo Local Chapter Member.&lt;br /&gt;
# [[User:dmorissette|Daniel Morissette]], President at [http://mapgears.com Mapgears], OSGeo Charter member.&lt;br /&gt;
# Raul Nanclares, RS&amp;amp;GIS Specialist&lt;br /&gt;
# [http://www.ing.unitn.it/dica/hp/index_eng.php?user=rigon Riccardo Rigon], Professor at University of Trento (Italy)&lt;br /&gt;
# [[User:Siki| Zoltan Siki]] Budapest University of Technology and Economics (Hungary), OSGeo Charter member.&lt;br /&gt;
# [http://lefsky.org Michael Lefsky], Professor of Remote Sensing Science, Colorado State University and Director, Center for Ecological Applications of Lidar.&lt;br /&gt;
# Lucas Villa Real, Research software engineer at IBM Research - Brazil.&lt;br /&gt;
# [http://terraremote.com Loren Dawe], GIS Manager at Terra Remote Sensing Inc. Lidar Supplier and Open Standards Advocate&lt;br /&gt;
# Frank Warmerdam, Software Developer, OSGeo Charter member&lt;br /&gt;
&lt;br /&gt;
=Background=&lt;br /&gt;
==About LiDAR==&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Lidar LiDAR] (Light Detection And Ranging) is a form of high precision range measurement, much like a radar system, that uses laser light instead of electromagnetic waves. The standard LiDAR product is a 3D point cloud that can be conceptualized as a series of point measurements representing distance between the sensor to a returned emission.&lt;br /&gt;
&lt;br /&gt;
For over a decade (since 2003), there has been a common format for storing LiDAR data, the [http://www.asprs.org/Committee-General/LASer-LAS-File-Format-Exchange-Activities.html “LAS” format], and open source libraries have been developed to read, write and process these LAS files: [http://live.osgeo.org/en/overview/liblas_overview.html libLAS] and [http://github.com/LASlib/LASlib LASlib]. These libraries have been incorporated within many LiDAR applications, allowing read/write access to a common exchange format, and resulting in full interoperability between the applications. There is also an open source compression algorithm for the LAS format called [http://laszip.org LASzip] that many LiDAR data portals use to compress LAS into smaller LAZ files for faster download. Many LiDAR software packages have added [http://laszip.org/#software-with-native-laz-support native support] for these compressed LAZ files.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==LAS Limitations==&lt;br /&gt;
&lt;br /&gt;
Quoting [http://boundlessgeo.com/2014/01/lidar-format-wars/ Paul Ramsey]:&lt;br /&gt;
&lt;br /&gt;
: LAS format is not without its drawbacks:&lt;br /&gt;
&lt;br /&gt;
:* While it is a binary format and does not waste any space unnecessarily, neither does it apply any compression to the data it stores. That’s not good for archival use.&lt;br /&gt;
:* Also, LAS stores points in scan order, so accessing any particular chunk of points involves reading the whole file. That’s not good for random access.&lt;br /&gt;
: Clearly there is a little more work to be done. Can LAS be improved? In fact, it already has been:&lt;br /&gt;
:* An open source compression library, LASzip can apply 20''':'''1 lossless compression to LAS files, making them great for archival purposes.&lt;br /&gt;
:* Other LAS users have experimented with re-ordering points in a LAS or LASzip file to allow random access to internal chunks of the LIDAR point cloud.&lt;br /&gt;
: Basically, making LAS smaller and faster is not rocket science, and if the work were incorporated into libLAS then the whole LIDAR community could leverage it together, and the user community would only have one file type to interchange.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&amp;quot;Optimized LAS&amp;quot; A ''' ''Proprietary'' ESRI Format'''==&lt;br /&gt;
ESRI has announced the release of an [http://www.lidarnews.com/content/view/10214 &amp;quot;Optimized LAS&amp;quot;] format which is claimed to provide faster access and smaller file sizes (similar to the open [http://laszip.org LASzip] format). This announcement created a outburst of vocal protest in the LiDAR community [[http://rapidlasso.com/2013/12/30/new-compressed-las-format-by-esri/ 1] [http://boundlessgeo.com/2014/01/lidar-format-wars/ 2] [http://www.spatiallyadjusted.com/2014/01/15/las-laz-lazzip-zlas-and-you/ 3] [http://www.northrivergeographic.com/archives/lidar-software 4] [http://boundlessgeo.com/2014/01/lidar-format-wars-2/ 5] [http://boundlessgeo.com/2014/02/lidar-format-wars-3/ 6]].&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Optimized LAS&amp;quot; format is neither published, nor available under any open license, which provides both technical as well as legal barriers for other applications reading and/or writing to this proprietary format. This creates a vendor lock-in scenario which is contrary to the principles of the Open Geospatial Consortium, the OSGeo Foundation, and many government IT procurement policies.&lt;br /&gt;
&lt;br /&gt;
One year after releasing the &amp;quot;Optimized LAS&amp;quot; format, ESRI released a free Windows DLL that is claimed to convert between LAS and &amp;quot;Optimized LAS&amp;quot;. Note there is a distinct difference between &amp;quot;free&amp;quot; and &amp;quot;open&amp;quot;. Unless the Windows DLL is released under an &amp;quot;open&amp;quot; license, libLAS and related products will be legally prevented from incorporating ESRI's reader/writer code into their codebase, or from fixing any underlying bugs or performance limitations which may exist in ESRI's product.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==OGC's Efforts For An ''' ''Open'' LiDAR Standard'''==&lt;br /&gt;
&lt;br /&gt;
The [http://www.opengeospatial.org/ Open Geospatial Consortium (OGC)] has indicated their interest in developing a standard LiDAR format.&lt;br /&gt;
&lt;br /&gt;
Carl Reed (formerly on OGC staff) provided the following information on OGC's previous efforts to work toward enabling Open Standards in LiDAR:&lt;br /&gt;
  &lt;br /&gt;
: &amp;quot;Over the last 8 or so years, the OGC approached ASPRS at least twice regarding LAS and worked with ASPRS to bring LAS into the OGC for consideration as both a Best Practice and an OGC standard. OGC member Rick Pearsall worked diligently on this. Rick worked for NGA, was active in the OGC, and was also the Standards Committee chair at ASPRS. Rick and Carl tried and failed. These attempts go back to [http://www.asprs.org/a/society/divisions/ppd/ppd_meetings/2007springppdreport.pdf at least 2007]. More recently, Carl Reed had an email dialogue with Lewis Graham to bring LAS into OGC as an OGC Best Practice. Carl thought progress was being made, but then for some reason all communication stopped.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[http://www.opengeospatial.org/ogc/organization/staff/ssimmons Scott Simmons] (Executive Director, Standards Program) has explained the OGC's continuing interest in pursuing point cloud encoding standards, including a member-initiated mechanism to extend LAS data with OGC-standard XML content.&lt;br /&gt;
: The OGC invites interested members who wish to work on this effort to please contact Scott Simmons (Executive Director, Standards Program  E-mail : ssimmons@opengeospatial.org) to register their interest and discuss details.  OGC will also be holding an ad hoc session at the OGC's next [http://www.opengeospatial.org/event/1506tc Technical Committee meeting in Boulder, CO, USA in early June] to bring together all interested parties from all sectors (government, industry, academia) for this and plan next steps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==History: LAS and ESRI's &amp;quot;Optimized LAS&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
Martin Isenburg, one of the leading experts in LIDAR formats, and creator of [http://rapidlasso.com/LASzip LASzip], [http://rapidlasso.com/LAStools LAStools] and [http://rapidlasso.com/PulseWaves PulseWaves], explains the history of LAS and &amp;quot;Optimized LAS&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
: '''Summary:'''&lt;br /&gt;
&lt;br /&gt;
:* The LAS format has been used successfully for over a decade.&lt;br /&gt;
:* Within last couple of years, ESRI has added native LAS support into ESRI products.&lt;br /&gt;
:* ESRI discussed embracing the open [http://laszip.org LAZ] format and simultaneously developed a proprietary &amp;quot;Optimized LAS&amp;quot; format.&lt;br /&gt;
:* The open geospatial community offered, on numerous occasions, to work with ESRI to avoid format fragmentation.&lt;br /&gt;
:* ESRI's proprietary &amp;quot;Optimized LAS&amp;quot; format is very similar in design and performance to the open [http://laszip.org LASzip] format.&lt;br /&gt;
&lt;br /&gt;
: '''1998: Original LAS format definition'''&lt;br /&gt;
&lt;br /&gt;
: The original development of the LAS format started in 1998 according to [http://groups.google.com/forum/#!topic/lasroom/zKqchDj1JL4/discussion Lewis Graham]. The effort was at first led by pioneers of the LiDAR industry until the format was donated to the [http://www.asprs.org/Committee-General/LASer-LAS-File-Format-Exchange-Activities.html ASPRS]. Since then ASPRS's [http://www.asprs.org/LD-Division/LAS-Working-Group.html LAS Working Group (LWG)] has been maintaining the LAS format, guiding it from the initial LAS 1.0 version until today's LAS 1.4 version. This effort successfully created an open data exchange format for discrete LiDAR points that is currently supported by practically every LiDAR-related software program.&lt;br /&gt;
&lt;br /&gt;
: '''2011: ESRI joins LAS Working Group'''&lt;br /&gt;
&lt;br /&gt;
: ESRI did not join the LWG of the ASPRS until rather late, the 24th of August in 2011. At that time ESRI was not a significant &amp;quot;player&amp;quot; in the LiDAR market given they did not have much support for LiDAR in any of their products. That was to change soon as they were planning to add LAS as a native data type in ArcGIS 10.1.&lt;br /&gt;
&lt;br /&gt;
: Shortly before that, in June 2011, Martin Isenburg received a personal message from the ESRI development team: &amp;quot;I have a question about LAS compression. I’m evaluating some potential enhancements and support for [LAS and] LAZ is one of them. Compression time and amount is impressive.&amp;quot; When inquiring two months later about the status of [http://laszip.org LAZ] integration Martin was told: &amp;quot;We’re in beta and working to finish the current release. I very much doubt LAZ will make it in because it’s too big a change at this time. So, we’ll be considering, for the following release, [for] what we want to do regarding compression and spatial indexing.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
: '''June 2012: ArcGIS 10.1 includes [proprietary] LAS Dataset file'''&lt;br /&gt;
&lt;br /&gt;
: In June 2012 ESRI released ArcGIS 10.1 and introduced the proprietary &amp;quot;LAS Dataset file (*.lasd)&amp;quot; that groups collections of files into one logical unit. This format of this useful LAS container file was not shared with others despite several private and eventually [http://groups.google.com/d/topic/lastools/jwHpi0efUgA/discussion public] requests.&lt;br /&gt;
&lt;br /&gt;
: '''2012/2013: Collaboration Discussions'''&lt;br /&gt;
&lt;br /&gt;
: There were encouraging follow-ups from the ESRI team about adopting the open LAZ format in January 2012: &amp;quot;I would be interested in having a more in depth meeting with you to better understand the great work you are doing with LAS and how we can possibly better partner on this.&amp;quot; and again in December 2012: &amp;quot;If you have time, I'd like to set some time aside Tuesday afternoon to meet with &amp;lt;an important person&amp;gt; at the ESRI booth. Does 2pm sound okay?&amp;quot; The meeting went well and it looked as if ESRI was going to embrace the LAZ format because shortly after the meeting Martin got word that: &amp;quot;I hear from &amp;lt;an important person&amp;gt; that it was a  success and that he had a good meeting with you. I wanted to see if we can have a telephone discussion on Wednesday or Thursday this week related to the potential of incorporating LAZ into ArcGIS.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
: Then the first signs of hesitation showed. First there were legal issues raised in February 2013: &amp;quot;Currently the legal aspects are being reviewed. They were having some issues separating the LPGL aspects from LASzip from the remainder of LAStools etc.&amp;quot; and then in April 2013 concerns about the code were made: &amp;quot;We have started to look into the integration of LAZ, but came across some issues. We don’t want to copy files from the other package, mix and match or hack around. We were hoping for an API to stream points out of a LAZ file as well as write LAZ files. There should be a simple code sample for that?&amp;quot; and - following up on that - in June 2013 Martin was told &amp;quot;I see value in LASzip becoming a de-facto standard that provides compression to the LAS format. If this is to happen then it needs to be bundled together with appropriate reference implementations, examples and documentation as a standard and so ensure that issues as defined earlier in email do not occur.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
: '''June 2013: ESRI asked to sponsor clean LASzip DLL'''&lt;br /&gt;
&lt;br /&gt;
: At that time [http://laszip.org LASzip] was an open source project without sponsorship. The original funding from [http://www.erdc.usace.army.mil/Locations/ColdRegionsResearchandEngineeringLaboratory.aspx USACE] that had turned [http://laszip.org LASzip] from an academic prototype into an industry strength compression engine had long run out. So Martin asked ESRI to become a sponsor to create the clean [http://laszip.org LASzip] API that ESRI was after. The answer was: &amp;quot;ESRI often helps in the financing of Open Source projects and I could foresee ESRI possibly helping in LASzip. [...] If you are interested in promoting LASzip as such a standard and doing the required work then I would recommend you put together a proposal and I can look to get ESRI as a sponsor.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
: Immediately Martin proposed to ESRI: &amp;quot;I hereby propose to write an easy to use open source DLL wrapper for LASzip that will make it easier to integrate LASzip in a standardized manner into other software products such as ArcGIS, LP 360, or Terrasolid. This will come with example code on how to use the DLL for reading and writing LAZ files and include a few compressed example files. I hereby ask ESRI to provide funding for this effort without imposing any limitations on the produced DLL API.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
: '''July 2013: ArcGIS 10.2 includes [proprietary] LAS indexing '''&lt;br /&gt;
&lt;br /&gt;
: With the release of ArcGIS 10.2 in July 2013, ESRI introduced spatial indexing to speed up area-of-interest queries. The new proprietary *.lasx files with seemingly identical functionality to the open *.lax files that had been [http://groups.google.com/d/topic/lastools/j0qA8NBMHJs/discussion announced] in May 2011 and were [http://rapidlasso.com/2012/12/03/lasindex-spatial-indexing-of-lidar-data/ presented] at ELMF in November 2012.&lt;br /&gt;
&lt;br /&gt;
: '''July 2013: Open LASzip API released'''&lt;br /&gt;
&lt;br /&gt;
: After more requests for an easier interface to [http://laszip.org LASzip] (in particular for [http://forsys.cfr.washington.edu/fusion/fusionlatest.html USDA's FUSION]), Martin [http://groups.google.com/d/topic/lastools/oplsDhhnhDQ/discussion released] a clean, well-documented, and easy-to-use LASzip DLL (without ESRI funding). Martin expected that developers at ESRI would now use it to add read and write support for [http://laszip.org LAZ] to their next release of ArcGIS.&lt;br /&gt;
&lt;br /&gt;
: '''December 2013 : ESRI discovered to be secretly developing proprietary LAS format'''&lt;br /&gt;
&lt;br /&gt;
: In December of 2013, several LAStools users contacted Martin with suspicions that ESRI may be creating a proprietary LAS compression. Martin [http://rapidlasso.com/2013/12/30/new-compressed-las-format-by-esri/ broke the news] as soon as it became evident that ESRI had used the time it needed to resolve &amp;quot;legal issues&amp;quot; and &amp;quot;code problems&amp;quot; to put together their own proprietary compressed format with near-identical performance and functionality to [http://laszip.org LASzip]. A few days later ESRI released an [http://www.lidarnews.com/content/view/10214/ official FAQ] to confirming this was the case. &lt;br /&gt;
&lt;br /&gt;
: From day one, Martin has worked with stakeholders, including ESRI, to avoid format fragmentation. Martin's core argument for resolving this to everybody's benefit was that - coincidentally - a natural break was happening in the LAS format with the introduction of the new LAS 1.4 point types. Martin outlined a detailed plan for how a joint development of [http://laszip.org LASzip] for LAS 1.4 between rapidlasso and ESRI could exploit this natural break in the LAS format to accomplish two things at once:&lt;br /&gt;
:# Add the unspecified technical additions that ESRI had hinted at desiring, and &lt;br /&gt;
:# Extend the [http://laszip.org LASzip] compression scheme to handle the new point types introduced with the LAS 1.4 specification. As there was no pressing need at the time to handle LAS 1.4 Martin had delayed the extension of [http://laszip.org LASzip] to the new LAS 1.4 point types to make sure a cooperation with ESRI would remain a viable option.&lt;br /&gt;
&lt;br /&gt;
: '''1 April 2014: Positive reception to &amp;quot;Optimized LAS&amp;quot; / LASzip collaboration April Fools announcement'''&lt;br /&gt;
&lt;br /&gt;
: In an attempt to convince ESRI management of the community desire for an open standard, Martin released an April Fools' Day [http://rapidlasso.com/2014/04/01/esri-and-rapidlasso-develop-joint-lidar-compressor/ prank press release] pretending that ESRI had already agreed to the envisioned collaboration to develop a joint LiDAR compressor. Community [http://rapidlasso.com/2014/04/01/esri-and-rapidlasso-develop-joint-lidar-compressor/ jubilant reactions (see comments)] left no doubt about the sentiment on this issue within the LiDAR community.&lt;br /&gt;
&lt;br /&gt;
: '''October 2014: Announcement of [open] LAS Compatibility mode'''&lt;br /&gt;
&lt;br /&gt;
: [http://www.csc.noaa.gov/digitalcoast/ Digital Coast, NOAA Coastal Services Center] became a Gold Sponsor of [http://laszip.org LASzip] for the development of the [http://rapidlasso.com/2014/10/06/rapidlasso-announces-laszip-compatibility-mode-for-las-1-4/ LAS 1.4 compatibility mode] that was [http://groups.google.com/d/topic/lastools/nUFMkKSz53g/discussion beta-released] in November 2014. This allowed support for the new point types in [http://laszip.org LASzip] without closing the door on a potential cooperation with ESRI for a joint LAS 1.4 compressor. &lt;br /&gt;
&lt;br /&gt;
: '''November 2014: ESRI announces proprietary extension to LAS 1.4'''&lt;br /&gt;
&lt;br /&gt;
: In November 2014 [http://blog.lidarnews.com/esri-las-optimizer-updated ESRI announced] that they had added their [http://blog.lidarnews.com/esri-las-optimizer-updated own extension] for the new LAS 1.4 point types to &amp;quot;Optimized LAS&amp;quot;, dismissing the opportunity to develop a joint compressor and avoid format fragmentation by exploiting this &amp;quot;natural break&amp;quot; in the LAS format as Martin had suggested.&lt;br /&gt;
&lt;br /&gt;
: Since then, ESRI has been [http://rapidlasso.com/2014/11/06/keeping-esri-honest/ promoting] &amp;quot;Optimized LAS&amp;quot;. By including the term &amp;quot;LAS&amp;quot; in &amp;quot;Optimized LAS&amp;quot; and &amp;quot;zLAS&amp;quot;, the distinction between the open LAS format and proprietary format is blurred. This is likely to mislead novice and future users, thereby endangering many years of standardization work. To date, [April 2014], the [http://www.asprs.org/a/society/committees/standards/LAS_1_4_r13.pdf custodians of the LAS format], the LAS Working Group (LWG) of the ASPRS has [http://rapidlasso.com/2015/02/22/lidar-las-asprs-esri-and-the-laz-clone/ yet to make an official statement] regarding use of the &amp;quot;LAS&amp;quot; name in promoting a proprietary LiDAR format.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Value of Standards=&lt;br /&gt;
&lt;br /&gt;
The importance of Open Standards is described in most government IT policies. For instance, the United Kingdom policy states:&lt;br /&gt;
: … Government assets should be interoperable and open for re-use in order to maximise return on investment, avoid technological or supplier lock-in, reduce operational risk in ICT projects and provide responsive services for citizens and business. This should also lower barriers to entry for more diverse sources of IT services, including citizens and SMEs. &amp;lt;ref&amp;gt;All about Open Source – An Introduction to Open Source Software for Government IT, Version 2.0, United Kingdom Cabinet Office https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/78959/All_About_Open_Source_v2_0.pdf&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The value of Open Standards has been described in numerous national studies on the effects of standards on economic growth.&lt;br /&gt;
&lt;br /&gt;
: ... the national studies demonstrate that standards have a positive influence on economic growth due to the resulting improved diffusion of knowledge. The contribution of standards to the growth rate in each country is equivalent to 0.9% in Germany, 0.8% in 0.3% in the UK and 0.2% in Canada. &amp;lt;ref&amp;gt;Prof. Dr. Knut Blind, Prof. Dr. Andre Jungmittag, Dr. Axel Mangelsdorf [http://www.din.de/sixcms_upload/media/2896/DIN_GNN_2011_engl_akt_neu.pdf &amp;quot;The Economic Benefits of Standardization&amp;quot;], ''DINN, 2000''. Retrieved March 2015.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Further Reading=&lt;br /&gt;
&lt;br /&gt;
# Paul Ramsey provides background to LAS vs Optimised LAS, http://boundlessgeo.com/2014/01/lidar-format-wars/&lt;br /&gt;
# Running commentary by Martin Isenburg, author of LASlib, http://rapidlasso.com/2015/02/22/lidar-las-asprs-esri-and-the-laz-clone/&lt;br /&gt;
# Earlier comment from Martin Isenburg, http://rapidlasso.com/2014/11/06/keeping-esri-honest/&lt;br /&gt;
# First call-to-action by Martin Isenburg, http://rapidlasso.com/2013/12/30/new-compressed-las-format-by-esri/&lt;br /&gt;
# ESRI Announces &amp;quot;Optimised LAS&amp;quot;, http://blog.lidarnews.com/esri-announces-las-compression/&lt;br /&gt;
# ESRI description of &amp;quot;Optimised LAS&amp;quot;, http://www.lidarnews.com/content/view/10214&lt;br /&gt;
# Discussion background on this topic at Geo for All list , http://lists.osgeo.org/pipermail/ica-osgeo-labs/2015-March/001225.html&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Contacts&amp;diff=81183</id>
		<title>Contacts</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Contacts&amp;diff=81183"/>
		<updated>2015-01-08T15:13:56Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Software Projects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OSGeo Projects are freestanding entities, handled by their own Project Steering Committees. Each project has been asked to provide a representative to help coordinate OSGeo involvement. These volunteers are listed by project below:&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* General Foundation Info - info@osgeo.org - [mailto:info@osgeo.org] (emails are currently forwarded to 3 people: FrankW, JeffM, Jachym)&lt;br /&gt;
* [[President]] - [[Jeff McKenna]] - jmckenna at osgeo.org&lt;br /&gt;
* [[Treasurer]] - [[Michael Smith]] - michael.smith.erdc at gmail.com&lt;br /&gt;
* [[Secretary]] - [[Jáchym Čepický]] - jachym.cepicky at gmail.com&lt;br /&gt;
* [[Board of Directors]]&lt;br /&gt;
&lt;br /&gt;
== Software Projects ==&lt;br /&gt;
'''Web Mapping'''&lt;br /&gt;
* [http://www.deegree.org deegree]: [http://wiki.deegree.org/deegreeWiki/StructuresAndProcedures PSC] - Contact: [[User:JensFitzke | Jens Fitzke]]&lt;br /&gt;
* [http://geomajas.org Geomajas]: [http://www.geomajas.org/geomajas/project-steering-committee PSC] - Chair: Pieter De Graef (pieter.degraef at geosparc.com)&lt;br /&gt;
* [http://www.geomoose.org/ GeoMoose]: [http://www.geomoose.org/rfc/rfc-1.html PSC] - Chair: - Brian Fischer (bfischer at houstoneng.com)&lt;br /&gt;
* [http://geoserver.org GeoServer]: [http://docs.geoserver.org/latest/en/developer/policies/psc.html PSC] - Project Officer: Andrea Aime (andrea dot aime at geo-solutions.it) (checked 2014-10-09)&lt;br /&gt;
* [http://www.mapbender.org Mapbender]: [http://www.mapbender.org/index.php/Category:PSC PSC] - Chair: Christian Wygoda&lt;br /&gt;
* [http://www.mapfish.org MapFish]: [http://trac.mapfish.org/trac/mapfish/wiki/Community/PSC PSC] - Chair: [[User:Elem | Eric Lemoine]]&lt;br /&gt;
* [http://mapguide.osgeo.org/ MapGuide Open Source]: [http://mapguide.osgeo.org/psc.html PSC] - Chair: Robert Bray (robert.bray at autodesk.com)&lt;br /&gt;
* [http://mapserver.org/ MapServer]: [http://mapserver.org/development/rfc/ms-rfc-23.html PSC] - Chair: Stephen Lime (sdlime at comcast.net)&lt;br /&gt;
* [http://openlayers.org/ OpenLayers]: [http://trac.openlayers.org/wiki/SteeringCommittee PSC] - Chair: [[User:Tschaub | Tim Schaub]]&lt;br /&gt;
&lt;br /&gt;
'''Desktop Applications'''&lt;br /&gt;
* [http://grass.osgeo.org/ GRASS GIS]: [http://trac.osgeo.org/grass/wiki/PSC PSC] - Chair: [[Markus Neteler]]&lt;br /&gt;
* [http://www.gvsig.org/ gvSIG]: - [[GvSIG Technical Project Committee|PSC]] - Chair: [[Manuel Madrid]] (checked 2014-10-14)&lt;br /&gt;
* [http://marble.kde.org/ Marble]: [http://edu.kde.org/marble/authors.php Authors] - Liaison Officer: [[Torsten Rahn]] &lt;br /&gt;
* [http://www.ossim.org/ OSSIM]: [http://trac.osgeo.org/ossim/wiki/ossimgovernance PSC] - Chair: Garrett Potts&lt;br /&gt;
* [http://www.qgis.org/ Quantum GIS]: [http://wiki.qgis.org/qgiswiki/Project_Organigram PSC] (outdated, see [http://spatialgalaxy.net/2013/08/25/welcome-to-new-qgis-psc-members/ this blog post] by Gary Sherman for the current PSC members - Chair: Gary Sherman (sherman at mrcc.com)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Geospatial Libraries'''&lt;br /&gt;
* [http://fdo.osgeo.org/ FDO]: [http://fdo.osgeo.org/ Home Page] (link to PSC broken) - Chair: Greg Boone (greg.boone at autodesk.com)&lt;br /&gt;
* [http://www.gdal.org/ GDAL/OGR]: [http://trac.osgeo.org/gdal/wiki/GovernanceAndCommunity PSC] - Chair: Even Rouault (even.rouault at spatialys.com)&lt;br /&gt;
* [http://www.geotools.org/ GeoTools]: [http://docs.codehaus.org/display/GEOT/4+Project+Management+Committee PSC] - Project Officer Jody Garnett (jody.garnett at gmail.com) (checked 2014-10-09)&lt;br /&gt;
* [http://geos.osgeo.org/ GEOS]: [http://trac.osgeo.org/geos/wiki/PSC PSC] - Chair: [[User:Strk | Sandro Santilli]] (strk at keybit.net)&lt;br /&gt;
* [http://metacrs.osgeo.org/ MetaCRS]: [http://metacrs.osgeo.org PSC] - Chair: Frank Warmerdam (warmerdam@pobox.com)&lt;br /&gt;
* [http://postgis.net/ PostGIS]: [http://postgis.net/docs/postgis_introduction.html#psc PSC] - Chair: [[User:Pwramsey3 | Paul Ramsey]]&lt;br /&gt;
* [http://pgrouting.org/ pgRouting]: [http://pgrouting.org/development.html PSC] - Chair: [[User:Woodbri | Stephen Woodbridge]]&lt;br /&gt;
&lt;br /&gt;
'''Metadata Catalog'''&lt;br /&gt;
* [http://geonetwork-opensource.org GeoNetwork opensource]: [http://trac.osgeo.org/geonetwork/wiki/PSC PSC]  - Chair: [[User:Ticheler | Jeroen Ticheler]] (Jeroen.Ticheler at geocat.net) (checked 2014-10-09)&lt;br /&gt;
&lt;br /&gt;
'''Spatio-Temporal Analytics'''&lt;br /&gt;
* [http://www.rasdaman.org rasdaman opensource]: [http://rasdaman.org/wiki/Governance PSC]  - Chair: [[User:Pebau | Peter Baumann]] (baumann at rasdaman.com) (checked 2014-10-09)&lt;br /&gt;
&lt;br /&gt;
== Committees ==&lt;br /&gt;
* [[Conference Committee]] - &lt;br /&gt;
* [[Education and Curriculum Committee]] - Charlie Schweik - cschweik at pubpol.umass.edu (checked 2014-10-09)&lt;br /&gt;
* [[Finance Committee]] - [[User:Dmorissette|Daniel Morissette]] - dmorissette at mapgears.com (checked 2014-10-09)&lt;br /&gt;
* [[Incubation Committee]] - Jody Garnett - jody.garnett at gmail.com (checked 2014-10-09)&lt;br /&gt;
* [[Marketing Committee]] - Cameron Shorter - cameron.shorter at gmail.com (checked 2014-10-09)&lt;br /&gt;
* [[Public Geospatial Data Committee]] - [[User:Bitner|David Bitner]] - bitner at dbspatial dot com (checked 2014-10-09)&lt;br /&gt;
* [[SAC|System Administration Committee]] - Alex Mandel - tech_dev at wildintellect.com (checked 2014-10-09)&lt;br /&gt;
* [[Website Committee]] - Christopher Schmidt - crschmidt at crschmidt.net&lt;br /&gt;
* OSGeo [[Journal]]&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
* [http://live.osgeo.org OSGeo-Live] - Cameron Shorter - cameron.shorter at gmail.com&lt;br /&gt;
&lt;br /&gt;
== Local Chapters ==&lt;br /&gt;
&lt;br /&gt;
Contacts list for the [[:Category:Local_Chapters|local chapters]]:&lt;br /&gt;
* [[Africa Local Chapter]] - [[User:Gfleming|Gavin Fleming]]&lt;br /&gt;
* [[Aust-NZ]] - Australia and New Zealand Chapter- Bruce Bannerman - bruce.bannerman.osgeo at gmail.com&lt;br /&gt;
* [[Brazil]] - Helton Uchoa - engenheiro.uchoa at gmail.com&lt;br /&gt;
* [[California]] - Landon Blake - sunburned.surveyor at gmail dot com&lt;br /&gt;
* [[Cascadia|CUGOS Cascadia Chapter US]] - [[User:Racicot|Aaron Racicot]] - aaronr at cugos.org (checked 2014-10-09)&lt;br /&gt;
* [[China]] - Chen Rongguo - chenrg at lreis.ac.cn&lt;br /&gt;
* [[D-A-CH]] (German language) - [[User:Mlechner|Marco Lechner]] (checked 2014-09-30)&lt;br /&gt;
* [[Finland]] - [[User:AJolma|Ari Jolma]] - ajolma at osgeo.org  (checked 2014-10-09)&lt;br /&gt;
* [[Francophone]] - board at osgeo.asso dot fr / president at osgeo.asso.fr (Etienne Delay) (checked 2014-09-30)&lt;br /&gt;
* [[Greek]] - [[User:kotzino|Dimitris Kotzinos]] - kotzino at csd dot uoc dot gr (checked 2014-09-30)&lt;br /&gt;
* [[India]] - P.S. Roy - psroy13 at gmail.com&lt;br /&gt;
* [[Italy]] - [[User:epifanio|Massimo Di Stefano]] - IT -- epiesasha at me dot com&lt;br /&gt;
* [[Japan]] - Mr. Mori Toru - moritoru at orkney.co.jp (checked 2014-09-30)&lt;br /&gt;
* [[Korea | Korean Chapter]] - [[User:Endofcap|Sanghee Shin]] - shshin at gaia3d.com or endofcap at gmail.com (checked 2014-09-30)&lt;br /&gt;
* [[KSA Chapter]] - Awase Khirni Syed - awasekhirni at gmail.com&lt;br /&gt;
* [[Nederlands | Dutch language Chapter]] - [[User:Just|Just van den Broecke]] (secretary) [[User:Geejee|Gert-Jan van der Weijden]] (president). info at osgeo dot nl (checked 2014-10-08)&lt;br /&gt;
* [[Ottawa Chapter]] - Fabien Ancelin - fabien.ancelin at gmail.com &lt;br /&gt;
* [[PDX-OSGEO]] - Oregon, US Chapter -- [[User:EliL|Eli L Adam]] - contact on user page (checked 2014-09-30)&lt;br /&gt;
* [[Philippines]] - [[User:maning|Maning Sambale]] - emmanuel dot sambale at gmail dot com  (checked 2014-10-09)&lt;br /&gt;
* [[Poland]] - Tomasz Kubik - tomasz kubik at pwr wroc pl (checked 2014-09-30)&lt;br /&gt;
* [[Portugal]] - Jorge Gustavo Rocha - [[Jorge_Gustavo_Rocha]], Giovanni Manghi - [[Giovanni_Manghi]]&lt;br /&gt;
* [[Romanian]] - [[User:Vasile|Vasile Crăciunescu]] - vasile at geo-spatial dot org&lt;br /&gt;
* [[Quebec]] - [[User:Dmorissette|Daniel Morissette]] - dmorissette at mapgears dot com (checked 2014-10-09)&lt;br /&gt;
* [[Spanish]] - [[Pedro-Juan Ferrer]] - vehrka at gmail.com  (checked 2014-10-09)&lt;br /&gt;
* [[Taiwan]] - Sander Borghuis - s.borghuis at geo.uu.nl '''(mail not delivered)'''&lt;br /&gt;
* [[Twin_Cities]] - Twin Cities, MN -- [[User:Bitner|David Bitner]] - bitner at dbspatial dot com&lt;br /&gt;
* [[Yukon Chapter]] -  [[User:hammj|Jeff Hamm]] - jeff at geoprism dot ca&lt;br /&gt;
* [http://www.osgeo.org/uk UK] - [[User:JoCook|Jo Cook]]&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
&lt;br /&gt;
* [[SAC:Primary Administrators]]&lt;br /&gt;
&lt;br /&gt;
== Local Representatives ==&lt;br /&gt;
&lt;br /&gt;
* list of local leaders by region: [[OSGeo Advocate]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Board]]&lt;br /&gt;
[[Category:Education]]&lt;br /&gt;
[[Category:Incubation]]&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:PSC]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Contacts&amp;diff=81181</id>
		<title>Contacts</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Contacts&amp;diff=81181"/>
		<updated>2015-01-08T15:12:55Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Committees */ Frank never actually stepped into conference chair role.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OSGeo Projects are freestanding entities, handled by their own Project Steering Committees. Each project has been asked to provide a representative to help coordinate OSGeo involvement. These volunteers are listed by project below:&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* General Foundation Info - info@osgeo.org - [mailto:info@osgeo.org] (emails are currently forwarded to 3 people: FrankW, JeffM, Jachym)&lt;br /&gt;
* [[President]] - [[Jeff McKenna]] - jmckenna at osgeo.org&lt;br /&gt;
* [[Treasurer]] - [[Michael Smith]] - michael.smith.erdc at gmail.com&lt;br /&gt;
* [[Secretary]] - [[Jáchym Čepický]] - jachym.cepicky at gmail.com&lt;br /&gt;
* [[Board of Directors]]&lt;br /&gt;
&lt;br /&gt;
== Software Projects ==&lt;br /&gt;
'''Web Mapping'''&lt;br /&gt;
* [http://www.deegree.org deegree]: [http://wiki.deegree.org/deegreeWiki/StructuresAndProcedures PSC] - Contact: [[User:JensFitzke | Jens Fitzke]]&lt;br /&gt;
* [http://geomajas.org Geomajas]: [http://www.geomajas.org/geomajas/project-steering-committee PSC] - Chair: Pieter De Graef (pieter.degraef at geosparc.com)&lt;br /&gt;
* [http://www.geomoose.org/ GeoMoose]: [http://www.geomoose.org/rfc/rfc-1.html PSC] - Chair: - Brian Fischer (bfischer at houstoneng.com)&lt;br /&gt;
* [http://geoserver.org GeoServer]: [http://docs.geoserver.org/latest/en/developer/policies/psc.html PSC] - Project Officer: Andrea Aime (andrea dot aime at geo-solutions.it) (checked 2014-10-09)&lt;br /&gt;
* [http://www.mapbender.org Mapbender]: [http://www.mapbender.org/index.php/Category:PSC PSC] - Chair: Christian Wygoda&lt;br /&gt;
* [http://www.mapfish.org MapFish]: [http://trac.mapfish.org/trac/mapfish/wiki/Community/PSC PSC] - Chair: [[User:Elem | Eric Lemoine]]&lt;br /&gt;
* [http://mapguide.osgeo.org/ MapGuide Open Source]: [http://mapguide.osgeo.org/psc.html PSC] - Chair: Robert Bray (robert.bray at autodesk.com)&lt;br /&gt;
* [http://mapserver.org/ MapServer]: [http://mapserver.org/development/rfc/ms-rfc-23.html PSC] - Chair: Stephen Lime (sdlime at comcast.net)&lt;br /&gt;
* [http://openlayers.org/ OpenLayers]: [http://trac.openlayers.org/wiki/SteeringCommittee PSC] - Chair: [[User:Tschaub | Tim Schaub]]&lt;br /&gt;
&lt;br /&gt;
'''Desktop Applications'''&lt;br /&gt;
* [http://grass.osgeo.org/ GRASS GIS]: [http://trac.osgeo.org/grass/wiki/PSC PSC] - Chair: [[Markus Neteler]]&lt;br /&gt;
* [http://www.gvsig.org/ gvSIG]: - [[GvSIG Technical Project Committee|PSC]] - Chair: [[Manuel Madrid]] (checked 2014-10-14)&lt;br /&gt;
* [http://marble.kde.org/ Marble]: [http://edu.kde.org/marble/authors.php Authors] - Liaison Officer: [[Torsten Rahn]] &lt;br /&gt;
* [http://www.ossim.org/ OSSIM]: [http://trac.osgeo.org/ossim/wiki/ossimgovernance PSC] - Chair: Garrett Potts&lt;br /&gt;
* [http://www.qgis.org/ Quantum GIS]: [http://wiki.qgis.org/qgiswiki/Project_Organigram PSC] (outdated, see [http://spatialgalaxy.net/2013/08/25/welcome-to-new-qgis-psc-members/ this blog post] by Gary Sherman for the current PSC members - Chair: Gary Sherman (sherman at mrcc.com)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Geospatial Libraries'''&lt;br /&gt;
* [http://fdo.osgeo.org/ FDO]: [http://fdo.osgeo.org/ Home Page] (link to PSC broken) - Chair: Greg Boone (greg.boone at autodesk.com)&lt;br /&gt;
* [http://www.gdal.org/ GDAL/OGR]: [http://trac.osgeo.org/gdal/wiki/GovernanceAndCommunity PSC] - Chair: Even Rouault (even.rouault@spatialys.com)&lt;br /&gt;
* [http://www.geotools.org/ GeoTools]: [http://docs.codehaus.org/display/GEOT/4+Project+Management+Committee PSC] - Project Officer Jody Garnett (jody.garnett at gmail.com) (checked 2014-10-09)&lt;br /&gt;
* [http://geos.osgeo.org/ GEOS]: [http://trac.osgeo.org/geos/wiki/PSC PSC] - Chair: [[User:Strk | Sandro Santilli]] (strk at keybit.net)&lt;br /&gt;
* [http://metacrs.osgeo.org/ MetaCRS]: [http://metacrs.osgeo.org PSC] - Chair: Frank Warmerdam (warmerdam@pobox.com)&lt;br /&gt;
* [http://postgis.net/ PostGIS]: [http://postgis.net/docs/postgis_introduction.html#psc PSC] - Chair: [[User:Pwramsey3 | Paul Ramsey]]&lt;br /&gt;
* [http://pgrouting.org/ pgRouting]: [http://pgrouting.org/development.html PSC] - Chair: [[User:Woodbri | Stephen Woodbridge]]&lt;br /&gt;
&lt;br /&gt;
'''Metadata Catalog'''&lt;br /&gt;
* [http://geonetwork-opensource.org GeoNetwork opensource]: [http://trac.osgeo.org/geonetwork/wiki/PSC PSC]  - Chair: [[User:Ticheler | Jeroen Ticheler]] (Jeroen.Ticheler at geocat.net) (checked 2014-10-09)&lt;br /&gt;
&lt;br /&gt;
'''Spatio-Temporal Analytics'''&lt;br /&gt;
* [http://www.rasdaman.org rasdaman opensource]: [http://rasdaman.org/wiki/Governance PSC]  - Chair: [[User:Pebau | Peter Baumann]] (baumann at rasdaman.com) (checked 2014-10-09)&lt;br /&gt;
&lt;br /&gt;
== Committees ==&lt;br /&gt;
* [[Conference Committee]] - &lt;br /&gt;
* [[Education and Curriculum Committee]] - Charlie Schweik - cschweik at pubpol.umass.edu (checked 2014-10-09)&lt;br /&gt;
* [[Finance Committee]] - [[User:Dmorissette|Daniel Morissette]] - dmorissette at mapgears.com (checked 2014-10-09)&lt;br /&gt;
* [[Incubation Committee]] - Jody Garnett - jody.garnett at gmail.com (checked 2014-10-09)&lt;br /&gt;
* [[Marketing Committee]] - Cameron Shorter - cameron.shorter at gmail.com (checked 2014-10-09)&lt;br /&gt;
* [[Public Geospatial Data Committee]] - [[User:Bitner|David Bitner]] - bitner at dbspatial dot com (checked 2014-10-09)&lt;br /&gt;
* [[SAC|System Administration Committee]] - Alex Mandel - tech_dev at wildintellect.com (checked 2014-10-09)&lt;br /&gt;
* [[Website Committee]] - Christopher Schmidt - crschmidt at crschmidt.net&lt;br /&gt;
* OSGeo [[Journal]]&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
* [http://live.osgeo.org OSGeo-Live] - Cameron Shorter - cameron.shorter at gmail.com&lt;br /&gt;
&lt;br /&gt;
== Local Chapters ==&lt;br /&gt;
&lt;br /&gt;
Contacts list for the [[:Category:Local_Chapters|local chapters]]:&lt;br /&gt;
* [[Africa Local Chapter]] - [[User:Gfleming|Gavin Fleming]]&lt;br /&gt;
* [[Aust-NZ]] - Australia and New Zealand Chapter- Bruce Bannerman - bruce.bannerman.osgeo at gmail.com&lt;br /&gt;
* [[Brazil]] - Helton Uchoa - engenheiro.uchoa at gmail.com&lt;br /&gt;
* [[California]] - Landon Blake - sunburned.surveyor at gmail dot com&lt;br /&gt;
* [[Cascadia|CUGOS Cascadia Chapter US]] - [[User:Racicot|Aaron Racicot]] - aaronr at cugos.org (checked 2014-10-09)&lt;br /&gt;
* [[China]] - Chen Rongguo - chenrg at lreis.ac.cn&lt;br /&gt;
* [[D-A-CH]] (German language) - [[User:Mlechner|Marco Lechner]] (checked 2014-09-30)&lt;br /&gt;
* [[Finland]] - [[User:AJolma|Ari Jolma]] - ajolma at osgeo.org  (checked 2014-10-09)&lt;br /&gt;
* [[Francophone]] - board at osgeo.asso dot fr / president at osgeo.asso.fr (Etienne Delay) (checked 2014-09-30)&lt;br /&gt;
* [[Greek]] - [[User:kotzino|Dimitris Kotzinos]] - kotzino at csd dot uoc dot gr (checked 2014-09-30)&lt;br /&gt;
* [[India]] - P.S. Roy - psroy13 at gmail.com&lt;br /&gt;
* [[Italy]] - [[User:epifanio|Massimo Di Stefano]] - IT -- epiesasha at me dot com&lt;br /&gt;
* [[Japan]] - Mr. Mori Toru - moritoru at orkney.co.jp (checked 2014-09-30)&lt;br /&gt;
* [[Korea | Korean Chapter]] - [[User:Endofcap|Sanghee Shin]] - shshin at gaia3d.com or endofcap at gmail.com (checked 2014-09-30)&lt;br /&gt;
* [[KSA Chapter]] - Awase Khirni Syed - awasekhirni at gmail.com&lt;br /&gt;
* [[Nederlands | Dutch language Chapter]] - [[User:Just|Just van den Broecke]] (secretary) [[User:Geejee|Gert-Jan van der Weijden]] (president). info at osgeo dot nl (checked 2014-10-08)&lt;br /&gt;
* [[Ottawa Chapter]] - Fabien Ancelin - fabien.ancelin at gmail.com &lt;br /&gt;
* [[PDX-OSGEO]] - Oregon, US Chapter -- [[User:EliL|Eli L Adam]] - contact on user page (checked 2014-09-30)&lt;br /&gt;
* [[Philippines]] - [[User:maning|Maning Sambale]] - emmanuel dot sambale at gmail dot com  (checked 2014-10-09)&lt;br /&gt;
* [[Poland]] - Tomasz Kubik - tomasz kubik at pwr wroc pl (checked 2014-09-30)&lt;br /&gt;
* [[Portugal]] - Jorge Gustavo Rocha - [[Jorge_Gustavo_Rocha]], Giovanni Manghi - [[Giovanni_Manghi]]&lt;br /&gt;
* [[Romanian]] - [[User:Vasile|Vasile Crăciunescu]] - vasile at geo-spatial dot org&lt;br /&gt;
* [[Quebec]] - [[User:Dmorissette|Daniel Morissette]] - dmorissette at mapgears dot com (checked 2014-10-09)&lt;br /&gt;
* [[Spanish]] - [[Pedro-Juan Ferrer]] - vehrka at gmail.com  (checked 2014-10-09)&lt;br /&gt;
* [[Taiwan]] - Sander Borghuis - s.borghuis at geo.uu.nl '''(mail not delivered)'''&lt;br /&gt;
* [[Twin_Cities]] - Twin Cities, MN -- [[User:Bitner|David Bitner]] - bitner at dbspatial dot com&lt;br /&gt;
* [[Yukon Chapter]] -  [[User:hammj|Jeff Hamm]] - jeff at geoprism dot ca&lt;br /&gt;
* [http://www.osgeo.org/uk UK] - [[User:JoCook|Jo Cook]]&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
&lt;br /&gt;
* [[SAC:Primary Administrators]]&lt;br /&gt;
&lt;br /&gt;
== Local Representatives ==&lt;br /&gt;
&lt;br /&gt;
* list of local leaders by region: [[OSGeo Advocate]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Board]]&lt;br /&gt;
[[Category:Education]]&lt;br /&gt;
[[Category:Incubation]]&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:PSC]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Contacts&amp;diff=81180</id>
		<title>Contacts</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Contacts&amp;diff=81180"/>
		<updated>2015-01-08T15:12:15Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Software Projects */ Even now GDAL Chair&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OSGeo Projects are freestanding entities, handled by their own Project Steering Committees. Each project has been asked to provide a representative to help coordinate OSGeo involvement. These volunteers are listed by project below:&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
* General Foundation Info - info@osgeo.org - [mailto:info@osgeo.org] (emails are currently forwarded to 3 people: FrankW, JeffM, Jachym)&lt;br /&gt;
* [[President]] - [[Jeff McKenna]] - jmckenna at osgeo.org&lt;br /&gt;
* [[Treasurer]] - [[Michael Smith]] - michael.smith.erdc at gmail.com&lt;br /&gt;
* [[Secretary]] - [[Jáchym Čepický]] - jachym.cepicky at gmail.com&lt;br /&gt;
* [[Board of Directors]]&lt;br /&gt;
&lt;br /&gt;
== Software Projects ==&lt;br /&gt;
'''Web Mapping'''&lt;br /&gt;
* [http://www.deegree.org deegree]: [http://wiki.deegree.org/deegreeWiki/StructuresAndProcedures PSC] - Contact: [[User:JensFitzke | Jens Fitzke]]&lt;br /&gt;
* [http://geomajas.org Geomajas]: [http://www.geomajas.org/geomajas/project-steering-committee PSC] - Chair: Pieter De Graef (pieter.degraef at geosparc.com)&lt;br /&gt;
* [http://www.geomoose.org/ GeoMoose]: [http://www.geomoose.org/rfc/rfc-1.html PSC] - Chair: - Brian Fischer (bfischer at houstoneng.com)&lt;br /&gt;
* [http://geoserver.org GeoServer]: [http://docs.geoserver.org/latest/en/developer/policies/psc.html PSC] - Project Officer: Andrea Aime (andrea dot aime at geo-solutions.it) (checked 2014-10-09)&lt;br /&gt;
* [http://www.mapbender.org Mapbender]: [http://www.mapbender.org/index.php/Category:PSC PSC] - Chair: Christian Wygoda&lt;br /&gt;
* [http://www.mapfish.org MapFish]: [http://trac.mapfish.org/trac/mapfish/wiki/Community/PSC PSC] - Chair: [[User:Elem | Eric Lemoine]]&lt;br /&gt;
* [http://mapguide.osgeo.org/ MapGuide Open Source]: [http://mapguide.osgeo.org/psc.html PSC] - Chair: Robert Bray (robert.bray at autodesk.com)&lt;br /&gt;
* [http://mapserver.org/ MapServer]: [http://mapserver.org/development/rfc/ms-rfc-23.html PSC] - Chair: Stephen Lime (sdlime at comcast.net)&lt;br /&gt;
* [http://openlayers.org/ OpenLayers]: [http://trac.openlayers.org/wiki/SteeringCommittee PSC] - Chair: [[User:Tschaub | Tim Schaub]]&lt;br /&gt;
&lt;br /&gt;
'''Desktop Applications'''&lt;br /&gt;
* [http://grass.osgeo.org/ GRASS GIS]: [http://trac.osgeo.org/grass/wiki/PSC PSC] - Chair: [[Markus Neteler]]&lt;br /&gt;
* [http://www.gvsig.org/ gvSIG]: - [[GvSIG Technical Project Committee|PSC]] - Chair: [[Manuel Madrid]] (checked 2014-10-14)&lt;br /&gt;
* [http://marble.kde.org/ Marble]: [http://edu.kde.org/marble/authors.php Authors] - Liaison Officer: [[Torsten Rahn]] &lt;br /&gt;
* [http://www.ossim.org/ OSSIM]: [http://trac.osgeo.org/ossim/wiki/ossimgovernance PSC] - Chair: Garrett Potts&lt;br /&gt;
* [http://www.qgis.org/ Quantum GIS]: [http://wiki.qgis.org/qgiswiki/Project_Organigram PSC] (outdated, see [http://spatialgalaxy.net/2013/08/25/welcome-to-new-qgis-psc-members/ this blog post] by Gary Sherman for the current PSC members - Chair: Gary Sherman (sherman at mrcc.com)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Geospatial Libraries'''&lt;br /&gt;
* [http://fdo.osgeo.org/ FDO]: [http://fdo.osgeo.org/ Home Page] (link to PSC broken) - Chair: Greg Boone (greg.boone at autodesk.com)&lt;br /&gt;
* [http://www.gdal.org/ GDAL/OGR]: [http://trac.osgeo.org/gdal/wiki/GovernanceAndCommunity PSC] - Chair: Even Rouault (even.rouault@spatialys.com)&lt;br /&gt;
* [http://www.geotools.org/ GeoTools]: [http://docs.codehaus.org/display/GEOT/4+Project+Management+Committee PSC] - Project Officer Jody Garnett (jody.garnett at gmail.com) (checked 2014-10-09)&lt;br /&gt;
* [http://geos.osgeo.org/ GEOS]: [http://trac.osgeo.org/geos/wiki/PSC PSC] - Chair: [[User:Strk | Sandro Santilli]] (strk at keybit.net)&lt;br /&gt;
* [http://metacrs.osgeo.org/ MetaCRS]: [http://metacrs.osgeo.org PSC] - Chair: Frank Warmerdam (warmerdam@pobox.com)&lt;br /&gt;
* [http://postgis.net/ PostGIS]: [http://postgis.net/docs/postgis_introduction.html#psc PSC] - Chair: [[User:Pwramsey3 | Paul Ramsey]]&lt;br /&gt;
* [http://pgrouting.org/ pgRouting]: [http://pgrouting.org/development.html PSC] - Chair: [[User:Woodbri | Stephen Woodbridge]]&lt;br /&gt;
&lt;br /&gt;
'''Metadata Catalog'''&lt;br /&gt;
* [http://geonetwork-opensource.org GeoNetwork opensource]: [http://trac.osgeo.org/geonetwork/wiki/PSC PSC]  - Chair: [[User:Ticheler | Jeroen Ticheler]] (Jeroen.Ticheler at geocat.net) (checked 2014-10-09)&lt;br /&gt;
&lt;br /&gt;
'''Spatio-Temporal Analytics'''&lt;br /&gt;
* [http://www.rasdaman.org rasdaman opensource]: [http://rasdaman.org/wiki/Governance PSC]  - Chair: [[User:Pebau | Peter Baumann]] (baumann at rasdaman.com) (checked 2014-10-09)&lt;br /&gt;
&lt;br /&gt;
== Committees ==&lt;br /&gt;
* [[Conference Committee]] - Frank Warmerdam - warmerdam at pobox.com&lt;br /&gt;
* [[Education and Curriculum Committee]] - Charlie Schweik - cschweik at pubpol.umass.edu (checked 2014-10-09)&lt;br /&gt;
* [[Finance Committee]] - [[User:Dmorissette|Daniel Morissette]] - dmorissette at mapgears.com (checked 2014-10-09)&lt;br /&gt;
* [[Incubation Committee]] - Jody Garnett - jody.garnett at gmail.com (checked 2014-10-09)&lt;br /&gt;
* [[Marketing Committee]] - Cameron Shorter - cameron.shorter at gmail.com (checked 2014-10-09)&lt;br /&gt;
* [[Public Geospatial Data Committee]] - [[User:Bitner|David Bitner]] - bitner at dbspatial dot com (checked 2014-10-09)&lt;br /&gt;
* [[SAC|System Administration Committee]] - Alex Mandel - tech_dev at wildintellect.com (checked 2014-10-09)&lt;br /&gt;
* [[Website Committee]] - Christopher Schmidt - crschmidt at crschmidt.net&lt;br /&gt;
* OSGeo [[Journal]]&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
* [http://live.osgeo.org OSGeo-Live] - Cameron Shorter - cameron.shorter at gmail.com&lt;br /&gt;
&lt;br /&gt;
== Local Chapters ==&lt;br /&gt;
&lt;br /&gt;
Contacts list for the [[:Category:Local_Chapters|local chapters]]:&lt;br /&gt;
* [[Africa Local Chapter]] - [[User:Gfleming|Gavin Fleming]]&lt;br /&gt;
* [[Aust-NZ]] - Australia and New Zealand Chapter- Bruce Bannerman - bruce.bannerman.osgeo at gmail.com&lt;br /&gt;
* [[Brazil]] - Helton Uchoa - engenheiro.uchoa at gmail.com&lt;br /&gt;
* [[California]] - Landon Blake - sunburned.surveyor at gmail dot com&lt;br /&gt;
* [[Cascadia|CUGOS Cascadia Chapter US]] - [[User:Racicot|Aaron Racicot]] - aaronr at cugos.org (checked 2014-10-09)&lt;br /&gt;
* [[China]] - Chen Rongguo - chenrg at lreis.ac.cn&lt;br /&gt;
* [[D-A-CH]] (German language) - [[User:Mlechner|Marco Lechner]] (checked 2014-09-30)&lt;br /&gt;
* [[Finland]] - [[User:AJolma|Ari Jolma]] - ajolma at osgeo.org  (checked 2014-10-09)&lt;br /&gt;
* [[Francophone]] - board at osgeo.asso dot fr / president at osgeo.asso.fr (Etienne Delay) (checked 2014-09-30)&lt;br /&gt;
* [[Greek]] - [[User:kotzino|Dimitris Kotzinos]] - kotzino at csd dot uoc dot gr (checked 2014-09-30)&lt;br /&gt;
* [[India]] - P.S. Roy - psroy13 at gmail.com&lt;br /&gt;
* [[Italy]] - [[User:epifanio|Massimo Di Stefano]] - IT -- epiesasha at me dot com&lt;br /&gt;
* [[Japan]] - Mr. Mori Toru - moritoru at orkney.co.jp (checked 2014-09-30)&lt;br /&gt;
* [[Korea | Korean Chapter]] - [[User:Endofcap|Sanghee Shin]] - shshin at gaia3d.com or endofcap at gmail.com (checked 2014-09-30)&lt;br /&gt;
* [[KSA Chapter]] - Awase Khirni Syed - awasekhirni at gmail.com&lt;br /&gt;
* [[Nederlands | Dutch language Chapter]] - [[User:Just|Just van den Broecke]] (secretary) [[User:Geejee|Gert-Jan van der Weijden]] (president). info at osgeo dot nl (checked 2014-10-08)&lt;br /&gt;
* [[Ottawa Chapter]] - Fabien Ancelin - fabien.ancelin at gmail.com &lt;br /&gt;
* [[PDX-OSGEO]] - Oregon, US Chapter -- [[User:EliL|Eli L Adam]] - contact on user page (checked 2014-09-30)&lt;br /&gt;
* [[Philippines]] - [[User:maning|Maning Sambale]] - emmanuel dot sambale at gmail dot com  (checked 2014-10-09)&lt;br /&gt;
* [[Poland]] - Tomasz Kubik - tomasz kubik at pwr wroc pl (checked 2014-09-30)&lt;br /&gt;
* [[Portugal]] - Jorge Gustavo Rocha - [[Jorge_Gustavo_Rocha]], Giovanni Manghi - [[Giovanni_Manghi]]&lt;br /&gt;
* [[Romanian]] - [[User:Vasile|Vasile Crăciunescu]] - vasile at geo-spatial dot org&lt;br /&gt;
* [[Quebec]] - [[User:Dmorissette|Daniel Morissette]] - dmorissette at mapgears dot com (checked 2014-10-09)&lt;br /&gt;
* [[Spanish]] - [[Pedro-Juan Ferrer]] - vehrka at gmail.com  (checked 2014-10-09)&lt;br /&gt;
* [[Taiwan]] - Sander Borghuis - s.borghuis at geo.uu.nl '''(mail not delivered)'''&lt;br /&gt;
* [[Twin_Cities]] - Twin Cities, MN -- [[User:Bitner|David Bitner]] - bitner at dbspatial dot com&lt;br /&gt;
* [[Yukon Chapter]] -  [[User:hammj|Jeff Hamm]] - jeff at geoprism dot ca&lt;br /&gt;
* [http://www.osgeo.org/uk UK] - [[User:JoCook|Jo Cook]]&lt;br /&gt;
&lt;br /&gt;
== Infrastructure ==&lt;br /&gt;
&lt;br /&gt;
* [[SAC:Primary Administrators]]&lt;br /&gt;
&lt;br /&gt;
== Local Representatives ==&lt;br /&gt;
&lt;br /&gt;
* list of local leaders by region: [[OSGeo Advocate]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Board]]&lt;br /&gt;
[[Category:Education]]&lt;br /&gt;
[[Category:Incubation]]&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:PSC]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=WebExtraVM&amp;diff=80058</id>
		<title>WebExtraVM</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=WebExtraVM&amp;diff=80058"/>
		<updated>2014-09-17T05:36:22Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* *.foss4g.org */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Web Extra VM is a Debian virtual machine administered by [[SAC]], hosted on OSGeo3 at OSU OSL and used for hosting web sites and services that are directly the responsibility of SAC and that don't fit on the other more special purpose VMs (ie. TracSVN, or Drupal).  OSGeo member/project services that SAC isn't willing to take direct responsibility for likely belong on either the [[ProjectsVM]] or the [[AdhocVM]].&lt;br /&gt;
&lt;br /&gt;
The VM is reachable by ssh at webextra.osgeo.osuosl.org. Anyone in the https://www.osgeo.org/cgi-bin/auth/ldap_shell.py?group=sac (SAC) list has ssh access, and anyone in this group can add new people via the link. &lt;br /&gt;
&lt;br /&gt;
== Existing Services on Web Extra VM ==&lt;br /&gt;
&lt;br /&gt;
=== mum03.mapserver.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/foss4g/mum2003-web&lt;br /&gt;
* Admined by FrankW&lt;br /&gt;
* static html historial site&lt;br /&gt;
* Backup available in /osgeo/backup/longterm/mum03 on BackupVM.&lt;br /&gt;
&lt;br /&gt;
=== planet.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/venus (venus2?)&lt;br /&gt;
* Admined: [[Paolo Corti]], [[User:Jsanz|Jorge Gaspar Sanz Salinas]], [[User:Mloskot|Mateusz Loskot]], [[User:crschmidt|Christopher Schmidt]]&lt;br /&gt;
* See also: [[PlanetOSGeo]]&lt;br /&gt;
* All admins can be contacted by e-mail on planet (at) osgeo (dot) org&lt;br /&gt;
&lt;br /&gt;
=== live.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/osgeolive&lt;br /&gt;
* Static html site from SVN (https://svn.osgeo.org/osgeo/livedvd/website)&lt;br /&gt;
* Alex (wildintellect)&lt;br /&gt;
&lt;br /&gt;
=== gallery.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
Status: offline due to massive spamming&lt;br /&gt;
&lt;br /&gt;
TODO: implement moderated queue or other antispam measure&lt;br /&gt;
&lt;br /&gt;
* /var/www/gallery/&lt;br /&gt;
* content is in sqlite DB&lt;br /&gt;
* Spam removal howto: to be implemented&lt;br /&gt;
&lt;br /&gt;
=== 2011ws.foss4g.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/foss4g/uploads&lt;br /&gt;
* Admined by FrankW, jmckenna&lt;br /&gt;
* used for FOSS4G 2011 workshop files (through SFTP)&lt;br /&gt;
&lt;br /&gt;
=== *.foss4g.org ===&lt;br /&gt;
Includes main www and 2003, 2006, 2007, 2008, 2009, 2010, 2012, 2013&lt;br /&gt;
 /osgeo/foss4g/*&lt;br /&gt;
* 2011 is on webvm - as it's using Drupal&lt;br /&gt;
* Most are static dumps from CMSs that were used, &lt;br /&gt;
* 2008 uses the OCS instance (conference.osgeo.org) hosted on webextra&lt;br /&gt;
 /osgeo/ocs2&lt;br /&gt;
* Most being moved from osgeo1 29sep11 by tmitchell&lt;br /&gt;
* 2010 also moved from projects vm.&lt;br /&gt;
* 2013 site lives in svn and is checked out here manually&lt;br /&gt;
* Backups should be put /mirror/longterm on backup.osgeo.org as a comperessed tar file per the instructions there.&lt;br /&gt;
&lt;br /&gt;
=== vmap0.tiles.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* Serves as http://vmap0.tiles.osgeo.org/wms/vmap0?SERVICE=WMS&amp;amp;VERSION=1.1.0&amp;amp;REQUEST=GetCapabilities&lt;br /&gt;
* Lives in /var/www/tiles/vmap0 and /mapdata (2.3G)&lt;br /&gt;
* Originally setup by Chris Schmidt. &lt;br /&gt;
* Currently produces the bulk of load on the webextra VM.&lt;br /&gt;
* Presumably this is widely used as a default layer in OpenLayers.&lt;br /&gt;
* For the purpose of sharing the load, a copy of this service has been set up on &amp;quot;sphere.telascience.org&amp;quot; and a round-robin DNS provides balancing (Martin Spott).&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79987</id>
		<title>ZOO-Project Incubation Checklist</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79987"/>
		<updated>2014-09-14T00:26:41Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Processes */ preliminary&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Incubation Checklist =&lt;br /&gt;
&lt;br /&gt;
== Open ==&lt;br /&gt;
	 &lt;br /&gt;
The project has demonstrated that it has an open, active and healthy user and developer community:	&lt;br /&gt;
# Open: projects are expected to function in an open and public manner and include:&lt;br /&gt;
#* Open source license(s),&lt;br /&gt;
#** The ZOO-Project is primarily under the BSD [http://www.zoo-project.org/trac/browser/trunk/zoo-project/LICENSE LICENSE] and the [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance Review] has confirmed there are no known problems.&lt;br /&gt;
#* Open communication channels,&lt;br /&gt;
#** The [http://lists.osgeo.org/cgi-bin/mailman/listinfo/zoo-discuss zoo-discuss] list is public and active.  IRC and other [http://zoo-project.org/site/ZooWebSite/ZooProject/Contact Contact] points also available.&lt;br /&gt;
#* Open decision making process,&lt;br /&gt;
#** (Gerald is looking into making zoo-psc list public).  PSC meeting agenda and results available (for instance [http://zoo-project.org/trac/wiki/PSC/meetings/PSCMeet19?version=8 PSC Meeting 19]).&lt;br /&gt;
# Active and healthy community:&lt;br /&gt;
#* The project should have a community of developers and users who actively collaborate and support each other in a healthy way. &amp;lt;br/&amp;gt;&lt;br /&gt;
#** Suggested Text?&lt;br /&gt;
#* Long term viability of the project is demonstrated by showing participation and direction from multiple developers, who come from multiple organisations. &amp;lt;br/&amp;gt;&lt;br /&gt;
#** contributions come from GeoLabs SARL, Fundazione Edmund Mach, 3LIZ SARL, Cartogenic SARL and further more.&lt;br /&gt;
&lt;br /&gt;
== Copyright and License ==&lt;br /&gt;
&lt;br /&gt;
We need to ensure that the project owns or otherwise has obtained the ability to release the project code by completing the following steps:&lt;br /&gt;
# All project source code is available under an Open Source license.&lt;br /&gt;
#* Yes, as seen in [http://www.zoo-project.org/trac/browser/trunk/zoo-project/LICENSE LICENSE].&lt;br /&gt;
# Project documentation is available under an open license, such as Creative Commons.&lt;br /&gt;
#* (to confirm)&lt;br /&gt;
# The project code, documentation and data has been adequately vetted to assure it is all properly licensed, and a copyright notice included, as per a [http://www.osgeo.org/incubator/process/codereview.html Provenance Review].&lt;br /&gt;
#* [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance review] completed, no issues.&lt;br /&gt;
# The project maintains a list of all copyright holders identified in the Provenance Review Document.&lt;br /&gt;
#* (how to respond?) &lt;br /&gt;
# All code contributors have agreed to abide by the project's license policy, and this agreement has been documented and archived.&lt;br /&gt;
#* The [http://zoo-project.org/docs/community/developer.html code contribution guidelines] have been documented and agreed to by all developers.&lt;br /&gt;
&lt;br /&gt;
== Processes ==&lt;br /&gt;
&lt;br /&gt;
# The project has code under configuration management. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Eg, subversion, git.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Yes (Could we get a public url to source control?)&lt;br /&gt;
# The project uses an issue tracker and keeps the status of the issue tracker up to date.&lt;br /&gt;
#* Yes, at http://zoo-project.org/trac&lt;br /&gt;
# The project has documented its management processes. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This is typically done within a Developers Guide or Project Management Plan.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Yes, at http://zoo-project.org/docs/community/developer.html&lt;br /&gt;
# The project has a suitable open governance policy ensuring decisions are made, documented and adhered to in a public manner. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This typically means a Project Management Committee has been established with a process for adding new members. A robust Project Management Committee will typically draw upon developers, users and key stakeholders from multiple organisations as there will be a greater variety of technical visions and the project is more resilient to a sponsor leaving.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Yes, there is a functioning PSC (add link to PSC guidelines).&lt;br /&gt;
# The project uses public communication channels for decision making to maintain transparency.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt; E.g. archived email list(s), archived IRC channel(s), public issue tracker.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Yes, IRC, zoo-discuss, and Trac.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
# The project has user documentation:&lt;br /&gt;
#* Including sufficient detail to guide a new user through performing the core functionality provided by the application.&lt;br /&gt;
# The project has developer documentation:&lt;br /&gt;
#* Including checkout and build instructions.&lt;br /&gt;
#* Including commented code, ideally published for developer use. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Examples: javadocs for Java applications, or Sphinx documentation for Python applications.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Providing sufficient detail for an experience programmer to contribute patches or a new module in accordance with the project's programming conventions.&lt;br /&gt;
&lt;br /&gt;
==Release Procedure==&lt;br /&gt;
&lt;br /&gt;
In order to maintain a consistent level of quality, the project should follow defined release and testing processes.&lt;br /&gt;
&lt;br /&gt;
# The project follows a defined release process:&lt;br /&gt;
#* Which includes execution of the testing process before releasing a stable release. &lt;br /&gt;
# The project follows a documented testing process. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally, this includes both automated and manual testing&amp;lt;/i&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally this includes documented conformance to set quality goals, such as reporting Percentage Code Coverage of Unit Tests.&amp;lt;/i&amp;gt;&lt;br /&gt;
# Release and testing processes provide sufficient detail for an experienced programmer to follow.&lt;br /&gt;
&lt;br /&gt;
= OSGeo Committees and Community =&lt;br /&gt;
&lt;br /&gt;
The OSGeo Foundation is made up of a number of committees, projects and local chapters. This section gathers up information these groups have requested from OSGeo projects. These expectations are not mandatory requirements before graduation, but a project should be prepared to address them in order to be considered a good OSGeo citizen.&lt;br /&gt;
&lt;br /&gt;
== Board ==&lt;br /&gt;
&lt;br /&gt;
The OSGeo [[Board]] holds ultimate responsibility for all OSGeo activities. The Board requests:&lt;br /&gt;
&lt;br /&gt;
# A project provide a Project Officer as a contract point:&lt;br /&gt;
#* The Project Officer should be listed at: [[Contacts#Software_Projects|Project Officer]]&lt;br /&gt;
#* This person is established when the incubation committee recommends the project for graduation&lt;br /&gt;
#* Your community can change the project officer as needed (just add an agenda item to the next board meeting so they can recognise the change of officer).&lt;br /&gt;
&lt;br /&gt;
== Marketing ==&lt;br /&gt;
&lt;br /&gt;
Access to OSGeo's [[Marketing_Committee]] and associated [[Marketing_Pipeline]] is one of the key benefits of joining the OSGeo foundation. The Marketing Committee requests:&lt;br /&gt;
&lt;br /&gt;
# Marketing artefacts have been created about the project in line with the incubation criteria listed in the OSGeo Marketing Committee's [http://wiki.osgeo.org/wiki/Marketing_Artefacts Marketing Artefacts]. This lists the documentation requirements for [http://live.osgeo.org OSGeo-Live]. Marketing Artefacts include:&lt;br /&gt;
#* Application Overview&lt;br /&gt;
#* Application Quick Start&lt;br /&gt;
#* Logo&lt;br /&gt;
#* Graphical Image&lt;br /&gt;
# Ideally, stable version(s) of executable applications are bundled with appropriate distributions.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;In most cases, this will at least include [http://live.osgeo.org OSGeo-Live], but may also include [http://wiki.debian.org/DebianGis DebianGIS], [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS], and/or [http://trac.osgeo.org/osgeo4w/ osgeo4w] [http://www.maptools.org/ms4w/ ms4w], etc.)&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
&lt;br /&gt;
Projects do not exist in isolation; and are expected to communicate and collaborate on key issues. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;As an example the PostGIS release procedure asks that the release be checked with MapServer, GeoServer and others.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SAC ==&lt;br /&gt;
&lt;br /&gt;
The [[SAC|System Administration Committee]] is available to help infrastructure and facilities. Information for this committee is collected as part of the [[Project Status Template]]. The following should be set up:&lt;br /&gt;
* A http://projectname.osgeo.org domain name.&lt;br /&gt;
&lt;br /&gt;
A project may optionally request SAC help to make use of:&lt;br /&gt;
* OSGeo issue tracker&lt;br /&gt;
* OSGeo mailing list&lt;br /&gt;
* OSGeo svn&lt;br /&gt;
* http://downloads.osgeo.org&lt;br /&gt;
&lt;br /&gt;
[[Category: Incubation]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79986</id>
		<title>ZOO-Project Incubation Checklist</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79986"/>
		<updated>2014-09-14T00:20:26Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Copyright and License */ preliminary writeup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Incubation Checklist =&lt;br /&gt;
&lt;br /&gt;
== Open ==&lt;br /&gt;
	 &lt;br /&gt;
The project has demonstrated that it has an open, active and healthy user and developer community:	&lt;br /&gt;
# Open: projects are expected to function in an open and public manner and include:&lt;br /&gt;
#* Open source license(s),&lt;br /&gt;
#** The ZOO-Project is primarily under the BSD [http://www.zoo-project.org/trac/browser/trunk/zoo-project/LICENSE LICENSE] and the [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance Review] has confirmed there are no known problems.&lt;br /&gt;
#* Open communication channels,&lt;br /&gt;
#** The [http://lists.osgeo.org/cgi-bin/mailman/listinfo/zoo-discuss zoo-discuss] list is public and active.  IRC and other [http://zoo-project.org/site/ZooWebSite/ZooProject/Contact Contact] points also available.&lt;br /&gt;
#* Open decision making process,&lt;br /&gt;
#** (Gerald is looking into making zoo-psc list public).  PSC meeting agenda and results available (for instance [http://zoo-project.org/trac/wiki/PSC/meetings/PSCMeet19?version=8 PSC Meeting 19]).&lt;br /&gt;
# Active and healthy community:&lt;br /&gt;
#* The project should have a community of developers and users who actively collaborate and support each other in a healthy way. &amp;lt;br/&amp;gt;&lt;br /&gt;
#** Suggested Text?&lt;br /&gt;
#* Long term viability of the project is demonstrated by showing participation and direction from multiple developers, who come from multiple organisations. &amp;lt;br/&amp;gt;&lt;br /&gt;
#** contributions come from GeoLabs SARL, Fundazione Edmund Mach, 3LIZ SARL, Cartogenic SARL and further more.&lt;br /&gt;
&lt;br /&gt;
== Copyright and License ==&lt;br /&gt;
&lt;br /&gt;
We need to ensure that the project owns or otherwise has obtained the ability to release the project code by completing the following steps:&lt;br /&gt;
# All project source code is available under an Open Source license.&lt;br /&gt;
#* Yes, as seen in [http://www.zoo-project.org/trac/browser/trunk/zoo-project/LICENSE LICENSE].&lt;br /&gt;
# Project documentation is available under an open license, such as Creative Commons.&lt;br /&gt;
#* (to confirm)&lt;br /&gt;
# The project code, documentation and data has been adequately vetted to assure it is all properly licensed, and a copyright notice included, as per a [http://www.osgeo.org/incubator/process/codereview.html Provenance Review].&lt;br /&gt;
#* [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance review] completed, no issues.&lt;br /&gt;
# The project maintains a list of all copyright holders identified in the Provenance Review Document.&lt;br /&gt;
#* (how to respond?) &lt;br /&gt;
# All code contributors have agreed to abide by the project's license policy, and this agreement has been documented and archived.&lt;br /&gt;
#* The [http://zoo-project.org/docs/community/developer.html code contribution guidelines] have been documented and agreed to by all developers.&lt;br /&gt;
&lt;br /&gt;
== Processes ==&lt;br /&gt;
&lt;br /&gt;
# The project has code under configuration management. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Eg, subversion, git.&amp;lt;/i&amp;gt;&lt;br /&gt;
# The project uses an issue tracker and keeps the status of the issue tracker up to date.&lt;br /&gt;
# The project has documented its management processes. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This is typically done within a Developers Guide or Project Management Plan.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* The project has a suitable open governance policy ensuring decisions are made, documented and adhered to in a public manner. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This typically means a Project Management Committee has been established with a process for adding new members. A robust Project Management Committee will typically draw upon developers, users and key stakeholders from multiple organisations as there will be a greater variety of technical visions and the project is more resilient to a sponsor leaving.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* The project uses public communication channels for decision making to maintain transparency.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt; E.g. archived email list(s), archived IRC channel(s), public issue tracker.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
# The project has user documentation:&lt;br /&gt;
#* Including sufficient detail to guide a new user through performing the core functionality provided by the application.&lt;br /&gt;
# The project has developer documentation:&lt;br /&gt;
#* Including checkout and build instructions.&lt;br /&gt;
#* Including commented code, ideally published for developer use. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Examples: javadocs for Java applications, or Sphinx documentation for Python applications.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Providing sufficient detail for an experience programmer to contribute patches or a new module in accordance with the project's programming conventions.&lt;br /&gt;
&lt;br /&gt;
==Release Procedure==&lt;br /&gt;
&lt;br /&gt;
In order to maintain a consistent level of quality, the project should follow defined release and testing processes.&lt;br /&gt;
&lt;br /&gt;
# The project follows a defined release process:&lt;br /&gt;
#* Which includes execution of the testing process before releasing a stable release. &lt;br /&gt;
# The project follows a documented testing process. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally, this includes both automated and manual testing&amp;lt;/i&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally this includes documented conformance to set quality goals, such as reporting Percentage Code Coverage of Unit Tests.&amp;lt;/i&amp;gt;&lt;br /&gt;
# Release and testing processes provide sufficient detail for an experienced programmer to follow.&lt;br /&gt;
&lt;br /&gt;
= OSGeo Committees and Community =&lt;br /&gt;
&lt;br /&gt;
The OSGeo Foundation is made up of a number of committees, projects and local chapters. This section gathers up information these groups have requested from OSGeo projects. These expectations are not mandatory requirements before graduation, but a project should be prepared to address them in order to be considered a good OSGeo citizen.&lt;br /&gt;
&lt;br /&gt;
== Board ==&lt;br /&gt;
&lt;br /&gt;
The OSGeo [[Board]] holds ultimate responsibility for all OSGeo activities. The Board requests:&lt;br /&gt;
&lt;br /&gt;
# A project provide a Project Officer as a contract point:&lt;br /&gt;
#* The Project Officer should be listed at: [[Contacts#Software_Projects|Project Officer]]&lt;br /&gt;
#* This person is established when the incubation committee recommends the project for graduation&lt;br /&gt;
#* Your community can change the project officer as needed (just add an agenda item to the next board meeting so they can recognise the change of officer).&lt;br /&gt;
&lt;br /&gt;
== Marketing ==&lt;br /&gt;
&lt;br /&gt;
Access to OSGeo's [[Marketing_Committee]] and associated [[Marketing_Pipeline]] is one of the key benefits of joining the OSGeo foundation. The Marketing Committee requests:&lt;br /&gt;
&lt;br /&gt;
# Marketing artefacts have been created about the project in line with the incubation criteria listed in the OSGeo Marketing Committee's [http://wiki.osgeo.org/wiki/Marketing_Artefacts Marketing Artefacts]. This lists the documentation requirements for [http://live.osgeo.org OSGeo-Live]. Marketing Artefacts include:&lt;br /&gt;
#* Application Overview&lt;br /&gt;
#* Application Quick Start&lt;br /&gt;
#* Logo&lt;br /&gt;
#* Graphical Image&lt;br /&gt;
# Ideally, stable version(s) of executable applications are bundled with appropriate distributions.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;In most cases, this will at least include [http://live.osgeo.org OSGeo-Live], but may also include [http://wiki.debian.org/DebianGis DebianGIS], [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS], and/or [http://trac.osgeo.org/osgeo4w/ osgeo4w] [http://www.maptools.org/ms4w/ ms4w], etc.)&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
&lt;br /&gt;
Projects do not exist in isolation; and are expected to communicate and collaborate on key issues. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;As an example the PostGIS release procedure asks that the release be checked with MapServer, GeoServer and others.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SAC ==&lt;br /&gt;
&lt;br /&gt;
The [[SAC|System Administration Committee]] is available to help infrastructure and facilities. Information for this committee is collected as part of the [[Project Status Template]]. The following should be set up:&lt;br /&gt;
* A http://projectname.osgeo.org domain name.&lt;br /&gt;
&lt;br /&gt;
A project may optionally request SAC help to make use of:&lt;br /&gt;
* OSGeo issue tracker&lt;br /&gt;
* OSGeo mailing list&lt;br /&gt;
* OSGeo svn&lt;br /&gt;
* http://downloads.osgeo.org&lt;br /&gt;
&lt;br /&gt;
[[Category: Incubation]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79985</id>
		<title>ZOO-Project Incubation Checklist</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79985"/>
		<updated>2014-09-14T00:16:44Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Open */ flesh out a few points.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Incubation Checklist =&lt;br /&gt;
&lt;br /&gt;
== Open ==&lt;br /&gt;
	 &lt;br /&gt;
The project has demonstrated that it has an open, active and healthy user and developer community:	&lt;br /&gt;
# Open: projects are expected to function in an open and public manner and include:&lt;br /&gt;
#* Open source license(s),&lt;br /&gt;
#** The ZOO-Project is primarily under the BSD [http://www.zoo-project.org/trac/browser/trunk/zoo-project/LICENSE LICENSE] and the [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance Review] has confirmed there are no known problems.&lt;br /&gt;
#* Open communication channels,&lt;br /&gt;
#** The [http://lists.osgeo.org/cgi-bin/mailman/listinfo/zoo-discuss zoo-discuss] list is public and active.  IRC and other [http://zoo-project.org/site/ZooWebSite/ZooProject/Contact Contact] points also available.&lt;br /&gt;
#* Open decision making process,&lt;br /&gt;
#** (Gerald is looking into making zoo-psc list public).  PSC meeting agenda and results available (for instance [http://zoo-project.org/trac/wiki/PSC/meetings/PSCMeet19?version=8 PSC Meeting 19]).&lt;br /&gt;
# Active and healthy community:&lt;br /&gt;
#* The project should have a community of developers and users who actively collaborate and support each other in a healthy way. &amp;lt;br/&amp;gt;&lt;br /&gt;
#** Suggested Text?&lt;br /&gt;
#* Long term viability of the project is demonstrated by showing participation and direction from multiple developers, who come from multiple organisations. &amp;lt;br/&amp;gt;&lt;br /&gt;
#** contributions come from GeoLabs SARL, Fundazione Edmund Mach, 3LIZ SARL, Cartogenic SARL and further more.&lt;br /&gt;
&lt;br /&gt;
== Copyright and License ==&lt;br /&gt;
&lt;br /&gt;
We need to ensure that the project owns or otherwise has obtained the ability to release the project code by completing the following steps:&lt;br /&gt;
# All project source code is available under an Open Source license.&lt;br /&gt;
# Project documentation is available under an open license, such as Creative Commons.&lt;br /&gt;
# The project code, documentation and data has been adequately vetted to assure it is all properly licensed, and a copyright notice included, as per a [http://www.osgeo.org/incubator/process/codereview.html Provenance Review].&lt;br /&gt;
# The project maintains a list of all copyright holders identified in the Provenance Review Document. &lt;br /&gt;
# All code contributors have agreed to abide by the project's license policy, and this agreement has been documented and archived.&lt;br /&gt;
&lt;br /&gt;
== Processes ==&lt;br /&gt;
&lt;br /&gt;
# The project has code under configuration management. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Eg, subversion, git.&amp;lt;/i&amp;gt;&lt;br /&gt;
# The project uses an issue tracker and keeps the status of the issue tracker up to date.&lt;br /&gt;
# The project has documented its management processes. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This is typically done within a Developers Guide or Project Management Plan.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* The project has a suitable open governance policy ensuring decisions are made, documented and adhered to in a public manner. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This typically means a Project Management Committee has been established with a process for adding new members. A robust Project Management Committee will typically draw upon developers, users and key stakeholders from multiple organisations as there will be a greater variety of technical visions and the project is more resilient to a sponsor leaving.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* The project uses public communication channels for decision making to maintain transparency.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt; E.g. archived email list(s), archived IRC channel(s), public issue tracker.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
# The project has user documentation:&lt;br /&gt;
#* Including sufficient detail to guide a new user through performing the core functionality provided by the application.&lt;br /&gt;
# The project has developer documentation:&lt;br /&gt;
#* Including checkout and build instructions.&lt;br /&gt;
#* Including commented code, ideally published for developer use. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Examples: javadocs for Java applications, or Sphinx documentation for Python applications.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Providing sufficient detail for an experience programmer to contribute patches or a new module in accordance with the project's programming conventions.&lt;br /&gt;
&lt;br /&gt;
==Release Procedure==&lt;br /&gt;
&lt;br /&gt;
In order to maintain a consistent level of quality, the project should follow defined release and testing processes.&lt;br /&gt;
&lt;br /&gt;
# The project follows a defined release process:&lt;br /&gt;
#* Which includes execution of the testing process before releasing a stable release. &lt;br /&gt;
# The project follows a documented testing process. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally, this includes both automated and manual testing&amp;lt;/i&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally this includes documented conformance to set quality goals, such as reporting Percentage Code Coverage of Unit Tests.&amp;lt;/i&amp;gt;&lt;br /&gt;
# Release and testing processes provide sufficient detail for an experienced programmer to follow.&lt;br /&gt;
&lt;br /&gt;
= OSGeo Committees and Community =&lt;br /&gt;
&lt;br /&gt;
The OSGeo Foundation is made up of a number of committees, projects and local chapters. This section gathers up information these groups have requested from OSGeo projects. These expectations are not mandatory requirements before graduation, but a project should be prepared to address them in order to be considered a good OSGeo citizen.&lt;br /&gt;
&lt;br /&gt;
== Board ==&lt;br /&gt;
&lt;br /&gt;
The OSGeo [[Board]] holds ultimate responsibility for all OSGeo activities. The Board requests:&lt;br /&gt;
&lt;br /&gt;
# A project provide a Project Officer as a contract point:&lt;br /&gt;
#* The Project Officer should be listed at: [[Contacts#Software_Projects|Project Officer]]&lt;br /&gt;
#* This person is established when the incubation committee recommends the project for graduation&lt;br /&gt;
#* Your community can change the project officer as needed (just add an agenda item to the next board meeting so they can recognise the change of officer).&lt;br /&gt;
&lt;br /&gt;
== Marketing ==&lt;br /&gt;
&lt;br /&gt;
Access to OSGeo's [[Marketing_Committee]] and associated [[Marketing_Pipeline]] is one of the key benefits of joining the OSGeo foundation. The Marketing Committee requests:&lt;br /&gt;
&lt;br /&gt;
# Marketing artefacts have been created about the project in line with the incubation criteria listed in the OSGeo Marketing Committee's [http://wiki.osgeo.org/wiki/Marketing_Artefacts Marketing Artefacts]. This lists the documentation requirements for [http://live.osgeo.org OSGeo-Live]. Marketing Artefacts include:&lt;br /&gt;
#* Application Overview&lt;br /&gt;
#* Application Quick Start&lt;br /&gt;
#* Logo&lt;br /&gt;
#* Graphical Image&lt;br /&gt;
# Ideally, stable version(s) of executable applications are bundled with appropriate distributions.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;In most cases, this will at least include [http://live.osgeo.org OSGeo-Live], but may also include [http://wiki.debian.org/DebianGis DebianGIS], [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS], and/or [http://trac.osgeo.org/osgeo4w/ osgeo4w] [http://www.maptools.org/ms4w/ ms4w], etc.)&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
&lt;br /&gt;
Projects do not exist in isolation; and are expected to communicate and collaborate on key issues. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;As an example the PostGIS release procedure asks that the release be checked with MapServer, GeoServer and others.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SAC ==&lt;br /&gt;
&lt;br /&gt;
The [[SAC|System Administration Committee]] is available to help infrastructure and facilities. Information for this committee is collected as part of the [[Project Status Template]]. The following should be set up:&lt;br /&gt;
* A http://projectname.osgeo.org domain name.&lt;br /&gt;
&lt;br /&gt;
A project may optionally request SAC help to make use of:&lt;br /&gt;
* OSGeo issue tracker&lt;br /&gt;
* OSGeo mailing list&lt;br /&gt;
* OSGeo svn&lt;br /&gt;
* http://downloads.osgeo.org&lt;br /&gt;
&lt;br /&gt;
[[Category: Incubation]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79984</id>
		<title>ZOO-Project Incubation Checklist</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=ZOO-Project_Incubation_Checklist&amp;diff=79984"/>
		<updated>2014-09-14T00:06:31Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Preliminary&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Incubation Checklist =&lt;br /&gt;
&lt;br /&gt;
== Open ==&lt;br /&gt;
	 &lt;br /&gt;
The project has demonstrated that it has an open, active and healthy user and developer community:	&lt;br /&gt;
# Open: projects are expected to function in an open and public manner and include:&lt;br /&gt;
#* Open source license(s),&lt;br /&gt;
#** The ZOO-Project is primarily under the BSD [http://www.zoo-project.org/trac/browser/trunk/zoo-project/LICENSE LICENSE] and the [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance Review] has confirmed there are no known problems.&lt;br /&gt;
#* Open communication channels,&lt;br /&gt;
#* Open decision making process,&lt;br /&gt;
# Active and healthy community:&lt;br /&gt;
#* The project should have a community of developers and users who actively collaborate and support each other in a healthy way. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Eg. collaboration on project activities such as testing, release and feature development.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Long term viability of the project is demonstrated by showing participation and direction from multiple developers, who come from multiple organisations. &amp;lt;br/&amp;gt; &amp;lt;i&amp;gt; Eg. The project is resilient enough to sustain loss of a developer or supporting organisation, often referred to as having a high [http://en.wikipedia.org/wiki/Bus_factor bus factor]. Decisions are made openly instead of behind closed doors, which empowers all developers to take ownership of the project and facilitates spreading of knowledge between current and future team members.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Copyright and License ==&lt;br /&gt;
&lt;br /&gt;
We need to ensure that the project owns or otherwise has obtained the ability to release the project code by completing the following steps:&lt;br /&gt;
# All project source code is available under an Open Source license.&lt;br /&gt;
# Project documentation is available under an open license, such as Creative Commons.&lt;br /&gt;
# The project code, documentation and data has been adequately vetted to assure it is all properly licensed, and a copyright notice included, as per a [http://www.osgeo.org/incubator/process/codereview.html Provenance Review].&lt;br /&gt;
# The project maintains a list of all copyright holders identified in the Provenance Review Document. &lt;br /&gt;
# All code contributors have agreed to abide by the project's license policy, and this agreement has been documented and archived.&lt;br /&gt;
&lt;br /&gt;
== Processes ==&lt;br /&gt;
&lt;br /&gt;
# The project has code under configuration management. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Eg, subversion, git.&amp;lt;/i&amp;gt;&lt;br /&gt;
# The project uses an issue tracker and keeps the status of the issue tracker up to date.&lt;br /&gt;
# The project has documented its management processes. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This is typically done within a Developers Guide or Project Management Plan.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* The project has a suitable open governance policy ensuring decisions are made, documented and adhered to in a public manner. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;This typically means a Project Management Committee has been established with a process for adding new members. A robust Project Management Committee will typically draw upon developers, users and key stakeholders from multiple organisations as there will be a greater variety of technical visions and the project is more resilient to a sponsor leaving.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* The project uses public communication channels for decision making to maintain transparency.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt; E.g. archived email list(s), archived IRC channel(s), public issue tracker.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
# The project has user documentation:&lt;br /&gt;
#* Including sufficient detail to guide a new user through performing the core functionality provided by the application.&lt;br /&gt;
# The project has developer documentation:&lt;br /&gt;
#* Including checkout and build instructions.&lt;br /&gt;
#* Including commented code, ideally published for developer use. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Examples: javadocs for Java applications, or Sphinx documentation for Python applications.&amp;lt;/i&amp;gt;&lt;br /&gt;
#* Providing sufficient detail for an experience programmer to contribute patches or a new module in accordance with the project's programming conventions.&lt;br /&gt;
&lt;br /&gt;
==Release Procedure==&lt;br /&gt;
&lt;br /&gt;
In order to maintain a consistent level of quality, the project should follow defined release and testing processes.&lt;br /&gt;
&lt;br /&gt;
# The project follows a defined release process:&lt;br /&gt;
#* Which includes execution of the testing process before releasing a stable release. &lt;br /&gt;
# The project follows a documented testing process. &amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally, this includes both automated and manual testing&amp;lt;/i&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;Ideally this includes documented conformance to set quality goals, such as reporting Percentage Code Coverage of Unit Tests.&amp;lt;/i&amp;gt;&lt;br /&gt;
# Release and testing processes provide sufficient detail for an experienced programmer to follow.&lt;br /&gt;
&lt;br /&gt;
= OSGeo Committees and Community =&lt;br /&gt;
&lt;br /&gt;
The OSGeo Foundation is made up of a number of committees, projects and local chapters. This section gathers up information these groups have requested from OSGeo projects. These expectations are not mandatory requirements before graduation, but a project should be prepared to address them in order to be considered a good OSGeo citizen.&lt;br /&gt;
&lt;br /&gt;
== Board ==&lt;br /&gt;
&lt;br /&gt;
The OSGeo [[Board]] holds ultimate responsibility for all OSGeo activities. The Board requests:&lt;br /&gt;
&lt;br /&gt;
# A project provide a Project Officer as a contract point:&lt;br /&gt;
#* The Project Officer should be listed at: [[Contacts#Software_Projects|Project Officer]]&lt;br /&gt;
#* This person is established when the incubation committee recommends the project for graduation&lt;br /&gt;
#* Your community can change the project officer as needed (just add an agenda item to the next board meeting so they can recognise the change of officer).&lt;br /&gt;
&lt;br /&gt;
== Marketing ==&lt;br /&gt;
&lt;br /&gt;
Access to OSGeo's [[Marketing_Committee]] and associated [[Marketing_Pipeline]] is one of the key benefits of joining the OSGeo foundation. The Marketing Committee requests:&lt;br /&gt;
&lt;br /&gt;
# Marketing artefacts have been created about the project in line with the incubation criteria listed in the OSGeo Marketing Committee's [http://wiki.osgeo.org/wiki/Marketing_Artefacts Marketing Artefacts]. This lists the documentation requirements for [http://live.osgeo.org OSGeo-Live]. Marketing Artefacts include:&lt;br /&gt;
#* Application Overview&lt;br /&gt;
#* Application Quick Start&lt;br /&gt;
#* Logo&lt;br /&gt;
#* Graphical Image&lt;br /&gt;
# Ideally, stable version(s) of executable applications are bundled with appropriate distributions.&amp;lt;br/&amp;gt;&amp;lt;i&amp;gt;In most cases, this will at least include [http://live.osgeo.org OSGeo-Live], but may also include [http://wiki.debian.org/DebianGis DebianGIS], [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS], and/or [http://trac.osgeo.org/osgeo4w/ osgeo4w] [http://www.maptools.org/ms4w/ ms4w], etc.)&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
&lt;br /&gt;
Projects do not exist in isolation; and are expected to communicate and collaborate on key issues. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt;As an example the PostGIS release procedure asks that the release be checked with MapServer, GeoServer and others.&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SAC ==&lt;br /&gt;
&lt;br /&gt;
The [[SAC|System Administration Committee]] is available to help infrastructure and facilities. Information for this committee is collected as part of the [[Project Status Template]]. The following should be set up:&lt;br /&gt;
* A http://projectname.osgeo.org domain name.&lt;br /&gt;
&lt;br /&gt;
A project may optionally request SAC help to make use of:&lt;br /&gt;
* OSGeo issue tracker&lt;br /&gt;
* OSGeo mailing list&lt;br /&gt;
* OSGeo svn&lt;br /&gt;
* http://downloads.osgeo.org&lt;br /&gt;
&lt;br /&gt;
[[Category: Incubation]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Incubation_Committee&amp;diff=79983</id>
		<title>Incubation Committee</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Incubation_Committee&amp;diff=79983"/>
		<updated>2014-09-13T23:58:51Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The project incubation committee is responsible for overseeing the incubation process for new projects entering the foundation. The incubation committee provides resources to assist new projects to reach full membership, and makes recommendations to the board when they feel projects have completed incubation.&lt;br /&gt;
&lt;br /&gt;
== Documents ==&lt;br /&gt;
&lt;br /&gt;
* Official incubator public web page is at: http://osgeo.org/incubator/index.html (with members list).&lt;br /&gt;
* [[Incubation FAQ]]&lt;br /&gt;
* [[Official_IncCom_Documents]]&lt;br /&gt;
* Incubation process docs: http://osgeo.org/incubator/process/index.html (original [[Official_IncCom_Documents|wiki draft documents]])&lt;br /&gt;
* [[Incubation Badges]]&lt;br /&gt;
&lt;br /&gt;
Draft or Example Documents&lt;br /&gt;
* Draft [[Commiter Responsibilities Guidelines]]&lt;br /&gt;
* OSGeo Distribution and Committer [[http://www.osgeo.org/content/foundation/legal/licenses.html licenses] which can be used as is, or as an example for projects starting off with participatory open source.&lt;br /&gt;
** Geotools Copyright Assignment ([http://download.osgeo.org/osgeo/legal/GeotoolsAssignmentToOSGeo.pdf pdf], [http://download.osgeo.org/osgeo/legal/GeotoolsAssignmentToOSGeo.odt odt]) - previous example&lt;br /&gt;
** [[Project Copyright Assignment]] - previous example&lt;br /&gt;
* [[Contributor Agreement]] and FAQ &lt;br /&gt;
* [[Incubation Phases]] proposal&lt;br /&gt;
&lt;br /&gt;
Document Refresh 2014&lt;br /&gt;
* [[Project Graduation Checklist]]&lt;br /&gt;
&lt;br /&gt;
Projects:&lt;br /&gt;
* [[OSGeo Labs]] - for OSGeo related projects that haven't reached incubation status&lt;br /&gt;
* List of [[Project Steering Committees]]&lt;br /&gt;
&lt;br /&gt;
Reference:&lt;br /&gt;
* [[Project Infrastructure Migration]]&lt;br /&gt;
* [http://producingoss.com/html-chunk/index.html Producing OSS] - by Karl Fogel - an excellent primer on running an FOSS project.&lt;br /&gt;
&lt;br /&gt;
Reports:&lt;br /&gt;
* [[Incubation Committee Report 2012]]&lt;br /&gt;
* [[Incubation Committee Report 2011]]&lt;br /&gt;
&lt;br /&gt;
Trac:&lt;br /&gt;
* [http://trac.osgeo.org/osgeo/query?status=new&amp;amp;status=assigned&amp;amp;status=reopened&amp;amp;component=Incubator&amp;amp;order=priority Open Incubator Trac Issues]&lt;br /&gt;
* [http://trac.osgeo.org/osgeo/query?status=new&amp;amp;status=assigned&amp;amp;status=reopened&amp;amp;component=Incubator&amp;amp;keywords=%7Eapplication&amp;amp;order=priority Pending Incubation Applications]&lt;br /&gt;
&lt;br /&gt;
== Meetings and Reports ==&lt;br /&gt;
Meetings are scheduled via [http://lists.osgeo.org/mailman/listinfo/incubator Mailing List] and take place via [[Getting_Started#Jump_on_IRC | IRC]] at the times specified in the [[Foundation Calendar]].&lt;br /&gt;
* [[IncCom Meeting1|First Meeting]] - March 13th 2006&lt;br /&gt;
* [[IncCom Meeting2|Second Meeting]] - March 20th 2006&lt;br /&gt;
* [[IncCom Meeting3|Third Meeting]] - March 27th 2006&lt;br /&gt;
* [[IncCom Meeting4|Fourth Meeting]] - April 10th 2006&lt;br /&gt;
* [[IncCom Meeting5|Fifth Meeting]] - April 24th 2006&lt;br /&gt;
* [[IncCom Meeting6|Sixth Meeting]] - June 19th 2006&lt;br /&gt;
* [[IncCom Meeting7|Seventh Meeting]] - August 7th 2006&lt;br /&gt;
* [[IncCom Meeting8|Eighth Meeting]] - October 30th 2006&lt;br /&gt;
* [[IncCom Meeting9|Nineth Meeting]] - February 12th 2007&lt;br /&gt;
* [[IncCom Meeting10|Tenth Meeting]] - June 11th 2007&lt;br /&gt;
* [[IncCom Meeting11|Eleventh Meeting]] - October 29th 2007 &lt;br /&gt;
* [[IncCom Meeting12|Twelfth Meeting]] - September 8th 2008 &lt;br /&gt;
* [[IncCom Meeting13|Thirteenth Meeting]] - October 29th 2009&lt;br /&gt;
* [[IncCom Meeting14|Fourteenth Meeting]] - March 1th 2010&lt;br /&gt;
* [[IncCom Meeting15]] - Nov 21 2011&lt;br /&gt;
* [[IncCom Meeting16]] - Jan 17 2012&lt;br /&gt;
* [[IncCom Meeting17]] - March 19 2012&lt;br /&gt;
* [[IncCom Meeting18]] - May 21 2012&lt;br /&gt;
* [[IncCom Meeting19]] - July 23 2012&lt;br /&gt;
* [[IncCom Meeting20]] - Sep 24 2012&lt;br /&gt;
* [[IncCom Meeting21]] - Feb 18 2013&lt;br /&gt;
* [[IncCom Report22]] - 2013 Q2&lt;br /&gt;
* [[IncCom Report23]] - 2013 Q3&lt;br /&gt;
* [[IncCom Report24]] - 2014 Q1&lt;br /&gt;
&lt;br /&gt;
== Progress in the incubator ==&lt;br /&gt;
&lt;br /&gt;
The OSGeo incubation process takes place in three stages:&lt;br /&gt;
&lt;br /&gt;
# Initial Application&lt;br /&gt;
# Incubation&lt;br /&gt;
## Project Status: project details, and a few resourcing questions for the system admin committee (see [[Project Status Template]]).&lt;br /&gt;
## Provenance Review: quick check to ensure the project is open source and has permission to distribute its source code.&lt;br /&gt;
## Final Checklist: review the project procedures and gather requested information for OSGeo participation&lt;br /&gt;
# Graduation&lt;br /&gt;
&lt;br /&gt;
The following projects are currently in OSGeo incubation:&lt;br /&gt;
&lt;br /&gt;
* gvSIG: http://www.osgeo.org/gvsig&lt;br /&gt;
*# [[gvSIG Incubation Status]]&lt;br /&gt;
*# [[gvSIG Provenance Review]]&lt;br /&gt;
*# [[gvSIG Incubation Checklist]]&lt;br /&gt;
&lt;br /&gt;
* MetaCRS: http://trac.osgeo.org/metacrs/&lt;br /&gt;
*# [[MetaCRS Incubation Status]]&lt;br /&gt;
*# no provenance review provided&lt;br /&gt;
*# no check list provided&lt;br /&gt;
&lt;br /&gt;
* Opticks: http://opticks.org&lt;br /&gt;
*# [[Opticks Incubation Status]]&lt;br /&gt;
*# no provenance review provided&lt;br /&gt;
*# [[Opticks Incubation Checklist]]&lt;br /&gt;
&lt;br /&gt;
* rasdaman: http://www.rasdaman.org&lt;br /&gt;
*# [[ rasdaman Incubation Status ]]&lt;br /&gt;
*# http://rasdaman.org/wiki/OSGeoCodeProvenance&lt;br /&gt;
*# http://www.rasdaman.org/wiki/OSGeoIncubationChecklist&lt;br /&gt;
&lt;br /&gt;
* Zoo-Project: http://www.zoo-project.org&lt;br /&gt;
*# [[ZOO-Project_Incubation_Status]]&lt;br /&gt;
*# [http://zoo-project.org/trac/wiki/Provenance%20Review Provenance Review]&lt;br /&gt;
*# [[ZOO-Project Incubation Checklist]]&lt;br /&gt;
&lt;br /&gt;
* pycsw: http://pycsw.org&lt;br /&gt;
*# status template not filled out&lt;br /&gt;
*# no provenance review provided&lt;br /&gt;
*# no check list provided&lt;br /&gt;
&lt;br /&gt;
* TEAM Engine: http://teamengine.sourceforge.net&lt;br /&gt;
*# status template not filled out&lt;br /&gt;
*# no provenance review provided&lt;br /&gt;
*# no check list provided&lt;br /&gt;
&lt;br /&gt;
*OTB&lt;br /&gt;
*# [[OTB Incubation Application]]&lt;br /&gt;
*#[[OTB Project Incubation Status]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above pages are used to track the progress of incubation projects and are used by the developer team (and OSGeo mentor). In many cases the links&lt;br /&gt;
will take you to a project specific wiki or website in order to be closer to their target community.&lt;br /&gt;
&lt;br /&gt;
When projects have completed the incubation checklist their mentor will recommend them to the Incubation committee for graduation.&lt;br /&gt;
&lt;br /&gt;
== Graduated == &lt;br /&gt;
&lt;br /&gt;
The following status and provenance documents are for historical purposes, and are no longer actively maintained. &lt;br /&gt;
&lt;br /&gt;
* Community Mapbuilder: [[Community Mapbuilder Incubation Progress]] | [[Community Mapbuilder Provenance Review]]&lt;br /&gt;
* deegree: [[deegree Incubation Status]] | [[deegree Provenance Review]]&lt;br /&gt;
* FDO: [[FDO Incubation Status]] | [[FDO Provenance Review]]&lt;br /&gt;
* GEOS: [[GEOS Incubation Status]] | [[GEOS Provenance Review]]&lt;br /&gt;
* GDAL/OGR: [[GDAL Incubation Progress]] | [[GDAL Provenance Review]]&lt;br /&gt;
* Geomajas: [[GeoMajas Incubation Status]] | [[GeoMajas Provenance Review]]&lt;br /&gt;
* GeoNetwork: [[GeoNetwork Incubation Status]] | [[GeoNetwork Provenance Review]]&lt;br /&gt;
* GeoMoose: [[GeoMoose Incubation Status]] | [[GeoMoose Provenance Review]] | [[GeoMoose Incubation Checklist]]&lt;br /&gt;
* GeoTools: [[GeoTools Incubation Progress]] | [[GeoTools Provenance Review]]&lt;br /&gt;
* GeoServer: [[http://geoserver.org/display/GEOS/OSGEO+incubation+questionnaire Incubation Questionnaire]] | [[http://geoserver.org/display/GEOS/GeoServer+Incubation+Status Incubation Status]] | [[http://geoserver.org/display/GEOS/GeoServer+Provenance+Review Provenance Review]] | [[http://geoserver.org/display/GEOS/GeoServer+Incubation+Checklist Incubation Checklist]] | [[Geoserver Mentor Notes]]&lt;br /&gt;
* GRASS: [[GRASS Incubation Progress]] | [[GRASS Provenance Review]]&lt;br /&gt;
* Mapbender: [[Mapbender Incubation Progress]] | [[Mapbender Provenance Review]]&lt;br /&gt;
* MapFish: [[MapFish Incubation Status]] | [[MapFish Provenance Review]] (Graduated: August 2011)&lt;br /&gt;
* MapGuide: [[MapGuide Incubation Status]] | [[MapGuide Provenance Review]]&lt;br /&gt;
* MapServer: [[MapServer incubation status]] | [[MapServer Provenance Review]]&lt;br /&gt;
* Marble: [[Marble Incubation Status]] | [[Marble Code Provenance Review]] | [[Marble Graduation Checklist]] (Graduated 17 October 2013)&lt;br /&gt;
* OpenLayers: [[OpenLayers Incubation Status]] | [[OpenLayers Provenance Review]]&lt;br /&gt;
* PostGIS: [[PostGIS Incubation Status]] | [[PostGIS Provenance Review]]&lt;br /&gt;
* OSSIM: [[OSSIM incubation status]] | [http://trac.osgeo.org/ossim/wiki/ossimprovenance OSSIM Provenance Review]&lt;br /&gt;
* QGIS: [[QGIS Incubation Status]] | [[QGIS Provenance Review]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The initial projects to go through the incubation process helped define what is required. The above pages tracked the progress (and capture the experience) of these projects.&lt;br /&gt;
&lt;br /&gt;
[[Category:Incubation]]&lt;br /&gt;
[[Category:Committees]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77119</id>
		<title>OSGeo Budget 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77119"/>
		<updated>2014-03-06T20:32:49Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Expenses */ fix addition&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''****DRAFT in progress****''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Income ==&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''Foundation Sponsorships'''''&lt;br /&gt;
|-&lt;br /&gt;
| Sustaining Sponsorships (50K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Principal Sponsorships (20K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|20,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| Supporting Sponsorships (10K)&lt;br /&gt;
|align=right|1&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| Not paid yet&lt;br /&gt;
|-&lt;br /&gt;
| Associate Sponsorships (3K)&lt;br /&gt;
|align=right|9&lt;br /&gt;
|align=right|3,000&lt;br /&gt;
|align=right|27,000&lt;br /&gt;
| lost 2 in 2012, gained 2 in 2013&lt;br /&gt;
|-&lt;br /&gt;
| '''''FOSS4G Conferences'''''&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Nottingham&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G NA (50% of profits)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|9,000&lt;br /&gt;
| local committee estimates 500 attendees and 18k profit&lt;br /&gt;
|-&lt;br /&gt;
| '''''GSoC'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC (mentorships)&lt;br /&gt;
|align=right|20&lt;br /&gt;
|align=right|500&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| GSoC mentor summit reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''Total''' &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''108,000'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Expenses ==&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Administration'''''&lt;br /&gt;
|-&lt;br /&gt;
| Bank fees (base pkg, wire fees, paypal feels, etc.)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|75&lt;br /&gt;
|align=right|900&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Quickbooks (yearly fee, renews in Oct)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|301.54&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| EarthClassMail (monthly pkg + charges)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|40&lt;br /&gt;
|align=right|480&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Office supplies&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Accounting/tax filing support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 501c3 support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Other professional services (as needed)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Directors and Officers insurance&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|1,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,281.54'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''SAC'''''&lt;br /&gt;
|-&lt;br /&gt;
| Peer1 Servers (ending June 2014?)&lt;br /&gt;
|align=right|6&lt;br /&gt;
|align=right|559&lt;br /&gt;
|align=right|3,354&lt;br /&gt;
| TODO:Retire osgeo1 in 2014?&lt;br /&gt;
|-&lt;br /&gt;
| OSUOSL hosting&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|3,500&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| More hardware at OSUOSL&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Domain registrations&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|200&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SSL Cert ($1499 in 2011, every 5 years)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''12054.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Outreach committee'''''&lt;br /&gt;
|-&lt;br /&gt;
| General events support (starter kits, LiveDVD/USB matching funds)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Travel expenses'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC Mentor Summit expenses reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| ICA/OSGeo Labs Student Travel&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|(detailed procedures to be decided)&lt;br /&gt;
|-&lt;br /&gt;
| Yearly Board F2F&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Strategic travel (case by case)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|7,500&lt;br /&gt;
| For example, to send an OSGeo Advocate (such as a board member) to negotiate on behalf of OSGeo at the founding of the LocationTech foundation. (This typically doesn't extend to sponsorship of OSGeo speakers at conferences).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''15,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Events'''''&lt;br /&gt;
|-&lt;br /&gt;
| Code Sprint Support&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|15,000&lt;br /&gt;
| (approximately $10K already committed to Vienna sprint)&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Seed Money&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| FOSS4G seed money (inc regional events). Requires ~ $50K capital per global event of 800 attendees. Less for smaller. Seed money should be returned with a modest profit.&lt;br /&gt;
|-&lt;br /&gt;
| Other Sponsorship Opportunities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| a small amount for other events&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''20,000.00'''&lt;br /&gt;
|-&lt;br /&gt;
| '''Total'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''67,335.54'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| .&lt;br /&gt;
|-&lt;br /&gt;
| '''Surplus/Loss'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''40,664.46'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* All amounts are in US dollars.&lt;br /&gt;
&lt;br /&gt;
[[Category:Budget]]&lt;br /&gt;
[[Category:Finance]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77118</id>
		<title>OSGeo Budget 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77118"/>
		<updated>2014-03-06T20:30:11Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Expenses */ add 5k for edu travel.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''****DRAFT in progress****''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Income ==&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''Foundation Sponsorships'''''&lt;br /&gt;
|-&lt;br /&gt;
| Sustaining Sponsorships (50K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Principal Sponsorships (20K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|20,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| Supporting Sponsorships (10K)&lt;br /&gt;
|align=right|1&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| Not paid yet&lt;br /&gt;
|-&lt;br /&gt;
| Associate Sponsorships (3K)&lt;br /&gt;
|align=right|9&lt;br /&gt;
|align=right|3,000&lt;br /&gt;
|align=right|27,000&lt;br /&gt;
| lost 2 in 2012, gained 2 in 2013&lt;br /&gt;
|-&lt;br /&gt;
| '''''FOSS4G Conferences'''''&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Nottingham&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G NA (50% of profits)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|9,000&lt;br /&gt;
| local committee estimates 500 attendees and 18k profit&lt;br /&gt;
|-&lt;br /&gt;
| '''''GSoC'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC (mentorships)&lt;br /&gt;
|align=right|20&lt;br /&gt;
|align=right|500&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| GSoC mentor summit reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''Total''' &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''108,000'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Expenses ==&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Administration'''''&lt;br /&gt;
|-&lt;br /&gt;
| Bank fees (base pkg, wire fees, paypal feels, etc.)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|75&lt;br /&gt;
|align=right|900&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Quickbooks (yearly fee, renews in Oct)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|301.54&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| EarthClassMail (monthly pkg + charges)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|40&lt;br /&gt;
|align=right|480&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Office supplies&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Accounting/tax filing support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 501c3 support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Other professional services (as needed)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Directors and Officers insurance&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|1,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,281.54'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''SAC'''''&lt;br /&gt;
|-&lt;br /&gt;
| Peer1 Servers (ending June 2014?)&lt;br /&gt;
|align=right|6&lt;br /&gt;
|align=right|559&lt;br /&gt;
|align=right|3,354&lt;br /&gt;
| TODO:Retire osgeo1 in 2014?&lt;br /&gt;
|-&lt;br /&gt;
| OSUOSL hosting&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|3,500&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| More hardware at OSUOSL&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Domain registrations&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|200&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SSL Cert ($1499 in 2011, every 5 years)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''7,554.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Outreach committee'''''&lt;br /&gt;
|-&lt;br /&gt;
| General events support (starter kits, LiveDVD/USB matching funds)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Travel expenses'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC Mentor Summit expenses reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| ICA/OSGeo Labs Student Travel&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|(detailed procedures to be decided)&lt;br /&gt;
|-&lt;br /&gt;
| Yearly Board F2F&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Strategic travel (case by case)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|7,500&lt;br /&gt;
| For example, to send an OSGeo Advocate (such as a board member) to negotiate on behalf of OSGeo at the founding of the LocationTech foundation. (This typically doesn't extend to sponsorship of OSGeo speakers at conferences).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''15,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Events'''''&lt;br /&gt;
|-&lt;br /&gt;
| Code Sprint Support&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|15,000&lt;br /&gt;
| (approximately $10K already committed to Vienna sprint)&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Seed Money&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| FOSS4G seed money (inc regional events). Requires ~ $50K capital per global event of 800 attendees. Less for smaller. Seed money should be returned with a modest profit.&lt;br /&gt;
|-&lt;br /&gt;
| Other Sponsorship Opportunities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| a small amount for other events&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''20,000.00'''&lt;br /&gt;
|-&lt;br /&gt;
| '''Total'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''62,835.54'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| .&lt;br /&gt;
|-&lt;br /&gt;
| '''Surplus/Loss'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''45,164.46'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* All amounts are in US dollars.&lt;br /&gt;
&lt;br /&gt;
[[Category:Budget]]&lt;br /&gt;
[[Category:Finance]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77117</id>
		<title>OSGeo Budget 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77117"/>
		<updated>2014-03-06T19:48:23Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Expenses */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''****DRAFT in progress****''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Income ==&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''Foundation Sponsorships'''''&lt;br /&gt;
|-&lt;br /&gt;
| Sustaining Sponsorships (50K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Principal Sponsorships (20K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|20,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| Supporting Sponsorships (10K)&lt;br /&gt;
|align=right|1&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| Not paid yet&lt;br /&gt;
|-&lt;br /&gt;
| Associate Sponsorships (3K)&lt;br /&gt;
|align=right|9&lt;br /&gt;
|align=right|3,000&lt;br /&gt;
|align=right|27,000&lt;br /&gt;
| lost 2 in 2012, gained 2 in 2013&lt;br /&gt;
|-&lt;br /&gt;
| '''''FOSS4G Conferences'''''&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Nottingham&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G NA (50% of profits)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|9,000&lt;br /&gt;
| local committee estimates 500 attendees and 18k profit&lt;br /&gt;
|-&lt;br /&gt;
| '''''GSoC'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC (mentorships)&lt;br /&gt;
|align=right|20&lt;br /&gt;
|align=right|500&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| GSoC mentor summit reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''Total''' &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''108,000'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Expenses ==&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Administration'''''&lt;br /&gt;
|-&lt;br /&gt;
| Bank fees (base pkg, wire fees, paypal feels, etc.)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|75&lt;br /&gt;
|align=right|900&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Quickbooks (yearly fee, renews in Oct)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|301.54&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| EarthClassMail (monthly pkg + charges)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|40&lt;br /&gt;
|align=right|480&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Office supplies&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Accounting/tax filing support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 501c3 support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Other professional services (as needed)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Directors and Officers insurance&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|1,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,281.54'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''SAC'''''&lt;br /&gt;
|-&lt;br /&gt;
| Peer1 Servers (ending June 2014?)&lt;br /&gt;
|align=right|6&lt;br /&gt;
|align=right|559&lt;br /&gt;
|align=right|3,354&lt;br /&gt;
| TODO:Retire osgeo1 in 2014?&lt;br /&gt;
|-&lt;br /&gt;
| OSUOSL hosting&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|3,500&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| More hardware at OSUOSL&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Domain registrations&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|200&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SSL Cert ($1499 in 2011, every 5 years)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''7,554.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Outreach committee'''''&lt;br /&gt;
|-&lt;br /&gt;
| General events support (starter kits, LiveDVD/USB matching funds)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Travel expenses'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC Mentor Summit expenses reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Yearly Board F2F&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Strategic travel (case by case)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|7,500&lt;br /&gt;
| For example, to send an OSGeo Advocate (such as a board member) to negotiate on behalf of OSGeo at the founding of the LocationTech foundation. (This typically doesn't extend to sponsorship of OSGeo speakers at conferences).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Events'''''&lt;br /&gt;
|-&lt;br /&gt;
| Code Sprint Support&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|15,000&lt;br /&gt;
| (approximately $10K already committed to Vienna sprint)&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Seed Money&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| FOSS4G seed money (inc regional events). Requires ~ $50K capital per global event of 800 attendees. Less for smaller. Seed money should be returned with a modest profit.&lt;br /&gt;
|-&lt;br /&gt;
| Other Sponsorship Opportunities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| a small amount for other events&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''20,000.00'''&lt;br /&gt;
|-&lt;br /&gt;
| '''Total'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''57,835.54'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| .&lt;br /&gt;
|-&lt;br /&gt;
| '''Surplus/Loss'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''50,164.46'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* All amounts are in US dollars.&lt;br /&gt;
&lt;br /&gt;
[[Category:Budget]]&lt;br /&gt;
[[Category:Finance]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77116</id>
		<title>OSGeo Budget 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77116"/>
		<updated>2014-03-06T19:47:34Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Expenses */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''****DRAFT in progress****''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Income ==&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''Foundation Sponsorships'''''&lt;br /&gt;
|-&lt;br /&gt;
| Sustaining Sponsorships (50K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Principal Sponsorships (20K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|20,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| Supporting Sponsorships (10K)&lt;br /&gt;
|align=right|1&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| Not paid yet&lt;br /&gt;
|-&lt;br /&gt;
| Associate Sponsorships (3K)&lt;br /&gt;
|align=right|9&lt;br /&gt;
|align=right|3,000&lt;br /&gt;
|align=right|27,000&lt;br /&gt;
| lost 2 in 2012, gained 2 in 2013&lt;br /&gt;
|-&lt;br /&gt;
| '''''FOSS4G Conferences'''''&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Nottingham&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G NA (50% of profits)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|9,000&lt;br /&gt;
| local committee estimates 500 attendees and 18k profit&lt;br /&gt;
|-&lt;br /&gt;
| '''''GSoC'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC (mentorships)&lt;br /&gt;
|align=right|20&lt;br /&gt;
|align=right|500&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| GSoC mentor summit reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''Total''' &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''108,000'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Expenses ==&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Administration'''''&lt;br /&gt;
|-&lt;br /&gt;
| Bank fees (base pkg, wire fees, paypal feels, etc.)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|75&lt;br /&gt;
|align=right|900&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Quickbooks (yearly fee, renews in Oct)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|301.54&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| EarthClassMail (monthly pkg + charges)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|40&lt;br /&gt;
|align=right|480&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Office supplies&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Accounting/tax filing support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 501c3 support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Other professional services (as needed)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Directors and Officers insurance&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|1,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,281.54'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''SAC'''''&lt;br /&gt;
|-&lt;br /&gt;
| Peer1 Servers (ending June 2014?)&lt;br /&gt;
|align=right|6&lt;br /&gt;
|align=right|559&lt;br /&gt;
|align=right|3,354&lt;br /&gt;
| TODO:Retire osgeo1 in 2014?&lt;br /&gt;
|-&lt;br /&gt;
| OSUOSL hosting&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|3,500&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| More hardware at OSUOSL&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Domain registrations&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|200&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SSL Cert ($1499 in 2011, every 5 years)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''7,554.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Outreach committee'''''&lt;br /&gt;
|-&lt;br /&gt;
| General events support (starter kits, LiveDVD/USB matching funds)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| '''''Travel expenses'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC Mentor Summit expenses reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Yearly Board F2F&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Strategic travel (case by case)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|7,500&lt;br /&gt;
| For example, to send an OSGeo Advocate (such as a board member) to negotiate on behalf of OSGeo at the founding of the LocationTech foundation. (This typically doesn't extend to sponsorship of OSGeo speakers at conferences).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Events'''''&lt;br /&gt;
|-&lt;br /&gt;
| Code Sprint Support&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|15,000&lt;br /&gt;
| (approximately $10K already committed to Vienna sprint)&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Seed Money&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| FOSS4G seed money (inc regional events). Requires ~ $50K capital per global event of 800 attendees. Less for smaller. Seed money should be returned with a modest profit.&lt;br /&gt;
|-&lt;br /&gt;
| Other Sponsorship Opportunities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| a small amount for other events&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''20,000.00'''&lt;br /&gt;
|-&lt;br /&gt;
| '''Total'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''47,835.54'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| .&lt;br /&gt;
|-&lt;br /&gt;
| '''Surplus/Loss'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''60,164.46'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* All amounts are in US dollars.&lt;br /&gt;
&lt;br /&gt;
[[Category:Budget]]&lt;br /&gt;
[[Category:Finance]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77115</id>
		<title>OSGeo Budget 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77115"/>
		<updated>2014-03-06T19:47:10Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Update various numbers.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''****DRAFT in progress****''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Income ==&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''Foundation Sponsorships'''''&lt;br /&gt;
|-&lt;br /&gt;
| Sustaining Sponsorships (50K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Principal Sponsorships (20K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|20,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| Supporting Sponsorships (10K)&lt;br /&gt;
|align=right|1&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| Not paid yet&lt;br /&gt;
|-&lt;br /&gt;
| Associate Sponsorships (3K)&lt;br /&gt;
|align=right|9&lt;br /&gt;
|align=right|3,000&lt;br /&gt;
|align=right|27,000&lt;br /&gt;
| lost 2 in 2012, gained 2 in 2013&lt;br /&gt;
|-&lt;br /&gt;
| '''''FOSS4G Conferences'''''&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Nottingham&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G NA (50% of profits)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|9,000&lt;br /&gt;
| local committee estimates 500 attendees and 18k profit&lt;br /&gt;
|-&lt;br /&gt;
| '''''GSoC'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC (mentorships)&lt;br /&gt;
|align=right|20&lt;br /&gt;
|align=right|500&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| GSoC mentor summit reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''Total''' &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''108,000'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Expenses ==&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Administration'''''&lt;br /&gt;
|-&lt;br /&gt;
| Bank fees (base pkg, wire fees, paypal feels, etc.)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|75&lt;br /&gt;
|align=right|900&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Quickbooks (yearly fee, renews in Oct)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|301.54&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| EarthClassMail (monthly pkg + charges)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|40&lt;br /&gt;
|align=right|480&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Office supplies&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Accounting/tax filing support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 501c3 support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Other professional services (as needed)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Directors and Officers insurance&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|1,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,281.54'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''SAC'''''&lt;br /&gt;
|-&lt;br /&gt;
| Peer1 Servers (ending June 2014?)&lt;br /&gt;
|align=right|6&lt;br /&gt;
|align=right|559&lt;br /&gt;
|align=right|3,354&lt;br /&gt;
| TODO:Retire osgeo1 in 2014?&lt;br /&gt;
|-&lt;br /&gt;
| OSUOSL hosting&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|3,500&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| More hardware at OSUOSL&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Domain registrations&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|200&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SSL Cert ($1499 in 2011, every 5 years)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
|  &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''7,554.00'''|- &lt;br /&gt;
| '''''Outreach committee'''''&lt;br /&gt;
|-&lt;br /&gt;
| General events support (starter kits, LiveDVD/USB matching funds)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| '''''Travel expenses'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC Mentor Summit expenses reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Yearly Board F2F&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Strategic travel (case by case)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|7,500&lt;br /&gt;
| For example, to send an OSGeo Advocate (such as a board member) to negotiate on behalf of OSGeo at the founding of the LocationTech foundation. (This typically doesn't extend to sponsorship of OSGeo speakers at conferences).&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''10,000.00'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Events'''''&lt;br /&gt;
|-&lt;br /&gt;
| Code Sprint Support&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|15,000&lt;br /&gt;
| (approximately $10K already committed to Vienna sprint)&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Seed Money&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| FOSS4G seed money (inc regional events). Requires ~ $50K capital per global event of 800 attendees. Less for smaller. Seed money should be returned with a modest profit.&lt;br /&gt;
|-&lt;br /&gt;
| Other Sponsorship Opportunities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| a small amount for other events&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''20,000.00'''&lt;br /&gt;
|-&lt;br /&gt;
| '''Total'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''47,835.54'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| .&lt;br /&gt;
|-&lt;br /&gt;
| '''Surplus/Loss'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''60,164.46'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* All amounts are in US dollars.&lt;br /&gt;
&lt;br /&gt;
[[Category:Budget]]&lt;br /&gt;
[[Category:Finance]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77114</id>
		<title>OSGeo Budget 2014</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo_Budget_2014&amp;diff=77114"/>
		<updated>2014-03-06T19:38:05Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Expenses */ first pass updating for 2014.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''****DRAFT in progress****''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Income ==&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|-&lt;br /&gt;
| '''''Foundation Sponsorships'''''&lt;br /&gt;
|-&lt;br /&gt;
| Sustaining Sponsorships (50K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Principal Sponsorships (20K)&lt;br /&gt;
|align=right|0&lt;br /&gt;
|align=right|20,000&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| Supporting Sponsorships (10K)&lt;br /&gt;
|align=right|1&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| Not paid yet&lt;br /&gt;
|-&lt;br /&gt;
| Associate Sponsorships (3K)&lt;br /&gt;
|align=right|9&lt;br /&gt;
|align=right|3,000&lt;br /&gt;
|align=right|27,000&lt;br /&gt;
| lost 2 in 2012, gained 2 in 2013&lt;br /&gt;
|-&lt;br /&gt;
| '''''FOSS4G Conferences'''''&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Nottingham&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|50,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G NA (50% of profits)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|9,000&lt;br /&gt;
| local committee estimates 500 attendees and 18k profit&lt;br /&gt;
|-&lt;br /&gt;
| '''''GSoC'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC (mentorships)&lt;br /&gt;
|align=right|20&lt;br /&gt;
|align=right|500&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| GSoC mentor summit reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''Total''' &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|'''108,000'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Expenses ==&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
| '''Source'''&lt;br /&gt;
| '''Qty'''&lt;br /&gt;
| '''Unit $'''&lt;br /&gt;
| '''2014 Amount'''&lt;br /&gt;
| '''Notes'''&lt;br /&gt;
|- &lt;br /&gt;
| '''''Administration'''''&lt;br /&gt;
|-&lt;br /&gt;
| Bank fees (base pkg, wire fees, paypal feels, etc.)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|75&lt;br /&gt;
|align=right|900&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Quickbooks (yearly fee, renews in Oct)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|301.54&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| EarthClassMail (monthly pkg + charges)&lt;br /&gt;
|align=right|12&lt;br /&gt;
|align=right|40&lt;br /&gt;
|align=right|480&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Office supplies&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|100&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Accounting/tax filing support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 501c3 support&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Other professional services (as needed)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|5,000&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''''Insurance'''''&lt;br /&gt;
|-&lt;br /&gt;
| Directors and Officers insurance&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|1,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| General Liability&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|0&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Special Event insurance&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|0&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| '''''SAC'''''&lt;br /&gt;
|-&lt;br /&gt;
| Peer1 Servers (ending June 2014?)&lt;br /&gt;
|align=right|6&lt;br /&gt;
|align=right|559&lt;br /&gt;
|align=right|3,354&lt;br /&gt;
| TODO:Retire osgeo1 in 2014?&lt;br /&gt;
|-&lt;br /&gt;
| OSUOSL hosting&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|3,500&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| More hardware at OSUOSL&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Domain registrations&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|200&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SSL Cert ($1499 in 2011, every 5 years)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
|  &lt;br /&gt;
|- &lt;br /&gt;
| '''''Outreach committee'''''&lt;br /&gt;
|-&lt;br /&gt;
| General events support (starter kits, LiveDVD/USB matching funds)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|10,000&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| '''''Travel expenses'''''&lt;br /&gt;
|-&lt;br /&gt;
| GSoC Mentor Summit expenses reimbursement&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|align=right|2,500&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Yearly Board F2F&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|0&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Strategic travel (case by case)&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|7,500&lt;br /&gt;
| For example, to send an OSGeo Advocate (such as a board member) to negotiate on behalf of OSGeo at the founding of the LocationTech foundation. (This typically doesn't extend to sponsorship of OSGeo speakers at conferences).&lt;br /&gt;
|- &lt;br /&gt;
| '''''Events'''''&lt;br /&gt;
|-&lt;br /&gt;
| Code Sprint Support&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|15,000&lt;br /&gt;
| (approximately $10K already committed to Vienna sprint)&lt;br /&gt;
|-&lt;br /&gt;
| FOSS4G Seed Money&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| FOSS4G seed money (inc regional events). Requires ~ $50K capital per global event of 800 attendees. Less for smaller. Seed money should be returned with a modest profit.&lt;br /&gt;
|-&lt;br /&gt;
| Other Sponsorship Opportunities&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|align=right|5,000&lt;br /&gt;
| a small amount for other events&lt;br /&gt;
|-&lt;br /&gt;
| '''Total'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''?'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| .&lt;br /&gt;
|-&lt;br /&gt;
| '''Surplus/Loss'''&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|align=right|'''?'''&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* All amounts are in US dollars.&lt;br /&gt;
&lt;br /&gt;
[[Category:Budget]]&lt;br /&gt;
[[Category:Finance]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76184</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76184"/>
		<updated>2014-01-30T19:36:54Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Renaming Lists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/newlist.mbox&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* check that proper permissions are set (takes 10+ minutes!)&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
&lt;br /&gt;
== copy / clone user addresses across lists ==&lt;br /&gt;
* add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # /usr/lib/mailman/bin/mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76183</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76183"/>
		<updated>2014-01-30T19:26:21Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Renaming Lists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/newlist.mbox&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* check that proper permissions are set&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
&lt;br /&gt;
== copy / clone user addresses across lists ==&lt;br /&gt;
* add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # /usr/lib/mailman/bin/mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76182</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76182"/>
		<updated>2014-01-30T19:25:53Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Renaming Lists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/newlist.mbox&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* update aliases and check that proper permissions are set&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
&lt;br /&gt;
== copy / clone user addresses across lists ==&lt;br /&gt;
* add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # /usr/lib/mailman/bin/mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76181</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=76181"/>
		<updated>2014-01-30T19:14:07Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Renaming Lists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/newlist.mbox&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* update aliases and check that proper permissions are set&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
&lt;br /&gt;
== copy / clone user addresses across lists ==&lt;br /&gt;
* add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # /usr/lib/mailman/bin/mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=WebExtraVM&amp;diff=75492</id>
		<title>WebExtraVM</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=WebExtraVM&amp;diff=75492"/>
		<updated>2013-12-08T23:30:55Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* *.foss4g.org */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Web Extra VM is a Debian virtual machine administered by [[SAC]], hosted on OSGeo3 at OSU OSL and used for hosting web sites and services that are directly the responsibility of SAC and that don't fit on the other more special purpose VMs (ie. TracSVN, or Drupal).  OSGeo member/project services that SAC isn't willing to take direct responsibility for likely belong on either the [[ProjectsVM]] or the [[AdhocVM]].&lt;br /&gt;
&lt;br /&gt;
The VM is reachable by ssh at webextra.osgeo.osuosl.org. Anyone in the https://www.osgeo.org/cgi-bin/auth/ldap_shell.py?group=sac (SAC) list has ssh access, and anyone in this group can add new people via the link. &lt;br /&gt;
&lt;br /&gt;
== Existing Services on Web Extra VM ==&lt;br /&gt;
&lt;br /&gt;
=== mum03.mapserver.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/foss4g/mum2003-web&lt;br /&gt;
* Admined by FrankW&lt;br /&gt;
* static html historial site&lt;br /&gt;
* Backup available in /osgeo/backup/longterm/mum03 on BackupVM.&lt;br /&gt;
&lt;br /&gt;
=== planet.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/venus (venus2?)&lt;br /&gt;
* Admined: [[Paolo Corti]], [[User:Jsanz|Jorge Gaspar Sanz Salinas]], [[User:Mloskot|Mateusz Loskot]], [[User:crschmidt|Christopher Schmidt]]&lt;br /&gt;
* See also: [[PlanetOSGeo]]&lt;br /&gt;
* All admins can be contacted by e-mail on planet (at) osgeo (dot) org&lt;br /&gt;
&lt;br /&gt;
=== live.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/osgeolive&lt;br /&gt;
* Static html site from SVN (https://svn.osgeo.org/osgeo/livedvd/website)&lt;br /&gt;
* Alex (wildintellect)&lt;br /&gt;
&lt;br /&gt;
=== gallery.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
Status: offline due to massive spamming&lt;br /&gt;
&lt;br /&gt;
TODO: implement moderated queue or other antispam measure&lt;br /&gt;
&lt;br /&gt;
* /var/www/gallery/&lt;br /&gt;
* content is in sqlite DB&lt;br /&gt;
* Spam removal howto: to be implemented&lt;br /&gt;
&lt;br /&gt;
=== 2011ws.foss4g.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/foss4g/uploads&lt;br /&gt;
* Admined by FrankW, jmckenna&lt;br /&gt;
* used for FOSS4G 2011 workshop files (through SFTP)&lt;br /&gt;
&lt;br /&gt;
=== *.foss4g.org ===&lt;br /&gt;
Includes main www and 2003, 2006, 2007, 2008, 2009, 2010, 2012, 2013&lt;br /&gt;
 /osgeo/foss4g/*&lt;br /&gt;
* 2011 is on webvm - as it's using Drupal&lt;br /&gt;
* Most are static dumps from CMSs that were used, &lt;br /&gt;
* 2008 uses the OCS instance (conference.osgeo.org) hosted on webextra&lt;br /&gt;
 /osgeo/ocs2&lt;br /&gt;
* Most being moved from osgeo1 29sep11 by tmitchell&lt;br /&gt;
* 2010 also moved from projects vm.&lt;br /&gt;
* 2013 site lives in svn and is checked out here manually&lt;br /&gt;
&lt;br /&gt;
=== vmap0.tiles.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* Serves as http://vmap0.tiles.osgeo.org/wms/vmap0?SERVICE=WMS&amp;amp;VERSION=1.1.0&amp;amp;REQUEST=GetCapabilities&lt;br /&gt;
* Lives in /var/www/tiles/vmap0 and /mapdata (2.3G)&lt;br /&gt;
* Originally setup by Chris Schmidt. &lt;br /&gt;
* Currently produces the bulk of load on the webextra VM.&lt;br /&gt;
* Presumably this is widely used as a default layer in OpenLayers.&lt;br /&gt;
* For the purpose of sharing the load, a copy of this service has been set up on &amp;quot;sphere.telascience.org&amp;quot; and a round-robin DNS provides balancing (Martin Spott).&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=75377</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=75377"/>
		<updated>2013-12-03T01:33:59Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Migrate */ fix some mailman migration details for new OSU OSL version.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* update aliases and check that proper permissions are set&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
&lt;br /&gt;
== copy / clone user addresses across lists ==&lt;br /&gt;
* add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R list.list /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # /usr/lib/mailman/bin/mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Board_of_Directors&amp;diff=74610</id>
		<title>Board of Directors</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Board_of_Directors&amp;diff=74610"/>
		<updated>2013-10-17T18:23:50Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Meetings */ remove the extra wiki  link leading back to here.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== OSGeo Foundation Board of Directors ==&lt;br /&gt;
&lt;br /&gt;
The board is elected by the [http://www.osgeo.org/charter_members Charter members] as outlined in the [[Board Election Procedure]].&lt;br /&gt;
&lt;br /&gt;
Period: August 2012 - July/August 2014 &lt;br /&gt;
* [[Anne Ghisla]] - Berlin, Germany (Central European Time UTC +2h)&lt;br /&gt;
* [[Jeff McKenna]] - Halifax, Nova Scotia, Canada (Atlantic Time UTC - 3h)&lt;br /&gt;
* [[Daniel Morissette]] - Chicoutimi, Quebec, Canada (US Eastern Time UTC - 4h)&lt;br /&gt;
* [[Cameron Shorter]] - Sydney, Australia (Australian Eastern Time UTC + 10h)&lt;br /&gt;
* [[Frank Warmerdam]] - Mountain View, California, USA (US Pacific Time UTC - 7h)&lt;br /&gt;
&lt;br /&gt;
Period: September 2013 - August 2015&lt;br /&gt;
* [[Jáchym Čepický]] - Jičín, Czech republic (Central European Time UTC +2h)&lt;br /&gt;
* [[Jorge Sanz]] - Valencia, Spain  (Central European Time UTC +2h)&lt;br /&gt;
* [[Bart van den Eijnden]], The Netherlands (Central European Time UTC +2h)&lt;br /&gt;
* [[Gerald Fenoy | Gérald Fenoy]], France (Central European Time UTC +2h)&lt;br /&gt;
&lt;br /&gt;
More detailed information is available in the [[Board Member Profiles]].&lt;br /&gt;
&lt;br /&gt;
==Meeting timeslots==&lt;br /&gt;
* A. [http://www.timeanddate.com/worldclock/meetingdetails.html?hour=20&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=224&amp;amp;p2=75&amp;amp;p3=179&amp;amp;p4=286&amp;amp;p5=215&amp;amp;p6=240 20.00 UTC]&lt;br /&gt;
* B. [http://www.timeanddate.com/worldclock/meetingdetails.html?hour=12&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=224&amp;amp;p2=75&amp;amp;p3=179&amp;amp;p4=286&amp;amp;p5=215&amp;amp;p6=240 12:00 UTC]&lt;br /&gt;
* C. [http://www.timeanddate.com/worldclock/meetingdetails.html?hour=3&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=224&amp;amp;p2=75&amp;amp;p3=179&amp;amp;p4=286&amp;amp;p5=215&amp;amp;p6=240 03:00 UTC]&lt;br /&gt;
&lt;br /&gt;
[http://www.timeanddate.com/worldclock/meetingtime.html?p1=224&amp;amp;p2=75&amp;amp;p3=179&amp;amp;p4=286&amp;amp;p5=215&amp;amp;p6=240&amp;amp;iv=0 Meeting Planner]&lt;br /&gt;
&lt;br /&gt;
== Meetings ==&lt;br /&gt;
; Next meeting:&lt;br /&gt;
* [[Board Meeting 2013-10-17]] 20.00 UTC&lt;br /&gt;
&lt;br /&gt;
; Previous meetings:&lt;br /&gt;
* [[Board Meeting 2013-09-20]] 7.00 UTC&lt;br /&gt;
* [[Informal OSGeo OGC Meeting 2013-09-18]] &lt;br /&gt;
* [[Board Meeting 2013-08-15]] 3.00 UTC&lt;br /&gt;
* [[Board Meeting 2013-07-11]] 12.00 UTC&lt;br /&gt;
* [[Board Meeting 2013-06-13]] 20.00 UTC&lt;br /&gt;
* [[Board Meeting 2013-05-09]] 20.00 UTC&lt;br /&gt;
* [[Board Meeting 2013-04-11]] 20.00 UTC&lt;br /&gt;
* [[Board Meeting 2013-02-26]] 18.00 UTC&lt;br /&gt;
* [[Board Meeting 2013-01-17]] 20.00 UTC&lt;br /&gt;
&lt;br /&gt;
== Meeting Archive ==&lt;br /&gt;
[[:Category:Board_Meetings_2012|2012]] - [[:Category:Board_Meetings_2011|2011]] - [[:Category:Board_Meetings_2010|2010]] - [[:Category:Board_Meetings_2009|2009]] - [[Board Meetings 2008|2008]] - [[Board Meetings 2007|2007]] - [[Board Meetings 2006|2006]] - [http://www.osgeo.org/content/foundation/meetings/board/board_meetings.html Earlier].&lt;br /&gt;
&lt;br /&gt;
== Documents ==&lt;br /&gt;
* [[Executive Positions]] and [[Director Responsibilities]]&lt;br /&gt;
* [[Board Election Procedure]]&lt;br /&gt;
* Election 2012: [[Board Election 2012 Results]]&lt;br /&gt;
* Election 2011: [[Board Election 2011 Results]]&lt;br /&gt;
* Election 2010: [[Board Election 2010 Results]]&lt;br /&gt;
* Election 2009: [[Board Election 2009]], see 2009 section of [[Proposed Board Election Procedure]]&lt;br /&gt;
* Election 2008: [[Board Election 2008]], see 2008 section of [[Proposed Board Election Procedure]]&lt;br /&gt;
* &amp;lt;strike&amp;gt;[[Executive Director]] (rough ideas), [[Executive Director Job Description]]&amp;lt;/strike&amp;gt; (no such position at time)&lt;br /&gt;
* Election 2007: [[Board Election 2007]], see 2007 section of [[Proposed Board Election Procedure]]&lt;br /&gt;
* [[Foundation Sponsorship]] (adopted), [[Project Sponsorship]] (adopted), [[Local Chapter Sponsorship]] (idea)&lt;br /&gt;
* [[Conflict Of Interest Policy]]&lt;br /&gt;
&lt;br /&gt;
== Mailing list ==&lt;br /&gt;
&lt;br /&gt;
The http://lists.osgeo.org/mailman/listinfo/board mailing list is used for most public board discussions.  There is also a private board mailing list used only for matters that are considered needful to be kept private.  &lt;br /&gt;
&lt;br /&gt;
== Previous OSGeo Foundation Boards of Directors ==&lt;br /&gt;
&lt;br /&gt;
* [[Board Election 2012 Results|Board of Directors 2012]] (Aug. 2012 - Aug. 2013)&lt;br /&gt;
* [[Board Election 2011 Results|Board of Directors 2011]] (Aug. 2011 - Aug. 2012)&lt;br /&gt;
* [[Board Election 2010 Results|Board of Directors 2010]] (Aug. 2010 - Aug. 2011)&lt;br /&gt;
* [[Board Election 2009 Results|Board of Directors 2009]] (Sept. 2009 - Aug. 2010)&lt;br /&gt;
* [[Board Election 2008 Results|Board of Directors 2008]] (July 2008 - Sept. 2009)&lt;br /&gt;
* [[Board Election 2007 Results|Board of Directors 2007]] (Aug. 2007 - July 2008)&lt;br /&gt;
* [[Interim Board of Directors 2006]] (Feb. 2006 - July 2007)&lt;br /&gt;
&lt;br /&gt;
An interim Board of Directors with 5 members was elected on February 4th, 2006, by the initial members of the [http://www.osgeo.org Open Source Geospatial Foundation]. On March 18th, 2006, the board has been completed to now total nine members:&lt;br /&gt;
&lt;br /&gt;
== Potential FAQ ==&lt;br /&gt;
&lt;br /&gt;
'''Q''': What do board members do?&amp;lt;br&amp;gt;&lt;br /&gt;
'''A''': http://wiki.osgeo.org/wiki/Director_Responsibilities&lt;br /&gt;
&lt;br /&gt;
'''Q''': That doc doesn't say anything about meetings.  How often to board members meet?&amp;lt;br&amp;gt;&lt;br /&gt;
'''A''': The [http://www.osgeo.org/content/foundation/incorporation/bylaws.html foundation bylaws] say the board meets after the after the annual members meeting and then at regular meetings on a schedule fixed by directors.  In practice, the board schedules monthly meetings in addition to the annual face-to-face meeting after the AGM at the FOSS4G conference.&lt;br /&gt;
&lt;br /&gt;
'''Q''': How are board decisions made?&amp;lt;br&amp;gt;&lt;br /&gt;
'''A''': The [http://www.osgeo.org/content/foundation/incorporation/bylaws.html bylaws] (section 4.5) describe that a majority of members must be present for an event to be considered a meeting.  At a meeting, each member present is given one vote.  Strictly speaking (according to the bylaws) an affirmative vote by the majority of members present at a meeting constitutes a decision by the board.  In practice, we don't consider a motion passed if there are any negative votes ('''TODO''': document the +1, +0, -0, -1 voting procedure if needed).&lt;br /&gt;
&lt;br /&gt;
'''Q''': Is an IRC gathering a meeting?&amp;lt;br&amp;gt;&lt;br /&gt;
'''A''': The [http://www.osgeo.org/content/foundation/incorporation/bylaws.html bylaws] (section 4.4) say that an electronic medium may be used and an event will constitute a meeting if members can hear one another at the same time.  In practice, we often have IRC meetings and then have a vote by voice if there are items that need voting on ('''TODO''': document the convention on email voting if this is an alternative to voice voting).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Board]]&lt;br /&gt;
[[Category:Committees]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Board_Meeting_2013-09-20&amp;diff=74608</id>
		<title>Board Meeting 2013-09-20</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Board_Meeting_2013-09-20&amp;diff=74608"/>
		<updated>2013-10-17T15:29:37Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This meeting is '''scheduled for the 20th of September 2013''' at [http://www.timeanddate.com/worldclock/fixedtime.html?year=2013&amp;amp;month=9&amp;amp;day=20&amp;amp;hour=6&amp;amp;min=0&amp;amp;sec=0 7am Nottingham Time, 6.00 UTC]. &lt;br /&gt;
&lt;br /&gt;
Daniel proposing to hold this meeting face to face in the Cavendish Hall Cafeteria at the Nottingham FOSS4G. (To be confirmed)&lt;br /&gt;
&lt;br /&gt;
Note: Meeting ended up taking place face to face on 2013-09-19 at 6:00pm Nottingham time.&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
'''Mandatory agenda items'''&lt;br /&gt;
&lt;br /&gt;
* roll call&lt;br /&gt;
* appoint meeting chair, meeting scribe/secretary&lt;br /&gt;
* Review and approve past minutes: [[Board Meeting 2013-08-15]] (reported to next meeting)&lt;br /&gt;
* Short introductions for new board members&lt;br /&gt;
* Appoint director positions:&lt;br /&gt;
** Term durations/limits&lt;br /&gt;
** President&lt;br /&gt;
** Treasurer&lt;br /&gt;
** Secretary&lt;br /&gt;
* Appoint Key Liaison Roles:&lt;br /&gt;
** Discuss PDX conference team requests/needs + Appoint Board Rep on FOSS4G 2014 Portland LOC&lt;br /&gt;
** OSGeo Rep at LocationTech&lt;br /&gt;
** OSGeo Rep for OGC MOU (do we currently have one?)&lt;br /&gt;
* Annual General Meeting (AGM)&lt;br /&gt;
** Anything we need to discuss?&lt;br /&gt;
* Finance update&lt;br /&gt;
** 501c4 and cleaning up IRS filing, finances, etc.&lt;br /&gt;
** Sponsors invoicing for 2013&lt;br /&gt;
&lt;br /&gt;
'''Discussion points if we have time:'''&lt;br /&gt;
&lt;br /&gt;
* Discuss FOSS4G LOC vs OSGeo involvement&lt;br /&gt;
** Need to setup processes for managing foss4g&lt;br /&gt;
*** Template Contract with PCO&lt;br /&gt;
*** Non-profit aspects (taxes vs PCO, extending nonprofit status to LOC, etc.)&lt;br /&gt;
*** See email from PDX committee&lt;br /&gt;
* Discuss OSGeo vision, mission, objectives, policies updates&lt;br /&gt;
** Setup one or more working groups?&lt;br /&gt;
** SAC issues&lt;br /&gt;
* Discuss OSGeo involvement with partner organizations:&lt;br /&gt;
** OGC, LocationTech, OSGeo Sponsors, (others?)&lt;br /&gt;
** Need champions for each one?&lt;br /&gt;
* ''add your items here''&lt;br /&gt;
* Decide on who to report this meeting summary to the Discuss list&lt;br /&gt;
* Schedule next meeting&lt;br /&gt;
&lt;br /&gt;
== Minutes ==&lt;br /&gt;
&lt;br /&gt;
* Attending: Jorge Sanz, Daniel Morissette, Jeff McKenna, Bart van den Eijnden, Frank Warmerdam, Anne Ghisla, Jáchym Čepický, Gérald Fenoy&lt;br /&gt;
&lt;br /&gt;
* Presiding: Jeff McKenna&lt;br /&gt;
&lt;br /&gt;
* Scribing: Frank Warmerdam&lt;br /&gt;
&lt;br /&gt;
* Meeting comes to order at 6:00pm, 2013-09-19.  &lt;br /&gt;
&lt;br /&gt;
* Review of past minutes deferred to the next meeting.&lt;br /&gt;
&lt;br /&gt;
* MOTION: Daniel Morissette is re-appointed Treasurer.  Moved by Frank Warmerdam, carried.&lt;br /&gt;
&lt;br /&gt;
* MOTION: Jáchym Čepický is appointed Secretary.  Moved by Jorge Sanz, carried.&lt;br /&gt;
&lt;br /&gt;
* The topic of term limits is discussed but no firm conclusion was arrived at.&lt;br /&gt;
&lt;br /&gt;
* MOTION: Jeff McKenna is re-appointed President.  Moved by Daniel Morissette, carried.&lt;br /&gt;
&lt;br /&gt;
* TASK: Jeff is to seek a volunteer to act as board liason to FOSS4G 2014.&lt;br /&gt;
&lt;br /&gt;
* MOTION: The meeting is adjourned.  Moved by Jeff McKenna, carried.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Board]]&lt;br /&gt;
[[Category:Board Meetings 2013]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo.org_Web_Site_-_2016_Barn_Raising&amp;diff=74578</id>
		<title>OSGeo.org Web Site - 2016 Barn Raising</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo.org_Web_Site_-_2016_Barn_Raising&amp;diff=74578"/>
		<updated>2013-10-15T21:13:58Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''October 2013 -''' WebCom began investigating migration options for the main Drupal website.&lt;br /&gt;
&lt;br /&gt;
=Prequisites=&lt;br /&gt;
* Identify essential functionality within current site&lt;br /&gt;
&lt;br /&gt;
=Requirements=&lt;br /&gt;
* Automated migration of content from current site&lt;br /&gt;
* Duplicate essential functionality&lt;br /&gt;
* Solid multilingual support&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Software Evaluations=&lt;br /&gt;
* [[Drupal 8 Evaluation]]&lt;br /&gt;
* Alternatives (e.g. Django)&lt;br /&gt;
&lt;br /&gt;
[[Category: WebCom]]&lt;br /&gt;
[[Category:Committees]]&lt;br /&gt;
&lt;br /&gt;
= Background = &lt;br /&gt;
* [[Drupal Upgrade Plan]] - Wolf's fall 2007 plan to upgrade Drupal to 5.3.&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=OSGeo.org_Web_Site_-_2016_Barn_Raising&amp;diff=74577</id>
		<title>OSGeo.org Web Site - 2016 Barn Raising</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=OSGeo.org_Web_Site_-_2016_Barn_Raising&amp;diff=74577"/>
		<updated>2013-10-15T21:10:58Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''October 2013 -''' WebCom began investigating migration options for the main Drupal website.&lt;br /&gt;
&lt;br /&gt;
=Prequisites=&lt;br /&gt;
* Identify essential functionality within current site&lt;br /&gt;
&lt;br /&gt;
=Requirements=&lt;br /&gt;
* Automated migration of content from current site&lt;br /&gt;
* Duplicate essential functionality&lt;br /&gt;
* Solid multilingual support&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Software Evaluations=&lt;br /&gt;
* [[Drupal 8 Evaluation]]&lt;br /&gt;
* Alternatives (e.g. Django)&lt;br /&gt;
&lt;br /&gt;
[[Category: WebCom]]&lt;br /&gt;
[[Category:Committees]]&lt;br /&gt;
&lt;br /&gt;
= Background = &lt;br /&gt;
* [[2007 Drupal Upgrade Plan]] - Wolf's fall 2007 plan to upgrade Drupal to 5.3.&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Website_Committee&amp;diff=74576</id>
		<title>Website Committee</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Website_Committee&amp;diff=74576"/>
		<updated>2013-10-15T21:10:34Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: add 2013 drupal upgrade in a new location.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the main wiki page for the OSGeo Website Committee. Started as per the [[Web Site Committee Motion]] approved by the board at the [[First Board Meeting]].&lt;br /&gt;
&lt;br /&gt;
== Official Site: Comments and access management ==&lt;br /&gt;
The official home of the [http://osgeo.org/webcommittee/index.html OSGeo Web Site Committee], includes the member list. If you have questions, want to learn more or feel like you can contribute ('''translations'''!) to the OSGeo main web site please subscribe to the [http://lists.osgeo.org/mailman/listinfo/webcom WebCom mailing list].&lt;br /&gt;
&lt;br /&gt;
'''Update: Oct-Nov 2013 -''' WebCom are currently discussing migration options for the main OSGeo website. Join us on the [http://lists.osgeo.org/mailman/listinfo/webcom WebCom mailing list] and visit the [[Drupal Update 2013]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== Meeting Agendas and Minutes ==&lt;br /&gt;
&lt;br /&gt;
Most recent first...&lt;br /&gt;
&lt;br /&gt;
* May 08, 2008 [[WebCom Meeting 20080508]]&lt;br /&gt;
* May 30, 2007 [[WebCom Meeting 20070530]]&lt;br /&gt;
* May 09, 2007 [[WebCom Meeting 20070509]]&lt;br /&gt;
* May 02, 2007 [[WebCom Meeting 20070502]]&lt;br /&gt;
* March 21, 2007 [[WebCom Meeting 20070321]]&lt;br /&gt;
* March 07, 2007 [[WebCom Meeting 20070307]]&lt;br /&gt;
* February 07, 2007 [[WebCom Meeting 20070207]]&lt;br /&gt;
* January 31, 2007 [[WebCom Meeting 20070131]]&lt;br /&gt;
* October 25, 2006 [[WebCom Meeting 20061025]]&lt;br /&gt;
* October 11, 2006 [[WebCom Meeting 20061011]]&lt;br /&gt;
* September 20, 2006 [[WebCom Meeting 20060920]]&lt;br /&gt;
* August 30, 2006  [[WebCom Meeting 20060830]]&lt;br /&gt;
* August 23, 2006  [[WebCom Meeting 20060823]]&lt;br /&gt;
* August 2, 2006  [[WebCom Meeting 20060802]]&lt;br /&gt;
* July 19, 2006  [[WebCom Meeting 20060719]]&lt;br /&gt;
* July 5, 2006  [[WebCom Meeting 20060705]]&lt;br /&gt;
* May 17, 2006  [[WebCom Meeting 20060517]]&lt;br /&gt;
* April 5, 2006  [[WebCom Meeting 20060405]]&lt;br /&gt;
* March 29, 2006  [[WebCom Meeting 20060329]]&lt;br /&gt;
* March 22, 2006  [[WebCom Meeting 20060322]]&lt;br /&gt;
* March 15, 2006 [[WebCom Meeting 20060315]]&lt;br /&gt;
* March 9, 2006 [[WebCom Meeting 20060309]]&lt;br /&gt;
&lt;br /&gt;
== Other Pages ==&lt;br /&gt;
* [[WebCom Scope]] - Collaborative area discussion committee's focus&lt;br /&gt;
* [[WebCom OSGeo Site Focus]] - Collaborative area for designing site features, layout, etc.  Based on the user focus being determined by VisCom at [[VisComTargets]]&lt;br /&gt;
* [[News Queue]] - Notes on the role of News Editor, and how the news items are maintained.&lt;br /&gt;
* [[Spotlights]] - About producing developer/project/etc spotlights for website. &lt;br /&gt;
* [[Drupal Portal]] - Notes on trasitioning www.osgeo.org to a Drupal based CMS.&lt;br /&gt;
* [[Web Migration Map]] - broader discussion of transitioning stuff off CN.&lt;br /&gt;
* [[Infrastructure Transition Plan]] - high level transition plan approved by board.&lt;br /&gt;
* [[Service Provider Directory]] - proposal for managing a service provider directory&lt;br /&gt;
* [http://lists.osgeo.org/mailman/listinfo/webcom WebCom Mailing list]&lt;br /&gt;
* [[Spam]] fighting&lt;br /&gt;
&lt;br /&gt;
== Tasks ==&lt;br /&gt;
&lt;br /&gt;
* [[Drupal Update 2013]] - Effort to upgrade to Drupal 8&lt;br /&gt;
* WebCom general TODO and specific tasks are tracked at [[WebComTODO]].&lt;br /&gt;
* [http://trac.osgeo.org/osgeo/query?status=new&amp;amp;status=assigned&amp;amp;status=reopened&amp;amp;component=WebSite&amp;amp;order=priority  Open WebCom Issues] &lt;br /&gt;
* [http://trac.osgeo.org/osgeo/newticket Submit Trac Ticket] - Remember to set Component to WebSite!&lt;br /&gt;
&lt;br /&gt;
[[Category: WebCom]]&lt;br /&gt;
[[Category:Committees]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Board_Meeting_2013-09-20&amp;diff=74167</id>
		<title>Board Meeting 2013-09-20</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Board_Meeting_2013-09-20&amp;diff=74167"/>
		<updated>2013-09-24T02:51:41Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Minutes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This meeting is '''scheduled for the 20th of September 2013''' at [http://www.timeanddate.com/worldclock/fixedtime.html?year=2013&amp;amp;month=9&amp;amp;day=20&amp;amp;hour=6&amp;amp;min=0&amp;amp;sec=0 7am Nottingham Time, 6.00 UTC]. &lt;br /&gt;
&lt;br /&gt;
Daniel proposing to hold this meeting face to face in the Cavendish Hall Cafeteria at the Nottingham FOSS4G. (To be confirmed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
'''Mandatory agenda items'''&lt;br /&gt;
&lt;br /&gt;
* roll call&lt;br /&gt;
* appoint meeting chair, meeting scribe/secretary&lt;br /&gt;
* Review and approve past minutes: [[Board Meeting 2013-08-15]] (reported to next meeting)&lt;br /&gt;
* Short introductions for new board members&lt;br /&gt;
* Appoint director positions:&lt;br /&gt;
** Term durations/limits&lt;br /&gt;
** President&lt;br /&gt;
** Treasurer&lt;br /&gt;
** Secretary&lt;br /&gt;
* Appoint Key Liaison Roles:&lt;br /&gt;
** Discuss PDX conference team requests/needs + Appoint Board Rep on FOSS4G 2014 Portland LOC&lt;br /&gt;
** OSGeo Rep at LocationTech&lt;br /&gt;
** OSGeo Rep for OGC MOU (do we currently have one?)&lt;br /&gt;
* Annual General Meeting (AGM)&lt;br /&gt;
** Anything we need to discuss?&lt;br /&gt;
* Finance update&lt;br /&gt;
** 501c4 and cleaning up IRS filing, finances, etc.&lt;br /&gt;
** Sponsors invoicing for 2013&lt;br /&gt;
&lt;br /&gt;
'''Discussion points if we have time:'''&lt;br /&gt;
&lt;br /&gt;
* Discuss FOSS4G LOC vs OSGeo involvement&lt;br /&gt;
** Need to setup processes for managing foss4g&lt;br /&gt;
*** Template Contract with PCO&lt;br /&gt;
*** Non-profit aspects (taxes vs PCO, extending nonprofit status to LOC, etc.)&lt;br /&gt;
*** See email from PDX committee&lt;br /&gt;
* Discuss OSGeo vision, mission, objectives, policies updates&lt;br /&gt;
** Setup one or more working groups?&lt;br /&gt;
** SAC issues&lt;br /&gt;
* Discuss OSGeo involvement with partner organizations:&lt;br /&gt;
** OGC, LocationTech, OSGeo Sponsors, (others?)&lt;br /&gt;
** Need champions for each one?&lt;br /&gt;
* ''add your items here''&lt;br /&gt;
* Decide on who to report this meeting summary to the Discuss list&lt;br /&gt;
* Schedule next meeting&lt;br /&gt;
&lt;br /&gt;
== Minutes ==&lt;br /&gt;
&lt;br /&gt;
* Attending: Jorge Sanz, Daniel Morissette, Jeff McKenna, Bart van den Eijnden, Frank Warmerdam, Anne Ghisla, Jáchym Čepický, Gérald Fenoy&lt;br /&gt;
&lt;br /&gt;
* Presiding: Jeff McKenna&lt;br /&gt;
&lt;br /&gt;
* Scribing: Frank Warmerdam&lt;br /&gt;
&lt;br /&gt;
* Meeting comes to order at 6:00pm, 2013-09-19.  &lt;br /&gt;
&lt;br /&gt;
* Review of past minutes deferred to the next meeting.&lt;br /&gt;
&lt;br /&gt;
* MOTION: Daniel Morissette is re-appointed Treasurer.  Moved by Frank Warmerdam, carried.&lt;br /&gt;
&lt;br /&gt;
* MOTION: Jáchym Čepický is appointed Secretary.  Moved by Jorge Sanz, carried.&lt;br /&gt;
&lt;br /&gt;
* The topic of term limits is discussed but no firm conclusion was arrived at.&lt;br /&gt;
&lt;br /&gt;
* MOTION: Jeff McKenna is re-appointed President.  Moved by Daniel Morissette, carried.&lt;br /&gt;
&lt;br /&gt;
* TASK: Jeff is to seek a volunteer to act as board liason to FOSS4G 2014.&lt;br /&gt;
&lt;br /&gt;
* MOTION: The meeting is adjourned.  Mopved by Jeff McKenna, carried.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Board]]&lt;br /&gt;
[[Category:Board Meetings 2013]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=501c4Announcement&amp;diff=73806</id>
		<title>501c4Announcement</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=501c4Announcement&amp;diff=73806"/>
		<updated>2013-09-12T23:38:43Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OSGeo is pleased to announce that the U.S. Internal Revenue Service (IRS) [http://svn.osgeo.org/osgeo/board/irs_docs/OSGeo-Determination_Letters_c3andc4-20130909.pdf has accepted our application](pdf) for non-profit status under section 501(c)(4) of the tax code.  Our 501(c)(4) status declares that we are a [http://www.irs.gov/Charities-&amp;amp;-Non-Profits/Other-Non-Profits/Social-Welfare-Organizations Social Welfare Organization].  This determination affirms OSGeo role in serving the public through our mission focused around Open Source Geospatial software.  &lt;br /&gt;
&lt;br /&gt;
This determination helps ensure that the organization will not have pay US federal taxes on money accumulated toward the fullfilment of our mission.  Unfortunately, unlike a 501(c)(3) (Charitable) status, this does not allow financial contributors to OSGeo to treat the contributions as a charitable contribution which can have a tax benefit for US tax payers.  There should still be no problem with commercial organizations treating contributions to OSGeo as a business expense.&lt;br /&gt;
&lt;br /&gt;
OSGeo owes a special debt to past Executive Director Tyler Mitchell, and current Treasurer Daniel Morissette who have carried this process to a successful conclusion after several years of work.&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=501c4Announcement&amp;diff=73805</id>
		<title>501c4Announcement</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=501c4Announcement&amp;diff=73805"/>
		<updated>2013-09-12T23:36:31Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: Created page with &amp;quot;OSGeo is pleased to announce that the U.S. Internal Revenue Service (IRS) [http://svn.osgeo.org/osgeo/board/irs_docs/OSGeo-Determination_Letters_c3andc4-20130909.pdf has accepted...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OSGeo is pleased to announce that the U.S. Internal Revenue Service (IRS) [http://svn.osgeo.org/osgeo/board/irs_docs/OSGeo-Determination_Letters_c3andc4-20130909.pdf has accepted our application](pdf) for non-profit status under section 501(c)(4) of the tax code.  Our 501(c)(4) status declares that we are a [http://www.irs.gov/Charities-&amp;amp;-Non-Profits/Other-Non-Profits/Social-Welfare-Organizations Social Welfare Organization].  This determination affirms OSGeo role in serving the public through our mission focused around Open Source Geospatial software.  &lt;br /&gt;
&lt;br /&gt;
This determination helps ensure that the organization will not have pay US federal taxes on money accumulated toward the fullfilment of our mission.  Unfortunately, unlike a 501(c)(3) (Charitable) status, this does not allow financial contributors to OSGeo to treat the contributions as a charitable contribution which can have a tax benefit for US tax payers.  There should still be no problem with commercial organizations treating contributions to OSGeo as a business expense.&lt;br /&gt;
&lt;br /&gt;
OSGeo owes a special debt to Tyler Mitchell, and Daniel Morissette who have carried this process to a successful conclusion after several years of work.&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=73732</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=73732"/>
		<updated>2013-09-11T23:21:01Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* System Tasks */ move item into separate topic that seems to be unrelated to renaming lists.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* update aliases and check that proper permissions are set&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
&lt;br /&gt;
== copy / clone user addresses across lists ==&lt;br /&gt;
* add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R mailman.mailman /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R mailman.mailman /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=73731</id>
		<title>SAC:Mailing Lists</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=SAC:Mailing_Lists&amp;diff=73731"/>
		<updated>2013-09-11T23:19:10Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /sbin/service is now /usr/sbin/service&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mailing lists are administered with Mailman on the virtual host lists.osgeo.org.  Physically this is the &amp;quot;Mail&amp;quot; VM running on osgeo4.  Frank Warmerdam (warmerdam) and Alan Boudreault (aboudreault) do most of the mailman work.&lt;br /&gt;
&lt;br /&gt;
= Notes for List Administrators = &lt;br /&gt;
&lt;br /&gt;
== Requesting a new list ==&lt;br /&gt;
&lt;br /&gt;
If your project or activity would like to have a mailing list at lists.osgeo.org please take the following steps:&lt;br /&gt;
&lt;br /&gt;
* First, confirm that there isn't already an appropriate list for this activity, and consider whether OSGeo is the right home for the proposed list. &lt;br /&gt;
* File a ticket at http://trac.osgeo.org/osgeo (use your OSGeo Userid to login) and make sure the component is set to &amp;quot;SAC&amp;quot;.  This is the request to the System Administration Committee to create the list. &lt;br /&gt;
* Please include the exact name you would like for the list (ie. foo-announce), and the email address of the person who should be the list admin.  Also provide the justification for the list, and indicate if it was explicitly requested by an OSGeo Project PSC or project representative. &lt;br /&gt;
* Include any special instructions (such pointers to info if the list is actually being migrated from elsewhere). &lt;br /&gt;
* Hopefully, someone in SAC will act on the ticket and create the list.  When complete the ticket will be updated and closed, and the proposed admin will receive an email with the admin password for the list.&lt;br /&gt;
* Review the list settings, in particular ensuring that the short description gets set (ie. review following points)&lt;br /&gt;
&lt;br /&gt;
Generally it is up to the mailman administrator to judge whether a list is justified for creation.  The justification doesn't need to be strong, but the list should be OSGeo related, reasonably likely to generate some use, or be requested on behalf of a project.  &lt;br /&gt;
&lt;br /&gt;
== All lists ==&lt;br /&gt;
&lt;br /&gt;
* Please set &amp;quot;A terse phrase identifying this list.&amp;quot; to something brief and meaningful as this is what is shown on the main lists directory.   It is on the ''General'' tab. &lt;br /&gt;
* Set &amp;quot;Who can view subscription list?&amp;quot; on the ''Privacy'' tab to &amp;quot;List Admin Only&amp;quot;, otherwise anyone can subscribe and then harvest the mailing list. &lt;br /&gt;
* Set ''generic_nonmember_action'' on the ''Privacy-&amp;gt;Sender filters'' tab to reject as most lists are not actively administered so we prefer to reject rather than holding posts from unsubscribed folks.&lt;br /&gt;
* Ensure the &amp;quot;Prefix for subject line of list postings.&amp;quot; on the ''General'' tab is set to something meaningful.  If the list name is generic (such as &amp;quot;announce&amp;quot;) it may be helpful to prefix it with OSGeo-, eg. &amp;quot;[OSGeo-Announce]&amp;quot;&lt;br /&gt;
* Be sure to choose a name that does not already have an existing alias, such as: sales, support, www, security.  If you need to use one of these names someone will have to edit the /etc/aliases file for you manually.&lt;br /&gt;
&lt;br /&gt;
== Other options ==&lt;br /&gt;
&lt;br /&gt;
* For announce lists (ie. moderated lists) turn on &amp;quot;Emergency moderation of all list traffic&amp;quot; on. It is on the ''General'' tab.&lt;br /&gt;
&lt;br /&gt;
= Outstanding Issues = &lt;br /&gt;
&lt;br /&gt;
# Administrator/moderator permissions.  Currently this is a hodgepodge.  Some administrators have set the passwords but then others can't help administrate the list.  The default admin password is not very secure.  It has been suggested that we use some sort of LDAP/http authentication to verify that folks trying to do list admin are in some sort of mail administration group. &lt;br /&gt;
# List setting policies.  Do we want to mandate more policies than the ones listed above as &amp;quot;Notes for List Administrators&amp;quot;? &lt;br /&gt;
# Search. Do we want to do anything special to enable searching the archive?  Jason has setup an OSGeo.org grouping on nabble (&amp;lt;strike&amp;gt;http://www.nabble.com/OSGeo.org-f18127.html&amp;lt;/strike&amp;gt;, http://osgeo-org.1803224.n2.nabble.com/) that makes searching all osgeo related mailing lists effective.  We might want to expand on that.&lt;br /&gt;
&lt;br /&gt;
= System Tasks = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Lists ==&lt;br /&gt;
&lt;br /&gt;
* Create a new list through the [http://lists.osgeo.org/mailman/create web admin login].&lt;br /&gt;
&lt;br /&gt;
== Renaming Lists ==&lt;br /&gt;
&lt;br /&gt;
* create new list&lt;br /&gt;
   $sudo /usr/lib/mailman/bin/newlist listname admins@email lists_passwd&lt;br /&gt;
* move original lists archive to newlists archive location&lt;br /&gt;
   $ sudo cp /var/lib/mailman/archives/private/oldlist.mbox/oldlist.mbox \&lt;br /&gt;
     /var/lib/mailman/archives/private/newlist.mbox/&lt;br /&gt;
* create archive&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/arch --wipe newlist&lt;br /&gt;
* export subscribers from old list regular and digest members&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -r oldlistname &amp;gt; listname-regular.txt&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/list_members -d oldlistname &amp;gt; listname-digest.txt&lt;br /&gt;
* import subscribers into new list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --regular-members=listname-regular.txt --welcome-msg=y newlistname&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/add_members --digest-members=listname-digest.txt --welcome-msg=y newlistname&lt;br /&gt;
* remove old list&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/rmlist oldlistname&lt;br /&gt;
* update aliases and check that proper permissions are set&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/genaliases&lt;br /&gt;
   $ sudo /usr/lib/mailman/bin/check_perms -f&lt;br /&gt;
* edit postfix aliases - /etc/aliases&lt;br /&gt;
   oldlist:               newlist@lists.osgeo.org&lt;br /&gt;
   oldlist-request:       newlist-request@lists.osgeo.org&lt;br /&gt;
   oldlist-admin:         newlist-admin@lists.osgeo.org&lt;br /&gt;
   oldlist-owner:         newlist-owner@lists.osgeo.org&lt;br /&gt;
* update postfix with new aliases&lt;br /&gt;
   $ sudo /usr/bin/newaliases&lt;br /&gt;
   $ sudo /usr/sbin/service postfix reload&lt;br /&gt;
* copy / clone user addresses across lists:&lt;br /&gt;
** add '''-r''' to remove the old address&lt;br /&gt;
   $ sudo clone_member old@address.com new@address.com&lt;br /&gt;
&lt;br /&gt;
== Migrate == &lt;br /&gt;
&lt;br /&gt;
When migrating from another system to osgeo, get the .mbox files, and the whole /var/lib/mailman/lists/&amp;lt;listname&amp;gt; directory, and follow roughly the following steps as root (or sudo each step):&lt;br /&gt;
&lt;br /&gt;
   # newlist -q grass-announce warmerdam@pobox.com junk &lt;br /&gt;
   # cd /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # cp ~warmerdam/grass-announce/* . &lt;br /&gt;
   # withlist -l -r fix_url grass-announce&lt;br /&gt;
   # /usr/lib/mailman/bin/arch grass-announce ~warmerdam/grass-announce.mbox&lt;br /&gt;
   # chown -R mailman.mailman /var/lib/mailman/lists/grass-announce&lt;br /&gt;
   # chown -R mailman.mailman /var/lib/mailman/archives/private/grass-announce*&lt;br /&gt;
   # genaliases&lt;br /&gt;
   # /usr/sbin/service postfix restart&lt;br /&gt;
   # mailmanctl restart&lt;br /&gt;
&lt;br /&gt;
If the list name on the new system is different than on the old system, it may be prudent to fix this up on the mail page of the web admin interface after the ''withlist'' command has been used, and before the archives are imported.  (''FrankW'')&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* Here is [http://www.chris-lamb.co.uk/2007/10/02/renaming-a-mailman-list/ another approach to renaming], though our web admin interface won't actually allow you to do the final rename step&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Remove Mails from Archive ==&lt;br /&gt;
Sometimes users send mails with contentious content to the list and ask for it to be removed. As a courtesy this should be done asap. In general it is better to not remove the mail altogether but just remove the content. Instructions: &lt;br /&gt;
* http://wiki.list.org/pages/viewpage.action?pageId=4030681&lt;br /&gt;
Archives live in: &lt;br /&gt;
 /var/lib/mailman/archives/&lt;br /&gt;
To recreate archives use: &lt;br /&gt;
 /usr/lib/mailman/bin/arch [listname]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== List Statistics ==&lt;br /&gt;
&lt;br /&gt;
From time to time it is nice to get a sense of the number of lists, users, etc.  The following may be helpful:&lt;br /&gt;
&lt;br /&gt;
all subscribers of all osgeo lists hosted on osgeo.org:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | wc -l&lt;br /&gt;
&lt;br /&gt;
unique list of email addresses across all lists:&lt;br /&gt;
&lt;br /&gt;
  sudo list_lists -b | xargs -n 1 sudo list_members | sort |  uniq | wc -l&lt;br /&gt;
&lt;br /&gt;
Note: since 2009 there is [[User:Neteler|Markus Neteler]]'s cronjob running for gathering these statistics and sending them to &amp;quot;info AT osgeo org&amp;quot;. For a time series, [[VisibilityStats#Mailing_list_subscribers|see statistics]]&lt;br /&gt;
&lt;br /&gt;
= Nabble = &lt;br /&gt;
&lt;br /&gt;
There are a variety of web forum oriented interfaces for mailing lists that can be connected to existing mailing lists.  One of the most widely used is Nabble and OSGeo makes an effort to provide some administrative support for it.  &lt;br /&gt;
&lt;br /&gt;
The Nabble liasons for OSGeo are [[Jorge Sanz]] with [[Mateusz Loskot]] as a backup.&lt;br /&gt;
&lt;br /&gt;
Technical details to follow.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=FOSS4G_2013_Code_Sprint&amp;diff=73681</id>
		<title>FOSS4G 2013 Code Sprint</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=FOSS4G_2013_Code_Sprint&amp;diff=73681"/>
		<updated>2013-09-10T18:02:53Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* GDAL/OGR */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Code Sprint - what's that?  ==&lt;br /&gt;
&lt;br /&gt;
A code sprint is about getting a group together to work on Open Source software, sitting around a table and sharing ideas. It's not just about writing code, as you know a project has many needs including documentation, testing, and providing feedback. What a better way to give feedback and give back to the project that you love than to spend a day with the project's developers. There are roles needed to be filled, no matter what your expertise. &lt;br /&gt;
&lt;br /&gt;
With such a short timeframe (one day) you should probably use this page to set a specific goal for your project. But don't worry, if all you get done is actually sitting at the same table with the project's developers and talking about the next release, that is also great&amp;amp;nbsp;:)&lt;br /&gt;
&lt;br /&gt;
== Where &amp;amp;amp; When  ==&lt;br /&gt;
&lt;br /&gt;
[http://www.openstreetmap.org/?lat=52.938804&amp;amp;lon=-1.203427&amp;amp;zoom=18&amp;amp;layers=M East Midlands Conference Centre, Nottingham, UK].&lt;br /&gt;
&lt;br /&gt;
The day after the main conference (Sunday 22nd September) has been set aside for the Code Sprint. There is also a plan to provide facilities throughout the event in the main venue.&lt;br /&gt;
&lt;br /&gt;
We also have a hackathon running on 17th &amp;amp; 18th September which is also free to attend. See the [http://2013.foss4g.org/geohack/ geohack pages] for details.&lt;br /&gt;
&lt;br /&gt;
== What to Bring  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to get there ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Sponsor  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Questions/Comments/Ideas  ==&lt;br /&gt;
&lt;br /&gt;
*ask on the foss4g2013 mailing list ([http://lists.osgeo.org/mailman/listinfo/foss4g2013 subscribe])&lt;br /&gt;
&lt;br /&gt;
== Additional Interested People  ==&lt;br /&gt;
&lt;br /&gt;
The following people are potentially interested in participating in sprinting activities though have not yet established a Workgroup. &lt;br /&gt;
&lt;br /&gt;
*name:project&lt;br /&gt;
&lt;br /&gt;
= Workgroups  =&lt;br /&gt;
&lt;br /&gt;
To participate, copy a project skeleton and start a section below for your project. &lt;br /&gt;
&lt;br /&gt;
== Project-name  ==&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
*user &lt;br /&gt;
*user&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
*your goals&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OpenLayers 3  ==&lt;br /&gt;
&lt;br /&gt;
Please note: the OpenLayers 3 sprint is taking place on Wednesday 18th in room: Humanities A3&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
* Tim Schaub&lt;br /&gt;
* Bart van den Eijnden &lt;br /&gt;
* Julien-Samuel Lacroix &lt;br /&gt;
* Jachym Cepicky&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
* The OpenLayers 3 sprint will begin with a presentation and background&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== GeoTools  ==&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
*[[User:Ianturton|Ian Turton]] &lt;br /&gt;
*user&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
* Dependency audit / cleanup&lt;br /&gt;
** Look at replacing JDOM with DOM as it is only used internally&lt;br /&gt;
** Replace vecmath to avoid Java 3D dependency&lt;br /&gt;
** Consider replacing Apache Commons Collections with Guava (if Gabriel still is interested)&lt;br /&gt;
** Replace or inline JSR-275 unit classes&lt;br /&gt;
&lt;br /&gt;
== GeoServer ==&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
*[[User:fgdrf|Frank Gasdorf]] &lt;br /&gt;
*[[User:ianturton|Ian Turton]]&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Tracker:'''&lt;br /&gt;
https://jira.codehaus.org/browse/GEOS&lt;br /&gt;
&lt;br /&gt;
'''Repository:'''&lt;br /&gt;
TBD&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Goals:'''&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
'''Possibles:'''&lt;br /&gt;
* separate i18n as standalone *_nl* jars to keep translations separated from core code base&lt;br /&gt;
* add new developer docs how to synch translations to/from [https://www.transifex.com/projects/p/geoserver_23x/ Transifex]&lt;br /&gt;
&lt;br /&gt;
== uDIG  ==&lt;br /&gt;
&lt;br /&gt;
The uDIG (user-fiedly Desktop Internet GIS) is moving from Refractions to LocationTech.org (an Eclipse Industry Working Group for location aware software). The initial IP review of the uDig codebase is complete and we are in position for our initial code contribution.&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
*[[User:fgdrf|Frank Gasdorf]] &lt;br /&gt;
*[[User:moovida|Andrea Antonello]] &lt;br /&gt;
*[[User:silli|Silvia Franceschi]]&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
* Initial Code contribution&lt;br /&gt;
** Refactor from net.refractions.udig to org.locationtech.udig &lt;br /&gt;
** Update headers&lt;br /&gt;
** Update about.html files&lt;br /&gt;
* Clean up after IP review&lt;br /&gt;
** Migrate to GeoTools 9.0-M1 (a new milestone with several IP issues resolved)&lt;br /&gt;
** Temporarily disable features from the product (for example that depend on antlr 2.7.7)&lt;br /&gt;
* Make it look pretty&lt;br /&gt;
** Update target platform to Eclipse Kepler for a new look and feel&lt;br /&gt;
** Update branding for splash screen and about dialog&lt;br /&gt;
&lt;br /&gt;
'''Tracker:'''&lt;br /&gt;
https://locationtech.org/bugs/&lt;br /&gt;
&lt;br /&gt;
'''Repository:'''&lt;br /&gt;
TBD&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== MapServer  ==&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
*[[User:Dmorissette|Daniel Morissette]]&lt;br /&gt;
*[[Jeff McKenna]] : documentation&lt;br /&gt;
*[[User:szekerest|Tamas Szekeres]]&lt;br /&gt;
*[[User:yjacolin|Yves Jacolin]] : documentation/translation&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
*TBD&lt;br /&gt;
&lt;br /&gt;
== GDAL/OGR  ==&lt;br /&gt;
&lt;br /&gt;
'''Attending:''' &lt;br /&gt;
&lt;br /&gt;
*[[User:rouault|Even Rouault]]&lt;br /&gt;
*[[User:szekerest|Tamas Szekeres]]&lt;br /&gt;
*[[User:yjacolin|Yves Jacolin]] : documentation translation&lt;br /&gt;
*[[User:warmerda|Frank Warmerdam]]&lt;br /&gt;
&lt;br /&gt;
'''Goals:''' &lt;br /&gt;
&lt;br /&gt;
*TBD&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FOSS4G2013]] [[Category:FOSS4G]] [[Category:Code_Sprints]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Open_Geospatial_Consortium&amp;diff=71526</id>
		<title>Open Geospatial Consortium</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Open_Geospatial_Consortium&amp;diff=71526"/>
		<updated>2013-05-30T17:40:41Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Joint OSGeo and OGC Activities */ add membership link.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''Open Geospatial Consortium, Inc. (OGC) and OSGeo are distinctive organizations with individual goals and visions. This page describes the OGC, an organization dedicated to developing [[Standards]] for the geospatial realm. &lt;br /&gt;
&lt;br /&gt;
== Joint OSGeo and OGC Activities ==&lt;br /&gt;
OGC and OSGeo support each other at conferences and other public events. This collaboration has taken publicly visible forms in several activities and documents: &lt;br /&gt;
* In December 2008 OSGeo and the OGC have signed a '''[[OSGeo signs Memorandum of Understanding with OGC | Memorandum of Understanding]]''' to coordinate in advancing open geospatial standards (OGC's mission) and Open Source geospatial software and data (OSGeo's mission) under which some [[OGC membership]]s are available.&lt;br /&gt;
* OGC organized the [http://www.opengeospatial.org/pressroom/pressreleases/1046 Climate Challenge Integration Plugfest] at [[FOSS4G 2009]] in Sydney focusing on Climate Change&lt;br /&gt;
* In May 2011 OSGeo and OGC published a White Paper on the use of the term Open in [[Open Source and Open Standards]].&lt;br /&gt;
* The [http://inspire.jrc.ec.europa.eu/events/conferences/inspire_2011/?page=workshop Geospatial SDI Workshop] at the INSPIRE conference 2011 in Edinburgh&lt;br /&gt;
&lt;br /&gt;
[[Image:Ogc logo.png|thumb|144px|right|OGC Logo]]&lt;br /&gt;
&lt;br /&gt;
== About OGC ==&lt;br /&gt;
'' From http://www.opengeospatial.org/ogc:''&lt;br /&gt;
&lt;br /&gt;
The Open Geospatial Consortium, Inc (OGC) is an international industry consortium of 346 companies, government agencies and universities participating in a consensus process to develop publicly available interface specifications. [http://www.opengeospatial.org/standards/ OpenGIS® Specifications] support [http://www.opengeospatial.org/resource/faq/openness/#10 interoperable] solutions that &amp;quot;geo-enable&amp;quot; the Web, wireless and location-based services, and mainstream IT. The specifications empower technology developers to make complex spatial information and services accessible and useful with all kinds of applications.&lt;br /&gt;
&lt;br /&gt;
== Vision ==&lt;br /&gt;
''From: http://www.opengeospatial.org/ogc/vision''&lt;br /&gt;
&lt;br /&gt;
Realization of the full societal, economic and scientific benefits of integrating electronic location resources into commercial and institutional processes worldwide.&lt;br /&gt;
&lt;br /&gt;
== Mission ==&lt;br /&gt;
To serve as a global forum for the collaboration of developers and users of spatial data products and services, and to advance the development of international standards for geospatial interoperability.&lt;br /&gt;
Strategic Goals:&lt;br /&gt;
&lt;br /&gt;
: Goal 1 - Provide free and openly available standards to the market, tangible value to Members, and measurable benefits to users.&lt;br /&gt;
: Goal 2 - Lead worldwide in the creation and establishment of standards that allow geospatial content and services to be seamlessly integrated into business and civic processes, the spatial web and enterprise computing.&lt;br /&gt;
: Goal 3 - Facilitate the adoption of open, spatially enabled reference architectures in enterprise environments worldwide.&lt;br /&gt;
: Goal 4 - Advance standards in support of the formation of new and innovative markets and applications for geospatial technologies.&lt;br /&gt;
: Goal 5 - Accelerate market assimilation of interoperability research through collaborative consortium processes.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The early history of the OGC is closely related to the Open Source software [[GRASS]]. Read more on the OGC website at: http://www.opengeospatial.org/ogc/history.&lt;br /&gt;
&lt;br /&gt;
[[Image:From GRASS to OGC.png|500px|From GRASS to OGC time line]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sites ==&lt;br /&gt;
The OGC operates several web sites, portals and Wikis, each with specific access regulations:&lt;br /&gt;
* The main web site http://www.opengeospatial.org/ gives access to all public standards. &lt;br /&gt;
* Internal documents can be accessed by members through the portal http://portal.opengeospatial.org/ after authentication.&lt;br /&gt;
* On the inside the OGC is structured into Standard Working Groups (SWG) and Domain Working Groups (DWG). Members of the OGC can opt into SWG to contribute to the work. Due to patent regulations the work in the SWG is limited to members of the group. Before a standard becomes official it is openly published for a period of comments. &lt;br /&gt;
* OGC Network http://www.ogcnetwork.net/ is an outward facing portal where information from Technical Committee Meetings is published for non-members. As a service to OSGeo we will provide more information on the [[OGC News]] page. &lt;br /&gt;
* [http://cite.opengeospatial.org/ Compliance &amp;amp; Interoperability Testing &amp;amp; Evaluation Initiative]&lt;br /&gt;
* All [http://cite.opengeospatial.org/reference OGC reference implementations] are based on Open Source Software, &lt;br /&gt;
** [[GeoNetwork]] opensource (Graduated OSGeo Project)&lt;br /&gt;
** [[deegree]] (Graduated OSGeo Project)&lt;br /&gt;
** [http://www.geoserver.org GeoServer] (currently in OSGeo Incubator)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: OGC]]&lt;br /&gt;
[[Category: Standards]]&lt;br /&gt;
[[Category:MoU]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Google_Summer_of_Code_2013_Ideas&amp;diff=69985</id>
		<title>Google Summer of Code 2013 Ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Google_Summer_of_Code_2013_Ideas&amp;diff=69985"/>
		<updated>2013-03-28T21:59:22Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* The ideas pages */ add gdal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Gsoc-2013-logo-color.jpg|350px|link=http://code.google.com/soc/]] &amp;lt;font size=&amp;quot;+3&amp;quot;&amp;gt; @ &amp;lt;/font&amp;gt; [[Image:OSGeo_300_127_pixel.png|link=http://www.osgeo.org]]&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
* Back to the main OSGeo [[Google Summer of Code 2013]] wiki page.&lt;br /&gt;
&lt;br /&gt;
* See also ideas from [[Google Summer of Code 2010 Ideas|2010]], [[Google Summer of Code 2011 Ideas|2011]], and [[Google Summer of Code 2012 Ideas|2012]].&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OSGeo Google Summer of Code 2013 ==&lt;br /&gt;
&lt;br /&gt;
The [http://www.osgeo.org Open Source Geospatial Foundation] would like to extend a welcome to all SoC students. On this page you will find links to a host of ideas organized by project. You will find ideas ranging from the depths of computer science graph theory to the heights of visualization. One thing all these ideas have in common is lots and lots of spatial data.&lt;br /&gt;
&lt;br /&gt;
These ideas are '''*only*''' to motivate you, and serve as example of the kind of hills we want to charge up. Your own ideas are more than welcomed - they are encouraged. We view you as the next wave of open source leaders; show us what you've got.&lt;br /&gt;
&lt;br /&gt;
* '''If you need more information on how to apply you can contact all the mentoring organisations via the OSGeo-SoC mailing list''' ([[#How to get in contact via mailing lists|see below]])&lt;br /&gt;
&lt;br /&gt;
* There is a [http://code.google.com/p/google-summer-of-code/wiki/GsocFlyers Google SoC flyer] to look at and post in appropriate places and [http://svn.osgeo.org/osgeo/marketing/flyer/google_summer_of_code/ an OSGeo flavoured one as well] (TODO: update to 2013).&lt;br /&gt;
&lt;br /&gt;
* Ok, [[OSGeo]] is involved in working with maps and things, but what kind of projects does it really do? Have a look at the [http://planet.osgeo.org/ live blog feed] to see what people are working on right now.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important dates ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.google-melange.com/gsoc/events/google/gsoc2013 '''The official timeline''']&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* April 8: Google announces accepted organizations.&lt;br /&gt;
: If OSGeo is accepted as an organization for Google Summer of Code, '''start talking to us earlier rather than later.'''&lt;br /&gt;
* April 22: '''Student applications open.&lt;br /&gt;
: The earlier you start the more probable it is that you will be accepted!'''&lt;br /&gt;
: ''There is two way feedback during the application process which really helps you improve and clarify your application before the final deadline. The better your involvement with your potential mentors during this period, the better your chances of being selected.''&lt;br /&gt;
* May 3: '''Student application deadline.'''&lt;br /&gt;
* May 27: Accepted student proposals are announced and Community Bonding Period begins&lt;br /&gt;
* June 17: '''Coding begins!'''&lt;br /&gt;
: (''you may unofficially start a week or two earlier if you know you'll have to take a week or two off during The Summer or you'll be sitting finals in the first week(s) of the program. This must be reflected in your application timeline'')&lt;br /&gt;
* July 29: Mid-term evaluation begins&lt;br /&gt;
* September 16-23: '''Pencils down!'''&lt;br /&gt;
* September 23-27: Final evaluations&lt;br /&gt;
* September 27: Students begin submitting required code samples to Google&lt;br /&gt;
* October 1: Final results announced&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The ideas pages ==&lt;br /&gt;
'''''[Check back often, it's a work in progress]'''''&lt;br /&gt;
&lt;br /&gt;
Each participating project's list of ideas is on the respective projects' wikis, with a short description of the project and what type of students would be interested in it:&lt;br /&gt;
&lt;br /&gt;
* [http://grasswiki.osgeo.org/wiki/GRASS_SoC_Ideas_2013 '''GRASS GIS''' SoC Ideas]: GRASS GIS is an open source GIS focusing mainly on analysis. It is written as a collection of stand-alone C programs and has a new GUI written in wxPython. If you know Python, or want to implement algorithms in C take a look!&lt;br /&gt;
&lt;br /&gt;
* [http://hub.qgis.org/wiki/quantum-gis/Google_Summer_of_Code_2013 '''Quantum GIS''' SoC Ideas] Quantum GIS (QGIS) is a user friendly Open Source Geographic Information System (GIS) that runs on Linux, Unix, Mac OSX, and Windows. QGIS supports vector, raster, and database formats. It is written in C++ and Python.&lt;br /&gt;
&lt;br /&gt;
* [http://trac.osgeo.org/ossim/wiki/GSoC_2013_Ideas '''OSSIM''' SoC Ideas]: - OSSIM is a powerful suite of geospatial libraries and applications used to process imagery, maps, terrain, and vector data. The software has been under active development since 1996 and is deployed across a number of private, federal and civilian agencies. It is written in C++.&lt;br /&gt;
&lt;br /&gt;
* [http://udig.refractions.net/confluence/display/HACK/Summer+of+Code '''uDig''' SoC Ideas]: User-friendly Desktop GIS is a Java application written with the Eclipse RCP framework. The project has a community svn area to host student plug-ins, tutorials cover how to package up a custom application to show off your work.&lt;br /&gt;
&lt;br /&gt;
* [[GvSIG_GSoC_2013_Ideas|'''gvSIG''' Ideas]]: gvSIG is a free GIS project for [http://www.gvsig.org/web/projects/gvsig-desktop/description2/view?set_language=en Desktop], [http://www.gvsig.org/web/projects/gvsig-mobile/description-2/view?set_language=en PDAs], and [http://gvsigmini.org mobile phones]. The gvSIG project looks for students with Java skills that want to develop new ideas on any of these products.&lt;br /&gt;
&lt;br /&gt;
* [http://opticks.org/confluence/display/opticksDev/Google+Summer+of+Code '''Opticks''' Ideas]: Opticks is an extensible [http://en.wikipedia.org/wiki/Remote_sensing remote sensing] and imagery analysis desktop application. It provides a framework to process remote sensing data such as [http://en.wikipedia.org/wiki/Hyperspectral_imaging Hyperspectral] (HSI), [http://en.wikipedia.org/wiki/Multi-spectral_image Multispectral] (MSI), and [http://en.wikipedia.org/wiki/Synthetic_aperture_radar Synthetic aperture radar] (SAR) imagery and video. The application is written in C++ and licensed under LGPL v2.1. Extensions are written using C++ or Python. You can review the [http://opticks.org/confluence/display/opticksExt/All+Opticks+Extensions available extensions] and [http://opticks.org/confluence/display/opticks/Feature+Tour+-+Your+Data feature tour] to get a better idea of what Opticks can do.&lt;br /&gt;
&lt;br /&gt;
* [http://trac.osgeo.org/geos/wiki/GSoC '''GEOS''' Ideas]: GEOS (Geometry Engine - Open Source) is a C++ port of the JTS Topology Suite (JTS). It includes the OpenGIS Simple Features for SQL spatial predicate functions and spatial operators, as well as specific JTS enhanced topology functions.&lt;br /&gt;
&lt;br /&gt;
* [http://live.osgeo.org/en/overview/geoserver_overview.html '''Geoserver'''] is a web server that allows you to serve maps and data from a variety of formats to standard clients such as web browsers and desk top GIS programs. This means that you can store your spatial data in almost any format you prefer but that your users do not need to know anything about GIS data. At the simplest level all they need is a web browser to see your maps exactly as you want. GeoServer is the reference implementation of the Open Geospatial Consortium (OGC) Web Feature Service (WFS) and Web Coverage Service (WCS) standards, as well as a high performance certified compliant Web Map Service (WMS).&lt;br /&gt;
:* ''Geoserver will accept one idea, according to the developers' availability. Please contact them to get more information.''&lt;br /&gt;
&lt;br /&gt;
* [http://trac.osgeo.org/gdal/wiki/SummerOfCode '''GDAL''' Ideas]: GDAL is a C++ library for reading and writing geospatial data raster and vector formats.&lt;br /&gt;
&lt;br /&gt;
We expect ideas also from [http://live.osgeo.org/en/overview/mapbender_overview.html MapBender], [http://live.osgeo.org/en/overview/zoo-project_overview.html ZOO-Project], [http://live.osgeo.org/en/overview/geomoose_overview.html GeoMOOSE]...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Guest project: &lt;br /&gt;
&lt;br /&gt;
* [https://code.google.com/p/istsos/wiki/GSoC_ideas '''istSOS''' Ideas]: [http://code.google.com/p/istsos/ istSOS] (Istituto Scienze della Terra Sensor Observation Service) is an implementation of the Sensor Observation Service (SOS) standard from the Open Geospatial Consortium (OGC). The development of istSOS was started in 2009 in order to provide a simple implementation of the SOS standard for the management, provision and integration of hydro-meteorological data collected in Canton Ticino (Switzerland). istSOS is entirely written in Python.&lt;br /&gt;
&lt;br /&gt;
Guest students (accepted under OSGeo umbrella):&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/mapnik/mapnik/wiki/GSOC-Ideas '''Mapnik''' Ideas] [http://mapnik.org/ Mapnik] is a Free Toolkit for developing mapping applications. It’s written in C++ and there are Python bindings to facilitate fast-paced agile development. It can comfortably be used for both desktop and web development, which was something I wanted from the beginning.&lt;br /&gt;
:* ''Mapnik students will be required to apply under OSGeo or OpenStreetMap umbrella, according to the main topic of their project.''&lt;br /&gt;
&lt;br /&gt;
== Which project do I choose? ==&lt;br /&gt;
&lt;br /&gt;
Most of the software projects are available pre-built on our Live demo { DVD | USB stick | VirtualMachine } with project overviews and short tutorials where you can try everything out.&lt;br /&gt;
: View the documents and download the ISO from http://live.osgeo.org&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to get in contact via mailing lists ==&lt;br /&gt;
&lt;br /&gt;
Since OSGeo is an umbrella organisation for multiple projects, each project has their own discussion and development mailing lists.&lt;br /&gt;
&lt;br /&gt;
'''Main OSGeo mailing lists of interest to students:'''&lt;br /&gt;
: Please start here, when contacting us for the first time with questions about Google Summer of Code.&lt;br /&gt;
&lt;br /&gt;
:* OSGeo SoC Mentors and Students - soc@lists.osgeo.org (http://lists.osgeo.org/mailman/listinfo/soc)&lt;br /&gt;
:* OSGeo Wide Discussion List - discuss@lists.osgeo.org (http://lists.osgeo.org/mailman/listinfo/discuss)&lt;br /&gt;
&lt;br /&gt;
Also see the [[Mailing Lists]] page for project specific lists, as well as the longer list at http://lists.osgeo.org.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to get in contact via IRC ==&lt;br /&gt;
&lt;br /&gt;
Primary channel:&lt;br /&gt;
&lt;br /&gt;
* irc://irc.freenode.net/#osgeo (Web based [http://irc.telascience.org/cgi-bin/irc.cgi IRC client], [http://webchat.freenode.net alternative])&lt;br /&gt;
&lt;br /&gt;
GSoC @ OSGeo inter-project discussions:&lt;br /&gt;
&lt;br /&gt;
* irc://irc.freenode.net/#osgeo-soc&lt;br /&gt;
&lt;br /&gt;
Project irc channels:&lt;br /&gt;
&lt;br /&gt;
* irc://irc.freenode.net/#gdal&lt;br /&gt;
* irc://irc.freenode.net/#geoserver&lt;br /&gt;
* irc://irc.freenode.net/#geotools&lt;br /&gt;
* irc://irc.freenode.net/#grass&lt;br /&gt;
* irc://irc.freenode.net/#gvsig&lt;br /&gt;
* irc://irc.freenode.net/#mapbuilder&lt;br /&gt;
* irc://irc.freenode.net/#mapguide&lt;br /&gt;
* irc://irc.freenode.net/#mapnik&lt;br /&gt;
* irc://irc.freenode.net/#mapserver&lt;br /&gt;
* irc://irc.freenode.net/#openlayers&lt;br /&gt;
* irc://irc.freenode.net/#opticks&lt;br /&gt;
* irc://irc.freenode.net/#ossimplanet&lt;br /&gt;
* irc://irc.freenode.net/#pgrouting-project&lt;br /&gt;
* irc://irc.freenode.net/#postgis&lt;br /&gt;
* irc://irc.freenode.net/#qgis&lt;br /&gt;
* irc://irc.freenode.net/#udig&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Application questions we'll ask you ==&lt;br /&gt;
'''''[Provisional]'''''&lt;br /&gt;
&lt;br /&gt;
* All questions must be answered, ''no exceptions''. Treat this as something between a formal job application and a scholarship application, because that's exactly what it is.&lt;br /&gt;
&lt;br /&gt;
 Name:&lt;br /&gt;
 &lt;br /&gt;
 Country:&lt;br /&gt;
 &lt;br /&gt;
 School and degree:&lt;br /&gt;
 &lt;br /&gt;
 Email:&lt;br /&gt;
 &lt;br /&gt;
 Phone:&lt;br /&gt;
 &lt;br /&gt;
 OSGeo project(s):&lt;br /&gt;
 &lt;br /&gt;
 Title:&lt;br /&gt;
 (please include the name of the member project as part of&lt;br /&gt;
  the title, for example: &amp;quot;Gee Whiz Foobar 2001 for QGIS&amp;quot;)&lt;br /&gt;
 &lt;br /&gt;
 Describe your idea&lt;br /&gt;
   1. Introduction&lt;br /&gt;
   2. Background&lt;br /&gt;
   3. The idea&lt;br /&gt;
   4. Project plan ('''detailed timeline''': how do you plan to spend your summer?)&lt;br /&gt;
   5. Future ideas / How can your idea be expanded? &lt;br /&gt;
 &lt;br /&gt;
 Explain how your SoC task would benefit the OSGeo member&lt;br /&gt;
  project and more generally the OSGeo Foundation as a whole:&lt;br /&gt;
 &lt;br /&gt;
 Please provide details of general computing experience:&lt;br /&gt;
  (operating systems you use on a day-to-day basis, languages you&lt;br /&gt;
  could write a program in, hardware, networking experience, etc.)&lt;br /&gt;
 &lt;br /&gt;
 Please provide details of previous GIS experience:&lt;br /&gt;
 &lt;br /&gt;
 Please provide details of any previous involvement with&lt;br /&gt;
  GIS programming and other software programming:&lt;br /&gt;
 &lt;br /&gt;
 Please tell us why you are interested in GIS and open&lt;br /&gt;
  source software:&lt;br /&gt;
 &lt;br /&gt;
 Please tell us why you are interested in working for OSGeo&lt;br /&gt;
  and the software project you have selected:&lt;br /&gt;
 &lt;br /&gt;
 Please tell us why you are interested in your specific&lt;br /&gt;
  coding project:&lt;br /&gt;
 &lt;br /&gt;
 Would your application contribute to your ongoing studies/&lt;br /&gt;
  degree? If so, how?&lt;br /&gt;
 &lt;br /&gt;
 Please explain how you intend to continue being an active&lt;br /&gt;
  member of your project and/or OSGeo AFTER the summer is over:&lt;br /&gt;
 &lt;br /&gt;
 Do you understand this is a serious commitment, equivalent&lt;br /&gt;
  to a full-time paid summer internship or summer job?&lt;br /&gt;
 &lt;br /&gt;
 Do you have any known time conflicts during the official coding&lt;br /&gt;
  period? (June 17 to Sept. 27)&lt;br /&gt;
&lt;br /&gt;
== What to expect during the summer ==&lt;br /&gt;
&lt;br /&gt;
* A group of past GSoC students, mentors, and Googlers have prepared this short book just for you: [http://google-opensource.blogspot.com/2011/02/flip-bits-not-burgers-student-guide.html Flip bits not Burgers: The Student's Guide to the Summer of Code] -- READ THIS eBOOK&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Be prepared to be in constant communication with your mentors and project ===&lt;br /&gt;
&lt;br /&gt;
You and your mentors will decide on the specifics, but we will expect you and your mentor to communicate *a lot*. Part of the idea of SoC is to integrate you into the developer community, so you should get involved with them from the start. The more you communicate the easier it will be. Don't be afraid that the mentors will request your phone number. It is only to make sure that we can reach you in case of problems, like making sure you get paid.&lt;br /&gt;
&lt;br /&gt;
University exams and semester terms vary widely, if we know ''in advance'' that you need a week off to study, or that you've already scheduled a short vacation to somewhere off the grid, that's fine and won't count against you. But you need to ''communicate'' this up front so we can make a plan to work around it.&lt;br /&gt;
&lt;br /&gt;
=== Weekly reports ===&lt;br /&gt;
&lt;br /&gt;
Yes, every week we expect to see a report posted to the soc@osgeo mailing list that at least answers the following questions:&lt;br /&gt;
&lt;br /&gt;
# What did you get done this week?&lt;br /&gt;
# What do you plan on doing next week?&lt;br /&gt;
# Are you blocked on anything?&lt;br /&gt;
&lt;br /&gt;
These questions BTW are the same as are used in real-work, when developing with the &lt;br /&gt;
[http://en.wikipedia.org/wiki/Scrum_(development) Scrum] [http://en.wikipedia.org/wiki/Agile_software_development development process]. ;)&lt;br /&gt;
&lt;br /&gt;
If you want, feel free to write *more*. But three sentences is the bare minimum. *IT IS VERY IMPORTANT THAT YOU SEND YOUR PROGRESS REPORTS ON TIME*, if you don't send this email your mentors will start to get twitchy, and *especially* if they don't get any responses to their emails / don't see you in IRC. Twitchy mentors is not what we want. If you are blocked by finals, that's cool. We have all studied at some point, just tell us about it up front, be honest, and we'll work around it. If you don't know how to proceed and your mentor isn't answering *definitely* tell about it. The SoC project admins will always be available. Basically the point is that you open up the communication channels, and keep them open. That way you will have a super summer, and get paid ;)&lt;br /&gt;
&lt;br /&gt;
Last year this weekly report proved to be very popular among the students and mentors alike, so we will keep it up.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Wiki page and blogs ===&lt;br /&gt;
&lt;br /&gt;
In addition to weekly reports we require you to maintain a wiki or blog page for your project. You should store your weekly reports there and add other information, like how to compile and test your program. If applicable add screenshots and other nice info.&lt;br /&gt;
&lt;br /&gt;
Wiki and/or blog space can and will be provided by OSGeo if your project doesn't have anything already set up for this.&lt;br /&gt;
&lt;br /&gt;
We hope to link all of the students' blogs to the [http://planet.osgeo.org OSGeo Planet] blog aggregator for maximum community exposure and hopefully early feedback from the experts who read it, which may save you a lot of time and trouble if, for example, some obscure wheel has already been invented by another partner project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[Back to [[Google Summer of Code 2013]] @ OSGeo]&lt;br /&gt;
[[Category: Google Summer of Code]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=ProjectsVM&amp;diff=69760</id>
		<title>ProjectsVM</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=ProjectsVM&amp;diff=69760"/>
		<updated>2013-03-22T21:10:53Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Projects VM is a Debian virtual machine minimally administered by [[SAC]], hosted on [[Infrastructure Transition Plan 2010#New_Hardware|osgeo4]] at OSU OSL and used for hosting project web sites and some related services. &lt;br /&gt;
&lt;br /&gt;
The VM is reachable by ssh at projects.osgeo.osuosl.org. Anyone in the https://www.osgeo.org/cgi-bin/auth/ldap_shell.py has ssh access, and anyone in this group can add new people via the link. Sudo access can be provided by existing sudoer's by adding folks to the sudoers group in /etc/group, though it is normal practice to try and only extend sudo access to one user per project. &lt;br /&gt;
&lt;br /&gt;
This VM hosts several '''project critical resources''' (projects web sites primarily). It is a shared environment and it is important that folks making changes on the system be aware of the impact they might have on other hosted services. Apache changes should be made carefully and needfully. &lt;br /&gt;
&lt;br /&gt;
Place to reach SAC members in case of troubles or quick questions: &lt;br /&gt;
&lt;br /&gt;
*irc://irc.freenode.org#osgeo &lt;br /&gt;
*irc://irc.freenode.org#telascience &lt;br /&gt;
*If you don't have an IRC client, you can use the [http://irc.telascience.org/cgi-bin/telascience-irc.cgi IRC Web browser interface] or [http://webchat.freenode.net/ Freenode's Webchat] (if you are behind a restrictive firewall)&lt;br /&gt;
&lt;br /&gt;
;Existing services hosted on the Projects VM:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! site &lt;br /&gt;
! path &lt;br /&gt;
! contact &lt;br /&gt;
! [[SAC:Backups|backup]]&lt;br /&gt;
! comments&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;s&amp;gt;2010.foss4g.org&amp;lt;/s&amp;gt; &lt;br /&gt;
| &amp;lt;s&amp;gt;/osgeo/foss4g/2010&amp;lt;/s&amp;gt;&lt;br /&gt;
| admined by frank/lorenzo?&amp;lt;/s&amp;gt; &lt;br /&gt;
| ?&lt;br /&gt;
| moved to webextra&lt;br /&gt;
|-&lt;br /&gt;
| demo.geotools.org &lt;br /&gt;
| /osgeo/geotools &lt;br /&gt;
| admined by jdeolive/jgarnett &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| geos.org &lt;br /&gt;
| /osgeo/geos &lt;br /&gt;
| admined by pramsey &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| geotools.org &lt;br /&gt;
| /osgeo/geotools &lt;br /&gt;
| admined by jdeolive/jgarnett &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| grass.osgeo.org &lt;br /&gt;
| /osgeo/grass &lt;br /&gt;
| admined by neteler/martinl/hamish &lt;br /&gt;
| random site copies to http://gis.cri.fmach.it&lt;br /&gt;
| own mediawiki&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;| mapserver.org &lt;br /&gt;
| /osgeo/mapserver.org &lt;br /&gt;
| admined by hobu/jmckenna &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| /osgeo/mapserver&lt;br /&gt;
| admined by dmorissette, used for [http://trac.osgeo.org/mapserver/wiki/MapServerReleasePackagingHowTo release packaging]&lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| openlayers.osgeo.org &lt;br /&gt;
| /osgeo/openlayers&lt;br /&gt;
| admined by crschmidt&lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| projects.mapbender.osgeo.org &lt;br /&gt;
| /osgeo/mapbender &lt;br /&gt;
| admined by astrid_emde/christoph/uli have a look at [[Mapbender at ProjectsVM]] &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| spatialreference.org&lt;br /&gt;
| /osgeo/sr-org&lt;br /&gt;
| warmerdam ([http://trac.osgeo.org/metacrs/wiki/SpatialReferenceOrg Trac])&lt;br /&gt;
| Not yet&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| tilecache.org &lt;br /&gt;
| /osgeo/tilecache&lt;br /&gt;
| admined by crschmidt&lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| www.gdal.org &lt;br /&gt;
| /osgeo/gdal &lt;br /&gt;
| admined by FrankW &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| www.remotesensing.org &lt;br /&gt;
| /osgeo/remotesensing.org &lt;br /&gt;
| admined by FrankW &lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| www.pycsw.org &lt;br /&gt;
| /osgeo/pycsw&lt;br /&gt;
| admined by kalxas, tomkralidis&lt;br /&gt;
| ?&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Backup strategy ===&lt;br /&gt;
&lt;br /&gt;
There is none :( Amazing. See also column above.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:MapServer]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Spatialreference.org&amp;diff=69759</id>
		<title>Spatialreference.org</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Spatialreference.org&amp;diff=69759"/>
		<updated>2013-03-22T21:05:54Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Current info at http://trac.osgeo.org/metacrs/wiki/SpatialReferenceOrg - The following is deprecated and likely out of date.'''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Currently runs under gunicorn wsgi server proxied through apache.&lt;br /&gt;
* Proxy /etc/apache/site-available/sr.org.conf&lt;br /&gt;
* Service can be controlled via /etc/init.d/gunicorn&lt;br /&gt;
* Configuration file /etc/gunicorn.d/sr.gunicorn (&lt;br /&gt;
** Port 8092&lt;br /&gt;
** workers=4 (Can be modified, gunicorn recommends 2-4x # of cores (which is 4), but I lowered it to see if it plays better with the existing services.)&lt;br /&gt;
* Gunicorn is installed via backports&lt;br /&gt;
&lt;br /&gt;
''The notes below are for the previous method which is still installed but currently disabled:''&lt;br /&gt;
SR.org lives on its own apache server to prevent it going down and taking out the rest of the projects VM. To fix it:&lt;br /&gt;
&lt;br /&gt;
* cat /var/run/srorgapache.pid for a PID File, and check that that pid is an apache2 file running with the srorg config (using grep). &lt;br /&gt;
* Kill this process.&lt;br /&gt;
* Run /etc/init.d/srorgapache start&lt;br /&gt;
&lt;br /&gt;
This weird process is a side effect of how the srorgapache init.d script is written; because it is the same process name (apache2), the apache init script will kill the main projects VM if you just run restart.&lt;br /&gt;
&lt;br /&gt;
The server runs on port 8090; it takes about one minute to become available after the server is started. You can access it directly at http://spatialreference.org:8090, and http://spatialreference.org is proxied through the main apache.&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=WebExtraVM&amp;diff=69744</id>
		<title>WebExtraVM</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=WebExtraVM&amp;diff=69744"/>
		<updated>2013-03-21T21:13:23Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* vmap0.tiles.osgeo.org */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Web Extra VM is a Debian virtual machine administered by [[SAC]], hosted on OSGeo3 at OSU OSL and used for hosting web sites and services that are directly the responsibility of SAC and that don't fit on the other more special purpose VMs (ie. TracSVN, or Drupal).  OSGeo member/project services that SAC isn't willing to take direct responsibility for likely belong on either the [[ProjectsVM]] or the [[AdhocVM]].&lt;br /&gt;
&lt;br /&gt;
The VM is reachable by ssh at webextra.osgeo.osuosl.org. Anyone in the https://www.osgeo.org/cgi-bin/auth/ldap_shell.py?group=sac (SAC) list has ssh access, and anyone in this group can add new people via the link. &lt;br /&gt;
&lt;br /&gt;
== Existing Services on Web Extra VM ==&lt;br /&gt;
&lt;br /&gt;
=== mum03.mapserver.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/foss4g/mum2003-web&lt;br /&gt;
* Admined by FrankW&lt;br /&gt;
* static html historial site&lt;br /&gt;
* Backup available in /osgeo/backup/longterm/mum03 on BackupVM.&lt;br /&gt;
&lt;br /&gt;
=== planet.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/venus (venus2?)&lt;br /&gt;
* Admined: [[Paolo Corti]], [[User:Jsanz|Jorge Gaspar Sanz Salinas]], [[User:Mloskot|Mateusz Loskot]], [[User:crschmidt|Christopher Schmidt]]&lt;br /&gt;
* See also: [[PlanetOSGeo]]&lt;br /&gt;
* All admins can be contacted by e-mail on planet (at) osgeo (dot) org&lt;br /&gt;
&lt;br /&gt;
=== live.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/osgeolive&lt;br /&gt;
* Static html site from SVN (https://svn.osgeo.org/osgeo/livedvd/website)&lt;br /&gt;
* Alex (wildintellect)&lt;br /&gt;
&lt;br /&gt;
=== gallery.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
Status: offline due to massive spamming&lt;br /&gt;
&lt;br /&gt;
TODO: implement moderated queue or other antispam measure&lt;br /&gt;
&lt;br /&gt;
* /var/www/gallery/&lt;br /&gt;
* content is in sqlite DB&lt;br /&gt;
* Spam removal howto: to be implemented&lt;br /&gt;
&lt;br /&gt;
=== 2011ws.foss4g.org ===&lt;br /&gt;
&lt;br /&gt;
* /osgeo/foss4g/uploads&lt;br /&gt;
* Admined by FrankW, jmckenna&lt;br /&gt;
* used for FOSS4G 2011 workshop files (through SFTP)&lt;br /&gt;
&lt;br /&gt;
=== *.foss4g.org ===&lt;br /&gt;
Includes main www and 2003, 2006, 2007, 2008, 2009, 2010, 2012&lt;br /&gt;
 /osgeo/foss4g/*&lt;br /&gt;
* 2011 is on webvm - as it's using Drupal&lt;br /&gt;
* Most are static dumps from CMSs that were used, &lt;br /&gt;
* 2008 uses the OCS instance (conference.osgeo.org) hosted on webextra&lt;br /&gt;
 /osgeo/ocs2&lt;br /&gt;
* Most being moved from osgeo1 29sep11 by tmitchell&lt;br /&gt;
* 2010 also moved from projects vm.&lt;br /&gt;
&lt;br /&gt;
=== vmap0.tiles.osgeo.org ===&lt;br /&gt;
&lt;br /&gt;
* Serves as http://vmap0.tiles.osgeo.org/wms/vmap0?SERVICE=WMS&amp;amp;VERSION=1.1.0&amp;amp;REQUEST=GetCapabilities&lt;br /&gt;
* Lives in /var/www/tiles/vmap0 and /mapdata (2.3G)&lt;br /&gt;
* Originally setup by Chris Schmidt. &lt;br /&gt;
* Currently produces the bulk of load on the webextra VM.&lt;br /&gt;
* Presumably this is widely used as a default layer in OpenLayers.&lt;br /&gt;
* As of March 2013, it appears this has been mostly or completely migrated to servers at telescience. &lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Boston_Code_Sprint_2013&amp;diff=69732</id>
		<title>Boston Code Sprint 2013</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Boston_Code_Sprint_2013&amp;diff=69732"/>
		<updated>2013-03-20T23:36:53Z</updated>

		<summary type="html">&lt;p&gt;Warmerdam: /* Participants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Gold Sponsors'''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| [http://www.enterprisedb.com EnterpriseDb]&lt;br /&gt;
| [[File:EDB_logo_rgb_300.jpg‎|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Silver Sponsors'''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.geosynergy.com.au GeoSynergy]&lt;br /&gt;
| [[File:GeoSynergy.png|200px]]&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| [http://www.airborneinteractive.com Airborne Interactive]&lt;br /&gt;
| [[File:AirborneInteractive.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Bronze Sponsors'''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.hobu.biz Hobu]&lt;br /&gt;
| [[File:Logo-Hobu.png‎|150px]]&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| [http://www.azavea.com Azavea]&lt;br /&gt;
| [[File:Logo-azavea.png|150px‎]]&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| [http://www.1ocean.com OneOcean]&lt;br /&gt;
| [[File:Bos_code_sprint_oneocean.png|150px]]&lt;br /&gt;
| &amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
| [http://www.appgeo.com/ AppGeo]&lt;br /&gt;
| [[File:Appgeo_bos2013.jpg‎|150px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Host Sponsor'''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.paragoncorporation.com Paragon Corporation]&lt;br /&gt;
| [[File:Version8.png|175px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== SPECIAL BULLETIN ==&lt;br /&gt;
If you have not found accommodation under $200 or would like to have a roomie, please contact Leo at lr at pcorp.us now. You will still find great values on Hotwire or Price Line. Deluxe accommodation starts around $120. Luxury starts around $170.  Act fast!&lt;br /&gt;
&lt;br /&gt;
If you have special dietary requirements, please contact Leo at lr at pcorp.us. Otherwise be expected to consume land animals, sea creatures, and vegetation.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
Get together project members to make decisions and tackle larger geospatial problems (as done last year at the [[IslandWood Code Sprint 2012]] and previous years: [[Montreal Code Sprint 2011|Montreal]] (2011), [[New York Code Sprint 2010|New York City]] (2010), and [[Toronto Code Sprint 2009|Toronto]] (2009)).  This code sprint is targeting members of the &amp;quot;C Tribe&amp;quot; (eg,  MapServer, GRASS, GDAL, Proj, PostGIS, MapGuide, OpenLayers). Other tribes are welcome to join the sprint, of course, but we hope that &amp;quot;C Tribe&amp;quot; members will give this event special consideration.&lt;br /&gt;
&lt;br /&gt;
We have started a [[Boston Sprint 2013 Agenda]] page for preliminary planning of tasks.&lt;br /&gt;
&lt;br /&gt;
== Dates and Times ==&lt;br /&gt;
Dates: Monday - Thursday 3/25-3/28&lt;br /&gt;
&lt;br /&gt;
Time: Mon-Wed (9AM - 5PM), Thu (9AM - Noon)&lt;br /&gt;
&lt;br /&gt;
== Venue ==&lt;br /&gt;
[http://www.devonshireboston.com/skyclub.html Devonshire Sky Club Conference Room] (42.358187,-71.057593)&lt;br /&gt;
&lt;br /&gt;
Walking distance from all subway lines, rail and bus. From airport, take subway (Blue line) to State Street.  &lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
'''Monday (March 25th)'''&lt;br /&gt;
* 9:00am to 9:30am - Welcomes&lt;br /&gt;
* 9:30am to 11:30am - Sprinting&lt;br /&gt;
* 11:30am to 1:30pm - Lunch, Informal Presentations&lt;br /&gt;
* 1:30pm - 2:30pm - Google Hangout&lt;br /&gt;
* 2:30pm to 4:00pm - Sprinting&lt;br /&gt;
* 4:00pm to 6:00pm - Cocktail&lt;br /&gt;
&lt;br /&gt;
'''Tuesday (March 26th)'''&lt;br /&gt;
* 9:00am to 11:30am - Sprinting&lt;br /&gt;
* 11:30am to 1:30pm - Lunch, Informal Presentations&lt;br /&gt;
* 1:30pm - 2:30pm - Google Hangout&lt;br /&gt;
* 2:30pm to 4:00pm - Sprinting&lt;br /&gt;
* 4:00pm to 6:00pm - Cocktail&lt;br /&gt;
&lt;br /&gt;
'''Wednesday (March 27th)'''&lt;br /&gt;
* 9:00am to 11:30am - Sprinting&lt;br /&gt;
* 11:30am to 1:30pm - Lunch, Informal Presentations&lt;br /&gt;
* 1:30pm - 2:30pm - Google Hangout&lt;br /&gt;
* 2:30pm to 4:00pm - Sprinting&lt;br /&gt;
* 4:00pm to 6:00pm - Cocktail&lt;br /&gt;
&lt;br /&gt;
'''Thursday (March 28th)'''&lt;br /&gt;
* 9:00am to 11:30am - Sprinting&lt;br /&gt;
* 11:30am to Noon - Farewells&lt;br /&gt;
&lt;br /&gt;
== Hotel ==&lt;br /&gt;
We've decided not to get a block of rooms because it seems it is pricier than having people pick the hotel they like best. There are over a dozen hotels name-brand and boutique within walking, all rated above three stars. Should you have specific questions, feel free to email us directly: lr at pcorp.us. We’ll help you find the perfect accommodation.&lt;br /&gt;
&lt;br /&gt;
Our recommendation is to book your own room via Hotwire or Priceline.&lt;br /&gt;
&lt;br /&gt;
For Hotwire, any hotel in the Financial District will be within walking distance.&lt;br /&gt;
For Price Line, any hotel within a half mile of 1 DEVONSHIRE PL BOSTON MA 02109 will be within walking distance.&lt;br /&gt;
&lt;br /&gt;
== Costs ==&lt;br /&gt;
Participants should plan for the following costs:&lt;br /&gt;
&lt;br /&gt;
* Travel to Boston&lt;br /&gt;
* Accommodation for three nights&lt;br /&gt;
* Breakfast and dinner&lt;br /&gt;
&lt;br /&gt;
== Project Plans ==&lt;br /&gt;
* [[Boston Sprint 2013 Agenda]] &lt;br /&gt;
* [https://github.com/mapserver/mapserver/wiki/Boston-Codesprint-Agenda MapServer sprint plan]&lt;br /&gt;
&lt;br /&gt;
== Sponsor Demos ==&lt;br /&gt;
During the lunch hour, our sponsors will have the opportunity to talk briefly and informally about their products/services and how they use open source.&lt;br /&gt;
&lt;br /&gt;
* Monday - Azavea: GeoTrellis&lt;br /&gt;
* Tuesday - TBA&lt;br /&gt;
* Wednesday - TBA&lt;br /&gt;
&lt;br /&gt;
== Communication ==&lt;br /&gt;
* Please join the mailing list: http://lists.osgeo.org/mailman/listinfo/tosprint&lt;br /&gt;
* IRC chat during the event: #tosprint Server: irc.freenode.net&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
We are planning for attendance of 20-30. Please add your name and the projects you are hoping to sprint and note the likeliness of your attendance.&lt;br /&gt;
&lt;br /&gt;
Indicate if you have already finalized accommodation and travel arrangements.&lt;br /&gt;
&lt;br /&gt;
# Regina Obe - Paragon Corporation - Hostess&lt;br /&gt;
# Leo Hsu - Paragon Corporation - Hostess' consort&lt;br /&gt;
# Stephen Mather - PostGIS/Raster/PDAL - Attendance assured. Local&lt;br /&gt;
# [[User:Woodbri|Steve Woodbridge]] - iMaptools.com - MapServer; pgRouting; postGIS - Attendance assured. Local&lt;br /&gt;
# [[User:pwramsey3|Paul Ramsey]] - PostGIS - Arriving Mar 24 @ 18:11 on AC364&lt;br /&gt;
# Thomas Bonfort - Terriscope - MapServer - Arriving Mar 24 @ 19:25 on LH424&lt;br /&gt;
# Jonas Lund Nielsen - Danish Geodata Agency - MapServer - Arriving Mar 24 @ 19:15 on AC8666&lt;br /&gt;
# Howard Butler - Hobu, Inc. - Arriving Mar 24 @ 4:30 on UA1235&lt;br /&gt;
# [[User:dmorissette|Daniel Morissette]] - Mapgears - MapServer; GDAL/OGR - Flight/Hotel booked&lt;br /&gt;
# [[Jeff McKenna]] - Gateway Geomatics - MapServer - Flight booked&lt;br /&gt;
# Olivier Courtin - Oslandia - PostGIS, TinyOWS - Flight booked&lt;br /&gt;
# Hugo Mercier - Oslandia - PostGIS - Flight booked&lt;br /&gt;
# Stephan Meissl - EOX - MapServer - Flight booked&lt;br /&gt;
# Bborie Park - PostGIS Raster - Flight booked&lt;br /&gt;
# Steve Lime - MapServer - Flight booked&lt;br /&gt;
# Alan Boudreault - Mapgears - MapServer, MapCache; GDAL/OGR - Flight/Hotel booked&lt;br /&gt;
# [[User:Djay|Gérald Fenoy]] - GeoLabs SARL - ZOO-Project - Flight booked&lt;br /&gt;
# Jim Klassen - SharedGeo - Flight booked&lt;br /&gt;
# Michael Smith - US Army Corps - MapServer; PDAL; GDAL/OGR - Attendance assured&lt;br /&gt;
# [[User:Dzwarg|David Zwarg]] - Azavea - PostGIS Raster; GDAL/OGR - Very likely&lt;br /&gt;
# Norman Barker - Cloudant - Very likely&lt;br /&gt;
# [[User:kshepard|Kenny Shepard]] - Azavea - PostGIS - Very likely&lt;br /&gt;
# Rob Emanuele - Azavea - PostGIS Raster - Very likely&lt;br /&gt;
# Pierre Racine - University Laval  - PostGIS Raster - Very likely&lt;br /&gt;
# Tom Kralidis - MapServer, pycsw, owslib - Likely&lt;br /&gt;
# Michael P. Gerlek (or designee) - OneOcean - PDAL &amp;amp; Friends - Likely&lt;br /&gt;
# [[User:Jwalgran|Justin Walgran]] - Azavea - OpenLayers; PostGIS - Likely&lt;br /&gt;
# Norman Vine - Likely&lt;br /&gt;
# Sarah Ward - qPublic - MapServer documentation - Flight/Hotel booked&lt;br /&gt;
# [[User:Mloskot|Mateusz Loskot]] - PostGIS/PDAL - Unlikely&lt;br /&gt;
# &amp;lt;strike&amp;gt;[[User:kirk|Kirk McKelvey]] - LizardTech - PDAL/GDAL - &amp;lt;/strike&amp;gt; (will sorely miss this - until next year then)&lt;br /&gt;
&lt;br /&gt;
== Individual Preparation ==&lt;br /&gt;
&lt;br /&gt;
* Bring your own computer&lt;br /&gt;
* Install subversion and the compiler tools, and come with a working development environment if possible&lt;br /&gt;
&lt;br /&gt;
== FAQ ==&lt;br /&gt;
&lt;br /&gt;
* Is the Boston Code Sprint just a coding event?&lt;br /&gt;
** Yes, a coding, testing and documentation event. It is a working session for people who are already participants in open source projects.&lt;br /&gt;
* Will it be possible to present new projects during this event?&lt;br /&gt;
** No, this is not a presentation-oriented event. People will get together in small groups and work on areas of mutual interest within their projects.&lt;br /&gt;
* Will there be presentation time to show case innovative uses of technology?&lt;br /&gt;
** Yes, Sponsors and sprinters actively working on projects will have their moment of glory&lt;br /&gt;
&lt;br /&gt;
== Extracurricular Activities ==&lt;br /&gt;
&lt;br /&gt;
Here are some events happening around town that could be of interest:&lt;br /&gt;
&lt;br /&gt;
=== Sporting Events ===&lt;br /&gt;
* Hockey - Mon Mar 25 Maple Leafs vs. Bruins&lt;br /&gt;
* Hockey - Wed Mar 27 Canadiens vs. Bruins&lt;br /&gt;
* Hoops - Tue Mar 26 Knicks vs. Celtics&lt;br /&gt;
&lt;br /&gt;
=== Crashing Parties ===&lt;br /&gt;
* Mon Mar 25 7-10 PM [http://ignitelocationtechboston1.eventbrite.com/ Ignite LocationTech Boston] (follow link to register)&lt;br /&gt;
* [http://www.meetup.com/avidgeo/ AvidGeo] might be having a meetup around that time too.&lt;br /&gt;
&lt;br /&gt;
== Sponsors ==&lt;br /&gt;
We have three sponsorship levels:&lt;br /&gt;
&lt;br /&gt;
* Gold: $2000+, Silver: $1500, Bronze: $750&lt;br /&gt;
&lt;br /&gt;
We encourage sponsors ($750+) to support nutriment and entertainment for the sprinters as they work hard and play hard for four productive days. Contributions will go towards space rental, lunch, and libations (in this order). &lt;br /&gt;
&lt;br /&gt;
Sponsors will receive the following honors:&lt;br /&gt;
&lt;br /&gt;
* Your logo or portrait at the top of this page&lt;br /&gt;
* 30-min slot to talk about how you are using FOSS GIS&lt;br /&gt;
* Get to stare at us during the sprint and voice your in put in person&lt;br /&gt;
* Our undying gratitude, which comes in handy when you least expect it. (Remember that feature you wanted...) &lt;br /&gt;
&lt;br /&gt;
To sponsor, please contact Leo Hsu and Regina Obe (lr at pcorp dot us) directly regarding sponsorship and level of sponsorship you'd like to provide&lt;br /&gt;
&lt;br /&gt;
=== 2013 Sponsors ===&lt;br /&gt;
==== Gold ====&lt;br /&gt;
EnterpriseDb&lt;br /&gt;
==== Silver ====&lt;br /&gt;
Mobile Geographics, Airborne Interactive, GeoSynergy&lt;br /&gt;
==== Bronze ====&lt;br /&gt;
OneOcean, Azavea, Hobu, AppGeo&lt;/div&gt;</summary>
		<author><name>Warmerdam</name></author>
	</entry>
</feed>