\ No newline at end of file
diff --git a/utilities/page/calendar/calendar.js b/utilities/page/calendar/calendar.js
deleted file mode 100644
index 5e59f1f4c8..0000000000
--- a/utilities/page/calendar/calendar.js
+++ /dev/null
@@ -1,710 +0,0 @@
-// Copyright (c) 2012 Web Notes Technologies Pvt Ltd (http://erpnext.com)
-//
-// MIT License (MIT)
-//
-// Permission is hereby granted, free of charge, to any person obtaining a
-// copy of this software and associated documentation files (the "Software"),
-// to deal in the Software without restriction, including without limitation
-// the rights to use, copy, modify, merge, publish, distribute, sublicense,
-// and/or sell copies of the Software, and to permit persons to whom the
-// Software is furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
-// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
-// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
-// CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
-// OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
-pscript.onload_calendar = function(wrapper) {
- if(!erpnext.calendar) {
- erpnext.calendar = new Calendar();
- erpnext.calendar.init(wrapper);
-
- var me = this;
- $(document).bind('rename', function(event, dt, old_name, new_name) {
- erpnext.calendar.rename_notify(dt, old_name, new_name)
- });
- }
-}
-
-///// CALENDAR
-
-Calendar=function() {
- this.views=[];
- this.events = {};
- this.events_by_name = {};
- this.weekdays = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
-}
-
-Calendar.prototype.init=function (parent) {
-
- this.wrapper = parent;
- this.body = $('.cal_body').get(0);
-
- //this.make_head_buttons();
- //this.make_header();
- this.view_title = $('.cal_view_title').get(0);
-
- this.todays_date = new Date();
- this.selected_date = this.todays_date;
- this.selected_hour = 8;
-
- // Create views
- this.views['Month'] = new Calendar.MonthView(this);
- this.views['Week'] = new Calendar.WeekView(this);
- this.views['Day'] = new Calendar.DayView(this);
-
- // Month view as initial
- this.cur_view = this.views['Month'];
- this.views['Month'].show();
-
-}
-
-Calendar.prototype.rename_notify = function(dt, old_name, new_name) {
- // calendar
- if(dt = 'Event'){
- if(this.events_by_name[old_name]) {
- delete this.events_by_name[old_name];
- }
- }
-}
-
-//------------------------------------------------------
-
-Calendar.prototype.show_event = function(ev, cal_ev) {
- var me = this;
- if(!this.event_dialog) {
- var d = new Dialog(400, 400, 'Calendar Event');
- d.make_body([
- ['HTML','Heading']
- ,['Text','Description']
- ,['HTML', 'Ref Link']
- ,['Check', 'Public Event']
- ,['Check', 'Cancelled Event']
- ,['HTML', 'Event Link']
- ,['Button', 'Save']
- ])
-
- // show the event when the dialog opens
- d.onshow = function() {
- // heading
- var c = me.selected_date;
-
- this.widgets['Heading'].innerHTML =
- '