Hi guys!
How can i set up a correct description / license / instalation taba
into a plugin description ?
I am thinking paste-ing "Readme" file into description. Any one can
help me sort this problem?

this is the plugin url: 
http://www.symfony-project.org/plugins/alTicketingSystemPlugin
this is my readme file content

Thanks in advance.

alTicketingSystem plugin (for symfony 1.0)
==========================================


The `alTicketingSystemPlugin` is a symfony plugin that provides you a
way to
monitor, organise your application development, by providing the
milestone grouping
of some tasks. Those tasks can be commented, timetracked, sorted by
priority, severity,
status, milestone, responsable or asignee.

It gives you the models needed (milestones, tickets, timetrack,
comments) and the modules
(backend and frontend ) needed to organise your application.

Installation
------------

  * Install the plugin

        $ symfony plugin-install 
http://plugins.symfony-project.com/alTicketingSystemPlugin

  * Rebuild your model

        $ symfony propel-build-model
        $ symfony propel-build-sql

  * Update you database tables by starting from scratch (it will
delete all
  the existing tables, then re-create them):

        $ symfony propel-insert-sql

    or you can just create the new tables by using the generated SQL
    statements in `data/sql/
plugins.alTicketingSystemPlugin.lib.model.schema.sql`

  * Load default fixtures (optional - it creates the permissions,
statuses, severities defaults )

        $ symfony propel-load-data frontend # replace frontend with
the name of one of your application

  * Enable one or more modules in your `settings.yml` (optional)

    * For your backend application:  tsMilestonesAdmin,
tsMilestoneStatusesAdmin, tsPrioritiesAdmin, tsSeveritiesAdmin,
tsTicketsAdmin, tsTicketStatusesAdmin
    * For your frontend application: tsTickets, tsReports, tsNotifier,
tsMilestones

            [yml]
            all:
              .settings:
                enabled_modules:      [default,
tsValidatedBugReportAdmin, tsMilestonesAdmin,
tsMilestoneStatusesAdmin, tsPrioritiesAdmin, tsSeveritiesAdmin,
tsTicketsAdmin, tsTicketStatusesAdmin ]  #for backend
                # or
                enabled_modules:      [default, tsTickets, tsTracker,
tsReports, tsNotifier,  tsMilestones, tsBugReport ]  #for frontend

  * Add plugin routes by copying `plugin/alTicketingSystemPlugin/data/
routing.yml` content into your `apps/frontend/config/routing.yml`
before the `homepage` route

                        [yml]
                        comment_ticket:
                          url: /:sf_culture/milestone/ticket/:ticket_id/comment
                          param: { module: tsTickets, action: comment }

                        homepage:
                          url:   /
                          param: { module: home, action: index }

  * Add following code into your `apps/frontend/config/filters.yml`
file

                alTsTicketTracker:
                  class: alTsTrackerFilter
                alTsReportLink:
                  class: alTsReportLinkFilter

  * Edit `plugin/alTicketingSystemPlugin/config/settings.yml` for
additional config directives

  * Clear you cache

        $ symfony cc

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to