Skip to content

Commit

Permalink
normalize end-of-line characters throughout the repository
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Cyganiak authored and Richard Cyganiak committed Jan 11, 2011
1 parent da808d4 commit ab839d6
Show file tree
Hide file tree
Showing 25 changed files with 3,693 additions and 3,691 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
@@ -0,0 +1,2 @@
* text=auto
*.bat eol=crlf
38 changes: 19 additions & 19 deletions d2r-server.bat
@@ -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% -Xmx256M "-Dlog4j.configuration=%LOGCONFIG%" d2rq.server %1 %2 %3 %4 %5 %6 %7 %8 %9
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% -Xmx256M "-Dlog4j.configuration=%LOGCONFIG%" d2rq.server %1 %2 %3 %4 %5 %6 %7 %8 %9
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
718 changes: 359 additions & 359 deletions doc/index.html

Large diffs are not rendered by default.

0 comments on commit ab839d6

Please sign in to comment.