Skip to content

Commit a733c7d

Browse files
committed
Removing multiinjector, improving discoverer.js
1 parent f966eec commit a733c7d

File tree

6 files changed

+8
-339
lines changed

6 files changed

+8
-339
lines changed

jsondiscoverer.examples/src/jsondiscoverer/JsonMultiInjectorExample.java

Lines changed: 0 additions & 51 deletions
This file was deleted.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
serverURL=http://som-research.uoc.edu
2-
workingDir=/opt/local/webapps/jsonDiscoverer/workingDir
1+
serverURL=http://localhost:8080
2+
workingDir=C:/Users/jcanovasi/git/jsonDiscoverer/jsondiscoverer.web/WebContent/workingDir
33
IdInjector=injector
44
IdDiscoverer=discoverer
55
IdMultiDiscoverer=multidiscoverer
6-
dotExePath=/usr/bin/dot
6+
dotExePath=C:/Program Files (x86)/Graphviz 2.28/bin/dot.exe
77
JsonParameter=json
88
UrlParameter=url
99
LimitChars=16384
10-
version=2.0.0
10+
version=2.0.0

jsondiscoverer.web/WebContent/WEB-INF/config.properties.development

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
serverURL=http://localhost:8080
2-
workingDir=C:/Users/jcanovasi/git3/json-discoverer/jsondiscoverer.web/WebContent/workingDir
2+
workingDir=C:/Users/jcanovasi/git/jsonDiscoverer/jsondiscoverer.web/WebContent/workingDir
33
IdInjector=injector
44
IdDiscoverer=discoverer
55
IdMultiDiscoverer=multidiscoverer

jsondiscoverer.web/WebContent/app/partials/composition.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ <h4 style="padding-top: 20px;">Step 3. Composition Graph </h4>
104104
</p>
105105

106106
<h4 style="padding-top: 20px;">Step 4. Calculate a Path</h4>
107-
<p>Select two nodes of the graph. If a path exists, we will show it as a sequence diagram</p>
107+
<p>Select two nodes of the graph. If a path exists, we will show it as a sequence diagram (generated with <a href="http://bramp.github.io/js-sequence-diagrams/">js-sequence-diagrams</a> library)</p>
108108
<form class="form-horizontal" role="form">
109109
<label for="sourceNode" class="col-md-2 control-label">Source Node</label>
110110
<div class="col-md-2">

jsondiscoverer.web/WebContent/app/services/discoverer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
angular.module("jsonDiscoverer").service('DiscovererService', ["$http",
22
function($http) {
3-
//this.prefix = "http://localhost:8080/jsondiscoverer.web";
4-
this.prefix = "http://som-research.uoc.edu/tools/jsonDiscoverer";
3+
this.prefix = "http://som-research.uoc.edu/tools/jsonDiscoverer"; // %PRODUCTION%
4+
this.prefix = "http://localhost:8080/jsondiscoverer.web"; // %DEVELOPMENT%
55

66
this.callService = function(call, dataToSend, success, failure) {
77
$http({

jsondiscoverer/src/jsondiscoverer/JsonMultiInjector.java

Lines changed: 0 additions & 280 deletions
This file was deleted.

0 commit comments

Comments
 (0)