wow!!! nice!
I have a tiddler that is always at the top and I have room to put three months side by side. last month/this month/next month is there a way for it to figure current month -/+ 1?
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/yHdzqZWJATU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
For me they are two issues:
1) I understood that you were using the macro before I made the new version - the new version should be able to work in the same way as the old version - are you still using it this way (the old way)?
2) the new version of the macro supports only only ddth mm yyyy format at the moment. - I do not intend to add different formats at this time - there may be a 'core' version of this macro sometime soon and I do not want spend my time on functionality that would be made obsolete.
<<calendar "2014" 9>><<calendar "">><<calendar "2014" 11>>
"journals": {
"lastDayOfWeek": "0"
Cheers
BJ
<<calendar 2014 "" journals>>2 2015
BJ,Please find another bug report:For making Journals in the future December does not work. If I click on a date to make new journal in December it opens draft with
2 2015instead 2 December 2014, it works with other months. ( my Journal setting is DD MMM YYYY )If I change the Journal to this correct name, it will not show up as link the month December.Or is some setting wrong in my TW?thxLourens
There is a new version at http://bjtools.tiddlyspot.com to work with 5.1.3 and above. I have also added support for journal tiddlers.
Am Dienstag, 28. Oktober 2014 19:30:53 UTC+1 schrieb BJ:
There is a new version at http://bjtools.tiddlyspot.com to work with 5.1.3 and above. I have also added support for journal tiddlers.Nice.
But could you please add a few more classes?
That way one could, with some CSS, format the Journal links to missing journals (so in the year-view on your page) the same like normal text. That way the real entries would be more obvious. I think about something like <td class="bj-day">
Cool it works!! (as intended) You can now change your name BJ!(tip: If you change to BugfreeJef you can keep the initials)
function daysInMonth(iMonth, iYear){
return 32 - new Date(iYear, iMonth-1, 32).getDate();
}
function daysInMonth(iMonth, iYear){
return new Date(iYear, iMonth, 0).getDate();
}
Just a hint.
Instead offunction daysInMonth(iMonth, iYear){
return 32 - new Date(iYear, iMonth-1, 32).getDate();
}
you can write:function daysInMonth(iMonth, iYear){
return new Date(iYear, iMonth, 0).getDate();
}
Am Donnerstag, 6. November 2014 19:22:22 UTC+1 schrieb BJ:
> > But could you please add a few more classes?
> I would say the plugin is experimental, it is constructed from wiki text so there is not the possibility to add classes
Maybe put a classed div around it? That would help I guess.
Also if you put into all the seperator cells if the year calendar, except for the first one, a "~", the separting column wouldn't have the vertical borders.
> > That way one could, with some CSS, format the Journal links to missing journals (so in the year-view on your page) the same like normal text. That way the real entries would be more obvious. I think about something like <td class="bj-day">
> The default in the new calendar tab should be formatted that way
Ah! Now I see! I was confused by the fact that the month view shows black numbers while the year view shows them blue. I didn't notice the grey background for dates with entries.
Can weekends be formatted differently? (add a span) Can the current day be higlighted?