オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

Log of /plugins/ganttcalendarplugin/trunk/ganttcalendar/admin.py

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 855 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 30 14:59:05 2014 UTC (9 years, 9 months ago) by jun66j5
File length: 5546 byte(s)
Diff to previous 854
GanttCalendarPlugin: show datepicker for text field of holiday if Trac 1.0 or later

Revision 854 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 30 14:51:34 2014 UTC (9 years, 9 months ago) by jun66j5
File length: 5380 byte(s)
Diff to previous 852
GanttCalendarPlugin: follow-up to r852, fixed missing `pkg_resources`

Revision 852 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 30 14:43:17 2014 UTC (9 years, 9 months ago) by jun66j5
File length: 5394 byte(s)
Diff to previous 849
GanttCalendarPlugin: fixed a `KeyError` if locale directory doesn't exist, e.g. egg file built without Babel

Revision 849 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 30 11:07:22 2014 UTC (9 years, 9 months ago) by jun66j5
File length: 5297 byte(s)
Diff to previous 848
GanttCalendarPlugin: refactored `admin.py` and use Trac db api since 0.12


Revision 848 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 30 10:38:57 2014 UTC (9 years, 9 months ago) by jun66j5
File length: 5032 byte(s)
Diff to previous 846
GanttCalendarPlugin: use iso8601 format for `holiday.date` column


Revision 846 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 23 09:17:15 2014 UTC (9 years, 9 months ago) by jun66j5
File length: 4442 byte(s)
Diff to previous 843
GanttCalendarPlugin: file names of template have `ganttcalendar_` prefix


Revision 843 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Feb 1 09:55:06 2014 UTC (10 years, 4 months ago) by jun66j5
File length: 4404 byte(s)
Diff to previous 842
ganttcalendar: fixed SQL injections


Revision 842 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Feb 1 09:44:18 2014 UTC (10 years, 4 months ago) by jun66j5
File length: 4497 byte(s)
Diff to previous 838
ganttcalendar: fixed raising a `TypeError` while creating `holidays_tbl` table if C locale (closes #32918)


Revision 838 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Apr 26 14:37:10 2013 UTC (11 years, 1 month ago) by jun66j5
File length: 4359 byte(s)
Diff to previous 837
ganttcalendar: use place holder to avoid any possibility of a SQL injection


Revision 837 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Apr 26 14:31:53 2013 UTC (11 years, 1 month ago) by jun66j5
File length: 4426 byte(s)
Diff to previous 817
ganttcalendar: fix syntaxn error about `ASC` while creating index (#29009)


Revision 817 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Nov 13 14:59:23 2011 UTC (12 years, 6 months ago) by jun66j5
File length: 4551 byte(s)
Diff to previous 707
Simplifies i18n codes and removes unused symbols.


Revision 707 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Nov 27 11:32:32 2010 UTC (13 years, 6 months ago) by okamototk
File length: 4370 byte(s)
Diff to previous 147
merge  ganttcalendar-ko and i18n/l10n.

Revision 147 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jan 26 13:00:25 2009 UTC (15 years, 4 months ago) by kabuchan
File length: 3053 byte(s)
Diff to previous 146
 * python2.3対応
    そのため全面的に書き換えました

 * チケットのポップアップがらみ
   * 「ガントチャート」[IE7,IE6,IE5.5]
      z-indexが機能していないのでz-indexがなくても被らない様に書き換え
   * 「カレンダー」[IE7,IE6,IE5.5]
      こっちはz-index機能で被りを回避しています
      (位置指定をしてしまうとz-indexが無効になるのでポップアップ場所はばらばらです)

   ※ IE6,IE5.5については環境ないため正確には確認していません
   ※ IE6,IE5.5では若干表示が異なる可能性あります
   ※ firefoxは3.05で確認しました

 * 「カレンダー」マイルストーンの絞込みで期日のあるものしか出てなかったものを
    すべて表示するように変更しました

 * 「カレンダー」期間の最初、最後のものが表示されていないの出るようにクエリを変更

 * 「管理画面」祝日の削除でエラーがでるのを修正しました

 * その他適当に


Revision 146 - (view) (download) (as text) (annotate) - [select for diffs]
Added Wed Jan 21 15:15:34 2009 UTC (15 years, 4 months ago) by kabuchan
File length: 3069 byte(s)
 * 祝日機能追加しました
   * holidayテーブルを使います
   * 管理画面にページを追加しテーブル作成、祝日の追加削除ができるようにしました
   * 「カレンダー」と「ガントチャート」に祝日を表示します
   * sqliteしか確認していないので、なにか不都合が出る人は手で作ってみてください
{{{
--holidayテーブルスキーマ
CREATE TABLE holiday (date TEXT, description TEXT);
CREATE UNIQUE INDEX idx_holiday ON holiday(date ASC);

}}}
 * python 2.3では動かないのでバージョンチェックをします
   * 「カレンダー」「ガントチャート」表示時の際にチェックします


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26