123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512 |
- {% extends "jquery_mobile/layout/layout_1_col.tpl" %}
- {% block content %}
- <script>
- function checkLength( o, n, min, max ) {
- if ( o.val().length > max || o.val().length < min ) {
- o.addClass( "ui-state-error" );
- updateTips( "Length of " + n + " must be between " +
- min + " and " + max + "." );
- return false;
- } else {
- return true;
- }
- }
- function clean_user_select() {
- //Cleans the selected attr
- $('#users_to_send_id')
- .find('option')
- .removeAttr('selected')
- .end();
- }
- var region_value = '{{ region_value }}';
- $(document).ready(function() {
- /*$("body").delegate(".datetime", "focusin", function(){
- $(this).datepicker({
- stepMinute: 10,
- dateFormat: 'dd/mm/yy',
- timeFormat: 'hh:mm:ss'
- });
- });*/
- var date = new Date();
- var d = date.getDate();
- var m = date.getMonth()+1;
- var y = date.getFullYear();
- $("#dialog-form").dialog({
- autoOpen: false,
- modal : false,
- width : 580,
- height : 480,
- zIndex: 20000 // added because of qtip2
- });
- $("#simple-dialog-form").dialog({
- autoOpen: false,
- modal : false,
- width : 580,
- height : 480,
- zIndex: 20000 // added because of qtip2
- });
- var title = $( "#title" ),
- content = $( "#content" ),
- allFields = $( [] ).add( title ).add( content ), tips = $(".validateTips");
- $('#users_to_send_id').bind('change', function() {
- var selected_counts = $("#users_to_send_id option:selected").size();
- //alert(selected_counts);
- /* if (selected_counts >= 1 && $("#users_to_send_id option[value='everyone']").attr('selected') == 'selected') {
- clean_user_select();
- $('#users_to_send_id option').eq(0).attr('selected', 'selected');
- //deleting the everyone
- $("#users_to_send_id").trigger("liszt:updated");
- deleted_items = true;
- }*/
- $("#users_to_send_id").trigger("liszt:updated");
- /*
- if (selected_counts >= 1) {
- $('#users_to_send_id option').eq(0).removeAttr('selected');
- }
- */
- //clean_user_select();
- //$("#users_to_send_id").trigger("liszt:updated");
- //alert($("#users_to_send_id option[value='everyone']").attr('selected'));
- if ($("#users_to_send_id option[value='everyone']").attr('selected') == 'selected') {
- //clean_user_select();
- //$('#users_to_send_id option').eq(0).attr('selected', 'selected');
- //$("#users_to_send_id").trigger("liszt:updated");
- }
- });
- $.datepicker.setDefaults( $.datepicker.regional[region_value] );
- var calendar = $('#calendar').fullCalendar({
- header: {
- left: 'today prev,next',
- center: 'title',
- right: 'month,agendaWeek,agendaDay'
- },
- {% if use_google_calendar == 1 %}
- eventSources: [
- '{{ google_calendar_url }}', //if you want to add more just add URL in this array
- {
- className: 'gcal-event' // an option!
- }
- ],
- {% endif %}
- buttonText: {{ button_text }},
- monthNames: {{ month_names }},
- monthNamesShort:{{ month_names_short }},
- dayNames: {{ day_names }},
- dayNamesShort: {{ day_names_short }},
- firstHour: 8,
- firstDay: 1,
- selectable : true,
- selectHelper: true,
- viewDisplay: function(view) {
- /* When changing the view update the qtips */
- var api = $('.qtip').qtip('api'); // Access the API of the first tooltip on the page
- if (api) {
- api.destroy();
- //api.render();
- }
- },
- //add event
- select: function(start, end, allDay, jsEvent, view) {
- //Removing UTC stuff
- var start_date = $.datepicker.formatDate("yy-mm-dd", start) + " " + start.toTimeString().substr(0, 8);
- var end_date = $.datepicker.formatDate("yy-mm-dd", end) + " " + end.toTimeString().substr(0, 8);
- $('#visible_to_input').show();
- $('#add_as_announcement_div').show();
- $('#visible_to_read_only').hide();
- //Cleans the selected attr
- clean_user_select();
- //Sets the 1st item selected by jquery_mobile
- //$('#users_to_send_id option').eq(0).attr('selected', 'selected');
- //Update chz-select
- $("#users_to_send_id").trigger("liszt:updated");
- if ({{ can_add_events }} == 1) {
- var url = '{{ web_agenda_ajax_url }}&a=add_event&start='+start_date+'&end='+end_date+'&all_day='+allDay+'&view='+view.name;
- var start_date_value = $.datepicker.formatDate('{{ js_format_date }}', start);
- var end_date_value = $.datepicker.formatDate('{{ js_format_date }}', end);
- $('#start_date').html(start_date_value + " " + start.toTimeString().substr(0, 8));
- if (view.name != 'month') {
- $('#start_date').html(start_date_value + " " + start.toTimeString().substr(0, 8));
- if (start.toDateString() == end.toDateString()) {
- $('#end_date').html(' - '+end.toTimeString().substr(0, 8));
- } else {
- $('#end_date').html(' - '+start_date_value+" " + end.toTimeString().substr(0, 8));
- }
- } else {
- $('#start_date').html(start_date_value);
- $('#end_date').html(' ');
- }
- $('#color_calendar').html('{{ type_label }}');
- $('#color_calendar').removeClass('group_event');
- $('#color_calendar').addClass('label_tag');
- $('#color_calendar').addClass('{{ type_event_class }}');
- allFields.removeClass( "ui-state-error" );
- $("#dialog-form").dialog("open");
- $("#dialog-form").dialog({
- buttons: {
- '{{ "Add"|get_lang}}' : function() {
- var bValid = true;
- bValid = bValid && checkLength( title, "title", 1, 255 );
- //bValid = bValid && checkLength( content, "content", 1, 255 );
- var params = $("#add_event_form").serialize();
- $.ajax({
- url: url+'&'+params,
- success:function(data) {
- calendar.fullCalendar("refetchEvents");
- calendar.fullCalendar("rerenderEvents");
- $("#dialog-form").dialog("close");
- }
- });
- }
- },
- close: function() {
- $("#title").attr('value', '');
- $("#content").attr('value', '');
- }
- });
- //Don't follow the link
- return false;
- calendar.fullCalendar('unselect');
- //Reload events
- calendar.fullCalendar("refetchEvents");
- calendar.fullCalendar("rerenderEvents");
- }
- },
- eventRender: function(event, element) {
- if (event.attachment) {
- element.qtip({
- hide: {
- delay: 2000
- },
- content: event.attachment,
- position: { at:'top right' , my:'bottom right'},
- }).removeData('qtip'); // this is an special hack to add multiple qtip in the same target
- }
- if (event.description) {
- element.qtip({
- hide: {
- delay: 2000
- },
- content: event.description,
- position: { at:'top left' , my:'bottom left'}
- });
- }
- },
- eventClick: function(calEvent, jsEvent, view) {
- //var start_date = Math.round(calEvent.start.getTime() / 1000);
- var start_date = $.datepicker.formatDate("yy-mm-dd", calEvent.start) + " " + calEvent.start.toTimeString().substr(0, 8);
- if (calEvent.allDay == 1) {
- var end_date = '';
- } else {
- var end_date = '';
- if (calEvent.end && calEvent.end != '') {
- //var end_date = Math.round(calEvent.end.getTime() / 1000);
- var end_date = $.datepicker.formatDate("yy-mm-dd", calEvent.end) + " " + calEvent.end.toTimeString().substr(0, 8);
- }
- }
- //edit event
- if (calEvent.editable) {
- $('#visible_to_input').hide();
- $('#add_as_announcement_div').hide();
- {% if type != 'admin' %}
- $('#visible_to_read_only').show();
- $("#visible_to_read_only_users").html(calEvent.sent_to);
- {% endif %}
- $('#color_calendar').html('{{type_label}}');
- $('#color_calendar').addClass('label_tag');
- $('#color_calendar').removeClass('course_event');
- $('#color_calendar').removeClass('personal_event');
- $('#color_calendar').removeClass('group_event');
- $('#color_calendar').addClass(calEvent.type+'_event');
- my_start_month = calEvent.start.getMonth() +1;
- $('#start_date').html(calEvent.start.getDate() +"/"+ my_start_month +"/"+calEvent.start.getFullYear());
- if (end_date != '') {
- my_end_month = calEvent.end.getMonth() +1;
- $('#end_date').html(' '+calEvent.end.getDate() +"/"+ my_end_month +"/"+calEvent.end.getFullYear());
- }
- /*$("#title").attr('value', calEvent.title);
- $("#content").attr('value', calEvent.description);*/
- $("#title_edit").html(calEvent.title);
- $("#content_edit").html(calEvent.description);
- $("#title_edit").show();
- $("#content_edit").show();
- $("#title").attr('value', calEvent.title);
- $("#content").attr('value', calEvent.description);
- allFields.removeClass( "ui-state-error" );
- $("#dialog-form").dialog("open");
- var url = '{{web_agenda_ajax_url}}&a=edit_event&id='+calEvent.id+'&start='+start_date+'&end='+end_date+'&all_day='+calEvent.allDay+'&view='+view.name;
- var delete_url = '{{web_agenda_ajax_url}}&a=delete_event&id='+calEvent.id;
- $("#dialog-form").dialog({
- buttons: {
- '{{ "ExportiCalConfidential"|get_lang }}' : function() {
- url = "ical_export.php?id=" + calEvent.id+'&course_id='+calEvent.course_id+"&class=confidential";
- window.location.href = url;
- },
- '{{ "ExportiCalPrivate"|get_lang }}': function() {
- url = "ical_export.php?id=" + calEvent.id+'&course_id='+calEvent.course_id+"&class=private";
- window.location.href = url;
- },
- '{{ "ExportiCalPublic"|get_lang }}': function() {
- url = "ical_export.php?id=" + calEvent.id+'&course_id='+calEvent.course_id+"&class=public";
- window.location.href = url;
- },
- {% if type == 'not_available' %}
- '{{ "Edit"|get_lang }}' : function() {
- var bValid = true;
- bValid = bValid && checkLength( title, "title", 1, 255 );
- var params = $("#add_event_form").serialize();
- $.ajax({
- url: url+'&'+params,
- success:function() {
- calEvent.title = $("#title").val();
- calEvent.start = calEvent.start;
- calEvent.end = calEvent.end;
- calEvent.allDay = calEvent.allDay;
- calEvent.description = $("#content").val();
- calendar.fullCalendar('updateEvent',
- calEvent,
- true // make the event "stick"
- );
- $("#dialog-form").dialog("close");
- }
- });
- },
- {% endif %}
- '{{ "Edit"|get_lang }}' : function() {
- url = "agenda.php?action=edit&type=fromjs&id=" + calEvent.id+'&course_id='+calEvent.course_id+"";
- window.location.href = url;
- $("#dialog-form").dialog( "close" );
- },
- '{{ "Delete"|get_lang }}': function() {
- $.ajax({
- url: delete_url,
- success:function() {
- calendar.fullCalendar('removeEvents',
- calEvent
- );
- calendar.fullCalendar("refetchEvents");
- calendar.fullCalendar("rerenderEvents");
- $("#dialog-form").dialog( "close" );
- }
- });
- }
- },
- close: function() {
- $("#title").attr('value', '');
- $("#content").attr('value', '');
- $("#title").show();
- $("#content").show();
- $("#title_edit").html('');
- $("#content_edit").html('');
- $("#title").attr('value', '');
- $("#content").attr('value', '');
- }
- });
- } else { //simple form
- my_start_month = calEvent.start.getMonth() +1;
- $('#simple_start_date').html(calEvent.start.getDate() +"/"+ my_start_month +"/"+calEvent.start.getFullYear());
- if (end_date != '') {
- my_end_month = calEvent.end.getMonth() +1;
- $('#simple_start_date').html(calEvent.start.getDate() +"/"+ my_start_month +"/"+calEvent.start.getFullYear() +" - "+calEvent.start.toLocaleTimeString());
- $('#simple_end_date').html(' '+calEvent.end.getDate() +"/"+ my_end_month +"/"+calEvent.end.getFullYear() +" - "+calEvent.end.toLocaleTimeString());
- }
- $("#simple_title").html(calEvent.title);
- $("#simple_content").html(calEvent.description);
- $("#simple-dialog-form").dialog("open");
- $("#simple-dialog-form").dialog({
- buttons: {
- '{{"ExportiCalConfidential"|get_lang}}' : function() {
- url = "ical_export.php?id=" + calEvent.id+'&course_id='+calEvent.course_id+"&class=confidential";
- window.location.href = url;
- },
- '{{"ExportiCalPrivate"|get_lang}}': function() {
- url = "ical_export.php?id=" + calEvent.id+'&course_id='+calEvent.course_id+"&class=private";
- window.location.href = url;
- },
- '{{"ExportiCalPublic"|get_lang}}': function() {
- url = "ical_export.php?id=" + calEvent.id+'&course_id='+calEvent.course_id+"&class=public";
- window.location.href = url;
- }
- }
- });
- }
- },
- editable: true,
- events: "{{web_agenda_ajax_url}}&a=get_events",
- eventDrop: function(event, day_delta, minute_delta, all_day, revert_func) {
- $.ajax({
- url: '{{web_agenda_ajax_url}}',
- data: {
- a:'move_event', id: event.id, day_delta: day_delta, minute_delta: minute_delta
- }
- });
- },
- eventResize: function(event, day_delta, minute_delta, revert_func) {
- $.ajax({
- url: '{{web_agenda_ajax_url}}',
- data: {
- a:'resize_event', id: event.id, day_delta: day_delta, minute_delta: minute_delta
- }
- });
- },
- axisFormat: 'HH(:mm)',
- timeFormat: 'HH:mm{ - HH:mm}',
- loading: function(bool) {
- if (bool) $('#loading').show();
- else $('#loading').hide();
- }
- });
- });
- </script>
- <div id="simple-dialog-form" style="display:none;">
- <div style="width:500px">
- <form name="form-simple" class="form-vertical" >
- <div class="control-group">
- <label class="control-label"><b>{{"Date"|get_lang}}</b></label>
- <div class="controls">
- <span id="simple_start_date"></span><span id="simple_end_date"></span>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label"><b>{{"Title"|get_lang}}</b></label>
- <div class="controls">
- <div id="simple_title"></div>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label"><b>{{"Description"|get_lang}}</b></label>
- <div class="controls">
- <div id="simple_content"></div>
- </div>
- </div>
- </form>
- </div>
- </div>
- <div id="dialog-form" style="display:none;">
- <div style="width:500px">
- <form class="form-horizontal" id="add_event_form" name="form">
- {% if visible_to is not null %}
- <div id="visible_to_input" class="control-group">
- <label class="control-label">{{ "To"|get_lang }}</label>
- <div class="controls">
- {{visible_to}}
- </div>
- </div>
- {% endif %}
- <div id="visible_to_read_only" class="control-group" style="display:none">
- <label class="control-label">{{ "To"|get_lang }}</label>
- <div class="controls">
- <div id="visible_to_read_only_users"></div>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label">{{ "Agenda"|get_lang }}</label>
- <div class="controls">
- <div id="color_calendar"></div>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label" for="end_date">{{"Date"|get_lang}}</label>
- <div class="controls">
- <span id="start_date"></span><span id="end_date"></span>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label" for="title">{{ "Title"|get_lang }}</label>
- <div class="controls">
- <input type="text" name="title" id="title" size="40" />
- <span id="title_edit"></span>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label" for="content">{{ "Description"|get_lang }}</label>
- <div class="controls">
- <textarea name="content" id="content" class="span3" rows="5"></textarea>
- <span id="content_edit"></span>
- </div>
- </div>
- {% if type == 'course' %}
- <div id="add_as_announcement_div">
- <div class="control-group">
- <label></label>
- <div class="controls">
- <label class="checkbox inline" for="add_as_annonuncement">
- {{ "AddAsAnnouncement"|get_lang }} ({{ "SendEmail" | get_lang }})
- <input type="checkbox" name="add_as_annonuncement" id="add_as_annonuncement" />
- </label>
- </div>
- </div>
- </div>
- {% endif %}
- </form>
- </div>
- </div>
- <div id="loading" style="margin-left:150px;position:absolute;display:none">{{"Loading"|get_lang}}...</div>
- <div id="calendar"></div>
- {% endblock %}
|