wiki:AddingNewFeatures

Version 1 (modified by sauermann, 17 years ago) (diff)

--

Gnowsis Development Process XXI: Adding New Features

I have an idea, it involves two dwarves and a fairy living in a house... (The Janitor from "Your Studio and You")

So, you have a great Idea for a gnowsis feature.

  • First, write an e-mail to the gnowsis-dev mailinglist, see GnowsisMailinglists.
  • Then, create a wikipage describing the new idea, best at GnowsisBrainstorm
  • If your idea is great and seems to be promising (which means, you got some mail back from the mailinglist, we are sure every idea is great if you have kept it munching inside your brain long enough) - make an enhancement TICKET.
    • Go To "New Ticket"
    • be sure to check the "enhancement" option in the combobox up there, not "defect"
  • Be sure to write a second e-mail to the GnowsisMailinglist, to note when the feature should be added, then you can enter the Milestone info to the ticket. We might also add priority.

When you implement an idea:

  • Start by looking if the idea is already implemented. LeoSauermann usually knows if an idea is already implemented. Ask him via jabber.
  • Write an Interface or abstract class first!
  • Then write a JUnit test first! This is the best way to start. Put your test into some src/test/org/gnowsis/... folder
  • Write then the Implementation! put the code into src/java/org/gnowsis/....
  • Again: first interface, then JUnit test, then implementation
  • Use LoggingAndDebugging if you have bugs.