123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- .. _gsip:
- GeoServer Improvement Proposals
- ===============================
- GeoServer Improvements Proposals (GSIP) are the formal mechanism used to manage major changes to GeoServer in a responsible fashion. Examples of changes which are managed by the GSIP process include:
- * major features
- * code re-architecture
- * community process improvements
- * upgrading key dependencies
- * intellectual property
- How a GSIP works
- ----------------
- The typical life cycle of a GSIP is as follows:
- #. Developer has an intent to perform a major change.
- #. Developer communicates with the community about the change.
- #. Developer goes off and implements the change.
- #. Developer writes a GSIP and presents it to the community for feedback.
- #. The PSC votes on the GSIP.
- #. Developer commits changes upon receiving a positive vote.
- Writing a GSIP
- --------------
-
- GSIPs are written up on the :wiki:`Proposals` wiki page.
- If you have write access login and follow the steps below. If you do not have write access GitHub will automatically create a fork for you as you edit individual pages.
- To make a GSIP:
- #. Navigate to the wiki :wiki:`proposals page <Proposals>`.
- #. Edit the page with a new link under *Proposals Under Discussion*:
-
- .. code-block:: text
-
- [GSIP 200 - Title](GSIP-200)
-
- * The number should be the next "available" GSIP number on the proposal page.
- * The title should be short and descriptive.
- #. Save your change to the *Proposal* page.
- #. Click on your new link to create the page, fill in the page contents by copy and pasting the following proposal page template.
-
- GSIP :download:`template <gsip_template.txt>`:
- .. literalinclude:: gsip_template.txt
- :language: text
- :emphasize-lines: 1
- #. Fill in the information in the page template, and click ``Save`` when
- complete.
-
- Voting on a GSIP
- ----------------
- One of the duties of the :doc:`GeoServer Project Steering Committee <psc>` is to vote on
- GSIPs. The voting process works as follows:
- .. include:: gsip_voting.txt
- GSIP FAQ
- --------
- Q. When do I need to make a GSIP?
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- A: Generally you will make a GSIP when you want something major done in
- GeoServer and need feedback from others. GSIPs are needed for things that will
- have an impact on other community members, and thus should be talked about.
- GSIPs are not intended to be a way to get feedback on experimental work. There
- are alternate mechanisms for this such as creating an R&D page on the wiki,
- svn branches and spikes, etc... Often once the idea is formalized through
- experimentation it can be turned in to an official GSIP.
- Q. Who can comment on a GSIP?
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- A: Anyone and everyone can comment on a GSIP including regular users, and it is
- encouraged. Comments can take place on GeoServer Devel mailing list, the GeoServer
- User forum, or as comments on the wiki page for the GSIP itself.
- Feedback from the user community is definitely desired so that the developers do
- not just making decisions in a vacuum. If you speak up your voice will be heard.
- Q. Who can vote on a GSIP?
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- A: Only PSC members can officially vote on a GSIP. But more often than not this
- vote is based on general feedback from the user community.
- Q: What happens if I propose a GSIP but I don't have the time to implement it?
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- A: If a proposal is made but is not completed then it will be taken from a
- release schedule and live as a deferred proposal. A deferred proposal can be
- picked up by the original developer or another developer, or it can live in
- limbo until it officially gets rejected.
- Q: If I am a PSC member and I make a GSIP, do I still vote on it?
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- A: Yes.
|