WhatDateIs.js

    @@ -19,7 +19,7 @@ })(); function openURL(url) { - window.open(url, 'quickadd'); + location.assign(url); } function getSelectingText() {
  • /*
     * @title GoogleCalendarParsingDate.js
     * @description Selecting date text to Google Calendar
     * @include http://*
     * @license MIT License
     * @require https://rawgithub.com/berryboy/chrono/master/chrono.min.js
     */
    
    (function main() {
        var selectText = getSelectingText();
        var parsingDates = chrono.parse(selectText);
        var dates = buildDate(parsingDates[0]);
        var url = buildURL({
            "text": document.title,
            "details": document.title + " ( " + window.location.href + " ) ",
            "dates": dates
        });
        openURL(url);
    })();
    
    function openURL(url) {
        location.assign(url);
    }
    
    function getSelectingText() {
        return window.getSelection().toString();
    }
    
    function buildDate(chronoDate) {
        if (typeof chronoDate === "undefined") {
            return;
        }
        var startDateText = formatDateString(chronoDate.startDate);
        var endDateText = chronoDate.endDate ? formatDateString(chronoDate.endDate) : null;
        if (startDateText && endDateText) {
            return startDateText + "/" + endDateText;
        } else {
            return startDateText;
        }
    }
    function format0(str, len) {
        return ('_' + Math.pow(10, len) + str).slice(-len);
    }
    function formatDateString(date) {
        return date.getFullYear() + format0(date.getMonth() + 1, 2) + format0(date.getDay(), 2);
    }
    function buildURL(parameters) {
        var action = parameters.action || "TEMPLATE";
        var text = parameters.text || "";
        var details = parameters.details || "";
        var dates = parameters.dates || "";
        var location = parameters.location || "";
        var url = 'http://www.google.com/calendar/event?' +
            'action=' + action +
            '&text=' + encodeURIComponent(text) +
            '&details=' + encodeURIComponent(details) +
            '&location=' + encodeURIComponent(location) +
            '&dates=' + dates +
            '&trp=true' +
            '&sprop=website:' + window.location.href
        return url;
    }
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/02/05 23:29:19 - 2014-02-05
  2. 2014/02/05 23:28:53 - 2014-02-05
  3. 2013/11/27 14:58:29 - 2013-11-27
  4. 2013/11/27 14:56:25 - 2013-11-27
  5. 2013/11/27 14:55:59 - 2013-11-27
  6. 2013/11/21 18:23:55 - 2013-11-21
  7. 2013/10/07 00:25:43 - 2013-10-07
  8. 2013/10/07 00:25:13 - 2013-10-07
  9. 2013/10/06 02:35:43 - 2013-10-06
  10. 2013/10/06 02:34:50 - 2013-10-06
  11. 2013/10/06 02:33:06 - 2013-10-06
  12. 2013/10/06 02:31:56 - 2013-10-06
  13. 2013/10/06 02:26:34 - 2013-10-06
  14. 2013/10/06 02:25:28 - 2013-10-06
  15. 2013/10/06 02:08:46 - 2013-10-06
  16. 2013/10/06 01:57:59 - 2013-10-06
  17. 2013/10/06 01:15:06 - 2013-10-06
  18. 2013/10/06 00:57:59 - 2013-10-06