This file contains hidden or 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains hidden or 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains hidden or 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
/** | |
* retrieve availabilities of one doctor from a planner service | |
* @param \DateTime $start_time | |
* @param \DateTime $end_time | |
* @param int $doctor | |
* @param int $medical_center | |
* | |
* @return Lista_NON_Disponibilita : { |
This file contains hidden or 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
abstract public function getAvailabilities(\DateTime $start_time, \DateTime $end_time, $users = [], $medical_centers = []); | |
/** | |
* Validate and format response from webservice | |
* @param $raw_response | |
* @param $method | |
* @return mixed | |
*/ | |
abstract public function clearResponse($raw_response, $method); |
This file contains hidden or 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
abstract public function getAvailabilities(\DateTime $start_time, \DateTime $end_time, $users = [], $medical_centers = []); | |
/** | |
* Validate and format response from webservice | |
* @param $raw_response | |
* @param $method | |
* @return mixed | |
*/ | |
abstract public function clearResponse($raw_response, $method); |
This file contains hidden or 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
naponos> mount -o ro /dev/vg1001/lv /tmp/vol/ | |
mount: mounting /dev/vg1001/lv on /tmp/vol/ failed: No such device | |
naponos> /opt/sbin/debugfs /dev/vg1001/lv | |
debugfs 1.40.3 (05-Dec-2007) | |
ls | |
debugfs: ls | |
EXT2 directory corrupted | |
debugfs: quit |
This file contains hidden or 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
//put this in <jira-home>/AddJiraWatcherListener.groovy and activate through custom listener | |
Import com.atlassian.jira.event.issue.AbstractIssueEventListener | |
import com.atlassian.jira.event.issue.IssueEvent | |
import com.atlassian.jira.ComponentManager | |
import com.atlassian.jira.issue.Issue | |
class AddJiraWatcherListener extends AbstractIssueEventListener { | |
@Override | |
void workflowEvent(IssueEvent event) { |