TracRPC
Trac RPC package for Sublime Text 3
Details
Installs
- Total 110
- Win 60
- Mac 21
- Linux 29
May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 1 | 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 | 1 | 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 | 1 | 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:
- List my tickets (owned) (⌘+t, ⌘+t)
- List all my tickets (owned, reported, cc) ((⌘+t, ⌘+a)
- Insert
[refs #1]
references statement for commit messages (⌘+t, ⌘+r) - Add comment to ticket (⌘+t, ⌘+y)