AJAX Crawl Specification is depreciated
See [1] for more information. [1] http://googlewebmastercentral.blogspot.fr/2015/10/deprecating-our-ajax-crawling-scheme.html
This commit is contained in:
		
				
					committed by
					
						
						Joachim Tingvold
					
				
			
			
				
	
			
			
			
						parent
						
							1a2b14bb47
						
					
				
				
					commit
					1cc1ec02aa
				
			
							
								
								
									
										19
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										19
									
								
								README.md
									
									
									
									
									
								
							@ -155,25 +155,6 @@ Note that the `internal-*` paths must match that of `app.cfg`. This makes use of
 | 
				
			|||||||
    plugins = python27
 | 
					    plugins = python27
 | 
				
			||||||
    module = floatapp:app
 | 
					    module = floatapp:app
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Optional: Server-side Rendering
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Some webpages may desire to optionally render pages server side when special query strings are attached, so that GoogleBot may index pages. PhotoFloat supports the [AJAX crawl specification](https://developers.google.com/webmasters/ajax-crawling/).
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    location / {
 | 
					 | 
				
			||||||
            location = / {
 | 
					 | 
				
			||||||
                include uwsgi_params;
 | 
					 | 
				
			||||||
                uwsgi_param HTTP_X_SE_ORIGINAL_URL $scheme://$host$request_uri;
 | 
					 | 
				
			||||||
                if ($args ~* _escaped_fragment_=) {
 | 
					 | 
				
			||||||
                    uwsgi_pass unix:/var/run/uwsgi-apps/server-execute-phantom.socket;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
            index index.html;
 | 
					 | 
				
			||||||
            root /var/www/htdocs/photos.jasondonenfeld.com;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
This makes use of the [Server Execute Phantom project](http://git.zx2c4.com/server-execute-phantom/about/).
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
## Optional: Deployment Makefiles
 | 
					## Optional: Deployment Makefiles
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Both the scanner and the webpage have a `make deploy` target, and the scanner has a `make scan` target, to automatically deploy assets to a remote server and run the scanner. For use, customize `deployment-config.mk` in the root of the project, and carefully read the `Makefile`s to learn what's happening.
 | 
					Both the scanner and the webpage have a `make deploy` target, and the scanner has a `make scan` target, to automatically deploy assets to a remote server and run the scanner. For use, customize `deployment-config.mk` in the root of the project, and carefully read the `Makefile`s to learn what's happening.
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,6 @@
 | 
				
			|||||||
<head>
 | 
					<head>
 | 
				
			||||||
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | 
						<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | 
				
			||||||
	<meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | 
						<meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | 
				
			||||||
	<meta name="fragment" content="!" />
 | 
					 | 
				
			||||||
	<meta name="medium" content="image" />
 | 
						<meta name="medium" content="image" />
 | 
				
			||||||
	<title>Photos</title>
 | 
						<title>Photos</title>
 | 
				
			||||||
	<link href="css/styles.min.css" rel="stylesheet" type="text/css" />
 | 
						<link href="css/styles.min.css" rel="stylesheet" type="text/css" />
 | 
				
			||||||
 | 
				
			|||||||
@ -315,10 +315,6 @@ $(document).ready(function() {
 | 
				
			|||||||
		$("#loading").show();
 | 
							$("#loading").show();
 | 
				
			||||||
		$("link[rel=image_src]").remove();
 | 
							$("link[rel=image_src]").remove();
 | 
				
			||||||
		$("link[rel=video_src]").remove();
 | 
							$("link[rel=video_src]").remove();
 | 
				
			||||||
		if (location.search.indexOf("?_escaped_fragment_=") === 0) {
 | 
					 | 
				
			||||||
			location.hash = location.search.substring(20);
 | 
					 | 
				
			||||||
			location.search = "";
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		photoFloat.parseHash(location.hash, hashParsed, die);
 | 
							photoFloat.parseHash(location.hash, hashParsed, die);
 | 
				
			||||||
	});
 | 
						});
 | 
				
			||||||
	$(window).hashchange();
 | 
						$(window).hashchange();
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user