Changeset 1329

Show
Ignore:
Timestamp:
02/09/07 23:50:47 (2 years ago)
Author:
jm3
Message:
  • ignore new status blog (wordpres dir) yet add the link to the footer
  • love the tiny icons
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
      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
  • feedmelinks/.cvsignore

    r969 r1329  
    2626please 
    2727usr 
     28blog 
  • feedmelinks/modules/footer.inc.php

    r1326 r1329  
    99                                        <a href="http://toolstomaketools.svnrepository.com/codepot/trac.cgi/browser/feedmelinks">Open Source</a>  
    1010                                        creation by the <a class="hot" href="http://codeswami.com/">Code Swami</a>. ] 
     11 
     12                                        &nbsp; 
     13                                        <a href="http://blog.feedmelinks.com/">blog.feedmelinks.com</a> 
    1114                                </div> 
    1215                                <% 
  • feedmelinks/modules/utils.inc.php

    r1328 r1329  
    10651065  if( $l ) { 
    10661066 
    1067     if( $user_linkstyle == "basic" ) { 
    1068       $s .= getBareUserLink( $l["u"] ); 
    1069       $s .= "'s "; 
    1070     } else if( $user_linkstyle == "icons" ) { 
    1071       $s .= getUserLink( $l["u"] ); 
    1072       $s .= "'s "; 
    1073     } # else none... 
     1067                $s .= "<a title='" . $l["u"] . "'href='/u/" . $l["u"] ."'><img src='/" . get_tiny_image( $l["u"] ) . "' width='16' height='16' border='0' /></a> "; 
     1068 
     1069    #if( $user_linkstyle == "basic" ) { 
     1070      #$s .= getBareUserLink( $l["u"] ); 
     1071      #$s .= "'s "; 
     1072    #} else if( $user_linkstyle == "icons" ) { 
     1073      #$s .= getUserLink( $l["u"] ); 
     1074      #$s .= "'s "; 
     1075    #} # else none... 
    10741076     
    10751077    # link 
     
    10991101} 
    11001102 
    1101 function get_their_links_html() { 
     1103function get_their_links_html( $title ) { 
    11021104  return get_linklist( getMasterQuery() . " ORDER BY links.ID DESC LIMIT 15", 
    11031105    array( "get_their_links_header_cb", $u), array( "get_their_links_footer_cb", NULL ), "basic" ); 
     
    12431245  ob_start(); 
    12441246  if( func_get_arg( 0 )) {  
    1245     %><a href="<%= getSiteURL() %>/contacts/">view all <%= get_ownoun() %> peeps' links</a><% 
     1247    %><a href="<?= getSiteURL() ?>/contacts/">view all <?= get_ownoun() ?> peeps' links</a><?php 
    12461248  } else {  
    1247     %><a href="<%= getSiteURL() %>/contacts/?summarize=1">view just the most recent link from each of <%= get_ownoun() %> peeps</a><% 
     1249    ?><a href="<?= getSiteURL() ?>/contacts/?summarize=1">view just the most recent link from each of <?= get_ownoun() ?> peeps</a><?php 
    12481250  } 
    12491251  return ob_get_clean(); 
     
    24332435    } 
    24342436  } 
    2435         return "/img/new-user/profile"; 
     2437        return "img/new-user/$thingy"; 
    24362438} 
    24372439 
  • feedmelinks/portal-uncached.php

    r1302 r1329  
    227227        </div> 
    228228 
    229         <div id="newLinks" class="box"> 
    230                 <div class="subhead"> 
    231                         new links 
    232                 </div> 
    233                 <% include( "$modules/recent-with-times.inc.php"); %> 
     229        <?php 
     230                echo get_their_links_html( "New Links" ); 
     231        ?> 
     232                </div> 
    234233        </div> 
    235234