├── .openshift ├── pear.txt ├── cron │ ├── daily │ │ └── .gitignore │ ├── hourly │ │ └── .gitignore │ ├── minutely │ │ └── .gitignore │ ├── monthly │ │ └── .gitignore │ ├── weekly │ │ ├── chrono.dat │ │ ├── chronograph │ │ ├── jobs.deny │ │ ├── jobs.allow │ │ └── README │ └── README.cron ├── action_hooks │ └── README.md ├── markers │ └── README.md └── README.md ├── crawler ├── crawlStatus.txt ├── PHPCrawl │ ├── CHANGELOG.txt │ ├── test_interface │ │ ├── info.gif │ │ ├── style.css │ │ └── phpcrawl_testinterface.conf.php │ ├── libs │ │ ├── PHPCrawlerUtils.class.php │ │ ├── PHPCrawlerHTTPRequest.class.php │ │ ├── Enums │ │ │ ├── PHPCrawlerHTTPProtocols.class.php │ │ │ ├── PHPCrawlerUrlCacheTypes.class.php │ │ │ ├── PHPCrawlerMultiProcessModes.class.php │ │ │ ├── PHPCrawlerAbortReasons.class.php │ │ │ └── PHPCrawlerRequestErrors.class.php │ │ ├── CookieCache │ │ │ └── PHPCrawlerCookieCacheBase.class.php │ │ ├── PHPCrawlerUrlPartsDescriptor.class.php │ │ ├── PHPCrawlerURLDescriptor.class.php │ │ ├── PHPCrawlerDNSCache.class.php │ │ └── PHPCrawlerStatus.class.php │ ├── documentation │ │ ├── testinterface.jpg │ │ ├── classreferences │ │ │ ├── expand.gif │ │ │ ├── collapse.gif │ │ │ ├── PHPCrawler │ │ │ │ ├── collapse.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── property_detail_tpl_property_class_version.htm │ │ │ │ ├── method_detail_tpl_method_PHPCrawler.htm │ │ │ │ └── method_detail_tpl_method_getCrawlerId.htm │ │ │ ├── PHPCrawlerAbortReasons │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── constant_detail_tpl_constant_ABORTREASON_PASSEDTHROUGH.htm │ │ │ │ ├── constant_detail_tpl_constant_ABORTREASON_USERABORT.htm │ │ │ │ ├── constant_detail_tpl_constant_ABORTREASON_FILELIMIT_REACHED.htm │ │ │ │ └── constant_detail_tpl_constant_ABORTREASON_TRAFFICLIMIT_REACHED.htm │ │ │ ├── PHPCrawlerDocumentInfo │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── method_detail_tpl_method_toArray.htm │ │ │ │ ├── property_detail_tpl_property_benchmarks.htm │ │ │ │ ├── method_detail_tpl_method_setLinksFoundArray.htm │ │ │ │ ├── property_detail_tpl_property_port.htm │ │ │ │ ├── property_detail_tpl_property_file.htm │ │ │ │ ├── property_detail_tpl_property_path.htm │ │ │ │ ├── property_detail_tpl_property_source.htm │ │ │ │ ├── property_detail_tpl_property_host.htm │ │ │ │ ├── property_detail_tpl_property_query.htm │ │ │ │ ├── property_detail_tpl_property_header.htm │ │ │ │ ├── property_detail_tpl_property_protocol.htm │ │ │ │ ├── property_detail_tpl_property_url.htm │ │ │ │ ├── property_detail_tpl_property_referer_url.htm │ │ │ │ ├── property_detail_tpl_property_header_send.htm │ │ │ │ ├── property_detail_tpl_property_content_type.htm │ │ │ │ ├── property_detail_tpl_property_bytes_received.htm │ │ │ │ ├── property_detail_tpl_property_error_occured.htm │ │ │ │ ├── property_detail_tpl_property_http_status_code.htm │ │ │ │ ├── property_detail_tpl_property_header_bytes_received.htm │ │ │ │ ├── property_detail_tpl_property_refering_link_raw.htm │ │ │ │ ├── property_detail_tpl_property_received.htm │ │ │ │ ├── property_detail_tpl_property_content_tmp_file.htm │ │ │ │ ├── property_detail_tpl_property_refering_linkcode.htm │ │ │ │ ├── property_detail_tpl_property_error_string.htm │ │ │ │ ├── property_detail_tpl_property_received_completly.htm │ │ │ │ ├── property_detail_tpl_property_server_connect_time.htm │ │ │ │ ├── property_detail_tpl_property_content.htm │ │ │ │ ├── property_detail_tpl_property_cookies.htm │ │ │ │ ├── property_detail_tpl_property_received_to_file.htm │ │ │ │ ├── property_detail_tpl_property_traffic_limit_reached.htm │ │ │ │ ├── property_detail_tpl_property_received_to_memory.htm │ │ │ │ └── property_detail_tpl_property_unbuffered_bytes_read.htm │ │ │ ├── PHPCrawlerHTTPProtocols │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── constant_detail_tpl_constant_HTTP_1_0.htm │ │ │ │ └── constant_detail_tpl_constant_HTTP_1_1.htm │ │ │ ├── PHPCrawlerProcessReport │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── method_detail_tpl_method_toArray.htm │ │ │ │ ├── property_detail_tpl_property_files_received.htm │ │ │ │ ├── property_detail_tpl_property_bytes_received.htm │ │ │ │ ├── property_detail_tpl_property_links_followed.htm │ │ │ │ ├── property_detail_tpl_property_data_throughput.htm │ │ │ │ ├── property_detail_tpl_property_file_limit_reached.htm │ │ │ │ ├── property_detail_tpl_property_process_runtime.htm │ │ │ │ ├── property_detail_tpl_property_traffic_limit_reached.htm │ │ │ │ ├── property_detail_tpl_property_user_abort.htm │ │ │ │ ├── property_detail_tpl_property_avg_proc_data_transfer_rate.htm │ │ │ │ ├── property_detail_tpl_property_memory_peak_usage.htm │ │ │ │ ├── property_detail_tpl_property_avg_server_response_time.htm │ │ │ │ ├── property_detail_tpl_property_abort_reason.htm │ │ │ │ └── property_detail_tpl_property_avg_server_connect_time.htm │ │ │ ├── PHPCrawlerRequestErrors │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── constant_detail_tpl_constant_ERROR_HOST_UNREACHABLE.htm │ │ │ │ ├── constant_detail_tpl_constant_ERROR_PROXY_UNREACHABLE.htm │ │ │ │ ├── constant_detail_tpl_constant_ERROR_SOCKET_TIMEOUT.htm │ │ │ │ ├── constant_detail_tpl_constant_ERROR_NO_HTTP_HEADER.htm │ │ │ │ ├── constant_detail_tpl_constant_ERROR_TMP_FILE_NOT_WRITEABLE.htm │ │ │ │ └── constant_detail_tpl_constant_ERROR_SSL_NOT_SUPPORTED.htm │ │ │ ├── PHPCrawlerResponseHeader │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── property_detail_tpl_property_content_type.htm │ │ │ │ ├── property_detail_tpl_property_http_status_code.htm │ │ │ │ ├── property_detail_tpl_property_header_raw.htm │ │ │ │ ├── property_detail_tpl_property_content_length.htm │ │ │ │ ├── property_detail_tpl_property_source_url.htm │ │ │ │ ├── property_detail_tpl_property_content_encoding.htm │ │ │ │ ├── property_detail_tpl_property_transfer_encoding.htm │ │ │ │ ├── method_detail_tpl_method_PHPCrawlerResponseHeader.htm │ │ │ │ └── property_detail_tpl_property_cookies.htm │ │ │ ├── PHPCrawlerURLDescriptor │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── method_detail_tpl_method_PHPCrawlerURLDescriptor.htm │ │ │ │ ├── property_detail_tpl_property_linktext.htm │ │ │ │ ├── property_detail_tpl_property_link_raw.htm │ │ │ │ ├── property_detail_tpl_property_url_rebuild.htm │ │ │ │ ├── property_detail_tpl_property_linkcode.htm │ │ │ │ ├── property_detail_tpl_property_refering_url.htm │ │ │ │ └── property_detail_tpl_property_is_redirect_url.htm │ │ │ ├── PHPCrawlerUrlCacheTypes │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── constant_detail_tpl_constant_URLCACHE_MEMORY.htm │ │ │ │ └── constant_detail_tpl_constant_URLCACHE_SQLITE.htm │ │ │ ├── PHPCrawlerCookieDescriptor │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── property_detail_tpl_property_name.htm │ │ │ │ ├── property_detail_tpl_property_path.htm │ │ │ │ ├── property_detail_tpl_property_value.htm │ │ │ │ ├── property_detail_tpl_property_domain.htm │ │ │ │ ├── property_detail_tpl_property_source_url.htm │ │ │ │ ├── property_detail_tpl_property_expires.htm │ │ │ │ ├── property_detail_tpl_property_source_domain.htm │ │ │ │ ├── property_detail_tpl_property_expire_timestamp.htm │ │ │ │ └── property_detail_tpl_property_cookie_send_time.htm │ │ │ ├── PHPCrawlerMultiProcessModes │ │ │ │ ├── expand.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── google_code.php │ │ │ │ ├── index.html │ │ │ │ ├── constant_detail_tpl_constant_MPMODE_NONE.htm │ │ │ │ ├── constant_detail_tpl_constant_MPMODE_PARENT_EXECUTES_USERCODE.htm │ │ │ │ └── constant_detail_tpl_constant_MPMODE_CHILDS_EXECUTES_USERCODE.htm │ │ │ ├── google_code.php │ │ │ ├── print_googlead_div.js │ │ │ └── index.html │ │ ├── google_code.php │ │ └── index.html │ └── classes │ │ └── phpcrawler.class.php ├── bgCrawl.php ├── admin │ ├── login.php │ ├── home.php │ └── index.php └── runCrawl.php ├── inc ├── .gitignore ├── composer.json ├── error.php ├── config.php └── track.php ├── favicon.ico ├── load.php ├── robots.txt ├── cdn └── css │ ├── index.css │ └── search.css ├── url.php ├── .htaccess ├── about ├── bot.php ├── stats.php └── index.php ├── README.md ├── index.php └── LICENSE /.openshift/pear.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/crawlStatus.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /.openshift/cron/daily/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/hourly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/minutely/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/monthly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/favicon.ico -------------------------------------------------------------------------------- /.openshift/cron/weekly/chrono.dat: -------------------------------------------------------------------------------- 1 | Time And Relative D...n In Execution (Open)Shift! 2 | -------------------------------------------------------------------------------- /inc/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "francium/process": "^0.3.2" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/chronograph: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "`date`: `cat $(dirname \"$0\")/chrono.dat`" 4 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/CHANGELOG.txt -------------------------------------------------------------------------------- /crawler/PHPCrawl/test_interface/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/test_interface/info.gif -------------------------------------------------------------------------------- /load.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

404 Not Found

5 |

6 | The request file was not found on this server. 7 |

8 | 9 | 10 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerAbortReasons/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerAbortReasons/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerDocumentInfo/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerDocumentInfo/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerAbortReasons/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerAbortReasons/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerDocumentInfo/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerDocumentInfo/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerHTTPProtocols/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerHTTPProtocols/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerProcessReport/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerProcessReport/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerRequestErrors/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerRequestErrors/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerResponseHeader/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerResponseHeader/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerURLDescriptor/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerURLDescriptor/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerUrlCacheTypes/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerUrlCacheTypes/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerCookieDescriptor/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerCookieDescriptor/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerHTTPProtocols/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerHTTPProtocols/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerMultiProcessModes/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerMultiProcessModes/expand.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerProcessReport/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerProcessReport/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerRequestErrors/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerRequestErrors/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerResponseHeader/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerResponseHeader/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerURLDescriptor/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerURLDescriptor/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerUrlCacheTypes/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerUrlCacheTypes/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerCookieDescriptor/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerCookieDescriptor/collapse.gif -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerMultiProcessModes/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subins2000/search/HEAD/crawler/PHPCrawl/documentation/classreferences/PHPCrawlerMultiProcessModes/collapse.gif -------------------------------------------------------------------------------- /.openshift/markers/README.md: -------------------------------------------------------------------------------- 1 | For information about markers, consult the documentation: 2 | 3 | http://openshift.github.io/documentation/oo_user_guide.html#markers 4 | http://openshift.github.io/documentation/oo_cartridge_guide.html#php-markers 5 | -------------------------------------------------------------------------------- /crawler/admin/login.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/classes/phpcrawler.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/README.md: -------------------------------------------------------------------------------- 1 | The OpenShift `php` cartridge documentation can be found at: 2 | http://openshift.github.io/documentation/oo_cartridge_guide.html#php 3 | 4 | For information about .openshift directory, consult the documentation: 5 | http://openshift.github.io/documentation/oo_user_guide.html#the-openshift-directory 6 | -------------------------------------------------------------------------------- /cdn/css/index.css: -------------------------------------------------------------------------------- 1 | .container .searchForm{ 2 | margin-top:20px; 3 | padding:5px; 4 | } 5 | .container .searchForm #query{ 6 | width: 400px; 7 | padding:4px 5px; 8 | font-size:15px; 9 | } 10 | .container .searchForm .shape-search{ 11 | width: 100px; 12 | height:15px; 13 | } 14 | .container .searchForm div, .container .searchForm p{ 15 | margin-top:10px; 16 | } 17 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/libs/Enums/PHPCrawlerHTTPProtocols.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.allow: -------------------------------------------------------------------------------- 1 | # 2 | # Script or job files listed in here (one entry per line) will be 3 | # executed on a weekly-basis. 4 | # 5 | # Example: The chronograph script will be executed weekly but the README 6 | # and chrono.dat files in this directory will be ignored. 7 | # 8 | # The README file is actually ignored due to the entry in the 9 | # jobs.deny which is checked before jobs.allow (this file). 10 | # 11 | chronograph 12 | 13 | -------------------------------------------------------------------------------- /url.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/libs/Enums/PHPCrawlerUrlCacheTypes.class.php: -------------------------------------------------------------------------------- 1 | /dev/null &"); 12 | } 13 | } 14 | execInbg("php -q $dir/bgCrawl.php"); 15 | file_put_contents($s, 1); 16 | echo "Started Running"; 17 | }else{ 18 | echo "Currently Running"; 19 | } 20 | ?> -------------------------------------------------------------------------------- /inc/config.php: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/google_code.php: -------------------------------------------------------------------------------- 1 | 5 | -->












\r\n"+"\r\n"+"\r\n"+"\r\n
");} -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawler/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerAbortReasons/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerCookieDescriptor/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerDocumentInfo/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerHTTPProtocols/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerProcessReport/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerRequestErrors/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerResponseHeader/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerURLDescriptor/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerUrlCacheTypes/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/classreferences/PHPCrawlerMultiProcessModes/index.html: -------------------------------------------------------------------------------- 1 | Project Documentation -------------------------------------------------------------------------------- /inc/track.php: -------------------------------------------------------------------------------- 1 | 4 | 12 | 17 | 20 | -------------------------------------------------------------------------------- /cdn/css/search.css: -------------------------------------------------------------------------------- 1 | .header .searchForm #query{ 2 | width:400px !important; 3 | } 4 | .header{ 5 | text-align:center; 6 | } 7 | .container{ 8 | width:500px; 9 | } 10 | .container .info{ 11 | color: gray; 12 | } 13 | .results{ 14 | width: 500px; 15 | margin-top:25px; 16 | } 17 | .result{ 18 | margin:20px 0px; 19 | } 20 | .result .title{ 21 | margin-bottom: 0px; 22 | font-size: 17px; 23 | } 24 | .result .url{ 25 | font-size: 13px; 26 | color: #006621; 27 | overflow:hidden; 28 | height:20px; 29 | } 30 | .pages{ 31 | width: 500px; 32 | text-align: center; 33 | margin: 0px auto 10px auto; 34 | } 35 | .pages .button{ 36 | margin: 0px 3px 3px; 37 | } 38 | .pages .button.current{ 39 | background:black; 40 | } 41 | -------------------------------------------------------------------------------- /crawler/PHPCrawl/libs/Enums/PHPCrawlerMultiProcessModes.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/admin/index.php: -------------------------------------------------------------------------------- 1 | 2 | 14 |
15 | 16 | 17 | 18 |
-------------------------------------------------------------------------------- /crawler/PHPCrawl/documentation/google_code.php: -------------------------------------------------------------------------------- 1 | 5 | -->