workflow

Git - Change “origin commit” of a branch

爷,独闯天下 提交于 2019-12-12 05:28:40
问题 I have some difficult to found a Git generic worflow to remove some commits (between 2 refs) from a branch ; here is a little example : My current state are like this : * a878646 (develop) C8a * 070acb7 C7a | * 7937ce7 (HEAD, F1) C9b | * fb4add2 C8b | * 30456de C7b |/ * 6a0999e C6 * 45ae978 C5 * e8a2eeb (tag: T3, master) C4 * 24b98b2 (tag: T2) C3 * c874fc7 (tag: T1) C2 * a853900 C1 I want to test "F1" on my plateform, but ONLY the commits of "F1" on master. In other word, I would like that F1

Why Pre-Operation is used during Update a Plug-In

天大地大妈咪最大 提交于 2019-12-12 05:17:35
问题 In Microsoft Dynamics CRM Plug-in why at Event Pipeline stage of execution is used Pre-Operation for "Update" message while adding a step in a plug-In. could anyone elaborate this? 回答1: The plugin pipeline includes the following stages; pre-validation, pre-operation, and post-operation. Apart from a couple of exceptions these stages are always available. So for the update message the pre-operation is there because that is how the product is designed to work. In an update message the pre

Filter user in Select (bpm:assignee) control (Alfresco)

一世执手 提交于 2019-12-12 03:11:39
问题 I have bpm:assignee control in my custom wokflow, and that's ok. But wright now user can pick up all alfresco users for bpm:assignee. I wan't to limit user so that when he goes to select control and enter some term for search in search result appear just user from specific group or just some users defined by some criteria (it means that user can not search over entire alfresco user database, just over specific set of users). Does anybody know how i can achieve this in my custom workflow?

Workflow to apply scripts in homologation/production

跟風遠走 提交于 2019-12-12 01:56:35
问题 I'm using TFS's workitens to DBA's team apply scripts in homologation/production, so, i'm creating a workitem and linking BD's scripts in it. To make sure that nobody will change the script after i created the workitem, the DBAs team is locking the scripts in TFS before aplly. I think there is another tool or method to make it safer and smarter 回答1: You can give a try with this workaround by Angela Dugan , In short the solution of Angela works as follows: Add a field [UserAccessDenied] to a

How to create custom folder from the release folder of Windows Work flow for TFS Build process?

女生的网名这么多〃 提交于 2019-12-12 01:53:46
问题 I have used the /p:GenerateProjectSpecificOutputFolder=True for creating build for each and every project in my solution and now i wanted to customerize the folder structure on my needs. How can we achieve this? enter image description here 回答1: If you are using XAML build, you can customize Binaries folder in TFS Team Build by modifying the build process template. Adding CreateDirectory Activity and FindMatchingFiles activity are necessary, following this blog for more details. If you use

Alfresco task listener variables

别来无恙 提交于 2019-12-12 01:23:17
问题 I have two task listeners,the first on event="create" the second on event="complete" . In the first i'm counting files when task was created, in the second when task completed and looking if the number of files is equal throw an error. But this not work, i have ReferenceError: "count" is not defined . <extensionElements> <activiti:taskListener event="create" class="org.alfresco.repo.workflow.activiti.tasklistener.ScriptTaskListener"> <activiti:field name="script"> <activiti:string><![CDATA[

Calling filter functions from within a block-by-block processing function

£可爱£侵袭症+ 提交于 2019-12-12 01:16:08
问题 I have some memory intensive image filters that I want to call block by block on large images/arrays (because they compute the filter for an entire array, they run out of memory when trying to compute the whole array). def block_process(Ic, blocksize): B = numpy.empty(Ic.shape) colstart = 0 while colstart < Ic.shape[1]: BlockWidth = blocksize if (colstart + blocksize) > Ic.shape[1]: BlockWidth = Ic.shape[1] - colstart rowstart = 0 while rowstart < Ic.shape[0]: BlockHeight = blocksize if

Rx.js and application workflow

无人久伴 提交于 2019-12-12 00:29:31
问题 I've got a web application where I'm using the Rx.js for handling event streams. The app uses a rest api provided by a backend. Mostly I make a subscription for an api call and when a request is done I render results and reset other controls states (hide progress elements and so on). Some api calls can be failed when an auth token is expired and I have to make a user to login again (show a login popup or so). I'm curious is there a way to "restore" an api call stream after a successful login?

How do I simulate “Wish List” and “Bug List” in JIRA workflow?

社会主义新天地 提交于 2019-12-12 00:26:50
问题 How do I simulate "Wish List" and "Bug List" in JIRA workflow? Should they be states, or resolutions? "Wish List" and "Bug List" issues start as regular bugs (or features). They end up on the bug list/wish list after being resolved as Won't Fix. For example this bug will not be fixed in the next release. We don't know in which release in will be fixed. 回答1: You could use both. that depends on your needs, and how you would like to set up your workflow. If you choose the resolution field, once

Storing the state of the flow in Spring web-flow

喜夏-厌秋 提交于 2019-12-11 21:18:22
问题 I have this requirement for web-application wherein a user submits application for certain benefits by entering a set of his personal information. Every user application has an 'AppId'. So lets say a user with AppId 123 is within a flow and exits at a particular state. Next time when he logs in with AppId 123, he should be able to continue from where he left. How can we implement using Spring web-flow 2.3? Does SWF 2.3 has some sort of its own database like lets say a jBPM has? 回答1: Spring