GitHub←→gh-pages
by
peccu
2017-06-10 [2017/06/10 18:56:26]
GitHubリポジトリとGitHub Pagesを行き来する。ブランチ名はgh-pages固定
@@ -4,6 +4,7 @@
* @license MIT License
* @javascript_url
*/
+
var branch = 'gh-pages';
var gh = location.href.match(/^https:\/\/github\.com\/([^\/]+)\/([^\/]+)(\/[^\/]+\/[^\/]+(.*))?/);
@@ -17,7 +18,7 @@
if(ghPages){
var user = ghPages[1];
var repo = (ghPages[3] ? '/' + ghPages[3] : '');
- var dirPath = (ghPages[5] ? '/tree/' : '/blob/') + branch;
+ var dirPath = (ghPages[5] ? '/tree/' + branch : '/blob/' + branch);
var path = (ghPages[4] ? dirPath + ghPages[4] : '');
location.href = 'https://github.com/' + user + repo + path;
}
/*
* @title GitHub←→gh-pages
* @description GitHubリポジトリとGitHub Pagesを行き来する。ブランチ名はgh-pages固定
* @license MIT License
* @javascript_url
*/
var branch = 'gh-pages';
var gh = location.href.match(/^https:\/\/github\.com\/([^\/]+)\/([^\/]+)(\/[^\/]+\/[^\/]+(.*))?/);
if(gh !== null){
var user = gh[1];
var repo = gh[2];
var path = (gh[4] ? gh[4] : '');
location.href = 'https://' +user + '.github.io/' +repo + path;
}
var ghPages = location.href.match(/^https:\/\/([^.]+)\.github\.io\/(([^\/+])(.*?))?(\/?)([#?].*)$/);
if(ghPages){
var user = ghPages[1];
var repo = (ghPages[3] ? '/' + ghPages[3] : '');
var dirPath = (ghPages[5] ? '/tree/' + branch : '/blob/' + branch);
var path = (ghPages[4] ? dirPath + ghPages[4] : '');
location.href = 'https://github.com/' + user + repo + path;
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。