How do you usually format a project outline?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pr0
    rockin tha trailerpark
    • May 2001
    • 23088

    #1

    How do you usually format a project outline?

    I'm having a script developed & i'm beating my head trying to figure out how to best lay it out to send over to the programmer.

    Anyone have a tried & true method or flow they care to suggest?
    __________
    Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)
  • AlienQ - BANNED FOR LIFE
    best designer on GFY
    • Mar 2003
    • 30307

    #2
    Metaman is a fucken retard.

    Comment

    • pr0
      rockin tha trailerpark
      • May 2001
      • 23088

      #3
      Originally posted by AlienQ
      Metaman is a fucken retard.
      You're annoying & smoke the cock, but ya know what....i've come to terms with it.

      So good day sir.
      __________
      Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

      Comment

      • broke
        Confirmed User
        • Aug 2003
        • 4501

        #4
        UML

        Use it.
        Perfect Gonzo

        Comment

        • pr0
          rockin tha trailerpark
          • May 2001
          • 23088

          #5
          Originally posted by broke
          UML

          Use it.
          http://pigseye.kennesaw.edu/~dbraun/.../UML_tutorial/

          ?
          __________
          Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

          Comment

          • broke
            Confirmed User
            • Aug 2003
            • 4501

            #6

            Ah -- you said script - not app.

            Just go with "I want if to do 'this'" and be happy with the results.
            Perfect Gonzo

            Comment

            • datatank
              Confirmed User
              • Aug 2004
              • 5471

              #7
              If its a small one http://backpackit.com will work well

              Comment

              • BusterBunny
                perverted justice decoy
                • Aug 2005
                • 19291

                #8
                my sig caught gonoherpasyphilaids and died

                Comment

                • pr0
                  rockin tha trailerpark
                  • May 2001
                  • 23088

                  #9
                  Originally posted by BusterBunny
                  i don't get it?
                  __________
                  Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

                  Comment

                  • BusterBunny
                    perverted justice decoy
                    • Aug 2005
                    • 19291

                    #10
                    Originally posted by pr0
                    i don't get it?
                    this help the visual?
                    my sig caught gonoherpasyphilaids and died

                    Comment

                    • pr0
                      rockin tha trailerpark
                      • May 2001
                      • 23088

                      #11
                      Originally posted by BusterBunny
                      this help the visual?
                      yea i get it...square peg, round hole

                      but i don't get how it fucking relates to my question
                      __________
                      Loadedca$h - get sum! - Revengebucks - mmm rebills! - webair (gotz sErVrz)

                      Comment

                      • Coyote
                        Drinker of Scotch
                        • May 2003
                        • 236

                        #12
                        First, let me preface this reply with an apology for it being so long.

                        A functional requirements spec can and should be as detailed as possible to limit the features to only those you want incorporated. When the spec is complete it should restrict all programmers from deviating from the intended functionality of the application.

                        Since applications are procedural by nature you could use an objective hierarchy as the method to create your spec. This allows you to break each objective down to the task and step level. For each objective, there may be one or more assigned tasks, and for each task, there may be one or more assigned steps. You can call these elements whatever you like, it's the structure that matters.

                        I'll explain this using an excerpt from a spec I did some years back. I've edited out a lot of company-, programming-, and nda-specific information but the basic elements are present. This excerpt describes adding a "Search" feature to an existing application.

                        Objective There needs to be a means by which the user can select the type of object they want to work with and, optionally, provide a partial or complete object name to further isolate the desired object. This is the primary means by which a user locates one or more objects within the database.

                        Task 1 Create a combobox that contains all the valid objects.
                        *omitted*

                        Task 2 Create a textbox where the user can enter a partial or whole object name.

                        1. The user may enter a wildcard to denote Any Name. This wildcard is represented by an asterisk (*).
                        2. The user may prefix the wildcard to a text string to denote any name ending with the text string.
                        3. The user may append the wildcard to a text string to denote any name beginning with the text string.
                        4. The user may combine the use of both wildcard positions to denote any name that contains the text string. This is the system default when no astersik is specified.
                        5. If no text entry is made, then the default entry * is assumed. This is identical in function to selecting the Object Type from the View menu on the application main menu.

                        Task 3 Create an action button that performs the search against the object database.
                        *omitted*

                        At the end of your spec, you should include the general business rules that govern the specific objective. Like so,

                        Business Rules
                        1. Only valid object types as determined by user roles and node assignments are listed in the search combobox.
                        2. If no results are returned, a dialog box is displayed. The search combobox and object name textbox must contain the user?s entries as they appeared at the time of the search request. Refer to the Dialog Box Specification for more information about using dialog boxes and user error messages.

                        Finally, you could add additional sections to your spec that cover issues such as,
                        • Other areas of the application that may be affected by this project,
                        • An application version history,
                        • Specific test cases to validate the submitted code, to name a few.


                        Hope this helps.
                        Ethernet Servers

                        Quote:
                        CS: Linux can pretty much run on a potato. Which is a GOOD thing.

                        Comment

                        Working...