forked from erpuno/fin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
2,230 additions
and
44 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
-ifndef(API_HRL). | ||
-define(API_HRL, true). | ||
|
||
-define(API(Mod), module=Mod, type=[], obj=[], ver=1, id=[]). | ||
|
||
-record(create_user, {?API(create), folder_id=[], title=[], logins=[]}). | ||
-record(create_folder, {?API(create), company_id=[], obj_type=[], folder_id=[], title=[], description=[]}). | ||
-record(create_company, {?API(create), phone=[], site=[], description=[], name=[]}). | ||
-record(create_node, {?API(create), scope_id=[], obj_type=[], obj_id=[], title=[], | ||
description=[], version=[] }). | ||
|
||
-endif. |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
-ifndef(ENT_HRL). | ||
-define(ENT_HRL, "ENT"). | ||
|
||
-include("bank/client.hrl"). | ||
-include("bank/account.hrl"). | ||
-include("bank/card.hrl"). | ||
-include("bank/transaction.hrl"). | ||
-include("api.hrl"). | ||
-include("fs/acl.hrl"). | ||
-include("fs/scope.hrl"). | ||
-include("fs/node.hrl"). | ||
-include("fs/fs.hrl"). | ||
|
||
-endif. | ||
|
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,8 @@ | ||
-ifndef(ACL_HRL). | ||
-define(ACL_HRL, true). | ||
|
||
-record(privs, { create = 0, view = 0, modify = 0, delete = 0 }). | ||
-record(access, { owner = <<>>, priv = #privs{} }). | ||
-record(acl, { node = <<>>, list = [] }). | ||
|
||
-endif. |
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,9 @@ | ||
-ifndef(FS_HRL). | ||
-define(FS_HRL, true). | ||
|
||
-include_lib("kvs/include/kvs.hrl"). | ||
|
||
-record(folder, { ?CONTAINER, description=[], link=[] }). | ||
-record(i, { ?ITERATOR(folder), type=[], ref=[] }). | ||
|
||
-endif. |
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,14 @@ | ||
-ifndef(NODE_HRL). | ||
-define(NODE_HRL, true). | ||
|
||
-include_lib("kvs/include/kvs.hrl"). | ||
|
||
-record(node, { ?ITERATOR(conv), | ||
type=[], | ||
condition=[], | ||
name=[], | ||
description=[], | ||
scope_id=[], | ||
extra=[] }). | ||
|
||
-endif. |
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,17 @@ | ||
-ifndef(SCOPE_HRL). | ||
-define(SCOPE_HRL, true). | ||
|
||
-include_lib("kvs/include/kvs.hrl"). | ||
|
||
-record(scope, { ?CONTAINER, | ||
title = [], | ||
description = [], | ||
owner_id = [], | ||
folder_id = [], | ||
status = [], | ||
params = [], | ||
nodes = [], | ||
type = [], | ||
company_id = [] }). | ||
|
||
-endif. |
This file was deleted.
Oops, something went wrong.
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,62 @@ | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="description" content="" /> | ||
<meta name="author" content="Maxim Sokhatsky" /> | ||
<title>ACT</title> | ||
<link rel="stylesheet" href="css/blank.css?v=1" /> | ||
<link rel="stylesheet" href="css/forms.css?v=1" /> | ||
</head> | ||
|
||
<body> | ||
|
||
<nav> | ||
<a href='index.html'>BANK</a> | ||
<a href='login.htm'>LOGIN</a> | ||
<a href='actors.htm'>ACTORS</a> | ||
<a href='act.htm' style="background:#ededed;"><span id=n>1</span></a> | ||
</nav> | ||
|
||
<aside> | ||
<article> | ||
<section> | ||
<h2>ACT <span id=num>1</span></h2> | ||
<p id=desc>The business process trace.</p> | ||
<br> | ||
<div id="ctrl"> </div> | ||
<div id="frms"></div> | ||
<br> | ||
</section> | ||
<div class="table" width=75%> | ||
<div id="tableHead" class="trGroup"> | ||
</div> | ||
</div> | ||
<br> | ||
<section> | ||
<small>Made with <span class="heart"> ❤ </span> to BPE</small> | ||
</section> | ||
</article> | ||
</aside> | ||
|
||
<main> | ||
</main> | ||
|
||
<script src='https://ws.n2o.space/priv/utf8.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/bert.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/heart.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/ieee754.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/n2o.js?v=5'></script> | ||
<script>host = location.hostname === 'bpe.n2o.space' ? 'ns.synrc.com' : location.hostname; | ||
port = 8041;</script> | ||
<script src='https://ws.n2o.space/priv/ftp.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/nitro.js?v=1'></script> | ||
<script src='json-bert.js'></script> | ||
<script>protos = [$bert]; N2O_start();</script> | ||
|
||
</body> | ||
</html> | ||
|
||
|
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,59 @@ | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="description" content="" /> | ||
<meta name="author" content="Maxim Sokhatsky" /> | ||
<title>ACTORS</title> | ||
<link rel="stylesheet" href="css/blank.css?v=1" /> | ||
<link rel="stylesheet" href="css/forms.css?v=1" /> | ||
</head> | ||
|
||
<body> | ||
|
||
<nav> | ||
<a href='index.html'>BANK</a> | ||
<a href='login.htm'>LOGIN</a> | ||
<a href='actors.htm' style="background:#ededed;">ACTORS</a> | ||
</nav> | ||
|
||
<aside> | ||
<article> | ||
<section> | ||
<h2>ACTORS</h2> | ||
<p>Managing persistent BPE/BPMN processes.</p> | ||
<br> | ||
<div id="ctrl"> </div> | ||
<div id="frms"></div> | ||
<br> | ||
</section> | ||
<div class="table"> | ||
<div id="tableHead" class="trGroup"> | ||
</div> | ||
</div> | ||
<br> | ||
<section> | ||
<small>Made with <span class="heart"> ❤ </span> to BPE</small> | ||
</section> | ||
</article> | ||
</aside> | ||
|
||
<script src='https://ws.n2o.space/priv/utf8.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/bert.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/heart.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/ieee754.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/n2o.js?v=5'></script> | ||
<script>host = location.hostname === 'bpe.n2o.space' ? 'ns.synrc.com' : location.hostname; | ||
port = 8041;</script> | ||
<script src='https://ws.n2o.space/priv/ftp.js?v=1'></script> | ||
<script src='https://ws.n2o.space/priv/nitro.js?v=1'></script> | ||
<script src='json-bert.js'></script> | ||
<!--script>$io.do = function(r) { console.log(JSON.stringify(decode(r))); };</script--> | ||
<script>protos = [$bert]; N2O_start();</script> | ||
|
||
</body> | ||
</html> | ||
|
||
|
Oops, something went wrong.