Skip to main content

A URL scheme to share code

Project description

# dcode://

Dcode is a URL scheme for sharing code.

pip install –user dcode && python -m dcode install

# Link-to-code

A dCode URL represents a location in a codebase.

A dCode handler finds this code on a particular computer and opens it with the user’s preferred editor.

URLs can be shared within a team, embedded in documentation, tickets, comments, or simply stored as personal bookmarks. Same as HTTP.

URLs support different degrees of precision and are capable of describing what a location means across code changes. It can mean “this exact place and time” or “this function definition in the latest master”.

## Strict mode

A dCode URL that contains a repository URL, commit ID, path, line and column numbers uniquely identifies a location. It may also contain other details for readability, or to allow friendly alternative behaviors of handlers.

## Human-friendly mode

URLs may omit all parts but the path. This makes it easy to write them by hand or to generate them from other tools. Handlers should make their best efforts to locate the code that best matches the URL.

# Examples

Absolute minimum. When referring to a file, simply add “dcode colon triple slash” in front of it.

dcode:///some_pretty_specific/filename.js

If the path is not unique enough (like main.js), add the repo name between the slashes:

dcode://my_project/main.js

Add basic in-file location:

dcode://my_project/main.js?line=12

Make it robust to changes using words. The handler can be smart and find it even after the code has changed, within reason:

dcode://my_project/main.js?line=12&column=4&word=MyComponent,function

Make it unambiguous across spacetime, complete with git url and commit id.

dcode://my_project/README.md?git=git%40github.com%3Adeckardai%2Fdcode.git&h=63d2f71&line=12&column=3

Of course, those would rather be generated by tools, for instance editor plugins.

# Specification

A dCode URL is composed of a mandatory path and optional repository and file information (spaces for readability):

dcode:// repo_name / path ? repo_spec & code_spec

path: the path to a file relative to the root of a project, typically a git repository.

repo_name: the common name of the repo, the last part of a repo url and typically the name of the local working directory.

repo_spec can indicate version control details, such as branch names and commit ids.

code_spec can indicate the location of code inside of a file.

Parameters, if present, should appear in the following order, so that people can learn to read them quickly.

## Repository specification

git: a URL that can be interpreted by git. Must be URL-encoded.

hg: a URL that can be interpreted by mercurial. Must be URL-encoded.

commit or h: a specific commit hash.

branch or b: a branch or tag.

date or d: a date as YYYY-MM-DD, representing the last commit of the day in UTC, in the specified or the default branch.

## Code specification

line or l: line number starting at 1.

column or c: column number starting at 1.

word or w: one or more words that should appear at the URL location. Several words can be given, separated by commas. Words should be interpreted as case-insensitive, unless they explicitely contain an uppercase letter. This allows handlers to find code across changes.

## Name

A name or comment can be added at the end of URLs like this: #–Some_name. This makes links easier to manage.

# Implementation

The current implementation looks for all git or mercurial repositories in the home directory, by default. It can open files at the right place in any code editor. A couple of presets are provided. Contributions welcome!

# Install

pip install –user dcode && python -m dcode install

This will install the url handler and open a test file after a few seconds. DCode will likely select a basic text editor.

If you don’t have pip yet:

easy_install pip

# Configure

Edit ~/.dcode.json to choose your actual IDE.

You should now be able to click links and end up right in your text editor.

# Demo

Demo link: [dcode://_demo/demo.txt?l=3&c=30](http://dcode.online/_demo/demo.txt?l=3&c=30)

Or simulating if the link is not clickable for you:

python -m dcode ‘dcode://_demo/demo.txt?l=3&c=30’

# Contributing

Ideas and bug reports are welcome in Issues, or code as pull requests.

Examples:

  • Editor plugins generating URLs.

  • Make something more robust in a particular environment.

  • Make URLs more robust to code changes, multiple branches, and such.

## Development setup:

git clone https://github.com/deckardai/dcode.git cd dcode pip install –user -e .

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dcode-0.2.0.tar.gz (60.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dcode-0.2.0-py2.py3-none-any.whl (63.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file dcode-0.2.0.tar.gz.

File metadata

  • Download URL: dcode-0.2.0.tar.gz
  • Upload date:
  • Size: 60.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for dcode-0.2.0.tar.gz
Algorithm Hash digest
SHA256 26384831f2e62a846c5ad979330549091f36c5e43e659c35794ebd7eafcaf9a8
MD5 d2fe8753b52865792231b0e30d7add95
BLAKE2b-256 6625bd0fe08e6ffd9616bae3aeddbcbe7a9e5bcd19213421fb4868583bdbb820

See more details on using hashes here.

File details

Details for the file dcode-0.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for dcode-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0fd7129671fa7b5ef6acb1089c92cfd730c332cb4660f40c7b535d22d54d834c
MD5 182414fd9cf384f9597f74393ba3935f
BLAKE2b-256 b705701e1633c1095e08ee8a5c2b50b6f6429c5187e6e8eb3e85abe147bdab07

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page