├── AUTHORS ├── Admin ├── Manual.txt ├── conf.json ├── css │ ├── bootstrap-modal-bs3patch.css │ ├── bootstrap-modal.css │ ├── bootstrap.css │ ├── css.css │ └── whitedb.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── html │ ├── data.html │ ├── edit.html │ ├── graph.html │ └── new.html ├── index.html └── js │ ├── ._templates.js │ ├── bootstrap-modal.js │ ├── bootstrap-modalmanager.js │ ├── bootstrap.min.js │ ├── d3.min.js │ ├── data.js │ ├── edit.js │ ├── graph.js │ ├── handlebars.js │ ├── helpers.js │ ├── index.js │ ├── jquery-2.1.0.min.js │ ├── js.js │ ├── new.js │ └── templates.js ├── Bootstrap ├── COPYING ├── ChangeLog ├── Db ├── Makefile.am ├── crc1.h ├── dballoc.c ├── dballoc.h ├── dbapi.h ├── dbcompare.c ├── dbcompare.h ├── dbdata.c ├── dbdata.h ├── dbdump.c ├── dbdump.h ├── dbfeatures.h ├── dbhash.c ├── dbhash.h ├── dbindex.c ├── dbindex.h ├── dbjson.c ├── dbjson.h ├── dblock.c ├── dblock.h ├── dblog.c ├── dblog.h ├── dbmem.c ├── dbmem.h ├── dbmpool.c ├── dbmpool.h ├── dbquery.c ├── dbquery.h ├── dbschema.c ├── dbschema.h ├── dbutil.c ├── dbutil.h ├── indexapi.h └── rdfapi.h ├── Doc ├── Install.txt ├── Install2html.sed ├── Manual.txt ├── Manual2html.sed ├── Tutorial.txt ├── Tutorial2html.sed ├── Utilities.txt ├── python.txt ├── python2html.sed └── whitedb.7 ├── Doxyfile ├── Examples ├── Makefile.am ├── compile_demo.bat ├── compile_demo.sh ├── compile_query.bat ├── compile_query.sh ├── demo.c ├── dserve.c ├── query.c ├── raptortry.c ├── speed │ ├── README │ ├── speed1.c │ ├── speed10.c │ ├── speed11.c │ ├── speed12.c │ ├── speed13.c │ ├── speed15.c │ ├── speed16.c │ ├── speed2.c │ ├── speed20.c │ ├── speed21.c │ ├── speed3.c │ ├── speed4.c │ ├── speed5.c │ ├── speed6.c │ ├── speed7.c │ └── speed8.c ├── tut1.c ├── tut2.c ├── tut3.c ├── tut4.c ├── tut5.c ├── tut6.c └── tut7.c ├── GPLLICENCE ├── INSTALL ├── MANIFEST ├── Main ├── Makefile.am ├── gendata.c ├── indextool.c ├── selftest.c ├── stresstest.c └── wgdb.c ├── Makefile.am ├── NEWS ├── Parser ├── Makefile.am ├── dbgenparse.h ├── dbotter.l ├── dbotter.y ├── dbotterparse.h ├── dbparse.c ├── dbparse.h ├── dbprolog.l ├── dbprolog.y └── dbprologparse.h ├── Printer ├── Makefile.am ├── dbotterprint.c └── dbotterprint.h ├── Python ├── Makefile.am ├── WGandalf.py ├── compile.bat ├── compile.sh ├── tests.py ├── wgdbmodule.c └── whitedb.py ├── README ├── README.asc ├── Reasoner ├── Makefile.am ├── build.c ├── build.h ├── clstore.c ├── clstore.h ├── clterm.c ├── clterm.h ├── derive.c ├── derive.h ├── glb.c ├── glb.h ├── mem.c ├── mem.h ├── printerrutils.c ├── printerrutils.h ├── rgenloop.c ├── rgenloop.h ├── rincludes.h ├── rmain.c ├── rmain.h ├── rtechdoc.txt ├── subsume.c ├── subsume.h ├── types.h ├── unify.c └── unify.h ├── Rexamples ├── luka.txt ├── luka2.txt ├── otter.txt ├── otter1.txt ├── otter2.txt ├── otter4.txt ├── otter5.txt ├── otter7.txt ├── otter_parse_test.txt ├── p1.otter ├── rrun ├── rules.txt ├── steam.txt ├── viga.txt └── wrong_notprovable.txt ├── Server ├── Makefile ├── Manifest ├── Manual.txt ├── README ├── compile.bat ├── compile.sh ├── conf.txt ├── conf_example.txt ├── dserve.c ├── dserve.h ├── dserve_net.c ├── dserve_util.c ├── examplecertificate.crt ├── exampleprivateKey.key ├── exampleprivateKey.pem ├── exampleprivatekey.key ├── nsmeasure.c └── timecmd.bat ├── Test ├── Makefile.am ├── common.test ├── dbtest.c ├── dbtest.h ├── log.test ├── rtest.c └── rtest.h ├── acinclude.m4 ├── compile.bat ├── compile.sh ├── config-gcc.h ├── config-w32.h ├── configure.ac ├── gendoc.sh ├── java └── jni │ ├── Readme.txt │ ├── classes │ └── .gitignore │ ├── compileBridge.bat │ ├── compileJava.bat │ ├── compile_bridge.sh │ ├── compile_java.sh │ ├── config.h │ ├── library │ └── .gitignore │ ├── runJava.bat │ ├── run_java.sh │ ├── setEnv.bat │ └── src │ ├── native │ └── whitedbDriver.c │ └── whitedb │ ├── driver │ ├── WhiteDB.java │ └── tests.java │ ├── holder │ ├── Database.java │ ├── Query.java │ ├── Record.java │ └── SampleObject.java │ └── util │ ├── ArgListEntry.java │ └── FieldComparator.java ├── json ├── Makefile.am ├── yajl_all.c ├── yajl_all.h └── yajl_api.h ├── unite.sh ├── wgdb.def └── whitedb.pc.in /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priitj/whitedb/9d898103330695dd18db5839120e0d2522329154/AUTHORS -------------------------------------------------------------------------------- /Admin/Manual.txt: -------------------------------------------------------------------------------- 1 | Copy files into a folder which Apache folder. For example /var/www/ in Ubuntu. 2 | Configure conf.json according to where you have dserve and which database you use. -------------------------------------------------------------------------------- /Admin/conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "url" : "http://localhost/cgi-bin/dserve", 3 | "database" : "1000" 4 | } -------------------------------------------------------------------------------- /Admin/css/bootstrap-modal-bs3patch.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Modal 3 | * 4 | * Copyright Jordan Schroter 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Boostrap 3 patch for for bootstrap-modal. Include BEFORE bootstrap-modal.css! 9 | */ 10 | 11 | body.modal-open, 12 | .modal-open .navbar-fixed-top, 13 | .modal-open .navbar-fixed-bottom { 14 | margin-right: 0; 15 | } 16 | 17 | .modal { 18 | left: 50%; 19 | bottom: auto; 20 | right: auto; 21 | padding: 0; 22 | width: 500px; 23 | margin-left: -250px; 24 | background-color: #ffffff; 25 | border: 1px solid #999999; 26 | border: 1px solid rgba(0, 0, 0, 0.2); 27 | border-radius: 6px; 28 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 29 | box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 30 | background-clip: padding-box; 31 | } 32 | 33 | .modal.container { 34 | max-width: none; 35 | } -------------------------------------------------------------------------------- /Admin/css/css.css: -------------------------------------------------------------------------------- 1 | .remove-item { 2 | display: inline-block; 3 | padding: 6px 12px; 4 | margin-bottom: 0; 5 | font-size: 14px; 6 | font-weight: normal; 7 | line-height: 1.42857143; 8 | text-align: center; 9 | white-space: nowrap; 10 | vertical-align: middle; 11 | cursor: pointer; 12 | -webkit-user-select: none; 13 | -moz-user-select: none; 14 | -ms-user-select: none; 15 | user-select: none; 16 | background-image: none; 17 | border: 1px solid transparent; 18 | border-radius: 4px; 19 | } 20 | .show-buttons { 21 | padding-bottom: 5px; 22 | } 23 | .kustuta { 24 | margin-right: 5px; 25 | } 26 | .full-width { 27 | width: 100% !important; 28 | } 29 | .id-div { 30 | /*font-weight: bold;*/ 31 | font-size: 20px; 32 | } 33 | .edit-container { 34 | padding: 0 !important; 35 | margin-top: 0 !important; 36 | } 37 | .select-field { 38 | width: 83.33333333% !important; 39 | } 40 | .margin-right { 41 | padding-right: 10px; 42 | } 43 | .index-pointer { 44 | cursor: default; 45 | } 46 | .field-error { 47 | border-color: rgb(169, 68, 66); 48 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px rgb(206, 132, 131); 49 | } 50 | .error-span { 51 | color: rgb(169, 68, 66); 52 | font-weight: bold; 53 | } 54 | .error-div { 55 | color: rgb(169, 68, 66); 56 | font-weight: bold; 57 | font-size: 18px; 58 | } 59 | .index { 60 | margin-left: 50px; 61 | margin-right: 50px; 62 | } 63 | 64 | #end-arrow { 65 | marker-end: url("#end-arrow"); 66 | } -------------------------------------------------------------------------------- /Admin/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priitj/whitedb/9d898103330695dd18db5839120e0d2522329154/Admin/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Admin/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priitj/whitedb/9d898103330695dd18db5839120e0d2522329154/Admin/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Admin/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priitj/whitedb/9d898103330695dd18db5839120e0d2522329154/Admin/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Admin/html/data.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 36 |
37 |
38 |
39 |
Record id:
40 |
41 | 42 | 43 | 44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 | 55 | 56 | -------------------------------------------------------------------------------- /Admin/html/edit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 36 |
37 |
38 |
39 |
Record id:
40 |
41 | 42 | 43 | 44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | 53 | 54 | -------------------------------------------------------------------------------- /Admin/html/graph.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Graph 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 38 | 39 | -------------------------------------------------------------------------------- /Admin/html/new.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 36 |
37 |
38 |
39 | 40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | 48 |
49 | 50 | 51 |
52 |
53 | 54 |
55 |
56 |
57 |
58 |
59 | 60 | 61 | -------------------------------------------------------------------------------- /Admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 44 |
45 |
46 |
47 | 51 |
52 |