Plugin Directory

Changeset 953409


Ignore:
Timestamp:
07/23/2014 11:40:04 AM (12 years ago)
Author:
scodtt
Message:

Changing services URL

Location:
blogmutt-idea-generator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • blogmutt-idea-generator/trunk/blogmutt.php

    r941431 r953409  
    11<?php
    22/*
    3 Plugin Name: BlogMutt Idea Generator
     3Plugin Name: BlogMutt
    44Plugin URI: http://blogmutt.com
    5 Description: BlogMutt Idea Generator
    6 Version: 1.0
     5Description: BlogMutt plugin prototype.
     6Version: 0.1
    77Author: BlogMutt
    88Author URI: http://blogmutt.com
     
    155155                        $response = $blogMuttUDID;
    156156                       
    157                          $urlRandomGet = "http://blogmutt-big.herokuapp.com/api/v1/idea/$blogMuttUDID";
     157                         $urlRandomGet = "http://big.blogmutt.com/api/v1/idea/$blogMuttUDID";
    158158                        //echo $urlRandomGet;
    159159                             $response_jsonSuggestion = $this->getResponseArrayFromServiceURL1($urlRandomGet);
  • blogmutt-idea-generator/trunk/include/blogmutt-template.php

    r941424 r953409  
    115115       }
    116116       $mygallery = new MyGallery();
    117        $urlSuggestedGet = "http://blogmutt-big.herokuapp.com/api/v1/posts/$blogMuttUDID";
     117       $urlSuggestedGet = "http://big.blogmutt.com/api/v1/posts/$blogMuttUDID";
    118118       //echo $urlSuggestedGet;
    119119            $response_jsonSuggestion = $mygallery->getResponseArrayFromServiceURL1($urlSuggestedGet);
  • blogmutt-idea-generator/trunk/include/settings-template.php

    r941424 r953409  
    180180             $requestParam = http_build_query($_POST, NULL, '&');
    181181                if($request=="update")
    182                     $urlPost = "http://blogmutt-big.herokuapp.com/api/v1/customers/$blogMuttUDID";
     182                    $urlPost = "http://big.blogmutt.com/api/v1/customers/$blogMuttUDID";
    183183                else   
    184                     $urlPost = "http://blogmutt-big.herokuapp.com/api/v1/customers/";
     184                    $urlPost = "http://big.blogmutt.com/api/v1/customers/";
    185185               
    186186                if(isset($_POST["customer"]["keywords_attributes"])){
     
    229229   // echo "</br>" . $request;
    230230        if($request=="update"){
    231             $urlGet = "http://blogmutt-big.herokuapp.com/api/v1/customers/$blogMuttUDID";
     231            $urlGet = "http://big.blogmutt.com/api/v1/customers/$blogMuttUDID";
    232232            $response_json = getResponseArrayFromServiceURL2($urlGet);
    233233           
     
    239239             echo "</pre>";
    240240            */
    241             //http://blogmutt-big.herokuapp.com/api/v1/customers/022fb1acb4394c37778a5f19acb08dce
     241            //http://big.blogmutt.com/api/v1/customers/022fb1acb4394c37778a5f19acb08dce
    242242            if(count($response_json) > 0){
    243243                $user = $response_json;
     
    279279            }
    280280         
    281             $urlSuggestedGet = "http://blogmutt-big.herokuapp.com/api/v1/posts/$blogMuttUDID";
     281            $urlSuggestedGet = "http://big.blogmutt.com/api/v1/posts/$blogMuttUDID";
    282282            //echo $urlSuggestedGet;
    283283            $response_jsonSuggestion = getResponseArrayFromServiceURL2($urlSuggestedGet);
     
    357357
    358358function createDraft($pId){
    359     $urlGetPost = "http://blogmutt-big.herokuapp.com/api/v1/posts/get_post/$pId";
     359    $urlGetPost = "http://big.blogmutt.com/api/v1/posts/get_post/$pId";
    360360        //echo $urlSuggestedGet;
    361361        $response_jsonLandingPost = getResponseArrayFromServiceURL2($urlGetPost);
Note: See TracChangeset for help on using the changeset viewer.