Plugin Directory

Changeset 1007913


Ignore:
Timestamp:
10/15/2014 01:49:13 PM (10 years ago)
Author:
tomknows
Message:

frozen because of twitter api changes

Location:
twittergrid
Files:
32 added
3 edited

Legend:

Unmodified
Added
Removed
  • twittergrid/trunk/index.html

    r132971 r1007913  
    11<html>
    22<head>
    3 <meta http-equiv="refresh" content="0;URL=http://www.tom-hengst.de/wordpress-plugins" />
     3<meta http-equiv="refresh" content="0;URL=https://wordpress.org/plugins/twittergrid/">
    44</head>
    55<body>
    66  <p>This file protects your webserver directoy!</p>
    77  <p>Do not call this url directly!</p>
    8   <p><a href="http://www.tom-hengst.de/wordpress-plugins">Wordpress Plugins</a></p>
     8  <p><a href="https://wordpress.org/plugins/twittergrid/">Wordpress Plugins</a></p>
    99</body>
    1010</html>
  • twittergrid/trunk/readme.txt

    r235361 r1007913  
    11=== TwitterGrid ===
    22Contributors: tomknows
    3 Donate link: http://www.tom-hengst.de/donate
    43Tags: wordpress, twitter, tweets, twit, follower, friends, badge, widget, widgets, sidebar, visits, visitors, admin, plugin, links, page, images, blogging, microblogging
    54Requires at least: 2.0.2
    6 Tested up to: 2.7
    7 Stable tag: 0.2
     5Tested up to: 4.0
     6Stable tag: 0.3
    87
    98Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. The plugin is widget ready and comes with many configuration options!
     
    1211
    1312Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. The plugin is widget ready and comes with many configuration options!
    14 
    15 Check out more [Wordpress Plugins](http://www.tom-hengst.de/wordpress-plugins "Wordpress Plugins") brought to you by [Tom](http://www.tom-hengst.de "Tom").
    1613
    1714== Installation ==
     
    3633== Change Log ==
    3734
    38 * v0.2 29.04.2010 minor xhtml fixes
    39 * v0.1 07.07.2009 initial release
    40 
     35* v0.3 2014-10-15 frozen because ot twitter api changes
     36* v0.2 2010-04-29 minor xhtml fixes
     37* v0.1 2009-07-07 initial release
  • twittergrid/trunk/twittergrid.php

    r235361 r1007913  
    22/*
    33Plugin Name: TwitterGrid
    4 Plugin URI: http://www.tom-hengst.de/wordpress-plugins
    5 Description: Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. Check out more <a href="http://www.tom-hengst.de/wordpress-plugins">Wordpress Plugins</a> by <a href="http://www.tom-hengst.de">Tom</a>.
    6 Version: 0.2
     4Plugin URI: https://wordpress.org/plugins/twittergrid/
     5Description: Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog.
     6Version: 0.3
    77Author: tom
    8 Author URI: http://www.tom-hengst.de
     8Author URI: https://profiles.wordpress.org/tomknows/
    99*/
    1010
    1111/**
    12  * v0.2 29.04.2010 minor xhtml fixes
    13  * v0.1 07.07.2009 initial release
     12 * v0.3 2014-10-15 frozen because ot twitter api changes
     13 * v0.2 2010-04-29 minor xhtml fixes
     14 * v0.1 2009-07-07 initial release
    1415 */
    1516class TwitterGrid {
     
    2728    $this->id         = 'twittergrid';
    2829    $this->title      = 'TwitterGrid';
    29     $this->version    = '0.2';
    30     $this->plugin_url = 'http://www.tom-hengst.de/wordpress-plugins';
     30    $this->version    = '0.3';
     31    $this->plugin_url = 'https://wordpress.org/plugins/twittergrid/';
    3132    $this->name       = 'TwitterGrid v'. $this->version;
    3233    $this->url        = get_bloginfo('wpurl'). '/wp-content/plugins/' . $this->id;
     
    238239     * not the best way, but we can't assume that every webhost simplexml installed
    239240     */
    240     if(@$Snoopy->fetch('http://twitter.com/statuses/friends/' . $user . '.xml')) {
     241    if($Snoopy->fetch('http://twitter.com/statuses/friends/' . $user . '.xml')) {
    241242      if(!empty($Snoopy->results)) {
    242243        if(preg_match_all('/<user>(.*?)<\/user>/s', $Snoopy->results, $matches)) {
     
    303304      }
    304305
    305       $data = '<div id="twittergrid">'. $data . (intval($this->options['show_twitter_link'])==1?'<strong><a href="http://twitter.com/'.$this->options['username'].'" rel="nofollow" target="_blank">'.__('Follow me!', $this->id).'</a></strong>':'').'<div>TwitterGrid by <a href="http://www.tom-hengst.de" target="_blank" class="snap_noshots">Tom</a></div></div>';
     306      $data = '<div id="twittergrid">'. $data . (intval($this->options['show_twitter_link'])==1?'<strong><a href="http://twitter.com/'.$this->options['username'].'" rel="nofollow" target="_blank">'.__('Follow me!', $this->id).'</a></strong>':'').'<div>TwitterGrid by <a href="https://profiles.wordpress.org/tomknows/" target="_blank" class="snap_noshots">Tom</a></div></div>';
    306307
    307308      if(is_writeable($this->path. '/cache')) {
Note: See TracChangeset for help on using the changeset viewer.