├── .gitignore ├── organic-search-analytics ├── version.txt ├── log │ └── .gitignore ├── config │ └── .gitignore ├── robots.txt ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── css │ └── lib │ │ └── jquery │ │ └── images │ │ ├── ui-icons_0078ae_256x240.png │ │ ├── ui-icons_056b93_256x240.png │ │ ├── ui-icons_f5e175_256x240.png │ │ ├── ui-icons_f7a50d_256x240.png │ │ ├── ui-icons_fcd113_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ └── ui-bg_inset-hard_100_ffffff_1x100.png ├── js │ ├── settings.js │ ├── lib │ │ └── jqplot │ │ │ └── plugins │ │ │ ├── jqplot.ciParser.min.js │ │ │ ├── jqplot.mobile.min.js │ │ │ ├── jqplot.trendline.min.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ │ ├── jqplot.blockRenderer.min.js │ │ │ ├── jqplot.json2.min.js │ │ │ ├── jqplot.ohlcRenderer.min.js │ │ │ ├── jqplot.dragable.min.js │ │ │ ├── jqplot.pointLabels.min.js │ │ │ ├── jqplot.enhancedLegendRenderer.min.js │ │ │ └── jqplot.BezierCurveRenderer.min.js │ ├── script.js │ └── report.js ├── apis │ ├── Google │ │ ├── Exception.php │ │ ├── Auth │ │ │ ├── Exception.php │ │ │ ├── Abstract.php │ │ │ ├── LoginTicket.php │ │ │ ├── Simple.php │ │ │ ├── AppIdentity.php │ │ │ ├── AssertionCredentials.php │ │ │ └── ComputeEngine.php │ │ ├── Cache │ │ │ ├── Exception.php │ │ │ ├── Null.php │ │ │ ├── Abstract.php │ │ │ ├── Apc.php │ │ │ └── Memcache.php │ │ ├── Task │ │ │ ├── Exception.php │ │ │ └── Retryable.php │ │ ├── Logger │ │ │ ├── Exception.php │ │ │ ├── Null.php │ │ │ ├── Psr.php │ │ │ └── File.php │ │ ├── Signer │ │ │ ├── Abstract.php │ │ │ └── P12.php │ │ ├── Verifier │ │ │ ├── Abstract.php │ │ │ └── Pem.php │ │ ├── autoload.php │ │ ├── Service.php │ │ ├── Service │ │ │ ├── Genomics.php │ │ │ ├── Cloudsearch.php │ │ │ ├── Playmoviespartner.php │ │ │ ├── Exception.php │ │ │ ├── GroupsMigration.php │ │ │ ├── Admin.php │ │ │ └── Webfonts.php │ │ ├── IO │ │ │ ├── Exception.php │ │ │ └── Curl.php │ │ ├── Collection.php │ │ ├── Utils.php │ │ └── Http │ │ │ ├── Batch.php │ │ │ └── REST.php │ └── Bing │ │ └── Webmasters.php ├── inc │ ├── html │ │ ├── _alert.php │ │ ├── _saveReport.php │ │ ├── _foot.php │ │ └── _head.php │ └── code │ │ ├── gapiOauth.php │ │ ├── debugLogger.php │ │ ├── globalIncludes.php │ │ ├── wmtimport.php │ │ ├── mysql.php │ │ └── core.php ├── ajax.php ├── index.php ├── data-capture.php ├── data-capture-run.php ├── settings-configure.php └── data-delete.php ├── README.md └── organic-search-analytics.sql /.gitignore: -------------------------------------------------------------------------------- 1 | *.p12 2 | .DS_STORE -------------------------------------------------------------------------------- /organic-search-analytics/version.txt: -------------------------------------------------------------------------------- 1 | 2.5.4 2 | -------------------------------------------------------------------------------- /organic-search-analytics/log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /organic-search-analytics/config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /organic-search-analytics/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /organic-search-analytics/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /organic-search-analytics/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /organic-search-analytics/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /organic-search-analytics/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /organic-search-analytics/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-icons_0078ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-icons_0078ae_256x240.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-icons_056b93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-icons_056b93_256x240.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-icons_f5e175_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-icons_f5e175_256x240.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-icons_f7a50d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-icons_f7a50d_256x240.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-icons_fcd113_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-icons_fcd113_256x240.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-bg_gloss-wave_45_e14f1c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-bg_gloss-wave_45_e14f1c_500x100.png -------------------------------------------------------------------------------- /organic-search-analytics/css/lib/jquery/images/ui-bg_inset-hard_100_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PromInc/organic-search-analytics/HEAD/organic-search-analytics/css/lib/jquery/images/ui-bg_inset-hard_100_ffffff_1x100.png -------------------------------------------------------------------------------- /organic-search-analytics/js/settings.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | 3 | $("#sites_google_new_text").on( 'input', function() { 4 | updateNewSiteText( this ); 5 | }); 6 | $("#sites_google_new_text").on( 'keyup', function() { 7 | updateNewSiteText( this ); 8 | }); 9 | 10 | function updateNewSiteText( object ) { 11 | $("#sites_google_new_check").val( object.value ); 12 | if( object.value.length > 0 ) { 13 | $("#sites_google_new_check").prop('checked', true); 14 | } else { 15 | $("#sites_google_new_check").prop('checked', false); 16 | } 17 | } 18 | 19 | }); -------------------------------------------------------------------------------- /organic-search-analytics/apis/Google/Exception.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /organic-search-analytics/js/lib/jqplot/plugins/jqplot.ciParser.min.js: -------------------------------------------------------------------------------- 1 | /* jqPlot 1.0.8r1250 | (c) 2009-2013 Chris Leonello | jplot.com 2 | jsDate | (c) 2010-2013 Chris Leonello 3 | */(function(a){a.jqplot.ciParser=function(g,l){var m=[],o,n,h,f,e,c;if(typeof(g)=="string"){g=a.jqplot.JSON.parse(g,d)}else{if(typeof(g)=="object"){for(e in g){for(h=0;h