Plugin Directory

Changeset 453183


Ignore:
Timestamp:
10/20/2011 02:51:10 AM (14 years ago)
Author:
wpdavis
Message:

Fixing https

Location:
docs-to-wordpress/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • docs-to-wordpress/trunk/plugin.php

    r431336 r453183  
    44Author: William P. Davis, Bangor Daily News
    55Author URI: http://wpdavis.com/
    6 Version: 0.3-beta
     6Version: 0.4-beta
    77License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    88*/
     
    299299        if($idFolder)
    300300        {
    301             $url = "http://docs.google.com/feeds/default/private/full/folder%3A". $idFolder ."/contents";
     301            $url = "https://docs.google.com/feeds/default/private/full/folder%3A". $idFolder ."/contents";
    302302        }
    303303        else
    304304        {
    305             $url = "http://docs.google.com/feeds/default/private/full";
     305            $url = "https://docs.google.com/feeds/default/private/full";
    306306        }   
    307307       
     
    362362        );
    363363       
    364         $url = "http://docs.google.com/feeds/default/private/full";
     364        $url = "https://docs.google.com/feeds/default/private/full";
    365365        if( $idFolder )
    366366            $url .= "/folder%3A" . $idFolder . "/contents";
     
    423423        );
    424424       
    425         $url = "http://docs.google.com/feeds/default/private/full/-/folder";
     425        $url = "https://docs.google.com/feeds/default/private/full/-/folder";
    426426       
    427427        // Make the request
     
    489489            if($idFolder)
    490490            {
    491                 $url = "http://docs.google.com/feeds/default/private/full/folder%3A". $idFolder ."/contents";
     491                $url = "https://docs.google.com/feeds/default/private/full/folder%3A". $idFolder ."/contents";
    492492            }
    493493            else
    494494            {
    495                 $url = "http://docs.google.com/feeds/default/private/full";
     495                $url = "https://docs.google.com/feeds/default/private/full";
    496496            }       
    497497       
     
    598598        );
    599599       
    600         $url = "http://docs.google.com/feeds/default/private/full/";
     600        $url = "https://docs.google.com/feeds/default/private/full/";
    601601        if( $idFolder ) {
    602602            $url .= "folder%3A" . $idFolder . "/contents/document%3A" . $idFile;
     
    658658       
    659659        // Make the request
    660         curl_setopt($this->curl, CURLOPT_URL, "http://docs.google.com/feeds/default/private/full/folder%3A". $idFolder ."/contents");
     660        curl_setopt($this->curl, CURLOPT_URL, "https://docs.google.com/feeds/default/private/full/folder%3A". $idFolder ."/contents");
    661661        curl_setopt($this->curl, CURLOPT_HTTPHEADER, $headers);
    662662        curl_setopt($this->curl, CURLOPT_POST, true);
  • docs-to-wordpress/trunk/readme.txt

    r431323 r453183  
    55Requires at least: 3.0
    66Tested up to: 3.2
    7 Stable tag: 0.3-beta
     7Stable tag: 0.4-beta
    88
    99Easily move posts from Google Docs to WordPress
Note: See TracChangeset for help on using the changeset viewer.