Reorganized Docs. In Progress.

This commit is contained in:
Lauri Ojansivu 2024-06-27 11:08:43 +03:00
parent 1961e22cbd
commit ce89ff4833
202 changed files with 0 additions and 0 deletions

23
docs/Date/Calendar.md Normal file
View file

@ -0,0 +1,23 @@
### Create card
At Calendar View, on Month when you click a date it will ask you if you want to create a new card and give its name. It then creates at first swimlane and at first list the card with the due date that it got from the date you clicked.
Video demonstration:
https://user-images.githubusercontent.com/70445835/184324324-b4bd466e-6873-4eef-8ca5-b6e4d9f95ac5.mp4
- How it works https://github.com/wekan/wekan/issues/2687#issuecomment-1545235649
- Fix for Calendar View Create Card https://github.com/wekan/wekan/pull/5019
- Calendar view logic https://github.com/wekan/wekan/issues/4511
## <a name="Time"></a>Time
* [Due Date](Due-Date)
* [Day of week start](Day-of-week-start)
## What features are missing
* [Calendar issues](https://github.com/wekan/wekan/issues?q=is%3Aissue+is%3Aopen+calendar+label%3AFeature%3ACalendar-view)
* [Time Tracking](Time-Tracking)
* [Gantt Chart](Gantt)

View file

@ -0,0 +1,7 @@
## 1) Click right top your username
<img src="https://wekan.github.io/day/day_of_week_start_1.png" width="40%" alt="Day of Week Start 1" />
## 2) Click Change Settings => Set day of the week start => Select first day of the week from dropdown menu
<img src="https://wekan.github.io/day/day_of_week_start_2.png" width="40%" alt="Day of Week Start 1" />

5
docs/Date/Due-Date.md Normal file
View file

@ -0,0 +1,5 @@
- received - when a bug or task is found
- start - when work is started
- due - when it should be done
- end - when it's done

View file

@ -0,0 +1,19 @@
## Time Tracking
This was found 2020-05-20 at [Time Tracking Wekan issue](https://github.com/wekan/wekan/issues/812#issuecomment-631111730), thanks!
Titra Time Tracking, GPLv3
- https://titra.io/en/free-time-tracking-online/
- https://github.com/kromitgmbh/titra/
Wekan Integration:
- https://github.com/kromitgmbh/titra/wiki/Wekan-integration
***
## iCal
https://github.com/wekan/wekan/issues/2836
https://github.com/wekan/wekan-ical-server

38
docs/Date/Timezone.md Normal file
View file

@ -0,0 +1,38 @@
1. At Windows, sync to ntp timeserver. Examples:
- `time.windows.com`
- `ntp.ubuntu.com`
- `ntp1.kolumbus.fi`
2. Dual boot to Qubes OS. At desktop top right calendar/time, set timezone to Etc/UTC.
3. At server and it's KVM VMs, edit `/etc/timezone` to `Etc/UTC`.
4. Update time at server:
```
sudo apt -y install ntpdate
sudo ntpdate ntp.ubuntu.com
```
5. Now local time shows correctly at webbrowser, like for example at Friend Desktop https://github.com/wekan/wekan/wiki/Friend
For testing any other time related code, that it shows correct local time, compare time functions results to this:
https://github.com/FriendUPCloud/friendup/blob/master/interfaces/web_desktop/apps/Convos/Scripts/chatlog.fui.js#L694
From Hogle Titlestad:
> Oh, and the most important thing.
> The first argument is a time string.
> Seconds. Not a normal date.
> Such that you can subtracck and add seconds to it.
> So input would be:
> ```
> this.parseDate( 1695981700956, false, 'Europe/Oslo' );
> ```
> e.g. Europe/Oslo is the server time zone.
> The timestamp is server time.
> For the event in question.