Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
99d2273
ds-unisys-net: rework messager, netmessage classes to be aware of pac…
daveseah Aug 1, 2018
94ab9f3
ds-unisys-net: scaffolding for handling incoming mcall, msend in plac…
daveseah Aug 1, 2018
1760ddc
ds-unisys-net: new 'routing mode' (rmode) in NetMessage to replace 'x…
daveseah Aug 2, 2018
0e2ccf1
ds-unisys-net: network send, signal, call functions seem to be working
daveseah Aug 2, 2018
2fea14d
ds-unisys-net: add netSendNoEcho test
daveseah Aug 2, 2018
e0510df
ds-unisys-net: turn off debugging messages from UNISYS remote call/se…
daveseah Aug 2, 2018
a8bc9b1
ds-unisys-net: Fixed s_uaddr clobbering in NetMessage.m_SeqIncrement(…
daveseah Aug 2, 2018
9137d99
ds-unisys-net: add additional testing help to test.js
daveseah Aug 2, 2018
89e07be
ds-unisys-net: whitespace/comments only
daveseah Aug 3, 2018
4bd8a07
ds-unisys-net: fix NetMessage.SourceAddress() returning wrong source …
daveseah Aug 6, 2018
752961e
ds-unisys-net: clarify test code to handle 'no error' failures as par…
daveseah Aug 6, 2018
5a18dd1
ds-unisys-dataserve: add skeleton URL-based session parameter support…
daveseah Aug 6, 2018
76a2b2b
ds-unisys-dataserve: create skeleton database test app w/ support for…
daveseah Aug 6, 2018
11a6558
ds-unisys-dataserve: cleanup apps to force them to reload browser via…
daveseah Aug 6, 2018
7ec8ee8
ds-unisys-dataserve: comment-out extraneous navigable links in init-a…
daveseah Aug 6, 2018
2bae457
ds-unisys-dataaserve: change d3forcedemo.html "module init string" to…
daveseah Aug 7, 2018
3eb043d
ds-unisys-dataserve: add LokiJS and update Brunch to 2.10.16
daveseah Aug 7, 2018
7541a05
ds-unisys-dataserve: refactor apps for new UNISYS startup order; remo…
daveseah Aug 7, 2018
77d5f12
ds-unisys-dataserve: add rudimentary CLI test to initialize database,…
daveseah Aug 7, 2018
f5263d7
ds-unisys-dataserver: echo messages for synchronized database access
daveseah Aug 8, 2018
3a97fb8
ds-unisys-dataserve: remove debugging messages for module load via ne…
daveseah Aug 8, 2018
a7340ab
ds-unisys-dataserve: run dev-db console to issue ncPushDatabase(jsonF…
daveseah Aug 8, 2018
947a1c8
ds-unisys-dataserve: database synchronization and save is enabled
daveseah Aug 8, 2018
09560a1
ds-unisys-dataserve: fix bug where only packets of type mcall should …
daveseah Aug 8, 2018
ce4c36c
dev-ds/unisys-dataservfer: Catch bad node and edge id creation when d…
benloh Aug 8, 2018
849d89a
ds-unisys-dataserve: push the runtime/netcreate.json default database…
daveseah Aug 8, 2018
6c94729
Merge Ben's fixes
daveseah Aug 8, 2018
598c83d
dev-ds/unisys-dataserve: Catch bad node and edge id creation when dat…
benloh Aug 8, 2018
633424b
Merge commit '6c94729c1e877dbd2113f930fd83c4b46199dd93' into dev-ds/u…
benloh Aug 8, 2018
3705c68
ds-unisys-dataserve: fix call to renamed method RegisterMessagesPromi…
daveseah Aug 8, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# NetCreate ignored directories
/runtime

# Also ignore build system directories
.npmignore
Expand Down
35 changes: 35 additions & 0 deletions build/app/assets/data/empty.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"nodes": [
{
"label": "Node 1",
"x": 100,
"y": -100,
"id": "1",
"attributes": {
"Node_Type": "Group",
"Modularity Class": "1",
"Extra Info": "",
"Notes": ""
},
"color": "rgb(140,185,0)",
"size": 67.14286041259766
},
{
"label": "Node 2",
"x": -100,
"y": 100,
"id": "2",
"attributes": {
"Node_Type": "Group",
"Modularity Class": "1",
"Extra Info": "This is Node 2",
"Notes": "Node 2 Notes"
},
"color": "rgb(217,125,216)",
"size": 50.0
}
],
"edges": [

]
}
54 changes: 0 additions & 54 deletions build/app/assets/htmldemos/d3forcedemo/d3forcedemo.css

This file was deleted.

152 changes: 0 additions & 152 deletions build/app/assets/htmldemos/d3forcedemo/d3forcedemo.html

This file was deleted.

Loading