Converting the issue-tracking doc and putting it under General

This commit is contained in:
Viktor Klang 2011-05-02 18:46:45 +02:00
parent a97bdda6e8
commit 25a56ef053
3 changed files with 57 additions and 51 deletions

View file

@ -11,3 +11,4 @@ General
event-handler event-handler
util util
developer-guidelines developer-guidelines
issue-tracking

View file

@ -0,0 +1,56 @@
Issue Tracking
==============
Akka is using ``Assembla`` as issue tracking system.
Browsing
--------
Tickets
^^^^^^^
`You can find the Akka tickets here <http://www.assembla.com/spaces/akka>`_
`You can find the Akka Modules tickets here <https://www.assembla.com/spaces/akka-modules/tickets>`_
Roadmaps
^^^^^^^^
`The roadmap for each Akka milestone is here <https://www.assembla.com/spaces/akka/milestones>`_
`The roadmap for each Akka Modules milestone is here <https://www.assembla.com/spaces/akka-modules/milestones>`_
Creating tickets
----------------
In order to create tickets you need to do the following:
`Register here <https://www.assembla.com/user/signup>`_ then log in
For Akka tickets:
`Link to create new ticket <https://www.assembla.com/spaces/akka/tickets/new>`_
For Akka Modules tickets:
`Link to create new ticket <https://www.assembla.com/spaces/akka-modules/tickets>`_
Thanks a lot for reporting bugs and suggesting features.
Failing test
------------
Please submit a failing test on the following format:
.. code-block:: scala
import org.scalatest.WordSpec
import org.scalatest.matchers.MustMatchers
class Ticket001Spec extends WordSpec with MustMatchers {
"An XXX" should {
"do YYY" in {
1 must be (1)
}
}
}

View file

@ -1,51 +0,0 @@
Issue Tracking
==============
Akka is using Assembla as issue tracking system.
Browsing
--------
You can find the Akka tickets here: `<http://www.assembla.com/spaces/akka>`_
You can find the Akka Modules tickets here: `<https://www.assembla.com/spaces/akka-modules/tickets>`_
The roadmap for each milestone is here: `<https://www.assembla.com/spaces/akka/milestones>`_
Creating tickets
----------------
In order to create tickets you need to do the following:
# Register here: `<https://www.assembla.com/user/signup>`_
# Log in
For Akka tickets:
# Create the ticket: `<https://www.assembla.com/spaces/akka/tickets/new>`_
For Akka Modules tickets:
# Create the ticket: `<https://www.assembla.com/spaces/akka-modules/tickets>`_
Thanks a lot for reporting bugs and suggesting features.
Failing test
------------
Please submit a failing test on the following format:
`<code format="scala">`_
import org.scalatest.WordSpec
import org.scalatest.matchers.MustMatchers
class Ticket001Spec extends WordSpec with MustMatchers {
"An XXX" should {
"do YYY" in {
1 must be (1)
}
}
}
`<code>`_