TracRPC
Trac RPC package for Sublime Text 3
Details
Installs
- Total 107
- Win 58
- Mac 20
- Linux 29
Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 | 1 | 0 | 0 |
Mac | 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 | 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:
- 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)