/[cvs]/joko/doc/SampleTasks/joko_2003-01.html
ViewVC logotype

Diff of /joko/doc/SampleTasks/joko_2003-01.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.101 by joko, Thu Jan 30 03:04:15 2003 UTC revision 1.113 by joko, Thu Jan 30 23:33:40 2003 UTC
# Line 1388  x indexing netfrag.org Line 1388  x indexing netfrag.org
1388      Indexer[23070]: [1] http://www.netfrag.org/nfoweb/index.php/PageGroupTestThree      Indexer[23070]: [1] http://www.netfrag.org/nfoweb/index.php/PageGroupTestThree
1389      Indexer[23070]: [1] http://www.netfrag.org/nfoweb/index.php/PageGroupTestTwo      Indexer[23070]: [1] http://www.netfrag.org/nfoweb/index.php/PageGroupTestTwo
1390      Indexer[23070]: [1] http://www.netfrag.org/nfoweb/index.php/RandomPage      Indexer[23070]: [1] http://www.netfrag.org/nfoweb/index.php/RandomPage
1391          o ... same with "http://www.netfrag.org/rrr/index.php/" - it's a phpWiki, too
     ... same with "http://www.netfrag.org/rrr/index.php/" - it's a phpWiki, too  
1392      => make up a robots.txt?      => make up a robots.txt?
   
1393    x exclude http://www.netfrag.org/docs/build/!!!    x exclude http://www.netfrag.org/docs/build/!!!
1394      x Disallow Regex http://www.netfrag.org/docs/build/.*      x Disallow Regex http://www.netfrag.org/docs/build/.*
       
1395    o FeatureRequest: remember (via cookie!) last issued searches    o FeatureRequest: remember (via cookie!) last issued searches
     
1396    x how to clear a mnogosearch-index-database?    x how to clear a mnogosearch-index-database?
1397      x indexer -C      x indexer -C
       
1398    x how to re-index?    x how to re-index?
1399      x just run 'indexer'      x just run 'indexer'
1400          o index more resources on netfrag.org (news, cvs)
1401      o exclude unwanted resources (wiki-test-& default-pages & co.)
1402      o establish http://search.netfrag.org/
1403        o place DispatchRequest there, let it redirect to an application "mnoGoSearch"
1404        o "mnoGoSearch" is currently installed at http://netfrag.org/search/
1405        o => (e.g.) http://search.netfrag.org/dust  ->  http://netfrag.org/search/?q=dust
1406    
1407    o http://w-a-c.com: Inhalt unter "Clubtreffen" besser positionieren!
1408    
1409    o http://lashlarue.de: inhalte und struktur überarbeiten
1410    
1411    x patch cvs-permissions:
1412      x cd /var/lib/cvs/nfo
1413      x chown -R .src doc patches perl php
1414      x chown -R .rootsrc hosts layouts
1415      o do this regularly
1416    
1417    o run indexer and '.runrc' on interval!
1418    
1419    o amo@grasshopper: cleanup local repository 'nfo' from cvs.netfrag.org!!!
1420    
1421    o categorization:
1422      o document-type: <mime-type>
1423      o file-type:
1424        o suffix: .xyz  (guess application-relationship of file from this)
1425        o content-encoding: ASCII, EBCDIC, UTF-8, etc.
1426    
1427    o shortcut for:
1428      o ctlinnd newgroup nfo.dev.php
1429      o nano /data/www/global/apps/newsportal/groups.txt
1430        add: nfo.dev.php Php Development
1431    
1432    o look at slurp:/var/www/docbook-dsssl/
1433    
1434    o make ResourceGroups (group - what else? - resources together - from netfrag.org or other urls/urns or WikiTags)
1435    
1436    o look at R:\staff\public\Research\Mirrored Sites
1437    
1438    o phpw2hfax?
1439    
1440    o look at phpOrgaSync: http://www.ds-services.de/portal/
1441      o ->http://www.phprojekt.com/
1442    
1443    o amavis uses 'Net::Server::PreForkSimple':
1444        Jan 30 07:52:53 quepasa amavis[25445]: 2003/01/30-07:52:53 Amavis (type Net::Server::PreForkSimple) starting! pid(25445)
1445    
1446    o mnogosearch: use searchd? what's spelld?
1447    
1448    o look at quepasa:/etc/apache/httpd.conf:
1449      # MetaDir: specifies the name of the directory in which Apache can find
1450      # meta information files. These files contain additional HTTP headers
1451      # to include when sending the document
1452      #
1453      #MetaDir .web
1454    
1455      #
1456      # MetaSuffix: specifies the file name suffix for the file containing the
1457      # meta information.
1458      #
1459      #MetaSuffix .meta
1460    
1461    o look at quepasa:/etc/apache/httpd.conf:
1462      # Customizable error response (Apache style)
1463      #  these come in three flavors
1464      #
1465      #    1) plain text
1466      #ErrorDocument 500 "The server made a boo boo.
1467      #  n.b.  the (") marks it as text, it does not get output
1468      #
1469      #    2) local redirects
1470      #ErrorDocument 404 /missing.html
1471      #  to redirect to local URL /missing.html
1472      #ErrorDocument 404 /cgi-bin/missing_handler.pl
1473      #  N.B.: You can redirect to a script or a document using server-side-includes.
1474      #
1475      #    3) external redirects
1476      #ErrorDocument 402 http://some.other_server.com/subscription_info.html
1477      #  N.B.: Many of the environment variables associated with the original
1478      #  request will *not* be available to such a script.
1479    
1480    o look at quepasa:/etc/apache/httpd.conf:
1481      # Allow http put (such as Netscape Gold's publish feature)
1482      # Use htpasswd to generate /etc/apache/passwd.
1483      # You must unremark these two lines at the top of this file as well:
1484      #LoadModule put_module          modules/mod_put.so
1485      #
1486      #Alias /upload /tmp
1487      #<Location /upload>
1488      #    EnablePut On
1489      #    AuthType Basic
1490      #    AuthName Temporary
1491      #    AuthUserFile /etc/apache/passwd
1492      #    EnableDelete Off
1493      #    umask 007
1494      #    <Limit PUT>
1495      #       require valid-user
1496      #    </Limit>
1497      #</Location>
1498    
1499    o admin:
1500      o LoginLists (e.g. User-Account per Service(mail (send & recieve), shell, wiki, news))
1501      o IncludeLists (e.g. include newsgroup into newsportal (news2http-gateway), include path to Backup)
1502      o ExcludeLists (e.g. exclude from Indexer (mnoGoSearch))
1503    
1504    o a general question: why does a user *still* has to specifiy *two* servers for mail?
1505      technical - okay (more than....)     -    but from the user perspective? no! just one!
1506        
1507    o benchmark dispatchmail:
1508       a) started via pipe in .forward-file
1509        MTA Queue status...
1510                        /var/spool/mqueue (3 requests)
1511        -----Q-ID----- --Size-- -----Q-Time----- ------------Sender/Recipient-----------
1512        h0U8ARv9027686*   16930 Thu Jan 30 09:13 <news@quepasa.netfrag.org>
1513                                                 <usenet@quepasa.netfrag.org>
1514        h0U8ARv7027686*      56 Thu Jan 30 09:13 <joko_mail@quepasa.netfrag.org>
1515                                                 |"/data/opt/dispatchmail/bin/dispatchm
1516        h0U8ARv5027686*      56 Thu Jan 30 09:13 <joko_mail@quepasa.netfrag.org>
1517                                                 |"/data/opt/dispatchmail/bin/dispatchm
1518                        Total requests: 3
1519       b) as milter-handler????
1520    
1521    o lookup: paul verilio
1522    
1523    o review D:\e\home\amo\develop\cvs\nautilux.progressive-media.de\amo !!!
1524    
1525    
1526    
1527    
1528  </pre>  </pre>

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.113

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed