Skip to content
This repository has been archived by the owner on Jan 3, 2021. It is now read-only.

Commit

Permalink
git thinks these files are modified?
Browse files Browse the repository at this point in the history
  • Loading branch information
cygri committed May 11, 2012
1 parent 7705b33 commit d6dc822
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 64 deletions.
30 changes: 15 additions & 15 deletions d2r-query.bat
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
@echo off
set D2R_ROOT=%~p0
set CP="%D2R_ROOT%build"
call :findjars "%D2R_ROOT%lib"
set LOGCONFIG=file:%D2R_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.d2r_query %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
@echo off
set D2R_ROOT=%~p0
set CP="%D2R_ROOT%build"
call :findjars "%D2R_ROOT%lib"
set LOGCONFIG=file:%D2R_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.d2r_query %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
38 changes: 19 additions & 19 deletions d2r-server.bat
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
@echo off
if NOT EXIST .\d2r-server.bat (
echo Please cd into the D2R Server directory to run the server
exit /B
)
set D2RQ_ROOT=%~p0
set CP="%D2RQ_ROOT%build"
call :findjars "%D2RQ_ROOT%lib"
set LOGCONFIG=file:%D2RQ_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.server %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
@echo off
if NOT EXIST .\d2r-server.bat (
echo Please cd into the D2R Server directory to run the server
exit /B
)
set D2RQ_ROOT=%~p0
set CP="%D2RQ_ROOT%build"
call :findjars "%D2RQ_ROOT%lib"
set LOGCONFIG=file:%D2RQ_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.server %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
30 changes: 15 additions & 15 deletions dump-rdf.bat
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
@echo off
set D2R_ROOT=%~p0
set CP="%D2R_ROOT%build"
call :findjars "%D2R_ROOT%lib"
set LOGCONFIG=file:%D2R_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.dump_rdf %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
@echo off
set D2R_ROOT=%~p0
set CP="%D2R_ROOT%build"
call :findjars "%D2R_ROOT%lib"
set LOGCONFIG=file:%D2R_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.dump_rdf %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
30 changes: 15 additions & 15 deletions generate-mapping.bat
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
@echo off
set D2RQ_ROOT=%~p0
set CP="%D2RQ_ROOT%build"
call :findjars "%D2RQ_ROOT%lib"
set LOGCONFIG=file:%D2RQ_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.generate_mapping %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1
@echo off
set D2RQ_ROOT=%~p0
set CP="%D2RQ_ROOT%build"
call :findjars "%D2RQ_ROOT%lib"
set LOGCONFIG=file:%D2RQ_ROOT%etc/log4j.properties
java -cp %CP% -Xmx1G "-Dlog4j.configuration=%LOGCONFIG%" d2rq.generate_mapping %*
exit /B

:findjars
for %%j in (%1\*.jar) do call :addjar "%%j"
for /D %%d in (%1\*) do call :findjars "%%d"
exit /B

:addjar
set CP=%CP%;%1

0 comments on commit d6dc822

Please sign in to comment.