-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is upcoming broken? #88
Comments
It would appear there's been some sort of API change. if (this.opts.feed_url) {
return this.opts.feed_url;
} else if (this.opts.mode === 'updates') {
return "https://www.google.com/calendar/feeds/" + this.opts.calid + "/public/full?alt=json-in-script&max-results=" + this.opts.maxitem + "&orderby=lastmodified&sortorder=descending";
} else {
return "https://www.google.com/calendar/feeds/" + this.opts.calid + "/public/full?alt=json-in-script&max-results=" + this.opts.maxitem + "&orderby=starttime&futureevents=true&sortorder=ascending&singleevents=true";
} See jquery.gcal_flow.js:125 Investigating, it looks like, the URL has changed slightly. This does work (in the potential patch): This does not work (in the current implementation): The change is from |
Potentially it's sane to have a submodule to the module's source, rather than a copy? |
Last time I looked submodules in git didn't act like you would expect, but If you want to experiment and bring up a pull req I will happily merge. =
|
Submodules are essentially "I want this git repo here, at this commit pointer" -- you can do a reccursive git pull, to update all submodules. I'll have a play when I'm not at work, and have an internet connection at home that allows me to ssh >.< |
Any change you will have time to make a pull req to get this fixed (if if hacky and raise a new ticket to improve it?) |
Should be easy enough, the only difficulty will be forcing jekyll to compile the coffee script without adding front matter to the file (as that would defy the point of having a git submodule) It may be that I add a Makefile which does some legwork first. That could be very nice for doing things like
Etc. Thoughts? |
There is already a make script on my dev server (you should have access) On Tue Jan 27 2015 at 12:05:45 PM Simon Cooksey [email protected]
|
No description provided.
The text was updated successfully, but these errors were encountered: