Morten Brix Pedersen 25 лет назад
Родитель
Сommit
5bc1778d43
3 измененных файлов с 11 добавлено и 0 удалено
  1. 5 0
      Makefile
  2. 6 0
      docs/Changelog
  3. 0 0
      docs/dev/API

+ 5 - 0
Makefile

@@ -18,6 +18,8 @@ DOCS = docs/CONFIG-README \
 	 docs/Changelog \
 	 docs/Changelog \
 	 docs/CREDITS \
 	 docs/CREDITS \
 
 
+DEVDOCS = docs/dev/API
+
 GFX = gfx/green-h.png \
 GFX = gfx/green-h.png \
 	 gfx/green-v.png \
 	 gfx/green-v.png \
 	 gfx/blue-h.png \
 	 gfx/blue-h.png \
@@ -66,6 +68,9 @@ pisg:
 	mkdir $(DIRNAME)/docs
 	mkdir $(DIRNAME)/docs
 	cp $(DOCS) $(DIRNAME)/docs
 	cp $(DOCS) $(DIRNAME)/docs
 
 
+	mkdir $(DIRNAME)/docs/dev
+	cp $(DEVDOCS) $(DIRNAME)/docs/dev
+
 	mkdir $(DIRNAME)/scripts/addalias
 	mkdir $(DIRNAME)/scripts/addalias
 	cp $(ADDALIAS) $(DIRNAME)/scripts/addalias
 	cp $(ADDALIAS) $(DIRNAME)/scripts/addalias
 
 

+ 6 - 0
docs/Changelog

@@ -3,6 +3,12 @@ pisg (0.23)
    * Topics in mIRC format wasn't being recognized. Fixed.
    * Topics in mIRC format wasn't being recognized. Fixed.
    * Don't go beserk when the logfile doesn't contain any data; just tell it
    * Don't go beserk when the logfile doesn't contain any data; just tell it
      to the user.
      to the user.
+   * More work on the object oriented goal of pisg:
+      - cleanups, don't use globals in modules, define these in the object.
+      - add HTMLGenerator.pm, and move all HTML generation code from pisg.pl
+        to this new module.
+   * Ship developer docs in docs/dev/ instead of just dumping it in docs/,
+     docs/ should be for end users.
 
 
 pisg (0.22) - Sat, Sep 15th 2001
 pisg (0.22) - Sat, Sep 15th 2001
    * pisg.cfg now supports regexs in user.cfg when 'regexp_aliases' is
    * pisg.cfg now supports regexs in user.cfg when 'regexp_aliases' is

+ 0 - 0
docs/API → docs/dev/API