File: ChangeLog

package info (click to toggle)
kid 0.9.6-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,264 kB
  • ctags: 4,633
  • sloc: python: 7,417; makefile: 120; sh: 47; xml: 4
file content (1121 lines) | stat: -rw-r--r-- 18,708 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
2005-10-12 12:12  kdangoor

        * Multiple match rules can now run against a single element.

2005-01-26 08:20  rtomayko

	* ChangeLog:

	release 0.5

2005-01-26 08:20  rtomayko

	* examples/basic/sysinfo.kid:

	Updated example for recent changes..

2005-01-26 08:15  rtomayko

	* HISTORY:

	[no log message]

2005-01-26 08:10  rtomayko

	* doc/index.txt, doc/kid-spec.txt, doc/tutorial.txt,
	kid/__init__.py, kid/parser.py, examples/basic/sysinfo.kid,
	examples/cgi/sysinfo.kid, test/basic-test.html.kid,
	test/context.kid, test/template-test.html.kid, test/templates.kid,
	test/test_attribute_interpolation.kid, test/test_attrs.kid,
	test/test_content.kid, test/test_content_interpolation.kid,
	test/test_content_structure.kid, test/test_def.kid,
	test/test_if.kid, test/test_kid_pi.kid, test/test_omit.kid,
	test/test_repeat.kid, test/test_replace.kid:

	Renamed the kid PI to python.  Use py: instead of kid: for
	namespace prefixes.

2005-01-26 07:37  rtomayko

	* kid/parser.py:

	Fixed bad dict call. Added call to _k_dict from kid:attrs.

2005-01-26 07:36  rtomayko

	* kid/util.py:

	Added python < 2.3 compatible _k_dict function..

2005-01-26 07:32  rtomayko

	* test/test_attrs.kid:

	Added kid:attrs test..

2005-01-26 07:22  rtomayko

	* kid/parser.py:

	Applied kid:attrs patch from Christoph Zwerschke

2005-01-26 06:30  rtomayko

	* doc/style.xsl:

	Damn sourceforge logo was wrong..

2005-01-26 06:29  rtomayko

	* kid/parser.py, kid/util.py, test_kid.py,
	test/test_content_interpolation.kid, test/test_def.kid:

	Added support for brace interpolation with text content.

2005-01-26 06:26  rtomayko

	* makefile:

	Add python 2.4 to tests

2005-01-22 01:12  rtomayko

	* ChangeLog:

	updated ChangeLog

2005-01-22 01:12  rtomayko

	* kid/__init__.py:

	release 0.4.2

2005-01-22 01:11  rtomayko

	* ChangeLog:

	[no log message]

2005-01-22 01:11  rtomayko

	* setup.py:

	Oops.. erase all evidence of urlgrabber theft :)

2005-01-22 01:11  rtomayko

	* MANIFEST.in:

	Update MANIFEST to include all tests

2005-01-22 00:50  rtomayko

	* ChangeLog, kid/__init__.py:

	release 0.4.2

2005-01-22 00:49  rtomayko

	* examples/basic/README:

	Updated for API changes.

2005-01-22 00:49  rtomayko

	* TODO:

	[no log message]

2005-01-20 10:06  rtomayko

	* HISTORY, TODO:

	Updated for 0.4.3

2005-01-20 10:06  rtomayko

	* README:

	Updates for website changes and what not.

2005-01-19 06:28  rtomayko

	* kid/util.py:

	Added _k_filter_names utility function. Used by omit namespace
	logic.

2005-01-19 06:27  rtomayko

	* kid/parser.py:

	Added omit namespace support. the kid namespace is now omitted as
	well.

2005-01-19 06:25  rtomayko

	* kid/compiler.py:

	Write python source files as utf-8.

2005-01-19 06:24  rtomayko

	* pulltree.py:

	Add end-of-line after DOCTYPE declaration.

2005-01-19 05:59  rtomayko

	* pulltree.py:

	Remove print..

2005-01-19 05:53  rtomayko

	* test/test_content.kid:

	Added a quick DOCTYPE test..

2005-01-19 05:52  rtomayko

	* kid/parser.py:

	Added DOCTYPE support..

2005-01-19 05:52  rtomayko

	* pulltree.py:

	Added support for DOCTYPE declarations (kind of. it's really not
	correct at all but should work for most kid cases. still, i feel
	dirty.)

2005-01-19 04:19  rtomayko

	* kid/util.py:

	Coerce attribute interpolated items to unicode before using.

2005-01-19 04:18  rtomayko

	* test/test_attribute_interpolation.kid:

	Added attribute interpolation tests.

2005-01-19 04:11  rtomayko

	* kid/parser.py:

	Fixes to accept extended unicode characters in templates.

2005-01-19 04:10  rtomayko

	* test_kid.py:

	Make template tests first class (they get dots).

2005-01-19 03:40  rtomayko

	* test/test_content_structure.kid:

	Added test for XML() function.

2005-01-19 03:37  rtomayko

	* makefile:

	Remove needless comments..

2005-01-19 03:36  rtomayko

	* test_kid.py:

	Use os.path.join instead of platform dependant paths.  Added test
	to check that .pyc files are being generated properly.

2005-01-19 03:35  rtomayko

	* kid/importer.py:

	Fix to generate .pyc files (for real this time).  Also added
	KID_OUTPUT_PY environment variable. When set, .py source is
	generated along with the .pyc file.

2005-01-19 03:34  rtomayko

	* makefile:

	Clean more stuff.

2005-01-19 03:34  rtomayko

	* TODO:

	[no log message]

2005-01-17 04:14  rtomayko

	* doc/: index.txt, makefile, style.xsl:

	Changes for sourceforge project move..

2005-01-17 04:14  rtomayko

	* TODO:

	Added attribute interpolation bug..

2005-01-14 16:12  rtomayko

	* HISTORY:

	Minor change..

2005-01-14 16:12  rtomayko

	* TODO:

	[no log message]

2005-01-12 13:03  rtomayko

	* setup.py:

	Move to Alpha

2005-01-12 12:58  rtomayko

	* setup.py:

	Better download link

2005-01-12 11:32  rtomayko

	* ChangeLog:

	updated ChangeLog

2005-01-12 11:31  rtomayko

	* TODO, HISTORY:

	[no log message]

2005-01-12 11:29  rtomayko

	* doc/tutorial.txt:

	Updated tutorial for interface changes.

2005-01-12 10:45  rtomayko

	* ChangeLog:

	updated ChangeLog

2005-01-12 10:45  rtomayko

	* kid/__init__.py:

	release 0.4.1

2005-01-12 10:43  rtomayko

	* kid/compiler.py:

	Aplying patch from Ross Burton to fix pyc file genration bug.

2005-01-12 10:42  rtomayko

	* bin/kid, kid/parser.py:

	Fixed double-output bug when using kid command. (Ross Burton)

2005-01-11 04:25  rtomayko

	* ChangeLog:

	updated ChangeLog

2005-01-11 04:25  rtomayko

	* kid/__init__.py:

	release 0.4

2005-01-11 04:22  rtomayko

	* HISTORY:

	Updated for 0.4

2005-01-11 04:22  rtomayko

	* kid/__init__.py:

	Clean up some rogue doc..

2005-01-11 04:07  rtomayko

	* pulltree.py, test_kid.py, kid/__init__.py, kid/parser.py:

	Renamed the following methods: encode() -> serialize() serialize()
	-> generate() expand() -> pull()

2005-01-11 03:11  rtomayko

	* kid/parser.py:

	Added enumerate function for Python < 2.3

2005-01-11 02:59  rtomayko

	* ChangeLog:

	[no log message]

2005-01-11 02:58  rtomayko

	* test/test_content_structure.kid:

	Not sure wtf I was doing here.

2005-01-11 02:58  rtomayko

	* doc/: makefile, style.xsl:

	Added history to site.

2005-01-11 02:56  rtomayko

	* kid/parser.py:

	Added parse() and parse_file() methods.  Generated Template class
	subclass BaseTemplate. You can set this in a template to use a
	different base class.

2005-01-11 02:55  rtomayko

	* kid/: compiler.py, importer.py:

	Simplified modules. Got rid of some cruft that was left around from
	code lifted from Quixote.

2005-01-11 02:53  rtomayko

	* kid/__init__.py:

	Major interface changes:   import_template() - like using import
	statement but with ihooks crap.    load_template() - load a
	template module from file instead of importing.    Template() -
	function calls load_template and returns the template's main class.
	   BaseTemplate - class that acts as the base-class for all
	generated templates.  Automatically call enable_import() if
	KID_IMPORT environment variable is set.

2005-01-11 02:50  rtomayko

	* test_kid.py:

	Added exec() hack tests.  Added tests for kid.load_template and
	kid.import_template Added test for outputting short-form elements.

2005-01-11 02:49  rtomayko

	* bin/kid:

	Updated for 0.4 interface changes.

2005-01-11 02:12  rtomayko

	* TODO:

	[no log message]

2004-12-30 19:20  rtomayko

	* bin/kid:

	Fixed SyntaxError: __name__ referenced before assignment. Thanks
	Ross Burton

2004-12-29 14:26  rtomayko

	* test/: templates.kid, test_def.kid:

	kid:def test cases..

2004-12-29 07:19  rtomayko

	* kid/util.py:

	Minor speed up..

2004-12-29 07:18  rtomayko

	* doc/kid-spec.txt, kid/parser.py, HISTORY:

	First crack at name-based templating. The kid:def attribute can be
	used to create a named template. Markup in an kid:def isn't
	executed as part of the normal template but can be called in
	kid:content or imported into other templates. woot!

2004-12-28 17:51  rtomayko

	* test_kid.py, doc/kid-spec.txt, kid/parser.py:

	Handle escaping attribute value templates. Use double curly braces.
	Also add unit tests for interpolation functions.

2004-12-28 17:49  rtomayko

	* bin/kid:

	Only process __main__ stuff if this script is called as __main__

2004-12-27 05:54  rtomayko

	* HISTORY, ChangeLog:

	[no log message]

2004-12-27 05:53  rtomayko

	* test_kid.py, bin/kid, bin/kidc, kid/__init__.py, kid/importer.py,
	kid/parser.py:

	Generated templates subclass kid.Template.  Various refactoring
	into class

2004-12-27 05:53  rtomayko

	* examples/basic/sysinfo.kid:

	repeat is not for..

2004-12-24 11:05  rtomayko

	* test_kid.py, test/context.kid:

	Tests for kwarg context.

2004-12-24 11:03  rtomayko

	* kid/: parser.py, __init__.py:

	expand methods now take keyword args instead of a context dict.
	Anything passed in the keyword args dict is scoped in locally.

2004-12-24 11:02  rtomayko

	* kid/compiler.py:

	compiler.compile is not the same as the compile builtin. this was
	causing some problems with scoping of local variables.

2004-12-24 11:01  rtomayko

	* kid/importer.py:

	Remove unneeded debug statement.

2004-12-22 17:05  rtomayko

	* setup.py:

	Oops. missed license stuff in distutils script..

2004-12-22 17:05  rtomayko

	* HISTORY:

	Move things around a bit..

2004-12-22 07:28  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-12-22 07:28  rtomayko

	* kid/__init__.py:

	release 0.3

2004-12-22 06:57  rtomayko

	* kid/parser.py:

	Changes for pulltree.eat modifications..

2004-12-22 06:57  rtomayko

	* doc/: about.txt, index.txt:

	Documentation updates for license change.

2004-12-22 06:56  rtomayko

	* pulltree.py:

	Fixed problem with character data not making it into ElementTree.
	Removed __iter__ from PullElement. This is causing problems
	somewhere but I don't have time to track it down atm.  expand and
	eat now assume that the start element event has not arrived. depth
	argument can be provided to get old-style functionality..

2004-12-22 06:54  rtomayko

	* test/test_replace.kid:

	Added kid:replace test..

2004-12-22 06:53  rtomayko

	* makefile:

	More clean files..

2004-12-22 06:52  rtomayko

	* HISTORY, TODO:

	[no log message]

2004-12-22 06:52  rtomayko

	* README:

	sugar..

2004-12-18 00:19  rtomayko

	* HISTORY:

	Added notes about kid:replace

2004-12-18 00:16  rtomayko

	* kid/parser.py:

	Support for kid:replace

2004-12-18 00:16  rtomayko

	* pulltree.py:

	Fixed bad variable name in XML() function..

2004-12-18 00:15  rtomayko

	* TODO:

	[no log message]

2004-12-18 00:05  rtomayko

	* HISTORY, doc/kid-spec.txt, doc/tutorial.txt:

	Documentation updates for kid:repeat to kid:for name change.

2004-12-18 00:00  rtomayko

	* kid/parser.py, test/test_repeat.kid:

	kid:repeat changed to to kid:for

2004-12-17 23:37  rtomayko

	* kid/parser.py:

	Add from __future__ import generators to generated code. Needed for
	Python lt 2.3 compatibility.

2004-12-17 23:35  rtomayko

	* test_kid.py:

	__file__ doesn't work on __main__ modules in Python lt 2.3

2004-12-17 23:32  rtomayko

	* README, TODO, kid/__init__.py, kid/compiler.py, kid/parser.py:

	More from __future__ import generators for Python lt 2.3

2004-12-17 23:31  rtomayko

	* test/include-me.xml:

	file to include in tests.

2004-12-17 23:30  rtomayko

	* pulltree.py:

	Add from __future__ import generators for Python 2.2

2004-12-17 22:53  rtomayko

	* COPYING:

	Sucks..

2004-12-17 22:53  rtomayko

	* HISTORY:

	Added HISTORY as ChangeLog is too verbose and crazy to read sanely

2004-12-17 22:43  rtomayko

	* makefile, pulltree.py, test_kid.py, bin/kid, bin/kidc,
	kid/__init__.py, kid/compiler.py, kid/importer.py, kid/parser.py,
	kid/util.py:

	Standardizing on four-space indent.  Prelimenary license changes.

2004-12-16 22:21  rtomayko

	* ChangeLog, TODO:

	[no log message]

2004-12-15 11:02  rtomayko

	* TODO:

	[no log message]

2004-12-14 06:09  rtomayko

	* test/test_content_structure.kid:

	Test for bringing in external content.

2004-12-14 05:37  rtomayko

	* makefile:

	Add examples to clean files..

2004-12-14 05:36  rtomayko

	* kid/: parser.py, util.py:

	First crack at support for structured content.

2004-12-14 05:35  rtomayko

	* pulltree.py:

	Add pull function for turning Elements into streams.  Don't require
	an element be passed to expand or eat.

2004-12-14 05:32  rtomayko

	* TODO:

	[no log message]

2004-12-14 02:31  rtomayko

	* kid/parser.py:

	Fixed generated code referencing kid.pulltree instead of pulltree.

2004-12-14 02:26  rtomayko

	* setup.py:

	Fix bad package name in py_modules

2004-12-14 02:25  rtomayko

	* pulltree.py, setup.py, kid/__init__.py, kid/parser.py,
	kid/pulltree.py:

	Move pulltree.py to top-level module

2004-12-14 02:23  rtomayko

	* TODO:

	Updated for recent changes..

2004-12-14 01:56  rtomayko

	* test_kid.py, test/test_content.kid, test/test_repeat.kid:

	Actual check that output matches expected output in tests.

2004-12-14 01:55  rtomayko

	* kid/: __init__.py, parser.py, pulltree.py, util.py:

	Rewrite internals to use ElementTree/pulltree so we can do
	something sane wrt templating.

2004-12-02 06:50  rtomayko

	* setup.py:

	Missed a comma in setup.py. Was causing trove classifiers to
	collapse.

2004-12-02 06:47  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-12-02 06:47  rtomayko

	* bin/kid, kid/__init__.py:

	Ran tests, found bugs, fixed bugs, releasing for real this time.

2004-12-02 06:40  rtomayko

	* setup.py:

	oops. didn't mean to ucase the package name..

2004-12-02 06:39  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-12-02 06:39  rtomayko

	* kid/__init__.py:

	release 0.2

2004-12-02 06:39  rtomayko

	* makefile:

	don't verify the tag hasn't been used.

2004-12-02 06:38  rtomayko

	* setup.py:

	Should be good for PyPI registration.. I think.

2004-12-02 06:19  rtomayko

	* README:

	Added some information to the README..

2004-12-02 06:17  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-12-02 06:16  rtomayko

	* MANIFEST.in:

	Really add ChangeLog this time..

2004-12-02 06:15  rtomayko

	* ChangeLog, MANIFEST.in, kid/__init__.py:

	Added examples and ChangeLog

2004-12-02 06:10  rtomayko

	* doc/: style.css, style.xsl:

	Added the sourceforge.net logo..

2004-12-02 06:10  rtomayko

	* doc/: kid-spec.txt, tutorial.txt:

	Updated the spec and stubbed some content into the tutorial (which
	isn't really a tutorial..)

2004-12-02 03:21  rtomayko

	* examples/basic/: README, sysinfo.kid:

	Added basic example illustrating various kid usage from commandline
	and from within python.

2004-12-02 02:57  rtomayko

	* examples/cgi/: README, kid_handler.cgi, sysinfo.kid:

	Added CGI demo. It's no more than a proof-of-concept to be honest.

2004-12-02 02:46  rtomayko

	* kid/util.py:

	the expand function of template modules can now take a
	ContentHandler, a file like object, or None (in which case a buffer
	is created and the result is returned as a string)

2004-12-02 02:44  rtomayko

	* kid/parser.py:

	Change name of output ContentHandler from output to _out to try to
	reduce the chance of name collision.

2004-12-02 02:43  rtomayko

	* kid/__init__.py:

	Allow SAX content handlers to be passed to expand_template

2004-12-02 02:42  rtomayko

	* bin/kidc:

	Minor fixup to error handling and usage.

2004-12-02 02:41  rtomayko

	* work.sh:

	bash script to source when testing out of working directory.

2004-12-02 02:40  rtomayko

	* makefile:

	make doc before releasing so that the html files go out in the
	distribution.

2004-12-02 02:37  rtomayko

	* bin/kid:

	Run templates from the command line without compiling.

2004-12-01 09:18  rtomayko

	* TODO:

	[no log message]

2004-12-01 09:17  rtomayko

	* setup.py:

	Added download link

2004-12-01 09:15  rtomayko

	* setup.py:

	Better trove classifiers. Removed doc files

2004-12-01 09:05  rtomayko

	* MANIFEST.in:

	Added doc files and kidc to MANIFEST

2004-12-01 08:59  rtomayko

	* makefile:

	Don't clean release by default. Added fullclean target for cleaning
	everything.

2004-11-30 06:40  rtomayko

	* doc/kid-spec.txt:

	Fixed bug in language spec.

2004-11-30 06:40  rtomayko

	* doc/index.txt:

	Changed download location..

2004-11-30 06:24  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-30 06:23  rtomayko

	* ChangeLog:

	release 0.1.1

2004-11-30 06:23  rtomayko

	* makefile:

	Don't check ChangeLog in pre-release-test..

2004-11-30 06:22  rtomayko

	* kid/__init__.py:

	Version update..

2004-11-30 06:21  rtomayko

	* doc/index.txt:

	Add download location and note about being early..

2004-11-30 06:02  rtomayko

	* doc/: about.txt, index.txt, makefile, style.css, style.xsl:

	Tidy up documentation a bit

2004-11-29 09:10  rtomayko

	* makefile, doc/makefile:

	I think make publish is finally working for pushing out site
	content.

2004-11-29 09:10  rtomayko

	* TODO:

	[no log message]

2004-11-29 08:03  rtomayko

	* doc/: index.txt, kid-spec.txt, makefile, style.css, style.xsl,
	tutorial.txt:

	Some work on documentation..

2004-11-28 22:29  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-28 22:29  rtomayko

	* kid/__init__.py:

	release 0.1

2004-11-28 22:28  rtomayko

	* kid/: compiler.py, parser.py:

	Fixed some fairly obvious and stupid problems due to splitting
	compiler and parser up into two modules.

2004-11-28 22:27  rtomayko

	* makefile:

	test target should be working now.

2004-11-28 22:18  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-28 22:18  rtomayko

	* kid/__init__.py:

	release 0.0.1

2004-11-28 22:17  rtomayko

	* makefile:

	makefile is halfway sane now.

2004-11-28 22:09  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-28 22:09  rtomayko

	* makefile:

	release 0.0

2004-11-28 22:01  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-28 22:01  rtomayko

	* makefile:

	release 0.0

2004-11-28 21:59  rtomayko

	* .cvsignore:

	Ignore release and export directories

2004-11-28 21:57  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-28 21:57  rtomayko

	* makefile:

	release 0.0

2004-11-28 21:54  rtomayko

	* ChangeLog:

	updated ChangeLog

2004-11-28 21:54  rtomayko

	* ChangeLog, makefile, kid/__init__.py:

	release 0.0

2004-11-28 21:51  rtomayko

	* ChangeLog:

	[no log message]

2004-11-28 21:46  rtomayko

	* COPYING, MANIFEST.in, README, TODO, makefile, setup.py,
	test_kid.py, bin/kidc, doc/index.txt, doc/kid-spec.txt,
	doc/tutorial.txt, kid/__init__.py, kid/compiler.py,
	kid/importer.py, kid/parser.py, kid/util.py, test/__init__.py,
	test/basic-test.html.kid, test/template-test.html.kid,
	test/test_content.kid, test/test_if.kid, test/test_kid_pi.kid,
	test/test_omit.kid, test/test_repeat.kid:

	Initial import into sourceforge repository.  Old history can be
	found at the following:

	  http://naeblis.cx/cvs/kid/