Changeset 5636 for trunk/expressoMail1_2


Ignore:
Timestamp:
03/05/12 19:01:39 (12 years ago)
Author:
acoutinho
Message:

Ticket #2434 - Implementacao da funcionalidade de mapa de disponibilidade

Location:
trunk/expressoMail1_2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/index.php

    r5622 r5636  
    2828        //jquery and Editor  
    2929                echo '                           
     30                                <link rel="stylesheet" type="text/css" href="../prototype/plugins/fullcalendar/fullcalendar.css"></link> 
     31                                <link rel="stylesheet" type="text/css" href="../prototype/plugins/fullcalendar/fullcalendar.print.css"></link> 
     32                                <link rel="stylesheet" type="text/css" href="../prototype/plugins/icalendar/jquery.icalendar.css"></link> 
     33                         
     34                         
    3035                                        <link rel="Stylesheet" type="text/css" href="templates/default/expressoMail_reset.css" /> 
    3136                                        <script type="text/javascript" src="../prototype/plugins/jquery/jquery.min.js"></script> 
     
    5661                                        <link rel="stylesheet" type="text/css" href="../prototype/plugins/zebradialog/css/zebra_dialog.css"></link> 
    5762                                        <link rel="stylesheet" type="text/css" href="../prototype/plugins/fileupload/jquery.fileupload-ui.css"></link> 
     63                                         
    5864                                        <link rel="stylesheet" href="../prototype/plugins/farbtastic/farbtastic.css" type="text/css" > 
    5965                                        <script type="text/javascript" src="../prototype/plugins/zebradialog/javascript/zebra_dialog.js"></script> 
  • trunk/expressoMail1_2/js/main.js

    r5626 r5636  
    32303230                 
    32313231                //$.ajax({ url: "../expressoCalendar/index.php", async: false}); 
    3232                 $.ajax({url: "../prototype/modules/calendar/js/calendar.date.js", async: false}); 
    3233                 $.ajax({url: "../prototype/modules/calendar/js/helpers.js", async: false}); 
     3232                $.ajax({url: "../prototype/modules/calendar/js/calendar.date.js", async: false, beforeSend: function( xhr ) { xhr.overrideMimeType('text/javascript; charset=ISO-8859-1')}}); 
     3233                $.ajax({url: "../prototype/modules/calendar/js/map.disponibility.js", async: false, beforeSend: function( xhr ) { xhr.overrideMimeType('text/javascript; charset=ISO-8859-1')}}); 
     3234                $.ajax({url: "../prototype/modules/calendar/js/helpers.js", async: false, beforeSend: function( xhr ) { xhr.overrideMimeType('text/javascript; charset=ISO-8859-1')}}); 
    32343235                //$.ajax({ url: "../prototype/modules/calendar/js/timezone.js", async: false}); 
    32353236                //$.ajax({ url: "../prototype/modules/calendar/js/calendar.codecs.js", async: false}); 
    3236                 $.ajax({url: "../prototype/plugins/encoder/encoder.js", async: false}); 
    3237                 $.ajax({url: "../prototype/plugins/dateFormat/dateFormat.js", async: false}); 
    3238  
     3237                $.ajax({url: "../prototype/plugins/encoder/encoder.js", async: false, beforeSend: function( xhr ) { xhr.overrideMimeType('text/javascript; charset=ISO-8859-1')}}); 
     3238                $.ajax({url: "../prototype/plugins/dateFormat/dateFormat.js", async: false, beforeSend: function( xhr ) { xhr.overrideMimeType('text/javascript; charset=ISO-8859-1')}}); 
     3239 
     3240                $.ajax({ url: "../prototype/plugins/fullcalendar/fullcalendar.js", async: false , beforeSend: function( xhr ) { xhr.overrideMimeType('text/javascript; charset=ISO-8859-1')}}); 
     3241                 
    32393242                 
    32403243                DataLayer.dispatchPath = "../prototype/";        
  • trunk/expressoMail1_2/templates/default/expressoMail_reset.css

    r5592 r5636  
    88 * http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ 
    99 */ 
    10  
     10/* 
    1111.new-event-win.active applet, .new-event-win.active object, .new-event-win.active iframe, .new-event-win.active fieldset, .new-event-win.active div 
    1212.new-event-win.active h1, .new-event-win.active h2, .new-event-win.active h3, .new-event-win.active h4, .new-event-win.active h5, .new-event-win.active h6, .new-event-win.active p, .new-event-win.active blockquote, .new-event-win.active pre, 
     
    2727        /*vertical-align: baseline;*/ 
    2828/*      font-family: Arial,Helvetica,sans-serif;*/ 
    29 } 
    30  
     29/*}*/ 
    3130.new-event-win.active:focus { 
    3231        outline: 0; 
     
    114113        border: 0; 
    115114} 
     115 
     116.new-event-win.active .fc-event-skin { 
     117        border-color: #36C !important; 
     118        background-color: #36C !important;  
     119        color: white !important; 
     120} 
     121 
     122.fc-event-vert .fc-event-bg { 
     123        display: block !important; 
     124} 
     125 
     126.map-event{ 
     127 
     128} 
     129 
     130#new_event_map .map-event .fc-event-inner.fc-event-skin{ 
     131        border-style: dashed !important; 
     132        border-width: 2px !important; 
     133        border-color: #36C !important; 
     134        background-color: transparent !important; 
     135} 
     136 
     137 #new_event_map .map-event .fc-event-inner.fc-event-skin .fc-event-head{ 
     138        background-color: transparent !important; 
     139        color: transparent !important; 
     140} 
     141 
     142 
    116143/*#divAppbox 
    117144{ background: #fff url( ../images/bgBlockContent.jpg ) repeat-x; border-color: #9c9c9c; } 
Note: See TracChangeset for help on using the changeset viewer.