[Remind-Fans] Can I know if a reminder is a separator?
Justin Alcorn
justin at jalcorn.net
Tue Sep 19 12:10:46 EDT 2006
I have a .reminders file with lines like:
IF defined("web")
SET NrmPre "<span class='normal'>"
SET Nrm "</span>"
SET Blk "<span>"
SET Red "<span class='important'>"
SET Grn "<span>"
SET Ylw "<span>"
SET Blu "<span class='notice'>"
SET Mag "<span>"
SET Cyn "<span>"
SET Wht "<span>"
SET Gry "<span>"
SET BrRed "<span class='urgent'>"
SET BrGrn "<span>"
SET BrYlw "<span>"
SET BrBlu "<span class='warning'>"
SET BrMag "<span>"
SET BrCyn "<span>"
SET BrWht "<span>"
SET Bull "•"
FSET msgprefix(x) iif(x<999, BrRed, x<1001, Red, x<1400,
BrBlu,x<5000, Blu, NrmPre)
FSET msgsuffix(x) Nrm
ENDIF
MSG %"%"%
MSG Reminders: %"%"%
REM 25 +7 MSG Check Cars %"%"%
And it is called by my personal portal as:
remind -q -iweb=1 .reminders
So the result is:
<span class='normal'> </span>
<span class='normal'>Reminders: </span>
<span class='normal'>Check Cars </span>
And it looks nice in the portal. The question is can I set an IF
statement to tell the difference between a separator:
MSG Reminders: %"%"%
And a "real" reminder:
REM 25 +7 MSG Check Cars %"%"%
I'd like the real reminders to have the msgprefix Bull+NrmPre instead of
just NrmPre so it would look like:
<span class='normal'> </span>
<span class='normal'>Reminders: </span>
•<span class='normal'>Check Cars </span>
(My portal code already looks for the \n and adds a <br /> so it formats
correctly)
Ideas?
More information about the Remind-fans
mailing list