Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bus Map
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
Bus Map
Commits
3fbb3ce6
Commit
3fbb3ce6
authored
9 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
fixes
parent
d443fd0b
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
README.md
+7
-0
7 additions, 0 deletions
README.md
ajax.php
+2
-2
2 additions, 2 deletions
ajax.php
cron/nextbus.php
+2
-2
2 additions, 2 deletions
cron/nextbus.php
daemon
+2
-2
2 additions, 2 deletions
daemon
js/script.js
+2
-2
2 additions, 2 deletions
js/script.js
with
15 additions
and
8 deletions
README.md
+
7
−
0
View file @
3fbb3ce6
## Rutgers Bus Map
### Installation
*
Copy working MySQL DB
*
Move daemon to /etc/init.d/busmap and customize
*
# pear install system_daemon
This diff is collapsed.
Click to expand it.
ajax.php
+
2
−
2
View file @
3fbb3ce6
...
...
@@ -16,7 +16,7 @@ if ($_GET['command'] == "vehicleLocations") {
$db
=
dbc
();
// MAX age of a bus location to return
$maxAge
=
6
0
;
$maxAge
=
12
0
;
$time
=
0
;
if
(
isset
(
$_GET
[
't'
]))
$time
=
$db
->
real_escape_string
((
int
)
$_GET
[
't'
]);
...
...
@@ -131,4 +131,4 @@ function cleanRouteName($name) {
return
$name
;
}
?>
\ No newline at end of file
?>
This diff is collapsed.
Click to expand it.
cron/nextbus.php
+
2
−
2
View file @
3fbb3ce6
...
...
@@ -27,7 +27,7 @@ $fetchData = array(
"vehicleLocations"
=>
array
(
"url"
=>
"http://webservices.nextbus.com/service/publicXMLFeed?command=vehicleLocations&a=rutgers&t=0"
,
"refetch"
=>
3
,
// only fetch if our data is this stale
"dropStale"
=>
6
0
,
// data older than this will be wiped
"dropStale"
=>
12
0
,
// data older than this will be wiped
"dbQueries"
=>
function
(
$dbConn
,
$xml
)
{
// do things and return an array of database queries, or false.
$queries
=
array
(
"TRUNCATE TABLE `vehicleLocations`"
);
...
...
@@ -94,4 +94,4 @@ function sanitize($string) {
return
preg_replace
(
$pattern
,
""
,
$string
);
}
?>
\ No newline at end of file
?>
This diff is collapsed.
Click to expand it.
daemon
+
2
−
2
View file @
3fbb3ce6
...
...
@@ -19,10 +19,10 @@
PATH
=
/sbin:/usr/sbin:/bin:/usr/bin
DESC
=
"RU Bus Map"
NAME
=
busmapDaemon.php
DAEMON
=
/
home/anton
/www/rutge.rs/cron/busmapDaemon.php
DAEMON
=
/
var
/www/rutge.rs/cron/busmapDaemon.php
DAEMON_ARGS
=
""
PIDFILE
=
/var/run/busmap/busmap.pid
SCRIPTNAME
=
/etc/init.d/busmap
Daemon.php
SCRIPTNAME
=
/etc/init.d/busmap
# Exit if the package is not installed
[
-x
"
$DAEMON
"
]
||
exit
0
...
...
This diff is collapsed.
Click to expand it.
js/script.js
+
2
−
2
View file @
3fbb3ce6
...
...
@@ -330,7 +330,7 @@ function updateMapVehicles(routes,vehicles) {
window
.
busMarkers
[
vehicles
[
i
][
'
routeTag
'
]][
i
]
=
L
.
marker
([
vehicles
[
i
][
'
lat
'
],
vehicles
[
i
][
'
lon
'
]],
{
icon
:
L
.
icon
({
iconUrl
:
'
https://
busmap
.antsar-static.com/img/bus.png
'
,
iconUrl
:
'
https://
rutgers
.antsar-static.com/img/bus.png
'
,
iconSize
:
[
21
,
25
],
iconAnchor
:
[
10
,
12
],
}),
...
...
@@ -387,4 +387,4 @@ function ol( object ) {
}
}
return
length
;
};
\ No newline at end of file
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment