ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Trac​RPC

by Florian Cech ST3

Trac RPC package for Sublime Text 3

Details

Installs

  • Total 104
  • Win 56
  • Mac 19
  • Linux 29
Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

TracRPC

Trac RPC package for Sublime Text 3

Sublime Text Trac-Plugin to interface with an existing trac project.

Preconditions

Besides using the Sublime Text 3 editor, you will need to install the Trac XML-RPC plugin to your trac instance. Installation instructions can be found on the plugins website. Furthermore, the user you are using to connect to Trac might need to have the XML_RPC permission.

Installation

Package Control

Since this package has officially been accepted, it is available via Package Control.

Manual Installation

For bleeding-edge dev-versions, you can directly clone this github repository. To install this dev-preview, follow these steps:

  • Clone the git repository into your Sublime Text Package directory as a whole
git clone https://github.com/lyrixderaven/TracRPC.git

Settings

The package requires some settings to work, specifically setting url and authentication credentials for your Trac Environment:

  • Edit your project settings file to include the settings for your trac instance
"settings":
    {
        "trac_user": "me@myhost.com",
        "trac_pw": "my_super_secret_pw",
        "trac_url": "https://myhost.com/mytrac",
    }

Mind that the URL to your trac instance does not need a trailing slash or the /rpc postfix; the plugin takes care of that by itself.

Sublime Text should automatically update and include the package; you can check the presence of the package by looking at the settings, which should contain a new entry for TracRPC at Preferences>Package Settings>TracRPC

Usage

Currently, the following commands are implemented:

  1. List my tickets (owned) (⌘+t, ⌘+t)
  2. List all my tickets (owned, reported, cc) ((⌘+t, ⌘+a)
  3. Insert [refs #1] references statement for commit messages (⌘+t, ⌘+r)
  4. Add comment to ticket (⌘+t, ⌘+y)