-
Notifications
You must be signed in to change notification settings - Fork 54
/
95.whatsnew.html
1893 lines (1648 loc) · 43.8 KB
/
95.whatsnew.html
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
<html>
<head>
<title>What's New - 1995</title>
<map name="toplevel">
<area shape="RECT" coords="0,0,99,23" href="/lurk/universe/intro.html" alt="Universe">
<area shape="RECT" coords="100,0,199,23" href="/lurk/episodes.php" alt="Episodes">
<area shape="RECT" coords="200,0,299,23" href="/lurk/making/creators.html" alt="People">
<area shape="RECT" coords="300,0,399,23" href="/lurk/resources/online.html" alt="Resources">
<area shape="RECT" coords="400,0,499,23" href="/lurk/reference/episodes.html" alt="Encyclopedia">
<area shape="RECT" coords="0,24,499,31" nohref>
</map>
<map name="titlebar">
<area shape="RECT" coords="0,0,370,31" href="/lurk/lurker.html" alt="Home">
<area shape="RECT" coords="371,0,412,31" href="/lurk/search.html" alt="Find">
<area shape="RECT" coords="413,0,454,31" href="/lurk/toc.html" alt="Index">
<area shape="RECT" coords="455,0,499,31" href="/lurk/help.html" alt="Help">
</map>
<link rel=parent href="whatsnew.html">
<link rev=made href="mailto:[email protected]">
</head>
<body>
<p align=center nowrap><nobr><img
align=middle border=0 usemap="#titlebar"
src="/lurk/nav/titlebar.gif" width=500 height=32
alt="[Home]">
<br><img
align=top border=0 usemap="#toplevel"
src="/lurk/nav/bar-none.gif" width=500 height=24
alt="">
</nobr>
<h1 align=center>What was New - 1995</h1>
<dl>
<p>
<dt>December 22, 1995
<dd>
Much delayed by my lack of time, a
<a href="synops/048.html">synopsis</a>
of
<a href="guide/048.html">"Passing Through Gethsemane"</a>
is online.
<p>
<dt>December 14, 1995
<dd>
A
<a href="/lurk/ftp/Prodigy/951211-bruce">transcript</a>
of a December 11 Prodigy chat session with Bruce Boxleitner is
available.
<p>
<dt>December 12, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/048">results</a>
for
<a href="/lurk/guide/048.html">"Passing Through Gethsemane"</a>
are available.
<p>
<dt>December 10, 1995
<dd>
JMS's messages from
<a href="/lurk/ftp/America-Online/">America Online</a>
are now being archived (see the file "latest" for the current month's
messages.) They are also searchable via the
<a href="/lurk/search.html">Find</a>
page.
<p>
The
<a href="/lurk/ftp/History.Babylonia.html">history of Babylonia</a>
file has been HTMLified. Thanks to Hallvard B Furuseth.
<p>
Switched to the table-based Newsflash section on the home page.
The vast majority of responses were positive; the only complaints came
from users of NCSA Mosaic for X, which has had extremely broken table
support recently. However, such users can upgrade to the latest beta
release of Mosaic, which should make the Newsflash section readable.
Users of non-table-enabled browsers probably won't notice any
difference.
<p>
The
<a href="credits/041.html">onscreen credits</a>
for
<a href="guide/041.html">"Divided Loyalties"</a>
are online. Thanks to Dan Dassow.
<p>
<dt>December 7, 1995
<dd>
The flow of
<a href="/lurk/ftp/CompuServe/">JMS CompuServe messages</a>
should be back up to speed now.
<p>
<dt>December 6, 1995
<dd>
Some episode pages have been shuffled around in the past couple days.
If you select an episode and get a different episode's page, use
your browser's reload function and you should get the right page.
<p>
I'm considering a slight format change to the Newsflash section on
the home page. Have a look at the
<a href="lurker2.html">alternate version</a>
and let me know if you object. I know some people are pretty
religious about not using tables for formatting, but this <em>is</em>
tabular information. In particular I want to know if it breaks
anyone's browser; I believe I've structured it such that it'll look
fine on browsers without table support. (No need to tell me it works
in Netscape.) If you're using Mosaic for X, you might want to upgrade
to the latest beta release, which doesn't break horribly on tables like
the most recent previous releases have.
<p>
<dt>December 5, 1995
<dd>
A list of
<a href="universe/appearances-3.html">character appearances</a>
for the first part of season three is available.
<p>
The
<a href="credits/048.html">onscreen credits</a>
for
<a href="guide/048.html">"Passing Through Gethsemane"</a>
are online.
<p>
<dt>December 4, 1995
<dd>
A transcript of a
<a href="/lurk/ftp/CompuServe/jms-95-12-02">real-time chat session</a>
with JMS on CompuServe on December 2 is available.
<p>
<dt>November 29, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ</a>
is online.
<p>
A
<a href="synops/047.html">synopsis</a>
of
<a href="guide/047.html">"A Day In the Strife"</a>
is online.
<p>
<dt>November 28, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/047">results</a>
for
<a href="/lurk/guide/047.html">"A Day in the Strife"</a>
are available.
<p>
<dt>November 27, 1995
<dd>
A new version of the
<a href="/lurk/ftp/b5tvaddresses.txt">TV station address list</a>
is online.
<p>
The
<a href="credits/047.html">onscreen credits</a>
for
<a href="guide/047.html">"A Day In the Strife"</a>
are online.
<p>
<dt>November 23, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/046">results</a>
for
<a href="/lurk/guide/046.html">"Convictions"</a>
are available.
<p>
<dt>November 21, 1995
<dd>
The onscreen credits are now searchable via the
<a href="/lurk/search.html">Find</a>
page.
<p>
The
<a href="credits/046.html">onscreen credits</a>
for
<a href="guide/046.html">"Convictions"</a>
are online.
<p>
A new version of the
<a href="/lurk/ftp/b5tvaddresses.txt">TV station address list</a>
is online.
<p>
<dt>November 18, 1995
<dd>
New versions of the science-fiction television
<a href="/ftp/pub/TV/sftv-sched">schedule</a>
and
<a href="/ftp/pub/TV/sftv-titles">titles</a>
files are online.
<p>
A full
<a href="synops/046.html">synopsis</a>
of
<a href="guide/046.html">"Convictions"</a>
is online.
<p>
<dt>November 16, 1995
<dd>
The
<a href="synops/042.html">synopsis</a>
of
<a href="guide/042.html">"The Long, Twilight Struggle"</a>
is illustrated.
<p>
<dt>November 15, 1995
<dd>
The
<a href="synops/041.html">synopsis</a>
of
<a href="guide/041.html">"Divided Loyalties"</a>
is illustrated.
<p>
<dt>November 13, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/045">results</a>
for
<a href="/lurk/guide/045.html">"Matters of Honor"</a>
are available.
<p>
The
<a href="credits/045.html">onscreen credits</a>
for
<a href="guide/045.html">"Matters of Honor"</a>
are online.
<p>
The
<a href="synops/044.html">synopsis</a>
of
<a href="guide/044.html">"The Fall of Night"</a>
is illustrated. Other recent episodes will follow shortly.
<p>
A new version of the
<a href="/lurk/ftp/b5tvaddresses.txt">TV station address list</a>
is online.
<p>
A full
<a href="synops/045.html">synopsis</a>
of
<a href="guide/045.html">"Matters of Honor"</a>
is online.
<p>
<dt>November 10, 1995
<dd>
A new version of the
<a href="/lurk/ftp/b5faq-german">German B5 FAQ</a>
is online. See also the
<a href="http://www.uni-muenster.de/WiWi/home/teschne/faqindex.htm">hypertext</a>
version.
<p>
<dt>November 9, 1995
<dd>
A schedule for
<a href="countries/hk/episodes.php">Hong Kong</a>
is online.
<p>
The listing of past reruns has been removed from the
<a href="countries/us/episodes.php">US/Canada episode list</a>
and moved to a new
<a href="countries/us/old.html">historical schedule</a>
page. That should cut down on loading time for the regular episode
list.
<p>
<dt>November 7, 1995
<dd>
The
<a href="credits/044.html">onscreen credits</a>
for
<a href="guide/044.html">"The Fall of Night"</a>
are online.
<p>
<dt>November 6, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/044">results</a>
for
<a href="/lurk/guide/044.html">"The Fall of Night"</a>
are available.
<p>
A new version of the
<a href="/lurk/ftp/b5tvaddresses.txt">TV station address list</a>
is online.
<p>
New copies of the
<a href="/lurk/ftp/chronology-spoiled.txt">spoiler</a>
and
<a href="/lurk/ftp/chronology.txt">non-spoiler</a>
chronology files are online.
<p>
<dt>November 5, 1995
<dd>
A batch of
<a href="/lurk/ftp/GEnie/">JMS GEnie messages</a>
from September and October (mostly October) is online. If
any GEnie users out there have been saving JMS' messages, please
let me know; the archive is missing a lot of them.
<p>
<dt>November 4, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ</a>
is online.
<p>
<dt>October 30, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/043">results</a>
for
<a href="/lurk/guide/043.html">"Comes the Inquisitor"</a>
are available.
<p>
The
<a href="credits/043.html">onscreen credits</a>
for
<a href="guide/043.html">"Comes the Inquisitor"</a>
are online.
<p>
<dt>October 29, 1995
<dd>
The Background pages for most of the season-two episodes now contain
a more concise summary of season one. Thanks to Katrina Glerum
<p>
<dt>October 28, 1995
<dd>
The
<a href="credits/042.html">onscreen credits</a>
for
<a href="guide/042.html">"The Long, Twilight Struggle"</a>
have been transcribed.
<p>
<dt>October 27, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ</a>
is online.
<p>
<dt>October 26, 1995
<dd>
A <a href="/lurk/ftp/America-Online/jms-bruce-2.txt">transcript</a>
of the Oct. 25 America Online chat session with Bruce Boxleitner and
JMS is available.
<p>
Hyperion's Web server has been upgraded; problems with hung connections
ought to be cleared up as a result. Let me know if you have problems.
<p>
<dt>October 24, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/042">results</a>
for
<a href="/lurk/guide/042.html">"The Long, Twilight Struggle"</a>
are available.
<p>
<dt>October 20, 1995
<dd>
The last several months' worth of
<a href="/lurk/ftp/CompuServe/index.html">JMS CompuServe messages</a>
are now searchable via the
<a href="/lurk/search.html">Find page.</a>
Earlier messages won't be indexed for a while since they're stored
in the archive in a different format.
<p>
<dt>October 19, 1995
<dd>
A new version of the
<a href="making/write-direct.html">writers/directors list</a>
has been installed. It uses tables, but is designed to look
nearly as good on browsers without any table support. (It breaks on
recent versions of NCSA Mosaic for X, which has severely buggy
tables.)
<p>
<dt>October 18, 1995
<dd>
The
<a href="nav/">Cache Loader</a>
page now exists. Visit it before you explore the Guide and you'll
preload most of the navigational images into your browser for faster
access. There's a link to it toward the bottom of the home page.
<p>
The Last Updated List is back in a much friendlier, more useful
form. See the link near the top of this page.
<p>
<dt>October 16, 1995
<dd>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/041">results</a>
for
<a href="/lurk/guide/041.html">"Divided Loyalties"</a>
are available.
<p>
A new version of the
<a href="/lurk/ftp/b5tvaddresses.txt">TV station address list</a>
is online.
<p>
New versions of the
<a href="/lurk/ftp/cast.txt">cast</a>
and
<a href="/lurk/ftp/character.txt">character</a>
lists are online.
<p>
<dt>October 14, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ</a>
is online.
<p>
A guide page for the third novel,
<a href="novels/003.html">"Blood Oath,"</a>
is available.
<p>
The guide page for comic #11,
<a href="comic/011.html">"The Psi Corps and You,"</a>
has been fleshed out.
<p>
<dt>October 8, 1995
<dd>
New versions of the sci-fi TV
<a href="/ftp/pub/TV/sftv-sched">schedule</a>
and
<a href="/ftp/pub/TV/sftv-titles">titles</a>
files are online.
<p>
<dt>October 7, 1995
<dd>
A new version of the
<a href="/lurk/ftp/b5tvlist.txt">station/airtime list</a>
is online. I have taken over maintaining the list; please send me
corrections and additions. The list is also now available via
the <a href="/lurk/reference/airtimes.shtml">Air Times</a> page
in the Reference section.
<p>
<dt>October 3, 1995
<dd>
A new version of the
<a href="/lurk/ftp/b5tvaddresses.txt">TV station address list</a>
is online.
<p>
<dt>September 25, 1995
<dd>
A new version of the
<a href="/lurk/ftp/soundtrack-index">soundtrack index</a>
is online.
<p>
<dt>September 22, 1995
<dd>
A
<a href="/lurk/ftp/Misc/doyle-rtc-950920">transcript</a>
of a real-time chat with Jerry Doyle and Richard Biggs on eWorld
is available.
<p>
<dt>September 18, 1995
<dd>
Fleshed out the guide page for the mercifully quick conclusion of the
current comic storyline,
<a href="comic/010.html">"Coda for Human and Narn in B Flat."</a>
<p>
<dt>September 15, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">FAQ List</a> is online.
<p>
<dt>September 11, 1995
<dd>
A new version of the
<a href="/lurk/ftp/soundtrack-index">soundtrack index</a>
is online.
<p>
<dt>September 6, 1995
<dd>
New versions of the
<a href="/lurk/ftp/chronology.txt">non-spoiler</a>
and
<a href="/lurk/ftp/chronology-spoiled.txt">spoiler</a>
B5 Chronologies are online.
<p>
<dt>September 3, 1995
<dd>
Matthew Murray's synopses for the final four episodes are online.
<dt>August 30, 1995
<dd>
Added a schedule page for
<a href="countries/nl/episodes.php">the Netherlands.</a>
<p>
<dt>August 21, 1995
<dd>
The full, spoiler-filled versions of the guide pages for
<a href="guide/043.html">"Comes the Inquisitor"</a>
and
<a href="guide/044.html">"The Fall of Night"</a>
are online here. Many thanks to Jason Snell for maintaining them
until now.
<p>
A new version of Edwin Yau's
<a href="/lurk/ftp/uk-guide/">UK episode guide</a>
is available on the FTP server. Presumably it contains major
spoilers for the final four episodes.
<p>
<dt>August 20, 1995
<dd>
Steven Orso
<a href="mailto:[email protected]"><[email protected]></a>
has scoured the JMS archives from top to bottom and come
up with hundreds of new items for the "jms speaks" sections of just
about all the episode-guide pages, especially first-season ones.
See them in the
<a href="episodes.php">Episodes</a>
section of the Guide.
<p>
The
<a href="other-sources.html">Other Resources</a>
page now has an extensive list of B5 articles in British magazines.
Thanks to Peter McQuillan.
<p>
<dt>August 16, 1995
<dd>
Jason Snell's
<a href="http://www.etext.org/Zines/InterText/jason/b5/044.html">spoiler
page</a> for <a href="guide/044.html">"The Fall of Night"</a> now
has a <a
href="http://www.etext.org/Zines/InterText/jason/b5/044synop.html">synopsis.</a>
<p>
A new version of the
<a href="misc/b5-appearances2.html">season two appearances chart</a>
is online.
<p>
<dt>August 13, 1995
<dd>
A separate schedule for
<a href="/lurk/countries/melbourne/episodes.php">Melbourne</a>
is available, since it doesn't match up with the schedule
in the rest of Australia.
<p>
<dt>August 12, 1995
<dd>
The
<a href="episodes.php">"The Episodes"</a>
link from the home page will now take you to the appropriate episode
list for your country, if your domain name indicates which country
you're connecting from. If you get the US/Canada episode list and
there's an active schedule page for your country, please
<a href="mailto:[email protected]">send me mail</a>
and I can update the guide to know where your particular domain is.
You can get to a list of countries from any schedule page.
<p>
<dt>August 10, 1995
<dd>
Jason Snell's
<a href="http://www.etext.org/Zines/InterText/jason/b5/043.html">spoiler
page</a> for <a href="guide/043.html">"Comes the Inquisitor"</a> now
has a <a
href="http://www.etext.org/Zines/InterText/jason/b5/043synop.html">synopsis.</a>
<p>
<dt>August 9, 1995
<dd>
Fleshed out the guide page for comic issue 9,
<a href="comic/009.html">"Duet for Human and Narn in C Sharp."</a>
<p>
<dt>August 8, 1995
<dd>
Jason Snell's spoiler pages for
<a href="guide/041.html">"Divided Loyalties"</a>
and
<a href="guide/042.html">"The Long, Twilight Struggle"</a>
are now online here. Please continue to send information about
the last two episodes to Jason.
<p>
<dt>August 7, 1995
<dd>
Season one has started again in
<a href="/lurk/countries/cr/episodes.php">Costa Rica.</a>
<p>
<dt>August 3, 1995
<dd>
A
<a href="/lurk/ftp/CompuServe/doyle-95-07-20">transcript</a>
of a July 20 real-time chat session with Jerry Doyle (Garibaldi) on
CompuServe is available.
<p>
Jason Snell's
<a href="http://www.etext.org/Zines/InterText/jason/b5/042.html">spoiler page</a>
for
<a href="guide/042.html">"The Long, Twilight Struggle"</a>
now has a
<a href="http://www.etext.org/Zines/InterText/jason/b5/042synop.html">synopsis.</a>
<p>
<dt>July 31, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">FAQ List</a> is online.
<p>
<dt>July 27, 1995
<dd>
A new version of
<a href="/~koreth/uncgi.html">Un-CGI</a>,
a utility to aid in the processing of HTML forms, is available.
<p>
<dt>July 26, 1995
<dd>
Jason Snell's
<a href="http://www.etext.org/Zines/InterText/jason/b5/041.html">spoiler page</a>
for
<a href="guide/041.html">"Divided Loyalties"</a>
now has a
<a href="http://www.etext.org/Zines/InterText/jason/b5/041synop.html">synopsis.</a>
For your convenience there's a link to that synopsis from the
Lurker's Guide as well.
<p>
<dt>July 24, 1995
<dd>
Australian users may want to try the FTP server's newest mirror site,
<a href="ftp://econ-www.newcastle.edu.au/pub/babylon-5/index.html">econ-www.newcastle.edu.au.</a>
<p>
<dt>July 22, 1995
<dd>
A new version of the B5 Quote Generator is available from the
<a href="/lurk/ftp/index.html">ftp server.</a>
<p>
There are now guide pages for the first six season-three episodes.
They're all just about empty, but they're there.
<p>
<dt>July 17, 1995
<dd>
European users may want to try the FTP server's Swedish mirror site,
<a href="ftp://ftp.ctrl-c.liu.se/babylon-5/index.html">ftp.ctrl-c.liu.se.</a>
<p>
<dt>July 15, 1995
<dd>
The following guide pages and synopses are now illustrated:
<ul>
<li> <a href="guide/036.html">"There All the Honor Lies"</a>
<li> <a href="guide/037.html">"And Now For a Word"</a>
<li> <a href="guide/038.html">"In the Shadow of Z'ha'dum"</a>
<li> <a href="guide/039.html">"Knives"</a>
<li> <a href="guide/040.html">"Confessions and Lamentations"</a>
</ul>
<p>
<dt>July 14, 1995
<dd>
Hyperion's Web server should be much, much faster now; we're getting
connectivity from
<a href="http://www.nextron.com/">Interactive Marketing Ventures,</a>
resulting in significantly higher available bandwidth than we had
before. As a result, a lot of the links that used to point to the
<a href="ftp://ftp.uml.edu/Babylon-5/index.html">ftp.uml.edu</a>
mirror site are now local instead. We hope you enjoy the new, faster
Lurker's Guide. Please let us know if you encounter any problems
with our new setup.
<p>
<dt>July 13, 1995
<dd>
Fleshed out the guide page for comic issue 8,
<a href="comic/008.html">"Silent Enemies."</a>
Note that it contains a spoiler for the as-yet-unaired TV episode
<a href="guide/041.html">"Divided Loyalties."</a>
<p>
<dt>July 12, 1995
<dd>
The <a href="/lurk/ftp/Guide/">text-only versions</a> of the guide pages
will now be updated automatically from the
<a href="episodes.php">hypertext versions</a> once a day.
<p>
The "About the Lurker's Guide" and "Mini-FAQ" pages have been combined,
with extra additions, into the new
<a href="faq.html">Lurker's Guide FAQ</a>
page.
<p>
<dt>July 6, 1995
<dd>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">FAQ List</a> is online.
<p>
<dt>July 3, 1995
<dd>
Matthew Murray's
<a href="synops/039.html">synopsis</a>
of
<a href="guide/039.html">"Knives"</a>
is online.
<p>
<dt>July 2, 1995
<dd>
A new version of the
<a href="/lurk/ftp/soundtrack-index">soundtrack index</a>
is available on the ftp server.
<p>
<dt>July 1, 1995
<dd>
An <a href="misc/better-schedule.html">alternate ordering</a>
of the episodes is available.
<p>
<dt>June 29, 1995
<dd>
<ul>
<li> A <a href="/lurk/ftp/b5faq-german">German</a> version of the
<a href="/lurk/ftp/babylon-5-faq">FAQ List</a> is online.
</ul>
<p>
<dt>June 23, 1995
<dd>
<ul>
<li> Babylon 5 begins in <a href="countries/de/episodes.php">Germany</a>
on August 3.
</ul>
<p>
<dt>June 22, 1995
<dd>
<ul>
<li> Babylon 5 returns to <a href="countries/gr/episodes.php">Greece</a>
in July.
<li> New on the <a href="production.html">Behind the Scenes</a> page:
<a href="misc/exec-prod.html">"What's an 'executive producer?'"</a>
by JMS;
<a href="http://www.futurenet.co.uk/computing/amigashopper/ThreeD/indexns.html">The Three Ds of 3D</a>
by Mojo of Foundation Imaging.
<li> A version of the home page without the background is available.
<li> The <a href="guide/current.html">This Week's Episode</a>
link from the home page should work reliably through caching
proxy gateways now. Some people had complained that their
proxy servers weren't noticing when it was changed to point
to new episodes. (It may take a little while for this change
to be noticed by your proxy, but after that there shouldn't
be a problem. If you're getting an old episode's page from
the link, try hitting your browser's reload button.)
</ul>
<p>
<dt>June 21, 1995
<dd>
<ul>
<li> B5 is now being shown in
<a href="countries/my/episodes.php">Malaysia.</a>
<li> Jacquelyn J. Smith's
<a href="synops/039.html">synopsis</a>
of
<a href="guide/039.html">"Knives"</a>
is online.
</ul>
<p>
<dt>June 20, 1995
<dd>
<ul>
<li> The <a href="p5/summary.html">summary</a> of
<a href="p5/intro.html">Poll 5</a> results now includes all 41
episodes (counting the pilot.)
<li> The Lurker's Guide home page has been redesigned a bit, to look
spiffier (especially on Netscape 1.1, though it looks fine on
other browsers too) and to be more succinct.
<a href="mailto:[email protected]">Let me know</a>
what you think.
</ul>
<p>
<dt>June 18, 1995
<dd>
<ul>
<li> The hole in the JMS
<a href="http://www.uml.edu/Babylon-5/Usenet/">Usenet</a>
archive (January - May 1995) has been
filled, thanks to Jacque Marshall.
</ul>
<p>
<dt>June 17, 1995
<dd>
<ul>
<li> Jacquelyn J. Smith has generously written a
<a href="synops/040.html">synopsis</a>
of
<a href="guide/040.html">"Confessions and Lamentations"</a>
to serve until Matthew Murray's is ready.
</ul>
<p>
<dt>June 15, 1995
<dd>
<ul>
<li> By popular demand, you can now look at a
<a href="guide/">list</a>
of all the guide entries with their last modification dates.
Thanks to Uttam M. Narsu for reminding me that this could be done
without lots of work!
</ul>
<p>
<dt>June 11, 1995
<dd>
<ul>
<li> JMS' messages on
<a href="http://www.uml.edu/Babylon-5/Usenet/">Usenet</a>
are now archived automatically as they arrive at Hyperion.
<li> Added links to introductions to
<a href="ftp://archive.egr.msu.edu/pub/babylon5/assyrbab.txt">Assyrian/Babylonian</a>
and
<a href="ftp://archive.egr.msu.edu/pub/babylon5/sumerfaq.txt">Sumerian</a>
mythology to the
<a href="misc/lit-hist.html">Literary and Historical References</a>
page.
<li> The Lurker's Guide's section on the
<a href="comic/index.html">comic series</a>
has been nominated for a
<a href="http://www.collectors.com/collectors/comix/sites/bestof.html">Best of COMIX.WEB</a>
award in the "Crossover" category.
</ul>
<p>
<dt>June 10, 1995
<dd>
<ul>
<li> Fleshed out the guide page for comic issue 7,
<a href="comic/007.html">"Survival the Hard Way."</a>
</ul>
<p>
<dt>June 8, 1995
<dd>
<ul>
<li> B5 has been renewed for a third season. As announced on America
Online:
<p>
Date: 95-06-08 22:22:38 EDT
<p>
Well you can all relax, break out the champagne, or
whatever your pleasure is -- we got official notification
for the third season this afternoon. We're good for 22
more eps. Prep will start next week, and we intend to
start production in late July. The third season will
premiere in Nov. We feel pretty good here, I hope all
of you do as well. Thanks to all of you fans for
your support. We'll try to live up to your expectations.
<p>
John Copeland<br>
Producer - Babylon 5
<p>
<li> A new version of the
<a href="/ftp/pub/Babylon-5/babylon-5-faq">FAQ List</a>
is available.
</ul>
<p>
<dt>May 31, 1995
<dd>
<ul>
<li> <a href="p5/intro.html">Poll 5</a> <a href="p5/040">results</a>
for
<a href="guide/040.html">"Confessions and Lamentations"</a>
are online.
<li> A
<a href="/ftp/pub/Babylon-5/delphi-5-21.txt">transcript</a>
of a May 1995 real-time conference with JMS on Delphi is available.
<li> A collection of JMS' May 1995
<a href="/ftp/pub/Babylon-5/CompuServe/">CompuServe messages</a>
is online.
</ul>
<p>
<dt>May 30, 1995
<dd>
<ul>
<li> Version 1.4 of
<a href="/~koreth/uncgi.html">Un-CGI,</a>
a tool to ease processing of WWW form results, is now available.
</ul>
<p>
<dt>May 29, 1995
<dd>
<ul>
<li> Updated all the text-only copies of the guide pages on the FTP server.
</ul>
<p>
<dt>May 28, 1995
<dd>
<ul>
<li> Created a separate page for
<a href="venues.html">places where B5 can be seen,</a>
which used to be on the