55
Makefile
|
@ -1,38 +1,31 @@
|
||||||
|
|
||||||
FILES =\
|
|
||||||
fullcalendar\
|
|
||||||
jquery\
|
|
||||||
examples\
|
|
||||||
changelog.txt
|
|
||||||
|
|
||||||
VER = `cat version.txt`
|
VER = `cat version.txt`
|
||||||
VVER = `cat ../version.txt`
|
|
||||||
DATE = `svn info | grep Date: | sed 's/.*: //g'`
|
DATE = `svn info | grep Date: | sed 's/.*: //g'`
|
||||||
REV = `svn info | grep Rev: | sed 's/.*: //g'`
|
REV = `svn info | grep Rev: | sed 's/.*: //g'`
|
||||||
|
|
||||||
min:
|
JS_SRC_FILES =\
|
||||||
@java -jar build/yuicompressor-2.4.2.jar -o build/fullcalendar.min.js fullcalendar/fullcalendar.js
|
main.js\
|
||||||
|
grid.js\
|
||||||
|
view.js\
|
||||||
|
util.js
|
||||||
|
|
||||||
|
CSS_SRC_FILES =\
|
||||||
|
main.css\
|
||||||
|
grid.css
|
||||||
|
|
||||||
|
OTHER_FILES =\
|
||||||
|
src/gcal.js\
|
||||||
|
src/jquery\
|
||||||
|
examples\
|
||||||
|
changelog.txt
|
||||||
|
|
||||||
zip:
|
zip:
|
||||||
@mkdir -p build/fullcalendar-${VER}
|
mkdir -p build/fullcalendar-${VER}/uncompressed
|
||||||
@cp -rt build/fullcalendar-${VER} ${FILES}
|
cd src; cat misc/head.txt ${JS_SRC_FILES} misc/foot.txt >\
|
||||||
@if [ -e build/fullcalendar.min.js ];\
|
../build/fullcalendar-`cat ../version.txt`/uncompressed/fullcalendar.js
|
||||||
then cp build/fullcalendar.min.js build/fullcalendar-${VER}/fullcalendar;\
|
cd src/css; cat ${CSS_SRC_FILES} >\
|
||||||
else echo "\n!!! WARNING: fullcalendar.js not yet minified.\n";\
|
../../build/fullcalendar-`cat ../../version.txt`/fullcalendar.css
|
||||||
fi
|
java -jar build/yuicompressor-2.4.2.jar\
|
||||||
@rm -rf `find build/fullcalendar-* -type d -name .svn`
|
-o build/fullcalendar-${VER}/fullcalendar.js\
|
||||||
@for f in build/fullcalendar-${VER}/fullcalendar/*.js; do\
|
build/fullcalendar-${VER}/uncompressed/fullcalendar.js
|
||||||
sed -i "s/* FullCalendar/& v${VER}/" $$f;\
|
cp -rt build/fullcalendar-${VER} ${OTHER_FILES}
|
||||||
sed -i "s/* Date:/& ${DATE}/" $$f;\
|
|
||||||
sed -i "s/* Revision:/& ${REV}/" $$f;\
|
|
||||||
done
|
|
||||||
@cd build; zip -r fullcalendar-${VVER}.zip fullcalendar-${VVER}
|
|
||||||
@mkdir -p dist
|
|
||||||
@mv build/fullcalendar-${VER}.zip dist
|
|
||||||
@rm -rf build/fullcalendar-${VER}
|
|
||||||
@rm -f build/fullcalendar.min.js
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@rm -rf dist/*
|
|
||||||
@rm -rf build/fullcalendar-*
|
|
||||||
@rm -f build/*.js
|
|
132
examples/new.html
Executable file
|
@ -0,0 +1,132 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel='stylesheet' type='text/css' href='../src/css/main.css' />
|
||||||
|
<link rel='stylesheet' type='text/css' href='../src/css/grid.css' />
|
||||||
|
<link rel='stylesheet' type='text/css' href='../src/css/agenda.css' />
|
||||||
|
|
||||||
|
<script type='text/javascript' src='../src/jquery/jquery.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/jquery/ui.core.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/jquery/ui.draggable.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/jquery/ui.resizable.js'></script>
|
||||||
|
|
||||||
|
<script type='text/javascript' src='../src/main.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/grid.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/view.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/util.js'></script>
|
||||||
|
<script type='text/javascript' src='../src/gcal.js'></script>
|
||||||
|
<script type='text/javascript'>
|
||||||
|
|
||||||
|
var d = new Date();
|
||||||
|
var y = d.getFullYear();
|
||||||
|
var m = d.getMonth();
|
||||||
|
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('#calendar').fullCalendar({
|
||||||
|
windowResize: function() {
|
||||||
|
//alert('resize');
|
||||||
|
},
|
||||||
|
theme: false,
|
||||||
|
isRTL: false,
|
||||||
|
weekStart: 1,
|
||||||
|
weekMode: 'fixed',
|
||||||
|
//defaultView: 'dayBasic',
|
||||||
|
viewDisplay: function(date, view) {
|
||||||
|
//console.log(date + ', ' + view.name);
|
||||||
|
},
|
||||||
|
dayClick: function(date, view) {
|
||||||
|
//console.log(date + ', ' + view.name);
|
||||||
|
},
|
||||||
|
eventRender: function(event, element) {
|
||||||
|
//console.log(event.title + ' RENDER');
|
||||||
|
},
|
||||||
|
eventMouseover: function(event) {
|
||||||
|
//console.log('OVER ' + event.title);
|
||||||
|
},
|
||||||
|
eventMouseout: function(event) {
|
||||||
|
//console.log('OUT ' + event.title);
|
||||||
|
},
|
||||||
|
eventClick: function(event) {
|
||||||
|
//console.log('CLICK ' + event.title + ' /// ' + this.className);
|
||||||
|
//return false;
|
||||||
|
},
|
||||||
|
eventDragStart: function(event) {
|
||||||
|
//console.log('DRAG START ' + event.title);
|
||||||
|
},
|
||||||
|
eventDragStop: function(event) {
|
||||||
|
//console.log('DRAG STOP ' + event.title);
|
||||||
|
},
|
||||||
|
eventDrop: function(event, dayDelta, minuteDelta) {
|
||||||
|
//console.log(dayDelta + ' ' + minuteDelta + ' --- ' + event.title);
|
||||||
|
},
|
||||||
|
eventResizeStart: function(event) {
|
||||||
|
//console.log('resize START');
|
||||||
|
},
|
||||||
|
eventResizeStop: function(event) {
|
||||||
|
//console.log('resize STOP');
|
||||||
|
},
|
||||||
|
eventResize: function(event, dayDelta, minuteDelta) {
|
||||||
|
//console.log(dayDelta + ' ' + minuteDelta + ' --- ' + event.title);
|
||||||
|
},
|
||||||
|
editable: true,
|
||||||
|
eventSources: [
|
||||||
|
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic')
|
||||||
|
],
|
||||||
|
events: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Long Event",
|
||||||
|
start: new Date(y, m, 6),
|
||||||
|
end: new Date(y, m, 10)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Repeating",
|
||||||
|
start: new Date(y, m, 2)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Repeating",
|
||||||
|
start: new Date(y, m, 9)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Meeting",
|
||||||
|
start: new Date(y, m, 20, 9, 0),
|
||||||
|
hasTime: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "Click for Facebook",
|
||||||
|
start: new Date(y, m, 27),
|
||||||
|
end: new Date(y, m, 28),
|
||||||
|
url: "http://facebook.com/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
title: "timed event1",
|
||||||
|
start: new Date (y, m, 31, 17, 30),
|
||||||
|
hasTime: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
title: "timed event1",
|
||||||
|
start: new Date (y, m+1, 2, 14, 15),
|
||||||
|
hasTime: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
title: "timed event1",
|
||||||
|
start: new Date (y, m+1, 4, 15, 00),
|
||||||
|
end: new Date(y, m+1, 4, 17, 00),
|
||||||
|
hasTime: true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body style='font-size:12px'>
|
||||||
|
<div id='calendar' style='width:900px;margin:20px auto 0;font-family:arial'></div>
|
||||||
|
</body>
|
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 124 B |
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 123 B |
Before Width: | Height: | Size: 119 B After Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 104 B After Width: | Height: | Size: 104 B |
Before Width: | Height: | Size: 88 B After Width: | Height: | Size: 88 B |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
@ -1,7 +1,6 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel='stylesheet' type='text/css' href='redmond/theme.css' />
|
|
||||||
<link rel='stylesheet' type='text/css' href='../src/css/main.css' />
|
<link rel='stylesheet' type='text/css' href='../src/css/main.css' />
|
||||||
<link rel='stylesheet' type='text/css' href='../src/css/grid.css' />
|
<link rel='stylesheet' type='text/css' href='../src/css/grid.css' />
|
||||||
<link rel='stylesheet' type='text/css' href='../src/css/agenda.css' />
|
<link rel='stylesheet' type='text/css' href='../src/css/agenda.css' />
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1.2.1
|
1.3
|
||||||
|
|