Skip to content

Commit

Permalink
Terminology is good. So I've changed from 'workflow system' to 'workf…
Browse files Browse the repository at this point in the history
…low engine'. As I discussed with Fabio Kung, it seems to be more appropriate.
  • Loading branch information
leandrosilva committed Aug 4, 2011
1 parent 36eb509 commit 8f4dbd0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.markdown
@@ -1,6 +1,6 @@
## cameron

That's a **work in progress** for **Cameron Workflow System** which aims to be a web-based process system able to handle multiple concurrent HTTP requests asking to run pre-defined [but in the same time dynamic] processes, enqueue them and run them in parallel, as fast as possible.
That's a **work in progress** for **Cameron Workflow Engine** which aims to be a web-based process engine able to handle multiple concurrent HTTP requests asking to run pre-defined [but in the same time dynamic] processes, enqueue them and run them in parallel, as fast as possible.

By web-based I mean:

Expand Down
2 changes: 1 addition & 1 deletion ebin/cameron.app
Expand Up @@ -2,7 +2,7 @@
%% @copyright 2011 Leandro Silva.

{application, cameron,
[{description, "Cameron Workflow System"},
[{description, "Cameron Workflow Engine"},
{vsn, "0.0.1"},
{modules, [
cameron,
Expand Down
2 changes: 1 addition & 1 deletion priv/www/cameron.html
@@ -1 +1 @@
Cameron Workflow System
Cameron Workflow Engine
2 changes: 1 addition & 1 deletion src/cameron.app
Expand Up @@ -2,7 +2,7 @@
%% @copyright 2011 Leandro Silva.

{application, cameron,
[{description, "Cameron Workflow System"},
[{description, "Cameron Workflow Engine"},
{vsn, "0.0.1"},
{modules, [
cameron,
Expand Down
2 changes: 1 addition & 1 deletion src/cameron_web_api.erl
Expand Up @@ -24,7 +24,7 @@

% handle a GET on /api
handle_http('GET', ["api"], HttpRequest) ->
HttpRequest:ok([{"Content-Type", "text/plain"}], "Cameron Workflow System // Web API");
HttpRequest:ok([{"Content-Type", "text/plain"}], "Cameron Workflow Engine // Web API");

handle_http('POST', ["api", "process", ProcessName, "start"], HttpRequest) ->
Payload = get_request_payload(HttpRequest),
Expand Down

0 comments on commit 8f4dbd0

Please sign in to comment.