This commit is contained in:
efrick 2020-04-15 21:08:04 -04:00
commit 6529a86a1e

View File

@ -14,14 +14,14 @@ A javascript interpriter - Basicaly a modernish webbrowser.
1. git clone into a directory accessable by your webserver. 1. git clone into a directory accessable by your webserver.
`git clone https://efrick.ddns.net/scm/git/WebClock` `git clone https://efrick.ddns.net/scm/git/WebClock`
2. Optional steps 2. Optional steps
1. Edit `clock.php` to point to your CSS files. 1. Edit `clock.php` to point to your root CSS files.
2. Add a symlink from `clock.php` to a file called `index.php`. 2. Add a symlink from `clock.php` to a file called `index.php`.
`ln -s clock.php index.php` `ln -s clock.php index.php`
#### Note: #### Note:
There is a small privacy concern. Because this clock is using PHP to creat the inishal time entry and because this is using the `date()` function in PHP to do this it will reveal what timezone the server running it is set to. There is a small privacy concern. Because this clock is using PHP to creat the inishal time entry and because this is using the `date()` function in PHP to do this it will reveal what timezone the server running it is set to.
### ToDo ### ToDo
- [ ] Add a differentiator from the selected timezone and the origonal timezone. - [x] Add a differentiator from the selected timezone and the original timezone.
- - [ ] Display original timezone's time. - [x] Display original timezone's time.
- - [ ] Display the offset of the two selected timezones. - [x] Display the offset of the two selected timezones.
- [ ] Add a timer. - [ ] Add a timer.
- [ ] Multiple clocks for tracking regions. - [ ] Multiple clocks for tracking regions. _this is sort of implemented with the display original timezone feature but not compleatly and not how I want it._