commit f213ce5411e5f672002c45c12e432977e85a34d2 Author: King_DuckZ Date: Fri Jun 6 20:24:24 2014 +0200 First import diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..a0a425e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.8 FATAL_ERROR) +project(scraper CXX) + +add_executable(${PROJECT_NAME} + src/main.cpp +) diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..ae17ce0 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,112 @@ +#include +#include + +namespace { + const char g_testData[] = { + "\n" + "\n" + "LibReSSL\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" + "
\n" + "
\n" + "
\n" + "

LibReSSL

\n" + "
\n" + "
\n" + "
\n" + "

LibReSSL is a FREE version of the SSL/TLS protocol\n" + "forked from OpenSSL

\n" + "

\n" + "At the moment we are too\n" + "busy deleting and rewriting code to make a decent web page. No we\n" + "don't want help making web pages, thank you.\n" + "

\n" + "

Check back here soon for updates.

\n" + "
\n" + "
\n" + "
\n" + "
\n" + "

Resources:

\n" + "
\n" + "
\n" + "
\n" + "
\n" + "
\n" + "

For OpenBSD

\n" + "
\n" + "
\n" + "\n" + "
\n" + "
\n" + "
\n" + "
\n" + "

For other OS's

\n" + "
\n" + "
\n" + "

\n" + "

\n" + "

\n" + "

\n" + "Multi OS support will happen once we have\n" + "

\n" + "
    \n" + "
  • Flensed,\n" + "refactored, rewritten, and fixed enough of the code so we have stable\n" + "baseline that we trust and can be maintained/improved.
  • \n" + "
  • The right Portability team in place.
  • \n" + "
  • A Stable Commitment of\n" + "Funding to support an increased development and porting\n" + "effort.
  • \n" + "
\n" + "

\n" + "We know you all want this tomorrow. We are working as fast as we can\n" + "but our primary focus is good software that we trust to run\n" + "ourselves. We don't want to break your heart.\n" + "

\n" + "
\n" + "
\n" + "
\n" + "

\n" + "LibReSSL is primarily developed by the OpenBSD Project, and its first\n" + "inclusion into an operating system will be in OpenBSD 5.6.\n" + "

\n" + "

\n" + "LibReSSL is supported financially by The OpenBSD Foundation as\n" + "well as by the The\n" + "OpenBSD Project. Please consider donating to\n" + "support our efforts.
\n" + "

\n" + "
\n" + "\n" + "
\n" + "\n" + }; +} //unnamed namespace + +int main (int argc, char* argv[]) { + std::cout << g_testData << std::endl; + return 0; +}