--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/f82bd43f-84a9-459e-a5d7-c8d6efb717a1o%40googlegroups.com.
I used the custom filter like [tag[hmw]] and saw how nicely they were added to Calendar!
Timer is already great and has many features. The below are optional minor suggestions- a small button to click and see the full calendar opened in story river e.g. TiddlyTools/Time/Calendar
- a small button to show monthly view / yearly view /weekly view in TiddlyTools/Time/Calendar
- a small button to show the schedules in TiddlyTools/Time/Calendar
- lets use tiddler color field for events when absent use default color
On Monday, September 28, 2020 at 12:12:51 AM UTC-7, Atronoush wrote:I used the custom filter like [tag[hmw]] and saw how nicely they were added to Calendar!That was what I was thinking about when I added the custom filter.It makes it possible to use the calendar as combination of the$:/AdvancedSearch Filter tab ($:/core/ui/AdvancedSearch/Filter)and the Sidebar Recent tab ($:/core/ui/SideBar/Recent) with theadded advantage of showing tiddlers by created *and* modified dates.Timer is already great and has many features. The below are optional minor suggestions- a small button to click and see the full calendar opened in story river e.g. TiddlyTools/Time/CalendarWhen viewing the TiddlyTools/Time/Calendar in the Story River, clicking on a month name headingtoggles between year-view and month-view. However, the SidebarCalendar month-view alwaysdisplays the month-view, and clicking on the month name heading in the Sidebar was being ignored.
To address this, I've just updated the SidebarCalendar (and the core Calendar code) to adda flag that indicates when you are viewing a month in the sidebar and invokes a new macro,showheading_sidebar(), instead of showheading_toggle(). This causes the click on the monthname heading in the SidebarCalendar to open TiddlyTools/Time/Calendar in the Story Riverand display the year-view. It also sets the year-view to show the same year as is currentlybeing viewed in the SidebarCalendar.This should hopefully produce the effect that you suggested. Let me know how it goes...
- a small button to show monthly view / yearly view /weekly view in TiddlyTools/Time/CalendarAs I noted above, when viewing the TiddlyTools/Time/Calendar in the Story River, clicking ona month name heading already toggles between year-view and month-view. There is no "weekly view".- a small button to show the schedules in TiddlyTools/Time/Calendar"schedules" ??? I'm not sure what you mean. Please elaborate.
- lets use tiddler color field for events when absent use default colorEvents are not stored as separate tiddlers. Thus, there is no associated "tiddler color field" to be used.Events are defined as a text-based list in TiddlyTools/Time/Events and can also be defined in".ics" ICalendar tiddlers imported from external sources such as Google Calendar and(see https://en.wikipedia.org/wiki/ICalendar for details of the .ics format)
--enjoy,-e
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/9d4b5e70-b3c1-4edb-b2c3-985de404cfa2o%40googlegroups.com.
Great! I tested and it works fine. I just experienced opening TiddlyTools/Time/Calendar is little slow but I think it is fine.
I mean a tiddler lists all events (or taks,...) in a nice chronological order like the one we see in Google Calendar.Google Calendar has a year/month/day/5day and schedule view. I got the idea from that.
\import TiddlyTools/Time/Calendar
\define showevents() yes
<$wikify name="events" text=<<getevents>>>
<table>
<$list filter=<<events>> variable="event">
<tr>
<td><$text text={{{ [<event>split[;]first[]] }}} /></td>
<td><$text text={{{ [<event>split[;]rest[]join[ ]] }}}/></td>
</tr>
</$list>
</table>
Eric,
this is great! And it is evolving into what I call a "game
changer" :
Use case example: A consultant/lawyer starts a contract with a wiki for research and brainstorming, also writing the first drafts. He works at home, in the office, in the sub/bus, in the chauffeur driven limousine, plane, train, ship, submarine, space station... and all the time your timer counts the time for the monthly invoice...
The datepicker - plugin has an issue with UTC / time-zones. Does
a similar problem occur in the timer?
Thanks again,
Pit.W
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/f82bd43f-84a9-459e-a5d7-c8d6efb717a1o%40googlegroups.com.
_________________________________________________________________ ________________________________________________________ Ihre E-Mail-Postfächer sicher & zentral an einem Ort. Jetzt wechseln und alte E-Mail-Adresse mitnehmen! https://www.eclipso.de
I've tried to optimize the Calendar code as much as possible, but it's doing a LOT of work to display 365 days, with date-specific filters for events and tiddler changes.The worst bit of overhead is the matchevents() code, which can add as much as a half-second (500msec) of processing for each month when there are lots of events to filter. For a 12-month display, this turns into a 6 second wait before the calendar is rendered. It seems to be related to the use of split[] and regexp[] filters, but I have not (yet) found any workarounds that produce better results... but I'm still working on it.
On Monday, September 28, 2020 at 2:08:22 AM UTC-7, Atronoush wrote:Great! I tested and it works fine. I just experienced opening TiddlyTools/Time/Calendar is little slow but I think it is fine.I've tried to optimize the Calendar code as much as possible, but it's doing a LOT of work to display 365 days, with date-specific filters for events and tiddler changes.The worst bit of overhead is the matchevents() code, which can add as much as a half-second (500msec) of processing for each month when there are lots of events to filter. For a 12-month display, this turns into a 6 second wait before the calendar is rendered. It seems to be related to the use of split[] and regexp[] filters, but I have not (yet) found any workarounds that produce better results... but I'm still working on it.
I mean a tiddler lists all events (or taks,...) in a nice chronological order like the one we see in Google Calendar.Google Calendar has a year/month/day/5day and schedule view. I got the idea from that.Here's a bit of wikitext code that displays the event data as a table.\import TiddlyTools/Time/Calendar
\define showevents() yes
<$wikify name="events" text=<<getevents>>>
<table>
<$list filter=<<events>> variable="event">
<tr>
<td><$text text={{{ [<event>split[;]first[]] }}} /></td>
<td><$text text={{{ [<event>split[;]rest[]join[ ]] }}}/></td>
</tr>
</$list>
</table>One thing the above code doesn't yet do is to *sort* the events by date.I'll try to work this into a new macro in the Calendar code, e.g., <<calendar_listevents>>I'll let you know when I have something more for you to try...
---e
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/03cc181f-a4d0-47bc-a9ce-06a4df30545eo%40googlegroups.com.
One thing, the popup for my timers does not go away. I assumed ESC would do it but to no avail. my tiddlywiki is seen underneath dimmed out but behaves as if the popup is not there?How to dismiss the popup?
Yes it's the one from the countdown.I don't get a "close" button. See image