Re: [web2py] Re: RFC: web2py-based workflow engine

2014-04-21 Thread Dave S
On Friday, April 18, 2014 8:17:54 PM UTC-7, Andrew W wrote: > > Thanks. That's a .net solution so not quite the web2py solution I was > looking for. > A quick look didn't turn up anything about workflows by Ross outside of this thread. BTW, my thoughts on a multiperson-signoff that would be

Re: [web2py] Re: RFC: web2py-based workflow engine

2014-04-18 Thread Andrew W
Thanks. That's a .net solution so not quite the web2py solution I was looking for. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this mes

Re: [web2py] Re: RFC: web2py-based workflow engine

2014-03-09 Thread Dileepa Wijayanayake
> > check out cDevWorkflow at > http://www.cDevWorkflow.com > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-12-19 Thread Andrew W
Does anyone know if there has been any progress on this ? Hello Ross ? On Tuesday, September 25, 2012 1:52:46 AM UTC+12, Ramos wrote: > > Same question here > Ross, > How's the workflow engine going ? > > Cheers > António > > 2012/7/6 Andrew > > >> Hi Ross, >> How's the workflow engine going ?

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-09-24 Thread António Ramos
Same question here Ross, How's the workflow engine going ? Cheers António 2012/7/6 Andrew > Hi Ross, > How's the workflow engine going ? > > Regards > Andrew W > --

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-07-05 Thread Andrew
Hi Ross, How's the workflow engine going ? Regards Andrew W

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-25 Thread Andrew
Thanks Ross, I think it does, at least enough to give it a go.

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-25 Thread Ross Peoples
No, it is just a singleton module, just like Auth or Cache.

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-25 Thread Cliff Kachinske
Ross, Does this mean your workflow engine is also a background task? Something like my_queue = [] def handle_it(it): blah... while True: my_queue.extend(db.q_table while my_queue: mytask = my_queue.pop() handle_it(mytask) On Friday, May 25, 2012 9:31:33 AM UTC-4, Ross Peo

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-25 Thread Ross Peoples
Andrew, If I'm understanding you properly, the only major difference between the business process workflow (the one I am writing) and the data integration workflow you mention is that one requires human interaction, while the other is handled by automated systems. Is that fairly accurate? If so

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-24 Thread Andrew
Hi Ross, The term Workflow can potentially mean a lot of things to different people, and it certainly sounds like you're talking about business process workflows. I have been looking at (well, thinking mainly) about "workflows" in the context of Data Integration applications, where there are ma

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-24 Thread Massimo Di Pierro
+1 On Thursday, 24 May 2012 14:57:55 UTC-5, Richard wrote: > > Keep going Ross, I like what I read! > > :) > > Richard > > On Thu, May 24, 2012 at 3:29 PM, Ross Peoples wrote: > >> Just wanted to give an update on this. I'm working on the workflow engine >> nearly every day. Workflow engines are

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-24 Thread Richard Vézina
Keep going Ross, I like what I read! :) Richard On Thu, May 24, 2012 at 3:29 PM, Ross Peoples wrote: > Just wanted to give an update on this. I'm working on the workflow engine > nearly every day. Workflow engines are complicated things with lots of > pitfalls that need to be taken into account

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-02 Thread José Ricardo Borba
Hi, Ross, I think that the entire community is thinking and walking in the RIGHT way. And your effort is a prove of this. Congratulations. So, IMHO, I think that workflows are not only linear, but in some cases we have concurrent tasks to do. If your algorithm is compliant with this, I think that

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-02 Thread António Ramos
Please see my workflow framework in Lotus Notes, in the end of creating rules, i use graphviz to draw the graph of the workflow.. http://www.youtube.com/watch?v=zMNwqAtiFOw Also i manage centrally all rules and all apps point to my framework like a workflow as a service. Easier to manage. i think