-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from chk1/beta
Campusplan 2.0 AngularJS rewrite
- Loading branch information
Showing
263 changed files
with
15,490 additions
and
13,813 deletions.
There are no files selected for viewing
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,6 +1,9 @@ | ||
cache/ | ||
api/cache/* | ||
piwik/ | ||
routes/ | ||
tiles/ | ||
bower_components/ | ||
node_modules/ | ||
coverage/ | ||
piwik.php | ||
keys.php |
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,3 +1,9 @@ | ||
AddDefaultCharset UTF-8 | ||
RewriteEngine on | ||
RewriteRule ^tiles/([0-9]+)/([0-9]+)/([0-9]+).png$ tiles.php?z=$1&x=$2&y=$3 [L] | ||
|
||
RewriteRule ^piwik - [L,NC] | ||
# Don't rewrite files or directories | ||
RewriteCond %{REQUEST_FILENAME} -f [OR] | ||
RewriteCond %{REQUEST_FILENAME} -d | ||
RewriteRule ^ - [L] | ||
# Rewrite everything else to index.html to allow html5 state links | ||
RewriteRule ^ index.html [L] |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,3 +1,29 @@ | ||
# WWU Campus Plan App | ||
|
||
This is a web app version of a the **Campus Plan App** developed by the [University of Münster](http://www.uni-muenster.de/). The goal of this web app is to subsequently replace the existing native versions for [iOS](http://itunes.apple.com/de/app/wwu-campus-plan/id474030032?mt=8) and [Android](https://play.google.com/store/apps/details?id=ifgi.android) in order to reduce the maintenance effort to one code base. | ||
This is a web app version of a the **Campus Plan App** developed by the [University of Münster](http://www.uni-muenster.de/). The goal of this web app is to subsequently replace the existing native versions for [iOS](http://itunes.apple.com/de/app/wwu-campus-plan/id474030032?mt=8) and [Android](https://play.google.com/store/apps/details?id=ifgi.android) in order to reduce the maintenance effort to one code base. | ||
|
||
![Screenshot](screenshot.png) | ||
|
||
## Installation | ||
|
||
### Requirements | ||
|
||
* Apache Webserver | ||
* mod_rewrite enabled | ||
* NGINX works too, see [configuration example](https://gist.github.com/chk1/d8149378fcea2cf72778) | ||
* PHP 5.x | ||
* bower | ||
|
||
### Installation | ||
|
||
1. Clone the repository into your webserver htdocs | ||
2. Configure your webserver to redirect requests to `index.html` | ||
2. Run ```bower update``` to install the JS libraries and CSS files | ||
3. Create the directory ```api/cache``` and give your webserver read/write access: ```chmod www-data:www-data api/cache/``` | ||
|
||
## Attributions | ||
|
||
* Map icons `img/awesomemarkers-*.png` derived from the [Awesome Markers](https://github.com/lvoogdt/Leaflet.awesome-markers) project (MIT license) | ||
* Navigation & menu icons from [Iconmonstr](http://iconmonstr.com/) (Creative Commons license) and [The Noun Project](http://thenounproject.com/) (Public Domain) | ||
* [Weather icons](http://erikflowers.github.io/weather-icons/) (`fonts/weathericons*`) by Lukas Bischoff & Erik Flowers (SIL Open Font License 1.1 & MIT License) | ||
* [Signika font](http://www.google.com/fonts/specimen/Signika) by Anna Giedryś (SIL Open Font License 1.1) |
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,3 @@ | ||
<?php | ||
include("functions.php"); | ||
echo getFachbereiche(); |
Oops, something went wrong.