--- joko/doc/SampleTasks/joko_2003-01.html 2003/01/25 16:33:31 1.43 +++ joko/doc/SampleTasks/joko_2003-01.html 2003/01/26 17:04:20 1.55 @@ -1,4 +1,8 @@ + + joko's sample notes - 2003-01 + +
@@ -571,9 +575,10 @@
   x cd newsportal
   x wget http://florian-amrhein.de/newsportal/download/newsportal-0.24.tar.gz
   x mkdir -p /data/www/virtual/netfrag/sites/news/apps/newsportal/
-  x tar -xzf newsportal-0.24.tar.gz --directory=/data/www/virtual/netfrag/sites/news/apps/newsportal/
+  x tar -xzf newsportal-0.24.tar.gz --directory=/data/www/virtual/netfrag/global/apps/newsportal/
+  
 
-o rework apache-layout - check into repository as something root is responsible for!
+x rework apache-layout - check into repository as something root is responsible for!
 
 o NfoWeb
   o add WikiPages:
@@ -726,17 +731,242 @@
     x redirector at cvs.netfrag.org ...
     o ... and news.netfrag.org
   o JumpToCvs (.cvslink-mechanism)
+  o how was it done?
+    x cd /data/www/virtual/netfrag/sites/webcvs/.dispatch
+    x ln -s /data/www/global/apps/dispatchrequest .
+    
   
-o buildhtml -> docmaker
+o buildhtml -> makedoc
 
 o TWIG & yakka?
 
+o rename: dispatchmail -> dispatchmessage
+
+c rename: dispatchrequest -> forwardrequest?
+
+o readrc of bashrc|perlrc|xmlrc
+
+x setup TWIG
+  x cd /usr/share/doc/twig
+  x cd /data/www/virtual/netfrag/conf/
+  x nano applications.conf
+  x add line: Alias /twig/ /usr/share/twig/
+  x had to modify /etc/apache/conf/httpd.conf:
+    x added: 'index.php3'
+        
+            DirectoryIndex index.html index.htm index.shtml index.cgi index.php index.php3
+        
+    x added: '.php3'
+        AddType application/x-httpd-php .php .php3
+    x /etc/init.d/apache reload
+    x cd /etc/twig
+      x modify config.inc.php3
+    x cd /usr/share/twig/setup
+      x mysql
+        x use mysql
+        x insert into user (host, user, password) values ('localhost', 'www-data', password(''));
+        x insert into db values ('localhost', 'twig', 'www-data', 'Y','Y','Y','Y','Y','Y','N','Y','Y','Y');
+        x create database twig;
+        x flush privileges;
+      x database-schema
+        x gunzip twig.table.mysql.gz
+        x mysql twig < twig.table.mysql
+        
+x setup arbitrary packet and bind to csm-system (Collaborative Software Management)
+  x pinstall twig
+    x apt-get install twig
+    x cd /etc
+    x cvs add twig
+    x cd twig
+    x cvs add *
+    x cvs add .htaccess
+    x cvs commit -m "+ initial commit"
+  
+
+o remove html from phpWiki: ('http://'!!!) (->https!!!)
+  
+  
+  
+
+o force https for: (authentication purposes - anonymous is http!)
+  o horde
+  o tutos
+  
+x dpkg -x twig_2.7.5-4_all.deb tmp/
+
+o TWIG & OpenLDAP!?
+
+x ApacheMasterLayoutRefactoring: quepasa.netfrag.org:
+  x removed /data/www/doc to /data/www/global/apps
+    x test: 
+      x cd /data/www/virtual
+      x grep -ri "/data/www/doc" *
+      x cd /data/www/global
+        x grep -ri "/data/www/doc" *
+        x apps/twiki/
+          x lib/TWiki.cfg
+          x bin/.htaccess
+        x conf/twiki-httpd
+          ---> just change between 'global' and (e.g.) 'virtual/netfrag' for switching between scopes   ;-)
+          ---> the container (folder)-structure at global and sub-virtual level must match almost exactly to make this possible!!!!!
+        x conf/virtualdomains-httpd/
+        x doc/twiki/
+  x removed: /data/www/virtual/netfrag/pub to /data/www/virtual/netfrag/sites/public
+    x cd virtual/netfrag/conf
+      x grep -ri "/pub" *
+        x modify httpd.conf and applications.conf
+  x apachectl configtest
+    Syntax error on line 345 of /etc/apache/httpd.conf:
+    DocumentRoot must be a directory
+    x disabled there completely
+    x now in /data/www/global/conf/httpd.conf
+      DocumentRoot /data/www/virtual/netfrag/sites/public
+  x apachectl configtest
+    fopen: No such file or directory
+    apache: could not open document config file /data/www/conf/twiki-httpd.conf
+    x mv /data/www/global/conf/twiki-httpd.conf /data/www/virtual/netfrag/conf/
+    x nano /data/www/virtual/netfrag/conf/applications.conf to match new path
+  x apachectl configtest
+    fopen: No such file or directory
+    apache: could not open document config file /data/www/conf/tutos-httpd.conf
+    x cd virtual/netfrag
+    x grep -rin "www/conf" *
+    x edit applications.conf:21
+      x was: Include /data/www/conf/tutos-httpd.conf
+      x is: Include /data/www/global/conf/tutos-httpd.conf
+  x apachectl configtest
+    Warning: DocumentRoot [/data/www/virtual/netfrag/sites/webnews] does not exist
+    fopen: No such file or directory
+    apache: could not open document config file /data/www/conf/dynamic.conf
+    x grep -rin webnews *
+      x edit applications.conf:30
+        x was: Alias /webnews/ /data/www/global/apps/newsportal/
+        x is: Alias /webnews/ /data/www/global/apps/newsportal/
+      x edit httpd.conf:74
+        x was: DocumentRoot /data/www/virtual/netfrag/sites/webnews
+        x is: DocumentRoot /data/www/virtual/netfrag/sites/news
+     x cd global/conf
+     x grep -rin www/conf *
+      x STDOUT-PARSE:
+        httpd.conf:14:#Include /data/www/conf/httpd-php-perl.conf
+        httpd.conf:16:#Include /data/www/conf/virtualdomains-httpd.conf
+        httpd.conf:29:Include /data/www/conf/dynamic.conf
+          ->FILE-MODIFY: httpd.conf:29:Include /data/www/global/conf/dynamic.conf
+  x apachectl configtest
+      root@quepasa:/data/www/global/conf# apachectl configtest
+      configuring dynamic domain "golf5.de"
+      configuring dynamic domain "smartmen.de"
+      configuring dynamic domain "ballonflug.de"
+      Syntax OK
+  x /etc/init.d/apache restart
+  x testing "http://netfrag.org/" fails
+  x testing "http://netfrag.org/index.php"
+    x makes redirect to "http://netfrag.org/nfoweb/" but fails there
+  x tail -f tail -f /data/www/virtual/netfrag/log/error_log
+    [Sun Jan 26 15:32:04 2003] [error] [client 217.231.119.195] File does not exist: /data/www/virtual/netfrag/pub/
+    [Sun Jan 26 15:33:02 2003] [error] [client 217.231.119.195] File does not exist: /data/www/virtual/netfrag/pub/
+    [Sun Jan 26 16:37:37 2003] [error] [client 217.231.119.195] Symbolic link not allowed: /data/www/virtual/netfrag/sites/public/nfoweb/
+    [Sun Jan 26 16:38:08 2003] [error] [client 217.231.119.195] Symbolic link not allowed: /data/www/virtual/netfrag/sites/public/nfoweb/
+    [Sun Jan 26 16:40:10 2003] [error] [client 217.231.119.195] Symbolic link not allowed: /data/www/virtual/netfrag/sites/public/nfoweb/
+
+
+o register:
+  public.netfrag.org -> http://netfrag.org
+  secure.netfrag.org -> https://netfrag.org
+  
+o netfrag.org: DispatchRequest for http://netfrag.org/nfoweb/!
+o netfrag.org: DispatchRequest for http://netfrag.org/rrr/!
+
+o IntroduceMergePoint at http://netfrag.org/doc/
+  o MiniHowto
+  o faqs (e.g. from news://news.netfrag.org/nfo.faq.users
+
+o what about an "AUTOSAVE"-feature for UltraEdit when leaving the window or
+  o an AUTOCOMMIT on that very event (maybe integrated with a counter)
+  
+o write scripts to iterate recursively through directories under specified path ...
+  o ... and do some actions on each directory, e.g.
+  o execute some specified .dot-files (e.g. .pod2htmlrc, .symlinkrc, .makedocrc)
+  
+x CVSSpam in action:
+  10146 ?        S      0:00 /usr/sbin/sshd
+  10148 ?        S      0:00 /usr/sbin/sshd
+  10149 ?        S      0:00 cvs server
+  10150 ?        S      0:00 cvs server
+  10151 ?        S      0:00 /bin/login
+  10155 ?        S      0:00 /usr/bin/ruby -w /var/lib/cvs/CVSROOT/collect_diffs.rb --to joko@netfrag
+  10158 ?        S      0:00 /usr/bin/ruby /var/lib/cvs/CVSROOT/cvsspam.rb /tmp/#cvs.loginfo.10149.10
+  
+x as Chora'sStylesheet has come active (by accident) when viewing this file view web
+   we should include this as a fixed default making horde our default stylesheet delivery engine (for now)
+
+o link-checker for netfrag.org
+
+o dispatcher for style.netfrag.org redirecting to ?
+
+o mini-howto: "HttpRedirect"
+
+o how to refactor the MiniHowtos?
+  o into a wiki? wikis seem to miss offline/distributed capabilities! (for now)
+  x into pod
+    x build offline
+    o build online
+  o into DocBook?
+  o into tavi? (or "TaviWorkflow"?)
+  o but: LinkWithWikiAutomagically to get everything together
+    o look at the InterwikiMechanism
+    o look at the various WikiPluginArchitectures
+    o look at YakkaDev!
+
+o a LinkageExample: RenderThis(html4|text|html3|pdf) with [[yakka]] and [[tavi-workflow]]!
+
+o proposal for hierarchical structure (and HomePage) of netfrag.org
+  ~overview -> SomeWiki -> Overview
+    ~projects (include some common text here)
+    ~users (include some common text here)
+      - Page: UserArea
+      - Page: ~users
+  ~projects -> SomeWiki-> Projects
+  ~users (include former page "User area" (now UserArea) automagically at the bottom here! (WikiInclude?))
+    ~rabit (raBit's router - psl.no-ip.com)
+    ~natraj (sam's place - optix)
+    ~joko (joko's)
+    ~bareface (->yakka)
+
+o MasterWorkflow:
+  -> TheThreeGoodThings
+    -> HaveIdea -> WriteDown (RefactorLater) -> WriteDownMore -> WriteDownAssociations -> WriteDownEvenMoreIfNotStoppedByExternalInfluences
+    -> RefactorIdeas -> Categorize -> AddNotes -> AddTasks
+    -> DoThings -> ReadTasks -> DoTasks
+  -> TheFourthBadThing: TimeTrackAllThis  ;-)  (it seems to be not so far away....)
+
+o what do we need / what do we do?
+  --- researcher
+    o OnlineReading
+    (o SelectItemsForDownload)  <- want-to-have
+    (o DownloadItems)  <- want-to-have
+  --- researcher
+    o OfflineReading
+    x ClumsyOfflineReading  <- status-quo
+      (o NiceOfflineReading)  <- want-to-have
+      (o OfflineArchiving)  <- want-to-have
+    o OfflineEditing (text, html, pod, tavi)
+    o OnlinePublishing ()
+  --- engine
+    o LiveDispatching (ContentEncoding, ContentConversion, EnvelopeEncapsulation, GatewayToXyz)
+      o OfflineRendering (html, text, pdf, chm)
+  --- reader
+    o OnlineReading ()
+    (o SelectItemsForDownload)  <- want-to-have
+    (o DownloadItems)  <- want-to-have
+    o OfflineReading (pdf, chm)
 
 
 

-$Id: joko_2003-01.html,v 1.43 2003/01/25 16:33:31 joko Exp $ +$Id: joko_2003-01.html,v 1.55 2003/01/26 17:04:20 joko Exp $