2012-02-14 16:19:48 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
|
|
|
|
<script language="javascript" type="text/javascript"
|
|
|
|
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
|
|
|
|
|
|
|
|
<script>
|
2012-04-24 08:12:30 +02:00
|
|
|
function showEvent(eventid) {
|
|
|
|
$.get(
|
|
|
|
'$baseurl/events/?id='+eventid,
|
|
|
|
function(data){
|
|
|
|
$.fancybox(data);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-02-14 16:19:48 +01:00
|
|
|
$(document).ready(function() {
|
2012-04-24 08:12:30 +02:00
|
|
|
$('#events-calendar').fullCalendar({
|
2012-02-14 16:19:48 +01:00
|
|
|
events: '$baseurl/events/json/',
|
|
|
|
header: {
|
|
|
|
left: 'prev,next today',
|
|
|
|
center: 'title',
|
|
|
|
right: 'month,agendaWeek,agendaDay'
|
|
|
|
},
|
|
|
|
timeFormat: 'H(:mm)',
|
|
|
|
eventClick: function(calEvent, jsEvent, view) {
|
2012-04-24 08:12:30 +02:00
|
|
|
showEvent(calEvent.id);
|
2012-02-14 16:19:48 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
eventRender: function(event, element, view) {
|
2012-02-14 16:28:10 +01:00
|
|
|
//console.log(view.name);
|
|
|
|
if (event.item['author-name']==null) return;
|
2012-02-14 16:19:48 +01:00
|
|
|
switch(view.name){
|
|
|
|
case "month":
|
2012-02-14 16:28:10 +01:00
|
|
|
element.find(".fc-event-title").html(
|
|
|
|
"<img src='{0}' style='height:10px;width:10px'>{1} : {2}".format(
|
2012-02-14 16:19:48 +01:00
|
|
|
event.item['author-avatar'],
|
|
|
|
event.item['author-name'],
|
|
|
|
event.title
|
|
|
|
));
|
|
|
|
break;
|
|
|
|
case "agendaWeek":
|
2012-02-14 16:28:10 +01:00
|
|
|
element.find(".fc-event-title").html(
|
|
|
|
"<img src='{0}' style='height:12px; width:12px'>{1}<p>{2}</p><p>{3}</p>".format(
|
2012-02-14 16:19:48 +01:00
|
|
|
event.item['author-avatar'],
|
|
|
|
event.item['author-name'],
|
|
|
|
event.item.desc,
|
|
|
|
event.item.location
|
|
|
|
));
|
|
|
|
break;
|
|
|
|
case "agendaDay":
|
2012-02-14 16:28:10 +01:00
|
|
|
element.find(".fc-event-title").html(
|
|
|
|
"<img src='{0}' style='height:24px;width:24px'>{1}<p>{2}</p><p>{3}</p>".format(
|
2012-02-14 16:19:48 +01:00
|
|
|
event.item['author-avatar'],
|
|
|
|
event.item['author-name'],
|
|
|
|
event.item.desc,
|
|
|
|
event.item.location
|
|
|
|
));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
2012-04-24 08:12:30 +02:00
|
|
|
|
|
|
|
// center on date
|
|
|
|
var args=location.href.replace(baseurl,"").split("/");
|
|
|
|
if (args.length>=4) {
|
|
|
|
$("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// show event popup
|
|
|
|
var hash = location.hash.split("-")
|
|
|
|
if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]);
|
|
|
|
|
2012-02-14 16:19:48 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
2011-06-10 06:23:45 +02:00
|
|
|
<script language="javascript" type="text/javascript"
|
2011-06-29 06:11:52 +02:00
|
|
|
src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
2012-04-24 08:12:30 +02:00
|
|
|
<script language="javascript" type="text/javascript">
|
|
|
|
|
|
|
|
|
|
|
|
tinyMCE.init({
|
|
|
|
theme : "advanced",
|
|
|
|
mode : "textareas",
|
|
|
|
plugins : "bbcode,paste",
|
|
|
|
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
|
|
|
theme_advanced_buttons2 : "",
|
|
|
|
theme_advanced_buttons3 : "",
|
|
|
|
theme_advanced_toolbar_location : "top",
|
|
|
|
theme_advanced_toolbar_align : "center",
|
|
|
|
theme_advanced_blockformats : "blockquote,code",
|
|
|
|
gecko_spellcheck : true,
|
|
|
|
paste_text_sticky : true,
|
|
|
|
entity_encoding : "raw",
|
|
|
|
add_unload_trigger : false,
|
|
|
|
remove_linebreaks : false,
|
|
|
|
force_p_newlines : false,
|
|
|
|
force_br_newlines : true,
|
|
|
|
forced_root_block : '',
|
|
|
|
content_css: "$baseurl/view/custom_tinymce.css",
|
|
|
|
theme_advanced_path : false,
|
|
|
|
setup : function(ed) {
|
|
|
|
ed.onInit.add(function(ed) {
|
|
|
|
ed.pasteAsPlainText = true;
|
|
|
|
});
|
|
|
|
}
|
2011-06-10 06:23:45 +02:00
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
});
|
2011-06-10 06:23:45 +02:00
|
|
|
|
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
$(document).ready(function() {
|
2011-06-10 06:23:45 +02:00
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
$('#event-share-checkbox').change(function() {
|
2011-06-10 06:23:45 +02:00
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
if ($('#event-share-checkbox').is(':checked')) {
|
|
|
|
$('#acl-wrapper').show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#acl-wrapper').hide();
|
|
|
|
}
|
|
|
|
}).trigger('change');
|
2011-06-10 06:23:45 +02:00
|
|
|
|
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
|
|
|
var selstr;
|
|
|
|
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
|
|
|
selstr = $(this).text();
|
|
|
|
$('#jot-public').hide();
|
|
|
|
});
|
|
|
|
if(selstr == null) {
|
|
|
|
$('#jot-public').show();
|
|
|
|
}
|
2011-06-10 06:23:45 +02:00
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
}).trigger('change');
|
2011-06-10 06:23:45 +02:00
|
|
|
|
2012-04-24 08:12:30 +02:00
|
|
|
});
|
2011-06-10 06:23:45 +02:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|