Question
I create a wiki page per day. I want a navigation bar to help me move around. I've drafted the following pseudo code but can't work out how to make it real.
Can you help?
Thanks!
-
- Set TODAY = 10 Nov 2008
- Set TODAYEPOCH = 10 Nov 2008
- Set DAILYEPOCHINCREMENT = 3600 * 24
- Set THISWEEK = {TODAYEPOCH - DAILYEPOCHINCREMENT*4} {TODAYEPOCH - DAILYEPOCHINCREMENT*3} {TODAYEPOCH - DAILYEPOCHINCREMENT*2} {TODAYEPOCH - DAILYEPOCHINCREMENT*1} {TODAYEPOCH} {TODAYEPOCH + DAILYEPOCHINCREMENT*1} {TODAYEPOCH + DAILYEPOCHINCREMENT*2} {TODAYEPOCH + DAILYEPOCHINCREMENT*3} {TODAYEPOCH + DAILYEPOCHINCREMENT*4}
Should result in:
06Nov2008 07Nov2008 08Nov2008 09Nov2008
10Nov2008 11Nov2008 12Nov2008 13Nov2008
Environment
--
TWikiGuest - 10 Nov 2008
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
Looks like a timeline. You may want to check
EasyTimelinePlugin and
TimelinePlugin.
--
EnriqueCadalso - 12 Nov 2008
It looks like you can achieve that with
%CALC{}% of the pre-installed
SpreadSheetPlugin. Look for $FORMATTIME(), $TIME(), $TIMEADD(), $TIMEDIFF(). Use mid-day to avoid rounding errors on summer savings time change.
--
PeterThoeny - 02 Jan 2009