Changes between Version 11 and Version 12 of DailyReminderScriptForTracScript


Ignore:
Timestamp:
Nov 9, 2015, 4:27:01 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • DailyReminderScriptForTracScript

    v11 v12  
    1919Feel free to adopt it to your needs, please test it, use it!
    2020
    21 '''UPDATE:'''
    22 One should change line 103 if upgrading from Trac 11.x to Trac 12.x due to database changes:
     21'''Note:''' Change line 103 when upgrading from Trac 11.x to Trac 12.x due to database changes:
    2322{{{#!python
    2423detail = detail + "  created at " + str(time.strftime('%Y. %B %d. (%A) %H:%M:%S',time.gmtime(int(tkt[0]/1000000))))
    2524}}}
    2625
    27 Please take care of indentation! The Trac 12.x database converts every timestamp to a more accurate timestamp format, so a timestamp field must be divided by a million to work properly.
     26Please note the indentation! The Trac 12.x database converts every timestamp to a more accurate timestamp format, so a timestamp field must be divided by a million to work properly.
    2827
    2928See also: TracReminderScript, TicketRemindScript
     
    4140== Download
    4241
    43 Download the zipped source from [download:dailyreminderscriptfortracscript here].
     42Download the zipped source from [export:dailyreminderscriptfortracscript here].
    4443
    4544== Source
    4645
    47 You can check out DailyReminderScriptForTracScript from [http://trac-hacks.org/svn/dailyreminderscriptfortracscript here] using Subversion, or [source:dailyreminderscriptfortracscript browse the source] with Trac.
     46You can check out DailyReminderScriptForTracScript from [/svn/dailyreminderscriptfortracscript here] using Subversion, or [source:dailyreminderscriptfortracscript browse the source] with Trac.
    4847
    4948== Example
     
    5453}}}
    5554
    56 Don't forget to put a MAILTO=your.address@your.domain.tld into the cron file, the script prints out the recipients names where the mails had been sent.
     55Don't forget to put a `MAILTO=your.address@your.domain.tld` into the cron file, the script prints out the recipient names where the mails had been sent to.
    5756
    5857== Recent Changes