summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-08-17 14:18:46 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-08-17 14:18:46 +0200
commit9de77404b9fea20dc6a43b6514fa6d3f534c5070 (patch)
tree734f30a9c2d184f2f745fa51ec29457758b9fa6b
parent8cbb2941b31878f7b0cccc3763f8df0d41554212 (diff)
downloadcrawler-9de77404b9fea20dc6a43b6514fa6d3f534c5070.tar.gz
crawler-9de77404b9fea20dc6a43b6514fa6d3f534c5070.tar.bz2
some project renames
-rw-r--r--GNUmakefile2
-rwxr-xr-xMakefile.W322
-rw-r--r--README3
-rw-r--r--TODOS5
-rw-r--r--makefiles/gmake/top.mk4
-rwxr-xr-xsrc/modules/fetcher/winhttp/WinHttpFetcher.cpp2
-rwxr-xr-xtests/winhttp/test1.cpp2
7 files changed, 11 insertions, 9 deletions
diff --git a/GNUmakefile b/GNUmakefile
index bcd6576..dc35d94 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -2,7 +2,7 @@ TOPDIR = .
SUBDIRS = libfetch googleurl streamhtmlparser sqlite3 src tests
-PACKAGE_NAME = CrawlingWolf
+PACKAGE_NAME = crawler
PACKAGE_VERSION = 0.0.1
-include $(TOPDIR)/makefiles/gmake/top.mk
diff --git a/Makefile.W32 b/Makefile.W32
index 9985bfa..5cc4550 100755
--- a/Makefile.W32
+++ b/Makefile.W32
@@ -2,7 +2,7 @@ TOPDIR = .
SUBDIRS = utils googleurl streamhtmlparser sqlite3 src tests
-PACKAGE_NAME = CrawlingWolf
+PACKAGE_NAME = crawler
PACKAGE_VERSION = 0.0.1
!INCLUDE $(TOPDIR)\makefiles\nmake\top.mk
diff --git a/README b/README
index daabe78..028356b 100644
--- a/README
+++ b/README
@@ -1,6 +1,3 @@
-CrawlingWolf
-------------
-
A web roboter framework written in C++ following the Mercator
architecture.
diff --git a/TODOS b/TODOS
new file mode 100644
index 0000000..5603cce
--- /dev/null
+++ b/TODOS
@@ -0,0 +1,5 @@
+- singleton with registered pointers, so they can be shared between
+ loadable modules on Windows, example is the logger singleton currently
+- common spooling code in RewindInputStream must be extracted and
+ used in a cascade of streams (or streambufs?)
+
diff --git a/makefiles/gmake/top.mk b/makefiles/gmake/top.mk
index fd31b11..e8dd7c5 100644
--- a/makefiles/gmake/top.mk
+++ b/makefiles/gmake/top.mk
@@ -63,8 +63,8 @@ help:
.PHONY: config
config:
- @echo "Build Configuration for CrawlingWolf"
- @echo "------------------------------------"
+ @echo "Build Configuration"
+ @echo "-------------------"
@echo
@echo "Operating system: $(PLATFORM), $(OS_MAJOR_VERSION).$(OS_MINOR_VERSION)"
@echo "Architecture: $(ARCH)"
diff --git a/src/modules/fetcher/winhttp/WinHttpFetcher.cpp b/src/modules/fetcher/winhttp/WinHttpFetcher.cpp
index 7f1a63b..8a0e395 100755
--- a/src/modules/fetcher/winhttp/WinHttpFetcher.cpp
+++ b/src/modules/fetcher/winhttp/WinHttpFetcher.cpp
@@ -9,7 +9,7 @@
WinHttpFetcher::WinHttpFetcher( )
: m_session( 0 )
{
- m_session = WinHttpOpen( L"WinHTTP CrawlingWolf/0.0.1",
+ m_session = WinHttpOpen( L"WinHTTP crawler/0.0.1",
WINHTTP_ACCESS_TYPE_DEFAULT_PROXY,
WINHTTP_NO_PROXY_NAME,
WINHTTP_NO_PROXY_BYPASS, 0 );
diff --git a/tests/winhttp/test1.cpp b/tests/winhttp/test1.cpp
index e565cac..39cbbe4 100755
--- a/tests/winhttp/test1.cpp
+++ b/tests/winhttp/test1.cpp
@@ -9,7 +9,7 @@ using namespace std;
int main( void )
{
- HINTERNET session = WinHttpOpen( L"WinHTTP CrawlingWolf/0.0.1",
+ HINTERNET session = WinHttpOpen( L"WinHTTP crawler/0.0.1",
WINHTTP_ACCESS_TYPE_DEFAULT_PROXY,
WINHTTP_NO_PROXY_NAME,
WINHTTP_NO_PROXY_BYPASS, 0 );