File: ChangeLog

package info (click to toggle)
shoop 0.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 328 kB
  • ctags: 41
  • sloc: sh: 1,138; makefile: 209; perl: 44
file content (978 lines) | stat: -rw-r--r-- 27,603 bytes parent folder | download
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
2001-02-18  Gergely Nagy  <algernon@debian.org>

	* example.sh 1.32: use correct path to shoop.sh

	* debian/rules 1.6: The Coffee-overdose version.

	Supports the following `make' options: -n, -k, -S, -v, -h, --help, --version
	Other options are ignored (but only single-dash options for now).

	Added cvs-build target, that will build the ChangeLog and launch
	a dpkg-buildpackage,

	Now honours DEB_BUILD_OPTIONS=nostrip! In this case, the shoop modules
	(and shoop itself) won't be compiled with utils/shell-stripper.

	* debian/control 1.4:
	build depend only on perl, not perl5, to reflect recent reorganization

2001-02-17  Gergely Nagy  <algernon@debian.org>

	* t/benchmark.bm 1.6, t/inheritance.sh 1.17:
	updated to new shoop.sh paths

	* debian/rules 1.5:
	first set of update, more to come soon

	* debian/shoop-modules.dirs 1.2:
	updated directory list

	* debian/shoop-dev.dirs 1.1, debian/shoop-dev.docs 1.1, debian/shoop-dev.examples 1.1:
	new files

	* debian/shoop.docs 1.2:
	removed. there are no docs in shoop anymore.

	* debian/control 1.3: added shoop-dev

2001-02-17  Adam Heath  <doogie@debian.org>

	* example.sh 1.31, modules/use.sh 1.13:
	Add the ability to record the immediate dependencies of a program, and
	a way to show those dependencies.

	* modules/use.sh 1.12:
	Oops.  IFS wasn't been set/reset properly.

	* modules/use.sh 1.11:
	Oops.  use.sh was used as a temporary file to type out the changelog entry
	for the last checkin.

	* modules/use.sh 1.10:
	Add convience method '_USE . findmodule'.  Also, store all state variables
	in internal object _USE, instead of globally.

	* t/regress 1.12:
	Fix handling of multiple regression scripts.

	* example.sh 1.30:
	The rest of the code had drifted from what this was expecting, so bring it
	back in sync.

	* shoop.sh 1.81:
	s/modified/modifier/ in error message.

	* shoop.sh 1.80:
	Oops.  Parameters weren't being escaped properly when being passed into
	_shoop(missing '"' around $@)

2001-02-17  Gergely Nagy  <algernon@debian.org>

	* debian/rules 1.4: dh_testversion purged

	* debian/control 1.2:
	changed maintainer address to shoop-devel

2001-02-08  Gergely Nagy  <algernon@debian.org>

	* docs/AUTHORS 1.2:
	added myself (for the sake of mkChangeLog)

	* debian/rules 1.3:
	rewritten, because I could not figure out how the original supposed to work

	* debian/changelog 1.1, debian/control 1.1, debian/copyright 1.1, debian/shoop.docs 1.1, debian/shoop-modules.dirs 1.1:
	new file

2001-02-03  Adam Heath  <doogie@debian.org>

	* modules/dns.sh 1.1, modules/Makefile 1.2:
	Preliminary dns support.

	* Makefile 1.54, Makefile.vars 1.3:
	Changed some dirs around, thanks to Gergely Nagy.

2000-08-20  Adam Heath  <doogie@debian.org>

	* utils/shelldoc 1.3: Fix typo in the comments.

	* utils/shelldoc 1.2:
	If there is no data in the file, print out the filename to stderr.

2000-07-07  Joey Hess  <joey@kitenet.net>

	* ';perl 1.2:
	Testing complete. Sorry for the inconvenience..

	* ';perl 1.1:
	testing possible cvsweb trouble. Will inform sourceforge admins of result -- Joey@valinux.com

	* ';perl 1.1: *** empty log message ***

2000-02-15  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.79:
	Don't quote $orgargs, so that set -- works correctly.

	* modules/serialize.sh 1.12:
	Add the 'q' flag when saving variables.

	* shoop.sh 1.78: Enclose $@ in "".

2000-02-13  Adam Heath  <doogie@debian.org>

	* Makefile 1.53:
	Create www/modules.html, docs/modules.txt, and docs/modules.html, from
	docs/modules.pod.

	* Makefile 1.52, utils/mkChangeLog 1.1:
	Use an external script to make the ChangeLog.

	* modules/also_inherit.sh 1.6, modules/destroy.sh 1.10, modules/final.sh 1.9, modules/introspect.sh 1.20, modules/prettyprint.sh 1.7, modules/serialize.sh 1.11, modules/www.sh 1.2:
	Commenting and adding perldoc stuff.

	* Makefile 1.51, Makefile.rules 1.3, Makefile.vars 1.2:
	Move clean target to Makefile.rules.  Create docs/modules.pod instead of
	docs/modules.txt.

2000-02-12  Adam Heath  <doogie@debian.org>

	* t/inheritance.sh 1.16: s/\t/ /

	* Makefile 1.50:
	Oops.  shelldoc wants argv[0] to be the title.

	* Makefile 1.49, Makefile.rules 1.2:
	Re-add support for building docs/modules from the embedded perldoc.

	* modules/apt.sh 1.1:
	An object that can talk to the transfer modules from apt.

	* shoop.sh 1.77:
	Properly fix the bad return code from unset.

	* modules/www.sh 1.1:
	Simplistic wrapper around wget, for fetching files.  Also a simple method
	for checking to see if an html file was completed(see the source).

	* modules/Makefile 1.1, docs/Makefile 1.1, Makefile 1.48, Makefile.rules 1.1, Makefile.vars 1.1:
	Modularized the make system.  The subdirs have simple makefiles now.

	* t/benchmark 1.7: Removed an extra line.

	* shoop.sh 1.76:
	Unset returns false if a variable is not defined, and you try to unset it.

	* TODO 1.7: Everything done. 

2000-02-08  Adam Heath  <doogie@debian.org>

	* t/benchmark 1.6, t/benchmark.bm 1.5:
	Allow benchmark scripts to override the iteration count.

	* t/benchmark.bm 1.4:
	Use ITERATIONS instead of count.

	* example.sh 1.29: Added prettyprint.

	* t/inheritance.sh 1.15, t/regress 1.11:
	Add the ability to give a symbolic name to a test.

	* Makefile 1.47:
	Auto-create docs/modules.txt from the embedded shelldoc in each module.

	* COPYING 1.2, docs/README 1.26, modules/also_inherit.sh 1.5, modules/destroy.sh 1.9, modules/final.sh 1.8, modules/introspect.sh 1.19, modules/prettyprint.sh 1.6, modules/rules_debian.sh 1.3, modules/serialize.sh 1.10, modules/thread.sh 1.5, modules/use.sh 1.9, shoop.sh 1.75, t/benchmark 1.5, utils/shelldoc 1.1, utils/shell-stripper 1.5:
	Changed license to LGPL, and added preliminary inline document support.

	* docs/shoop.txt 1.2:
	Document the new p assignment operator.

2000-02-07  Adam Heath  <doogie@debian.org>

	* t/regress 1.10:
	Correctly handle spaces in arguments when passed to ok().

	* shoop.sh 1.74:
	Don't need to curly-escape positional parameters.

	* shoop.sh 1.73:
	Clear the entire cache when creating an object.  Added an extensive comment
	block saying why we clear the entire thing, instead of trying to do it
	selectively.

2000-02-06  Adam Heath  <doogie@debian.org>

	* modules/destroy.sh 1.8, modules/final.sh 1.7, modules/prettyprint.sh 1.5, modules/serialize.sh 1.9:
	Define the method final instead of finalize.  Modified comments and code
	in all introspection type files to be consistent.  Added copyright to
	final.sh.

	* modules/introspect.sh 1.18:
	Minor speed up, and a few comment tweaks.  Removes 5 lines of code.

	* Makefile 1.46:
	The BINS and MODULES install targets now depend on shell-stripper.

	* modules/destroy.sh 1.7, modules/final.sh 1.6, modules/introspect.sh 1.17, modules/prettyprint.sh 1.4, modules/serialize.sh 1.8, modules/thread.sh 1.4, modules/use.sh 1.8, shoop.sh 1.72:
	Add support for declare methods and variables that are private, and are
	invisible to introspection.  Append 'p' to the '=' or ':'.

	* debian/rules 1.2:
	Converted over to using DEBIAN object, instead of just making everything
	part of the base OBJECT.

	* t/benchmark 1.4, modules/also_inherit.sh 1.4, modules/rules_debian.sh 1.2:
	Added brief intros and copyrights to files.

	* modules/also_inherit.sh 1.3, modules/final.sh 1.5, modules/introspect.sh 1.16, modules/prettyprint.sh 1.3, modules/serialize.sh 1.7, modules/thread.sh 1.3, modules/use.sh 1.7, shoop.sh 1.71:
	Remove extraneous ';', as they detract from the code.

	* Makefile 1.45:
	Don't install everything when just running tests or benchmarks.

	* t/benchmark 1.3: Remove tmp file on ctrl-c.

	* t/inheritance.sh 1.14, example.sh 1.28, shoop.sh 1.70:
	You no longer need to pass in the current method when calling super.  It
	knows automagically. :)

	* t/regress 1.9:
	Add quotes (`') around expected and actual output.

	* modules/also_inherit.sh 1.2:
	Got a 7.5% speedup.  Still takes longer than I want.

	* utils/shell-stripper 1.4:
	If a line ends with ';', combine it with the next line.

	* shoop.sh 1.69:
	Move the comments back inside the cache clearing code.  They are removed
	upon installation, and benchmarking and testing is done inside a tmp
	install dir.

	* shoop.sh 1.68:
	Fix the appending assigns, and a small speedup on the cache clearing code.

2000-02-03  Adam Heath  <doogie@debian.org>

	* docs/shoop.txt 1.1:
	An attempt at some formatted docs, with a little more detail.

	* modules/rules_debian.sh 1.1, debian/rules 1.1:
	Yes, you read correctly.  An early implementation of a rules file in shoop.

	* utils/shell-stripper 1.3:
	Output the comment only after an initial #!, but before anything else.

	* Makefile 1.44:
	Modified to run tests in a tmp install dir, the same way that benchmarks
	are done.

	* t/inheritance.sh 1.13:
	Disable parent loop tests for now, until the fix has been better tested.
	Use environment vars to get location of shoop.sh and its modules, so that
	testing can be done in a tmp install dir.

	* Makefile 1.43, modules/also_inherit.sh 1.1, t/benchmark.bm 1.3:
	Add new module also_inherit, which walks the parent tree, looking for loops.
	This is currently not fully integrated with the system, and is just an
	addon module, that doesn't do anything.  Also added a benchmark for it.

	* t/benchmark 1.2: Tweak the formatting.

	* www/index.php 1.20:
	Remove <tr> and </tr>, so it looks just a teeny bit better.

	* shoop.sh 1.67:
	Add assignment modifiers '.' and 'q'.  Document comming in a bit.

2000-02-02  Adam Heath  <doogie@debian.org>

	* www/index.php 1.19:
	Basically duplicated a lot of the project page, to see what it would look
	like.

	* www/index.php 1.18:
	An actual update to the contents.

	* www/index.php 1.17: foo?

	* www/index.php 1.16:
	I hope to god this is the final checkin.

	* www/index.php 1.15: cvs is no spring picnic.

	* www/index.php 1.14: shazzam!

	* www/index.php 1.13: doobie doobie doo

	* www/index.php 1.12: I think it works.

	* www/index.php 1.11: another test

	* www/index.php 1.10: grr

	* www/index.php 1.9: test

	* www/index.php 1.8: testing still

	* www/index.php 1.7:
	I will get this right sometime.

	* www/index.php 1.6: Yet another test.

	* www/index.php 1.5: More cvspulse testing.

	* www/index.php 1.4:
	Removed some embedded comments.  Mostly this is just a test of the cvspulse
	script.

	* www/update 1.13:
	Echo a message, and the date, when cvspulsing(which will be seen in cvs),
	and have the logic spawn itself into the background, so cvs can continue.

	* www/update 1.12:
	Echo the date when updating from cvs, which will then show up in the log.

	* www/update 1.11:
	Redirect stderr on lockfile(s) to /dev/null.  Append a log of the session
	data to /home/groups/shoop/cvspulse.log.  Also, the script appears to work
	now.  Just have to enable it.

	* www/update 1.10: alias rf="rm -rf" 

	* www/update 1.9: Ah ha! found the little bugger.

	* www/update 1.8:
	Last checkin fixed the wrong line. :|

	* www/update 1.7: Remove the right lockfile. 

	* www/update 1.6: I hate shell parsers.

	* www/update 1.5: Can't have a null if block.

	* www/update 1.4:
	damn, don't edit when you're tired.

	* www/update 1.3: syntax error

	* www/update 1.2:
	Added 'cvspulse' command to script, which should do appropriate locking,
	even including handling multiple pulses comming in rapid fire succession,
	and making sure all updates are fetched to the website.

	* www/update 1.1:
	Putting this in cvs, so it is easier to manage.

	* shoop.sh 1.66:
	Added new assignment operator, '=q', which will not echo the value of the
	assignment.

2000-02-01  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.65:
	Add partial clearing of cache's.  Does NOT clear the cache at ALL when an
	object is created or destroy.  This MUST be fixed before release.

	* t/inheritance.sh 1.12: Fix typo in comment.

	* TODO 1.6: New critical TODO item.

2000-02-01  Joey Hess  <joey@kitenet.net>

	* t/inheritance.sh 1.11: Added tests

2000-02-01  Adam Heath  <doogie@debian.org>

	* www/index.php 1.3:
	Modified a few links.  no text changes.

2000-01-31  Adam Heath  <doogie@debian.org>

	* modules/destroy.sh 1.6:
	Clear the cache when destroying an object.  Could be made more efficient,
	and I haven't verified if this works(altho it should)

	* www/index.php 1.2:
	Changed the default messages(still has the same graphics and layout)

	* www/index.php 1.1: initial checkin

	* Makefile 1.42: Improve the formatting a bit.

	* TODO 1.5:
	Only clear part of the cache now(Another item done!)

	* t/benchmark.bm 1.2:
	Added 2 more benchmarks to test setting and keeping cache.

	* utils/shell-stripper 1.2:
	Remove spurious next at end of script.  Add note to parsed data that the
	script has been munged.

	* TODO 1.4: 1 item done.

	* Makefile 1.41: Removed @ from the makefile.

	* Makefile 1.40:
	Use perl script shell-stripper to clean when installing.  Also some
	formatting changes.

	* utils/shell-stripper 1.1:
	This is a perl script that can strip uneeded characters from a shell script,
	so that certain shells(bash!) can run it faster.

2000-01-30  Adam Heath  <doogie@debian.org>

	* Makefile 1.39, t/benchmark 1.1, t/benchmark.bm 1.1:
	Removed the benchmark code from the makefile, and created a benchmarking
	framework.

	* Makefile 1.38:
	Fix removing of the benchmark install directory, and add an echo to clean.

	* example.sh 1.27:
	Add comment about an intended error.

	* modules/destroy.sh 1.5, shoop.sh 1.64:
	Added a cache to the resolver.  Slowed down the 1st stage by 2.4%, but
	speed up the 2nd-stage by 71%!.  In general practice, more time will be
	spent in the 2nd-stage, so this is a huge win.

	The whole cache is blown away when a new object is created, destroyed, or
	a new method/variable is added.

	* Makefile 1.37:
	Benchmark now installs the files in a tmp dir, before running.  If the
	variable NOISY isn't set, put the makefile into SILENT mode.  Added new
	benchmarks: 2nd-stage(nocache) resolver, and multi-inheritance(nocache)
	resolver.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* t/inheritance.sh 1.10, t/regress 1.8:
	More regression tests, reformatted summary.

	* t/regress 1.7: test summary

	* t/inheritance.sh 1.9, t/regress 1.6:
	* Regress can act on multiple scripts now.:
	* Added more regression tests.:

	* Makefile 1.36: Simplified calling of regress

	* t/regress 1.5: prettified output

2000-01-29  Adam Heath  <doogie@debian.org>

	* Makefile 1.35:
	Fixed spacing on introspection test.  Added new target, benchmark-install,
	which installs shoop into a tmp dir, then benchmarks it from there.  The
	installed scripts have blank lines and comment lines removed, as this speeds
	them up.

	* shoop.sh 1.63: Wrote some comments.

	* Makefile 1.34:
	Fix blank line stripping during install.

	* Makefile 1.33:
	Fix benchmarks, and remove blank lines from shoop when installing.

	* Makefile 1.32: Remove the generated ChangeLog

	* docs/AUTHORS 1.1:
	Table of cvs names to real names and email address.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* t/regress 1.4: redundancies

2000-01-29  Adam Heath  <doogie@debian.org>

	* Makefile 1.31:
	Added tests "internal function set," "method set," and "multi-inheritance
	resolver."  Defined all tests as variables, so it is easier to selectively
	enable and disable them.  Added NOBASH and NOASH variables, that when set
	to one, disable that shell from being used in the test.

	* shoop.sh 1.62:
	Optimized the hell out of the 2nd stage.  Got an 8% speed up in it, with
	no noticeable change in the 1st stage, at the cost of only 2 lines of code!

2000-01-29  Joey Hess  <joey@kitenet.net>

	* t/inheritance.sh 1.8: oops, no bug. My fault.

	* t/inheritance.sh 1.7: corrected test count

	* t/inheritance.sh 1.6, shoop.sh 1.61:
	added tests. Found a bug.

	* Makefile 1.30: Regression tests.

	* t/inheritance.sh 1.5, t/regress 1.3:
	Can now check return codes.

2000-01-29  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.60:
	Fastpath some returns, and remove the method doesn't return warning msg.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* Makefile 1.29: added regression tests.

	* t/inheritance.sh 1.4, t/regress 1.2:
	Testing code works now.

2000-01-29  Adam Heath  <doogie@debian.org>

	* example.sh 1.26, modules/final.sh 1.4, modules/introspect.sh 1.15, modules/serialize.sh 1.6, modules/use.sh 1.6, shoop.sh 1.59:
	Add 'returns' to all defined object methods.

	* shoop.sh 1.58:
	Use $THIS in method returnation warning.

	* shoop.sh 1.57:
	If a defined method doesn't have a return statement at its end, print a
	warning.

	* modules/use.sh 1.5:
	Save the value of $THIS . usepath in a local variable.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* t/inheritance.sh 1.3: kill that

	* t/inheritance.sh 1.2, t/testlib.sh 1.2:
	Use new regress

	* t/regress 1.1:
	complete rewrite, and file rename.

	* t/inheritance.sh 1.1, t/testlib.sh 1.1:
	Added regression test framework.

2000-01-29  Adam Heath  <doogie@debian.org>

	* Makefile 1.28:
	Enabled all the benchmarks.  Added author only makefile targets.

	* shoop.sh 1.56: Remove stale code.

	* Makefile 1.27: Install the examples.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* Makefile 1.26: more indentation

	* Makefile 1.25: help message update

	* Makefile 1.24:
	minor indentations and reorganizations

2000-01-29  Adam Heath  <doogie@debian.org>

	* Makefile 1.23: Added install targets.

	* TODO 1.3: Indentation and a new entry.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* docs/README 1.25: additions

2000-01-29  Adam Heath  <doogie@debian.org>

	* docs/README 1.24:
	Indentation and spelling fixes.

	* shoop.sh 1.55:
	Set OBJECT's parent to '', to avoid a warning during resolve.

	* shoop.sh 1.54:
	Various fixes, and a 1 line 25% speedup.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* docs/README 1.23: Minor changes.

	* docs/MODULES 1.4, modules/thread.sh 1.2:
	them ain't real threads
	(added header)

	* TODO 1.2: added

	* docs/README 1.22, shoop.sh 1.53:
	Random twiddles.

2000-01-29  Adam Heath  <doogie@debian.org>

	* example.sh 1.25: Typo.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* modules/destroy.sh 1.4: killed unnecessary eval

2000-01-29  Adam Heath  <doogie@debian.org>

	* docs/MODULES 1.3, example.sh 1.24, modules/thread.sh 1.1:
	Implemented simplistic threading support.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* Makefile 1.22: line up colons

	* Makefile 1.21:
	benchmark bash and ash, they can be quite different.

2000-01-29  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.52:
	Removed _shoopgetparent, and used a non-recursive version to get the
	method.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* shoop.sh 1.51: killed line

	* docs/CONTRIBUTING 1.9, docs/MODULES 1.2, docs/README 1.21:
	Swapped MODULES and CONTRIBUTING filenames.
	We'd the README

	* docs/README 1.20: ash rules!

	* Makefile 1.20: clean cvs trash

	* shoop.sh 1.50: killed old variables.
	indentation fix.

	* Makefile 1.19: typo

	* Makefile 1.18:
	Made it a bit clearer how benchmarks are disabled.
	Don't need that variable anymore.

	* shoop.sh 1.49: typo

	* shoop.sh 1.48: no changes, really. Ignore me 

2000-01-29  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.47:
	Minor fix for parent retrieval code.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* TODO 1.1: added

2000-01-29  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.46:
	Change local variable _shoopresolve_parent_echo_ with s/echo/seen/.

	* shoop.sh 1.45:
	More lines removed, and still a little bit faster.

	* shoop.sh 1.44:
	Local variables are inherited by subfunctions.  Now we don't have to
	remember what to unset.  Nice speedup.

	* modules/use.sh 1.4:
	Add a variable 'usepath' to OBJECT, which use will look for external
	modules in.  The default value for this is '$SHOOPPATH:.'

	* shoop.sh 1.43: Class resolver overhaul.
	  * Speed up the single level inheritance by 10-20%.
	  * Fix the multi-level inheritance.
	    * This multi-level resolver is close to O(n) in performance, where n is
	      the total number of classes inherited from that are beyond the single
	      layer.

	* Makefile 1.17: Disable some benchmarks.

	* example.sh 1.23:
	Test double inheritance, and unresolved symbols.

	* Makefile 1.16: Fix unterminated function.

	* Makefile 1.15:
	Add resolver benchmarks, and format the makefile.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* example.sh 1.22, Makefile 1.14, modules/use.sh 1.3:
	Lots of unimportant changes.

	* docs/CONTRIBUTING 1.8, docs/MODULES 1.1, docs/README 1.19:
	Broke up MODULES and CONTRIBUTING

	* Makefile 1.13: clean

	* modules/destroy.sh 1.3, modules/introspect.sh 1.14, modules/use.sh 1.2:
	Lots of fixes to comments.

	* example.sh 1.21, modules/destroy.sh 1.2:
	fixed destroy

	* example.sh 1.20:
	Demo serializing, destroying, and loading an object

	* docs/CONTRIBUTING 1.7, example.sh 1.19, modules/destroy.sh 1.1:
	Added destroy.sh

2000-01-29  Adam Heath  <doogie@debian.org>

	* modules/serialize.sh 1.5:
	Add object creation to the output.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* docs/CONTRIBUTING 1.6: reword

2000-01-29  Adam Heath  <doogie@debian.org>

	* docs/CONTRIBUTING 1.5, example.sh 1.18, modules/use.sh 1.1:
	Add a 'OBJECT . use foo bar baz', which will import foo.sh, bar.sh, and
	baz.sh.  It makes sure that each module is only imported once.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* modules/prettyprint.sh 1.2:
	Redid comment header.

	* docs/README 1.18: added stuff

	* shoop.sh 1.42: IFS trick

2000-01-29  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.41:
	Fix spurious '"parent" is undefined for OBJECT.' messages.

	* docs/CONTRIBUTING 1.4: Add prettyprint.sh

	* modules/introspect.sh 1.13, modules/prettyprint.sh 1.1:
	Renamed introspect.sh to prettyprint.sh.  introspect.sh is now the old,
	quicker to parse version.  prettyprint.sh is the java/c++ version.

	* example.sh 1.17, modules/final.sh 1.3, modules/introspect.sh 1.12, modules/serialize.sh 1.4:
	Can serialize finalized variable/methods now.  Also, the serialized output
	of methods retains the original formatting.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* docs/CONTRIBUTING 1.3, modules/serialize.sh 1.3:
	redid comment

	* docs/README 1.17, example.sh 1.16, Makefile 1.12, modules/final.sh 1.2, modules/introspect.sh 1.11, modules/serialize.sh 1.2, shoop.sh 1.40:
	Renamed BASE to OBJECT

2000-01-29  Adam Heath  <doogie@debian.org>

	* modules/introspect.sh 1.10:
	Made the output look more like a c++/java file.  This is easier to read.

	* modules/serialize.sh 1.1:
	Outputs code, that if run, will reconstruct the object.  ie,

	FOO . serialize > FOO.sh;
	./FOO.sh

	* shoop.sh 1.39: Removed blank line.

	* example.sh 1.15:
	Made the output look more like a c++/java file.  This is easier to read.

2000-01-29  Joey Hess  <joey@kitenet.net>

	* docs/CONTRIBUTING 1.2, docs/README 1.16, example.sh 1.14, modules/final.sh 1.1, shoop.sh 1.38:
	Broke finalization out into a module.

	* shoop.sh 1.37: Sped up sets just a touch.

	* example.sh 1.13, Makefile 1.11:
	* Removed introspect get/call benchmarks, since the code path is now identical.:
	* Don't test finalization in example.sh:

	* example.sh 1.12, shoop.sh 1.36:
	readonly fixes

	* example.sh 1.11, modules/introspect.sh 1.9, shoop.sh 1.35:
	* Changed _shoop_THIS to THIS; it is not an internal variable.:
	* With the readonly shell builtin, we can automate final variables.:
	  Converted over to always storing methods as variables too, so they can also
	  be handled with readonly. This cuts a lot of code, and speeds things up
	  all over.

2000-01-29  Adam Heath  <doogie@debian.org>

	* example.sh 1.10, modules/introspect.sh 1.8, shoop.sh 1.34:
	Added a proper _shoop_THIS parameter.

	* shoop.sh 1.33:
	Fix the 2nd loop in the multiple inheritance resolver.

2000-01-28  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.32:
	Only set the parent if the parent isn't equal to the current object.

	* docs/README 1.15:
	More precise docs on final methods/variables.

	* shoop.sh 1.31:
	Provide slow/fast paths for variable/method setting/getting.  Slow is
	turned on when introspection is enabled.

	* shoop.sh 1.30:
	Use _shoop to define the initial base object, instead of calling the _new_
	function directly.

	* shoop.sh 1.29:
	Make the undefined error message more informative.

	* Makefile 1.10: Benchmark introspect code paths.

2000-01-28  Joey Hess  <joey@kitenet.net>

	* docs/README 1.14: reword

	* shoop.sh 1.28: indentation changes.

	* docs/README 1.13: reword

	* docs/README 1.12, shoop.sh 1.27:
	Minor changes.

2000-01-28  Adam Heath  <doogie@debian.org>

	* shoop.sh 1.26:
	Oops.  Last checking wasn't quite correct.

	* shoop.sh 1.25: Correctly define BASE . new.

	* docs/README 1.11, shoop.sh 1.24:
	Add 'final' attribute to properties and methods.  Also some slight tweaks
	that should save parsing time for the shell.

2000-01-28  Joey Hess  <joey@kitenet.net>

	* shoop.sh 1.23: minor

	* docs/README 1.10: update

	* docs/README 1.9, example.sh 1.9, shoop.sh 1.22:
	super works

	* docs/README 1.8, example.sh 1.8, shoop.sh 1.21:
	Super added, but it doesn't work yet.

	* docs/README 1.7, shoop.sh 1.20:
	whatever.

2000-01-27  Joey Hess  <joey@kitenet.net>

	* example.sh 1.7, shoop.sh 1.19:
	Trimmed a few more lines.

	* example.sh 1.6, modules/introspect.sh 1.7, shoop.sh 1.18:
	did away with the parent method, simplified other code, echo newlins as
	needed in example.sh

	* modules/introspect.sh 1.6: minor

	* example.sh 1.5, modules/introspect.sh 1.5, shoop.sh 1.17:
	Only keep track of introspection data when it is going to be used, for a
	reasonable performance and memory savings.

	* example.sh 1.4, Makefile 1.9:
	minor changes

	* Makefile 1.8:
	benchmark shell's internal commands, for comparison.

	* example.sh 1.3, Makefile 1.7:
	Um er.

	* example.sh 1.2, Makefile 1.6:
	* Added exmaple target.:
	* Markers.:

	* modules/introspect.sh 1.4: indented

	* docs/CONTRIBUTING 1.1: added

	* COPYING 1.1: Added.

	* Makefile 1.5: dumbified

	* Makefile 1.4: typo

	* Makefile 1.3: line wrap

	* Makefile 1.2: doogie-ified Makefile

	* shoop.sh 1.16:
	* Killed property as variable code; it slowed down method calls to much.:
	* echo -n property values, doogie says otherwise there will be extra whitespace.:

	* Makefile 1.1: Added.

	* modules/introspect.sh 1.3:
	Patch from doogie, to fix it.

	* shoop.sh 1.15: fix from doogie

	* shoop.sh 1.14: Bugfix from doogie.

	* example.sh 1.1, shoop.example.sh 1.4:
	file rename

	* docs/README 1.6, shoop.sh 1.13:
	spellcheck, multiple inheritence docs

	* modules/introspect.sh 1.2, shoop.sh 1.12:
	email fix, eval consolidating.

	* modules/introspect.sh 1.1, shoop.example.sh 1.3, shoop.sh 1.11:
	Split out introspect.

	* shoop.sh 1.10: not cruft after all.

	* shoop.sh 1.9: Removed cruft.

	* shoop.sh 1.8: Make new object differently.
	Handle methods that cannot end in ;

	* shoop.sh 1.7:
	alternate code path to benchmark later

	* shoop.sh 1.6:
	Code reduction, bugfixes, speedups.

	* shoop.sh 1.5: speedups

	* docs/README 1.5, shoop.example.sh 1.2, shoop.sh 1.4:
	Mods from doogie: introspection, multiple inheritance, better knowledge
	about when methods are not defined, and a big slowdown, which is being
	corrected.

	* docs/README 1.4, shoop.sh 1.3:
	added email

	* docs/README 1.3: typo

	* docs/README 1.2: oops

	* docs/README 1.1: Added

	* shoop.sh 1.2: sheesh, you guys. Pick-y.

	* BAR.shobj 1.2, FOO.shobj 1.2, oosh.sh 1.2, shoop.example.sh 1.1, shoop.sh 1.1:
	Reworked.

	* BAR.shobj 1.1, FOO.shobj 1.1, oosh.sh 1.1:
	Added. Crazy. :-)