Added scripts for Windows ME and 98 as requested in http://www.yacy-forum.de/viewtopic.php?t=839.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@494 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
rramthun 20 years ago
parent 1d83d7e4d7
commit 0211c4f297

@ -40,10 +40,10 @@ You can define URLs as start points for Web page crawling and start that crawlin
</td>
</tr>
<tr valign="top" class="TableCellDark">
<td class=small>Accept URL's with '?' / dynamic URL's:</td>
<td class=small>Accept URLs with '?' / dynamic URLs:</td>
<td class=small><input type="checkbox" name="crawlingQ" align="top" #(crawlingQChecked)#::checked#(/crawlingQChecked)#></td>
<td class=small colspan="2">
URL's pointing to dynamic content should usually not be crawled. However, there are sometimes web pages with static content that
URLs pointing to dynamic content should usually not be crawled. However, there are sometimes web pages with static content that
is accessed with URL's containing question marks. If you are unsure, do not check this to avoid crawl loops.
</td>
</tr>

@ -0,0 +1,21 @@
@Echo Off
If %1.==CPGEN. GoTo :CPGEN
Rem Generating the proper classpath unsing loops and labels
Set CLASSPATH=classes;htroot
For %%X in (lib\*.jar) Do Call %0 CPGEN %%X
For %%X in (libx\*.jar) Do Call %0 CPGEN %%X
Rem Starting yacy
Echo Generated Classpath:%CLASSPATH%
java -classpath %CLASSPATH% yacy
GoTo :END
Rem This target is used to concatenate the classpath parts
:CPGEN
Set CLASSPATH=%CLASSPATH%;%2
Rem Target needed to jump to the end of the file
:END

@ -0,0 +1,21 @@
@Echo Off
If %1.==CPGEN. GoTo :CPGEN
Rem Generating the proper classpath unsing loops and labels
Set CLASSPATH=classes;htroot
For %%X in (lib\*.jar) Do Call %0 CPGEN %%X
For %%X in (libx\*.jar) Do Call %0 CPGEN %%X
Rem Starting yacy
Echo Generated Classpath:%CLASSPATH%
javaw -classpath %CLASSPATH% yacy
Echo You can close the console safely
GoTo :END
Rem This target is used to concatenate the classpath parts
:CPGEN
Set CLASSPATH=%CLASSPATH%;%2
Rem Target needed to jump to the end of the file
:END

@ -0,0 +1,20 @@
@Echo Off
If %1.==CPGEN. GoTo :CPGEN
Rem Generating the proper classpath unsing loops and labels
Set CLASSPATH=classes;htroot
For %%X in (lib\*.jar) Do Call %0 CPGEN %%X
For %%X in (libx\*.jar) Do Call %0 CPGEN %%X
Rem Starting yacy
Echo Generated Classpath:%CLASSPATH%
java -classpath %CLASSPATH% yacy -shutdown
GoTo :END
Rem This target is used to concatenate the classpath parts
:CPGEN
Set CLASSPATH=%CLASSPATH%;%2
Rem Target needed to jump to the end of the file
:END
Loading…
Cancel
Save