| | |
| | |
|
| | | public static final String SPARKLESHARE_INVITE_PATH = "/sparkleshare/";
|
| | |
|
| | | public static final String RAW_PATH = "/raw/";
|
| | |
|
| | | public static final String BRANCH_GRAPH_PATH = "/graph/";
|
| | |
|
| | | public static final String BORDER = "*****************************************************************";
|
| | |
| | | }
|
| | |
|
| | | public static Transport fromUrl(String url) {
|
| | | String scheme = url.substring(0, url.indexOf("://"));
|
| | | int delim = url.indexOf("://");
|
| | | if (delim == -1) {
|
| | | // if no protocol is specified, SSH is assumed by git clients
|
| | | return SSH;
|
| | | }
|
| | | String scheme = url.substring(0, delim);
|
| | | return fromString(scheme);
|
| | | }
|
| | | }
|