-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.2: (1069 commits) Add GITTAG build option Remove sha for source package Remove useless references in tutorial Fix tracking issue in html pages Fix marshal issue when no debug info available Fix doc duplicated title Fix workshop doc Improve package file name Fix luajit install path Exclude unneeded sphinx files Bump version to 0.2 Add sha1sum for source package Fix indent in Makefile Fix class name in cross ref Fix crossrefs in workshop Remove unused files in workshop Fix sticky navbar issue Fix C API rendering Improve css for doc Fix navbar next, up, prev ... Conflicts: .gitmodules
- Loading branch information
Showing
857 changed files
with
59,474 additions
and
11,313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
/make | ||
/workspace | ||
/buildtag.cmake | ||
/doc/genimages | ||
/doc/theme/haka/track.html | ||
/sample/mymodule/Makefile | ||
*.swp | ||
.project | ||
.externalToolBuilders |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[submodule "external/luajit"] | ||
path = external/luajit | ||
url = git://repo.or.cz/luajit-2.0.git | ||
[submodule "external/sphinx-lua"] | ||
path = external/sphinx-lua | ||
url = git://github.com/redjack/sphinx-lua | ||
[submodule "external/iniparser"] | ||
path = external/iniparser | ||
url = git://github.com/ndevilla/iniparser.git | ||
[submodule "external/lua"] | ||
path = external/lua | ||
url = git://github.com/haka-security/lua.git | ||
[submodule "external/iniparser/src"] | ||
path = external/iniparser/src | ||
url = https://github.com/haka-security/iniparser.git | ||
[submodule "external/lua/src"] | ||
path = external/lua/src | ||
url = https://github.com/haka-security/lua.git | ||
[submodule "external/luajit/src"] | ||
path = external/luajit/src | ||
url = http://luajit.org/git/luajit-2.0.git | ||
[submodule "external/luaunit/src"] | ||
path = external/luaunit/src | ||
url = https://github.com/haka-security/luaunit.git | ||
[submodule "external/breathe"] | ||
path = external/breathe | ||
url = https://github.com/haka-security/breathe.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,3 @@ _build() { | |
_runeach _build | ||
|
||
exit 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#! /bin/bash | ||
|
||
source autobuild/vars.sh | ||
source autobuild/includes.sh | ||
|
||
_coverage() { | ||
_run mkdir -p "$MAKEDIR/Coverage-$1" | ||
cd "$MAKEDIR/Coverage-$1" | ||
|
||
_run cmake -DBUILD=Coverage -DLUA=$1 "$ROOT" | ||
_run make all | ||
_run make coverage_clean | ||
VALGRIND=0 make tests | ||
_run make coverage | ||
|
||
if [ -n "$DROPDIR" ]; then | ||
_run mkdir -p "$DROPDIR/coverage-$1" | ||
_run cp -r coverage "$DROPDIR/coverage-$1" | ||
fi | ||
} | ||
|
||
_runeachoptions _coverage | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#! /bin/bash | ||
|
||
source autobuild/vars.sh | ||
source autobuild/includes.sh | ||
|
||
_doc() { | ||
cd "$MAKEDIR/$1-$2" | ||
_run make doc | ||
|
||
if [ -n "$DROPDIR" ]; then | ||
### Copy to destination | ||
_run mkdir -p "$DROPDIR/" | ||
_run cp -r doc/doc "$DROPDIR/" | ||
_run cd doc/doc && tar -cz -f "$DROPDIR/haka-doc.tgz" * | ||
fi | ||
} | ||
|
||
_runeach _doc | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,8 @@ _runeach() { | |
done | ||
} | ||
|
||
_runeachoptions() { | ||
for lua in $(echo "$HAKA_LUA" | sed s/,/\\n/g); do | ||
$* $lua | ||
done | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,3 @@ _package() { | |
_runeach _package | ||
|
||
exit 0 | ||
|
Oops, something went wrong.