-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved Documentation and Added Examples
Added Documentation for DataServer and examples of loading Data from URL - demo/Data-URL.htm and demo/Mobile/Data-URL.htm
- Loading branch information
Showing
71 changed files
with
334 additions
and
310 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
CalenStyleJsonGenerator/.settings/com.eclipsesource.jshint.ui.prefs
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
CalenStyleJsonGenerator/.settings/org.eclipse.wst.jsdt.core.prefs
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
CalenStyleJsonGenerator/.settings/org.eclipse.wst.jsdt.ui.superType.container
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
CalenStyleJsonGenerator/.settings/org.eclipse.wst.jsdt.ui.superType.name
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
var express = require('express'), | ||
routes = require('./index.js'); | ||
|
||
var app = express(); | ||
|
||
app.get('/events', routes.events); | ||
app.get('/eventcalender', routes.eventcalender); | ||
app.get('/eventcount', routes.eventcount); | ||
app.get('/timeslotcount', routes.timeslotcount); | ||
app.get('/slotavailability', routes.slotavailability); | ||
app.get('/filtercriteria', routes.filtercriteria); | ||
app.get('/misc', routes.misc); | ||
|
||
app.listen(3000, function() | ||
{ | ||
console.log("Express server listening on port 3000"); | ||
console.log("Use following URLS - http://localhost:3000 or http://[IP address of your machine]:3000"); | ||
}); |
File renamed without changes.
9 changes: 6 additions & 3 deletions
9
CalenStyleJsonGenerator/package.json → DataServer/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
{ | ||
"name": "CalenStyleJsonGenerator", | ||
"name": "DataServer", | ||
|
||
"version": "0.0.1", | ||
|
||
"private": true, | ||
|
||
"scripts": { | ||
"start": "node app.js" | ||
}, | ||
|
||
"dependencies": { | ||
"express": "3.2.6", | ||
"ejs": "*" | ||
"express": "4.13.*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "calenstyle", | ||
|
||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
|
||
"license" : "See License Information in LICENSE file", | ||
|
||
|
@@ -26,7 +26,7 @@ | |
|
||
"homepage": "https://curioussolutions.in/libraries/calenstyle", | ||
|
||
"main": ["dist/calenstyle.min.js", "dist/calenstyle.min.css"], | ||
"main": "dist/calenstyle.min.js", | ||
|
||
"authors": [ | ||
"Neha Kadam <[email protected]> (https://github.com/nehakadam)", | ||
|
Oops, something went wrong.