Changeset 953409
- Timestamp:
- 07/23/2014 11:40:04 AM (12 years ago)
- Location:
- blogmutt-idea-generator/trunk
- Files:
-
- 3 edited
-
blogmutt.php (modified) (2 diffs)
-
include/blogmutt-template.php (modified) (1 diff)
-
include/settings-template.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blogmutt-idea-generator/trunk/blogmutt.php
r941431 r953409 1 1 <?php 2 2 /* 3 Plugin Name: BlogMutt Idea Generator3 Plugin Name: BlogMutt 4 4 Plugin URI: http://blogmutt.com 5 Description: BlogMutt Idea Generator6 Version: 1.05 Description: BlogMutt plugin prototype. 6 Version: 0.1 7 7 Author: BlogMutt 8 8 Author URI: http://blogmutt.com … … 155 155 $response = $blogMuttUDID; 156 156 157 $urlRandomGet = "http://b logmutt-big.herokuapp.com/api/v1/idea/$blogMuttUDID";157 $urlRandomGet = "http://big.blogmutt.com/api/v1/idea/$blogMuttUDID"; 158 158 //echo $urlRandomGet; 159 159 $response_jsonSuggestion = $this->getResponseArrayFromServiceURL1($urlRandomGet); -
blogmutt-idea-generator/trunk/include/blogmutt-template.php
r941424 r953409 115 115 } 116 116 $mygallery = new MyGallery(); 117 $urlSuggestedGet = "http://b logmutt-big.herokuapp.com/api/v1/posts/$blogMuttUDID";117 $urlSuggestedGet = "http://big.blogmutt.com/api/v1/posts/$blogMuttUDID"; 118 118 //echo $urlSuggestedGet; 119 119 $response_jsonSuggestion = $mygallery->getResponseArrayFromServiceURL1($urlSuggestedGet); -
blogmutt-idea-generator/trunk/include/settings-template.php
r941424 r953409 180 180 $requestParam = http_build_query($_POST, NULL, '&'); 181 181 if($request=="update") 182 $urlPost = "http://b logmutt-big.herokuapp.com/api/v1/customers/$blogMuttUDID";182 $urlPost = "http://big.blogmutt.com/api/v1/customers/$blogMuttUDID"; 183 183 else 184 $urlPost = "http://b logmutt-big.herokuapp.com/api/v1/customers/";184 $urlPost = "http://big.blogmutt.com/api/v1/customers/"; 185 185 186 186 if(isset($_POST["customer"]["keywords_attributes"])){ … … 229 229 // echo "</br>" . $request; 230 230 if($request=="update"){ 231 $urlGet = "http://b logmutt-big.herokuapp.com/api/v1/customers/$blogMuttUDID";231 $urlGet = "http://big.blogmutt.com/api/v1/customers/$blogMuttUDID"; 232 232 $response_json = getResponseArrayFromServiceURL2($urlGet); 233 233 … … 239 239 echo "</pre>"; 240 240 */ 241 //http://b logmutt-big.herokuapp.com/api/v1/customers/022fb1acb4394c37778a5f19acb08dce241 //http://big.blogmutt.com/api/v1/customers/022fb1acb4394c37778a5f19acb08dce 242 242 if(count($response_json) > 0){ 243 243 $user = $response_json; … … 279 279 } 280 280 281 $urlSuggestedGet = "http://b logmutt-big.herokuapp.com/api/v1/posts/$blogMuttUDID";281 $urlSuggestedGet = "http://big.blogmutt.com/api/v1/posts/$blogMuttUDID"; 282 282 //echo $urlSuggestedGet; 283 283 $response_jsonSuggestion = getResponseArrayFromServiceURL2($urlSuggestedGet); … … 357 357 358 358 function createDraft($pId){ 359 $urlGetPost = "http://b logmutt-big.herokuapp.com/api/v1/posts/get_post/$pId";359 $urlGetPost = "http://big.blogmutt.com/api/v1/posts/get_post/$pId"; 360 360 //echo $urlSuggestedGet; 361 361 $response_jsonLandingPost = getResponseArrayFromServiceURL2($urlGetPost);
Note: See TracChangeset
for help on using the changeset viewer.