Changes between Version 6 and Version 7 of FilingTickets

Show
Ignore:
Timestamp:
05/23/12 01:19:50 (12 months ago)
Author:
bartvde
Comment:

change from svn to github

Legend:

Unmodified
Added
Removed
Modified
  • FilingTickets

    v6 v7  
    11= How to File A Ticket =  
    22 
    3 If you find a bug or wish to add a new feature in !OpenLayers, please help us by filing a new ticket in our Trac system.  
     3If you find a bug or wish to add a new feature in !OpenLayers, please help us by filing a new ticket in our github issue tracker.  
    44[[br]] 
    55[[br]] 
     
    77[[br]] 
    88[[br]] 
    9 ... and then visit the [http://trac.openlayers.org/newticket Ticket Creation] page.  
     9... and then visit the [https://github.com/openlayers/openlayers/issues? Issue Creation] page.  
    1010[[br]] 
    1111[[br]] 
    1212 
    13 ''Note'': To make a ticket, you must be logged into the Openlayers Trac. If you do not have a login: 
    14     * Visit  https://www.osgeo.org/cgi-bin/ldap_create_user.py  
     13''Note'': To make a ticket, you must have a github account. If you do not have a github account: 
     14    * Visit  https://github.com/signup/free  
    1515[[br]] 
    1616[[br]] 
    1717 
    18 == Please Make Sure to Fill in All Appropriate Fields == 
     18== Please Make Sure to Fill in All Appropriate Information == 
    1919 
    20  * '''Your email or username:''' Enter either your email address or an identifiable username. This will help us to notify you of any changes to the ticket.  
     20Give as much information as possible such as: 
    2121 
    22  * '''Type:'''  
    23    * ''bug'': reporting a problem 
    24    * ''feature'': a suggested enhancement 
    25    * ''task'': a procedural note 
    26  
    27  * '''Short Summary:''' Enter a short, succinct summary of the bug, feature, or task you have identified. Ex: 
     22 * '''Title:''' Enter a short, succinct summary of the bug, feature, or task you have identified. Ex: 
    2823   * Bugs 
    2924     * ''Double click raises error in IE 6 on WinXP'' 
     
    3631     * ''Unit tests for new Scale Based Operations'' 
    3732 
    38  * '''Full description:''' Your thorough description of the bug/feature/task. 
     33 * '''Full description:''' Your thorough description of the bug/feature/task in the memo field below the Title field. 
    3934   * bug -  This should include detailed information such that any user (with the appropriate hardware) could reproduce the bug. Please be sure to include: 
    4035     * ''Platform, OS'' 
     
    5045     * Sideaffects or complications this task might have on the rest of the project. 
    5146 
    52  * '''Priority:''' This field will be set by an OpenLayers developer. 
     47 * '''Assignee:''' This field will be set by an OpenLayers developer. 
    5348 
    54  * '''Version:'''  
    55    * bug - Set to the [wiki:HowToDownload version] of !OpenLayers in which you found the bug. If you are working from a svn checkout, select ''SVN'', and be sure to specify the Revision Number in the ticket's '''Full Description''' field. 
    56    * feature, task: Leave this field blank 
     49 * '''Milestone:''' This field will be set by an OpenLayers developer. 
    5750 
    58  * '''Milestone:'''  
    59    * bug - Set to the currently under development milestone. For example, if the latest OL release is 2.2, file the bug under ''2.3 Release''. 
    60    * feature, task: This will be set by a member of the SteeringCommittee 
     51 * '''Labels:''' Labels will be added by an OpenLayers developer. 
    6152 
    62  * '''Components:''' Specify which part of !OpenLayers is associated with the ticket.  
     53== Pull requests ==  
    6354 
    64  * '''CC:''' If you would like to receive notification when the ticket has been closed or changed, add your email here. 
     55See [http://help.github.com/send-pull-requests/ pull requests] for more information. A pull request will automatically create an issue. 
    6556 
    66  * '''Assign to:''' If you intend to work on this bug or feature yourself, enter your username/email in this field. Otherwise, this will be set by an !OpenLayers developer.  
     57If you want to attach a pull request to an existing issue, you need to use something like [https://github.com/defunkt/hub hub]. To provide text based attachments, use something like [https://gist.github.com/ gist] and provide the link in the issue. 
    6758 
    68  * '''Keywords:''' Can be filled with any terms you think might make your ticket easier to be located with a search. 
     59Example: 
    6960 
    70 == Patches ==  
     61{{{ 
     62$ git pull-request -i <issue_number> -b openlayers:master -h yourgithubuser:<your_branch> 
     63}}} 
    7164 
    72 If you have developed a [wiki:CreatingPatches patch] for the bug or feature, please attach it to the ticket. After submitting the original ticket, click the '''Attach File''' button and select the patch you have created. 
     65This assumes "git" is aliased to "hub". Without -i a new pull request/issue is created.