Show
Ignore:
Timestamp:
03/16/07 10:17:44 (2 years ago)
Author:
jm3
Message:

gulp. svn diff for the deltas

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • feedmelinks

    • Property svn:ignore changed from
      .htaccess
      cgi-bin
      cheat
      logs
      portal.php
      testing
      the-lost-urls
      utils.inc.php
      wall-of-ancients.php
      work
      *webalizer*
      _assets
      _profiling
      TODO
      info.php
      setup
      _comments
      local-remote-root
      .DS_Store
      flash
      _logs
      usage
      mint
      cgi-bin
      dev
      please
      usr
      blog
      xfer
      to
      .htaccess
      cgi-bin
      cheat
      logs
      portal.php
      testing
      the-lost-urls
      utils.inc.php
      wall-of-ancients.php
      work
      *webalizer*
      _assets
      _profiling
      TODO
      info.php
      setup
      _comments
      local-remote-root
      .DS_Store
      flash
      _logs
      usage
      mint
      cgi-bin
      dev
      please
      usr
      blog
      xfer
      _backups
  • feedmelinks/testing/contacts.php

    r1278 r1425  
    1 <% 
     1<?php 
    22        include_once( "../modules/utils.inc.php" ); 
    33        include_once( "../modules/header.insecure.inc.php" ); 
     
    1010        if( $tok && $tok == md5( getPasswdForUser( $u ))) { 
    1111 
    12 %
     12?
    1313        <link rel="stylesheet" type="text/css" href="/style/main.css" title="default stylings"> 
    1414 
    1515<pre> 
    16 <% 
     16<?php 
    1717        if( ! $cache ) 
    1818                $cache = rebuild_cache( $u, $cache, 1 ); 
    19         echo "mailtos: "; 
    20         print_r( get_previous_mailtos( $cache )); 
    21         echo "contacts: "; 
    22         print_r(  get_contacts( $cache )); 
     19         
     20        #echo "mailtos: "; 
     21        #print_r( get_previous_mailtos( $cache )); 
     22        #echo "contacts: "; 
     23        #print_r(  get_contacts( $cache )); 
     24 
     25        foreach( get_contacts( $cache ) as $item => $jonk ) { 
     26                $peep =ltrim( rtrim( chop( $item )));  
     27                print "$peep " .  (user_enabled( $peep ) ? "" : " [<a href='/admin/disable-user?op=re_enable&user=$peep'>DISABLED</a>]") . "<br>"; 
     28        } 
     29 
     30 
    2331        echo "\n"; 
    24         #echo "\ncache: "; 
    25         #print_r( $cache ); 
    26 %> 
     32?> 
    2733 
    2834TODO: <!-- 
     
    4046</pre> 
    4147 
    42 <% 
     48<?php 
    4349        $users = get_contacts( $cache ); 
    44 %
     50?
    4551 
    4652 
    47 <%= get_contactlist_html( $users, "your peeps", $cache ) %
     53<?= get_contactlist_html( $users, "your peeps", $cache ) ?
    4854 
    49 <% 
     55<?php 
    5056        } # end auth 
    51 %> 
    52  
     57?>