Hi I'm using the calendar base extension (cal) for displaying my calendar in a TYPO3 website.
I configured an external calendar and it imports all events correctly. How can I automatically reload the events from this external ics-calendar?
thanks!
For TYPO3 4.3 and up, you'll want to use the scheduler extension. Once its installed, you'll find a task inside the scheduler module for updating external calendars.
Related
How can I create a full calendar that works the same like the standard calendar?
I used this link for that:
http://www.codebycody.com/2013/06/create-calendar-view-in-salesforcecom.html
but this doesn't showing me events on vf page.
Have you looked a the free AnyCalendar Lightning Component on the AppExchange. It uses the Full Calendar js library. You could just embed that in a Visualforce page. That would allow you to easily upgrade when you eventually migrate to lightning.
Seeking an example RedMine Plugin or tutorial to add a spinner control to the RedMine ISSUES UI page.
This has two parts: (1) adding the spinner control to the RedMine page UI and (2) adding a new column in the RedMine DB to store the spinner's input value.
http://www.redmine.org/ Redmine is a flexible project management web application. Written using the Ruby on Rails framework, it is cross-platform and cross-database. Redmine is open source and released under the terms of the GNU General Public License v2 (GPL).
I'm assuming you want something like this.
In your plugin, simply create a new custom field format (inherit from IntFormat which is defined in lib/redmine/field_format.rb) and override the edit_tag method to render your control.
Then in Redmine, with your plugin installed, you can just create a custom issue field using the newly defined format. This field will then be rendered the way you want. There is no need to patch Redmine's Views or add a new column to the database for this.
So normally, if you are developing a web application you will have to create your own .css files. In my case, I used bootstrap to design my application and created my own .css files to suit my needs.
Recently, I just found this Report Manager plugin for CakePHP. I put my plugin in the plugin folder and loaded it on my bootstrap.php file. Everything went smoothly and I can create reports.
Now, this is my first time handling plugins. Since this Report Manager plugin is using the default CakePHP design, how can I apply the bootstrap and my own design to this plugin?
Read the documentation!
You can override any plugin views from inside your app using special
paths. If you have a plugin called ‘ContactManager’ you can override
the template files of the plugin with application specific view logic
by creating files using the following template
src/Template/Plugin/[Plugin]/[Controller]/[view].ctp. For the Contacts
controller you could make the following file:
I have a calendar app for which I provide subscriptions by linking client using the "webcal://" protocol. It's working quite nicely. What I'd like to know is if there is a way title it in the receiving calendar application, such as Outlook, iPhone, Google, etc?
Currently, when loaded into Outlook it is displayed as the name of the web script from which it came. For instance if the script is (using ColdFusion) Create_ICS_File.cfm then Outlook shows it as "Create_ICS_File in Internet Calendars".
On the iPhone it shows up in Calendar as the full web address including URL variables. For example: mywebsite.com/Create_ICS_File.cfm?calid=4329-32
Is the a way, in the ICS file or otherwise, to set a title on these subscriptions?
Using the X-WR-CALNAME - The display name of the calendar
should do the trick
See
http://en.wikipedia.org/wiki/ICalendar#Calendar_extensions.
See also
How do I change the display name of an iCalendar in Outlook?
I have seen a very specific and professional web page widget (e.g. http://whatsnextlectures-work.eventbrite.com/ and meetup.com). Please help me find the library that creates the links.
I have looked at Need a service that build calendar (iCal, outlook) links, but that answer seems to address the need for an on-screen calendar, not just the links.
thanks
Alternatively you can create below registry entry and anchor link/button to open the outlook calendar
below is the markup
<button id="outlookCalendarBtn" onclick="window.open('outlookwebcal:')">
Open Outlook Calendar
</button>
Create below registry entry
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\outlookwebcal]
#="URL:Outlook Add Internet Calendar"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\outlookwebcal\shell]
#="open"
[HKEY_CLASSES_ROOT\outlookwebcal\shell\open]
[HKEY_CLASSES_ROOT\outlookwebcal\shell\open\command]
#="\"C:\\Program Files\\Microsoft Office\\root\\office16\\Outlook.exe\" /select outlook:calendar"
Even I was looking for the same library Mr.Richard but after reaching for 3 days I finally found this. http://tardate.blogspot.com/2010/10/add-to-calendar-with-jquery-widget.html
But iCal is not included in this library you need to add it explicitly.