dolfelt
Forum Replies Created
-
This problem is fixed in v1.2.10. I am sorry for any trouble that this may have caused you. It was an effort to improve the reliability of repeating events, and this error would show every time it parsed an event that was not repeating.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Danish months?I would say that it is possible that your server does not have locales installed. I am not sure why this is, but I would contact your System Admin and ask them if they have a Danish locale and what the string for it is.
Hope this helps.
Daniel
http://www.fullimpact.netJust in case you didn’t know. This has been added to the newest release of WordPress. You can now allow the bubbles to show up on click, hover or not at all.
Enjoy!
Daniel
http://www.fullimpact.netI have fixed both these issues in the newest version of ICS Calendar (v1.2.6). I will upload it by the end of today. Please try that and let me know if you have any other issues.
Daniel
Full Impact Design Studio
dan@fullimpact.netForum: Plugins
In reply to: [Plugin: ICS Calendar] Minor Bug: All Day Events on Dec 31You know, I am not sure why I check the year. I will look into this more and include a fix for it in the next release. I am just worried that removing the year check will have other repercussions.
Daniel
Forum: Plugins
In reply to: [Plugin: ICS Calendar] unterminated string literal@givenatelove
Try using the new version (v1.2.4). This should fix your problem as it bypasses using so many $_GET variables. It keeps all the information internal which also helps to hide your ICS file URL as well as other settings.Give it a try and let me know what happens.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Danish months?Are you changing the date function to
strftime? Thedatefunction does not support Locales. Also, are you using a linux server? Because if you are, you can see the list of acceptable Locales.If you are using a Windows Server, try using
danishordan. You can also check out this site for Windows Server Locales: http://msdn.microsoft.com/en-us/library/39cwe7zf.aspxSorry about the Danish/Dutch mixup :-). Hope you get this to work!
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Problems with calendar eventsPlease update to version v1.2.1. This version has a fix for your issue. It also includes new language support through
strftime.Enjoy!
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Danish months?Ok, I fixed the locale settings (v1.2.1). Sorry about the error. It was only working on my machine I guess. Now it should work for everyone.
Also, I have included a list of supported locales if you are running on a Linux web server.
Locale for nardus would be
nl_NL.UTF-8
Locale for snoofox would bede_DE.UTF-8Remember, you can also put something like
de_DE,de_DE.UTF-8into the box to try multiple locales.Forum: Plugins
In reply to: [Plugin: ICS Calendar] Time and date separationPlease explain more what you mean. I am not sure I understand.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Danish months?I have added this support just for you. You can now set a locale, however you must now use the
strftimefunction and have that locale installed on your server. For Danish, the locale should be something likenl_NLEnjoy!
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Multi-day events display extra dayThis will be fixed in the next release v1.2 that will be coming out later today. The problem was that the full day event was going through the end of the day, and thus causing the plugin to think that it was the next day.
All I had to do was subtract 1 second.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] unterminated string literalI have fixed this issue and will upload v1.2 later today. The problem was with the long string in the jQuery ajax function. I am not sure why that is an issue.
However, the way grigory fixed the problem is not ideal. What I ended up doing is modifying the PHP to print out a Javascript Object then used that in the AJAX function. This seems to have cleared up the issue without the need for extra include files.
Enjoy:
$calContent = '<script type="text/javascript"> jQuery(document).ready(function() { '; $urlArray = ''; $calContent .= 'var options = {'; foreach($options as $k=>$o) { $urlArray[] = '"'.$k.'" : \''.$o.'\''; } $calContent .= implode(", \n",$urlArray); $calContent .= '};'; $calContent .= ' jQuery("a.ics-nav-button").click(function() { jQuery.get("' . ICSCALENDAR_URLPATH . 'ajax-load.php?showMonth="+jQuery(this).attr("month")+"", options, function(data) { jQuery("#ics-calendar-uid > div").unbind(); jQuery().unbind("mousemove"); jQuery("#ics-calendar-uid").html(data); }); }); }); //jQuery(window).resize(function(){ // alert("Stop it!"); //}); ';Forum: Plugins
In reply to: [Plugin: ICS Calendar] css error in FireFox 3Thanks for the input. I have made your suggested change to the base code. I will upload it later today. As far as the calendar goes, this plugin was never meant to have an internal editor. If the demand requires that I add one, then I will, but for now it is only meant to display an ICS file from iCal, Google Calendar, etc.
Forum: Plugins
In reply to: [Plugin: ICS Calendar] Menu “Fromatting” and “Calendar” aren’t workingDo you have javascript disabled by chance? Is anyone else having this issue?
I will look into the issue. I think it is because of your version. I have an old version installed that I can test with.
I will try to fix it for the next release.