Changes between Version 8 and Version 9 of TracSqlPlugin


Ignore:
Timestamp:
Mar 28, 2015, 11:55:24 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged with license

Legend:

Unmodified
Added
Removed
Modified
  • TracSqlPlugin

    v8 v9  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Perform SQL queries on the Trac database =
     3= Perform SQL queries on the Trac database
    44
    5 == Description ==
     5== Description
    66
    7 The TracSQL plugin adds a "SQL" tab to the trac project. Inside this tab, the plugin
    8 supports interacting with the project database. 
     7The TracSQL plugin adds a "SQL" tab to the Trac project. Inside this tab, the plugin supports interacting with the project database. 
    98
    10 Some features include:
     9Key features:
    1110
    1211 * perform queries on the project database
     
    1514 * browse the database schema
    1615
    17 This plugin supports Trac installations with SQLite, MySQL, and PostgreSQL
    18 database backends (although the queries will need to be written differently
    19 according to which SQL database is being used).
     16This plugin supports Trac installations with SQLite, MySQL and PostgreSQL database backends. The queries will need to be written differently according to which SQL database is being used.
     17
     18== Source
     19
     20See http://github.com/mrjbq7/tracsql for more details and the source code, or to report issues or request features.
     21
     22== Installation
    2023
    2124You can install it with:
    2225
    2326{{{
    24 $ easy_install tracsql
     27#!sh
     28easy_install tracsql
    2529}}}
    2630
    27 == Source ==
     31== Configuration
    2832
    29 See http://github.com/mrjbq7/tracsql for more details and the source code, or to report issues or request features.
    30 
    31 == Configuration ==
    32 
    33 It is configured in the trac.ini file by enabling and configuring:
     33It is configured in the `trac.ini` file by enabling and configuring:
    3434
    3535{{{
     36#!ini
    3637[components]
    3738tracsql.* = enabled
    3839}}}
    3940
    40 The TRAC_ADMIN permission is used to control access to the query pages.
     41The `TRAC_ADMIN` permission is used to control access to the query pages.
    4142
    42 By default, the TracSQL plugin connects to the project database.  To use an
    43 external database, set the database parameter in the tracsql section
    44 of the trac.ini file to a valid database connection string:
     43By default, the TracSQL plugin connects to the project database. To use an external database, set the database parameter in the tracsql section of the `trac.ini` file to a valid database connection string:
    4544
    4645{{{
     46#!ini
    4747[tracsql]
    4848database = sqlite:db/external.db
    4949}}}
    5050
    51 == Example ==
     51== Example
    5252
    5353Some screenshots, showing a few of the features:
    5454
     55=== SQL query screen
     56
    5557[[Image(sql-query.png)]]
     58
     59=== SQL schema screen
    5660
    5761[[Image(sql-schema.png)]]
    5862
     63=== SQL query 2 screen
     64
    5965[[Image(sql-query2.png)]]
    6066
    61 == Recent Changes ==
     67== Recent Changes
    6268
    6369[[ChangeLog(tracsqlplugin, 3)]]
    6470
    65 == Author/Contributors ==
     71== Author/Contributors
    6672
    6773'''Author:''' [wiki:mrjbq7] [[BR]]