Ticket #6581 (closed task: fixed)

Opened 3 years ago

Last modified 3 years ago

provide an official 0.11 release

Reported by: rjollos Assigned to: hasienda
Priority: normal Component: WikiTicketCalendarMacro
Severity: normal Keywords: unicode 0.11
Cc: Trac Release: 0.11

Description

There are some versions attached to the main wiki page that claim to be usable, but we need a good 0.11 version.

Attachments

Change History

02/08/10 06:56:33 changed by rjollos

Excerpt from wiki page:

To fix encoding problems for e.g. german users add the following code to the script:

import locale

def expand_macro(self, formatter, name, arguments):

  loc = locale.setlocale(locale.LC_ALL)
  locale.setlocale(locale.LC_TIME, 'english')
  .
  .
  .
  locale.setlocale(locale.LC_ALL, loc)
  return Markup(table)

If you want to use one of the latest patches be sure to fix the daylight saving problem and change:

  duedatestamp = time.mktime((year, month, day, 0, 0, 0, 0, 0, -1))
  duedatestamp_eod = time.mktime((year, month, day, 23, 59, 0, 0, 0, -1))

  to

  duedatestamp = time.mktime((year, month, day, 0, 0, 0, 0, 0, 0))
  duedatestamp_eod = time.mktime((year, month, day, 23, 59, 0, 0, 0, 0))

I can not offer any patch here because the maximum count of external links is reached for this ticket.

02/08/10 07:03:40 changed by rjollos

Another excerpt from the wiki page:

WikiTicketCalendarMacro.20091029.py.gz by xeroo on 10/29/09

  • Update to Google Calendar style css. (采用谷歌日历风格样式)
  • Wiki brief is shown in calendar if exsits. (每日对应wiki如果存在则在此日显示wiki摘要)
  • Open tickets is shown under milestone, see line 305. (milestone中未关闭的tickets会显示在milestone下面,见305行)
  • Ticket action history is shown instead of tickets created and closed. Only close history is shown by default, this can be modified at line 330. (显示ticket变更历史,而不是只显示创建和关闭,此代码中目前仅显示关闭动作,可以在330行修改选择显示的动作列表)
  • Screenshot: WikiTicketCalendarMacro.20091029.png

02/08/10 07:07:22 changed by rjollos

Attachment comments from main page:

05/04/10 19:41:51 changed by anonymous

In the repository is not a version for trac 0.11, the version for 0.12 gives me an error. where can I find a version for trac 0.11? Thanks

05/04/10 21:40:17 changed by rjollos

As noted on the wiki page, WikiTicketCalendarMacro, we are working on a 0.11 version, but I'm not sure when it will be available. If you send me an email (contact information can be found on wiki page: rjollos), I can send you 8 files that previously were attached to the WikiTicketCalendarMacro page. I can't tell you whether any of them work or not.

05/27/10 13:14:43 changed by hasienda

  • keywords set to unicode 0.11.

Oh well, glad I read this. As rjollos stated before, there are several 0.11 compatible patch versions that where patches in tickets but never showed up as revisions in SVN here.

This was a major pain for me as well, when I encountered WikiTicketCalendarMacro. But after hand-picking and merging the best of all together I made the mistake to not pin that state but go on to do more fixing, this time to reach compatibility with Trac 0.12dev, what happened to be not backwards-compatible on first try. Requests like yours clearly show the demand, and I ensure you, that I'm not only in contact with rjollos, but he Kindly arranged for SVN write access granted to me.

I'm setting up a local repo to finally put all the patches and fixes under version control and build a series of clean 0.11 releases. Yesterday i got some valuable information on how Trac itself will handle 0.11 compatibility with regard to the offending microsecond timestamp change done in 0.12. This will make a 0.11/0.12 version possible again.

Still we'll keep 0.12 branch for a truly internationalized version. This is bound to be 0.12 only, since i18n/l10n support by Babel is another new Trac feature (see another comment for details).

05/28/10 00:51:38 changed by hasienda

  • owner changed from rjollos to hasienda.
  • summary changed from Port to 0.11 to provide an official 0.11 release.

sum up code changes and branches/forks off the original code base

06/02/10 12:20:23 changed by hasienda

  • status changed from new to closed.
  • resolution set to fixed.

This issue is closed by SVN r8055.

I'd be happy to accept proposal for a better and - most important - more intuitive looking choice of characters for all link labels would be appreciated. Let's discuss options in #7190. And if you'd like to stick to the old navigation for now, checkout r8053 from trunk.


Add/Change #6581 (provide an official 0.11 release)




Change Properties
Action