Commit z dnia 2024-07-24 17:22:48
This commit is contained in:
2
.folder
2
.folder
@@ -8,8 +8,8 @@
|
||||
<property key="ae.palette.Mail.palette.version" value="5.15.0"/>
|
||||
<property key="turbo.palette.version" value="5.6.1"/>
|
||||
<property key="ae.palette.Policy.version" value="5.15.0"/>
|
||||
<property key="ae.repo.palette.version" value="5.3.0"/>
|
||||
<property key="ae.process.palette.version" value="5.15.0"/>
|
||||
<property key="ae.repo.palette.version" value="5.3.0"/>
|
||||
<property key="httppalette.httpplugins.version" value="5.15.0"/>
|
||||
<property key="ae.aepalette.ae.palette.version" value="5.15.0"/>
|
||||
<property key="palette.generalpalette.version" value="5.3.0"/>
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
<pd:ProcessDefinition xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:pfx="http://xmlns.example.com/1721743175984" xmlns:pd="http://xmlns.tibco.com/bw/process/2003" xmlns:ns="http://www.tibco.com/schemas/httpRequest/Resources/schemas/Schema.xsd" xmlns:wsdlPfx="http://xmlns.example.com/1721737885605" xmlns:ns2="http://www.demo.com/author">
|
||||
<xs:import xmlns:xs="http://www.w3.org/2001/XMLSchema" namespace="http://www.tibco.com/schemas/httpRequest/Resources/schemas/Schema.xsd" schemaLocation="/Resources/schemas/getRequest.xsd"/>
|
||||
<wsdl:import namespace="http://xmlns.example.com/1721743175984" location="/Resources/WSDL/concrete/author methods.wsdl"/>
|
||||
<wsdl:import namespace="http://xmlns.example.com/1721743175984" location="/Resources/WSDL/WSDL-service8.serviceagent"/>
|
||||
<wsdl:import namespace="http://xmlns.example.com/1721737885605" location="/Resources/WSDL/WSDL.wsdl"/>
|
||||
<pd:name>Resources/WSDL/PortTypeGet.process</pd:name>
|
||||
<pd:startName>Start</pd:startName>
|
||||
@@ -77,6 +78,30 @@
|
||||
<input/>
|
||||
</pd:inputBindings>
|
||||
</pd:activity>
|
||||
<pd:activity name="SOAPRequestReply">
|
||||
<pd:type>com.tibco.plugin.soap.SOAPSendReceiveActivity</pd:type>
|
||||
<pd:resourceType>ae.activities.SOAPSendReceiveUI</pd:resourceType>
|
||||
<pd:x>220</pd:x>
|
||||
<pd:y>156</pd:y>
|
||||
<config>
|
||||
<timeout>0</timeout>
|
||||
<soapAttachmentStyle>SwA</soapAttachmentStyle>
|
||||
<timeoutType>Seconds</timeoutType>
|
||||
<service>wsdlPfx:WSDL-service2</service>
|
||||
<servicePort>PortTypeEndpoint2</servicePort>
|
||||
<operation>Get</operation>
|
||||
<authScheme>NONE</authScheme>
|
||||
</config>
|
||||
<pd:inputBindings/>
|
||||
</pd:activity>
|
||||
<pd:activity name="Null">
|
||||
<pd:type>com.tibco.plugin.timer.NullActivity</pd:type>
|
||||
<pd:resourceType>ae.activities.null</pd:resourceType>
|
||||
<pd:x>452</pd:x>
|
||||
<pd:y>256</pd:y>
|
||||
<config/>
|
||||
<pd:inputBindings/>
|
||||
</pd:activity>
|
||||
<pd:transition>
|
||||
<pd:from>XMLGET</pd:from>
|
||||
<pd:to>Wait</pd:to>
|
||||
@@ -98,4 +123,18 @@
|
||||
<pd:lineColor>-16777216</pd:lineColor>
|
||||
<pd:conditionType>always</pd:conditionType>
|
||||
</pd:transition>
|
||||
<pd:transition>
|
||||
<pd:from>Start</pd:from>
|
||||
<pd:to>SOAPRequestReply</pd:to>
|
||||
<pd:lineType>Default</pd:lineType>
|
||||
<pd:lineColor>-16777216</pd:lineColor>
|
||||
<pd:conditionType>always</pd:conditionType>
|
||||
</pd:transition>
|
||||
<pd:transition>
|
||||
<pd:from>SOAPRequestReply</pd:from>
|
||||
<pd:to>Null</pd:to>
|
||||
<pd:lineType>Default</pd:lineType>
|
||||
<pd:lineColor>-16777216</pd:lineColor>
|
||||
<pd:conditionType>always</pd:conditionType>
|
||||
</pd:transition>
|
||||
</pd:ProcessDefinition>
|
||||
@@ -10,6 +10,7 @@
|
||||
<groups>
|
||||
<row isDefault="true" groupName="Default"/>
|
||||
</groups>
|
||||
<serviceChange>Wed Jul 24 16:14:47 CEST 2024</serviceChange>
|
||||
<interfaceImpl>
|
||||
<tab>
|
||||
<tabName>PortType</tabName>
|
||||
|
||||
21
auto_commit_push.sh
Executable file
21
auto_commit_push.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
while true; do
|
||||
# Sprawdzanie, czy są zmiany w repozytorium
|
||||
if [[ -n $(git status --porcelain) ]]; then
|
||||
echo "wykryto zmiane"
|
||||
# Dodanie wszystkich zmian do obszaru roboczego
|
||||
git add .
|
||||
# Utworzenie commita z aktualną datą i czasem
|
||||
COMMIT_MESSAGE="Commit z dnia $(date '+%Y-%m-%d %H:%M:%S')"
|
||||
git commit -m "$COMMIT_MESSAGE"
|
||||
|
||||
# Wypychanie zmian do zdalnego repozytorium
|
||||
git push origin main # Zamień 'main' na 'master' lub inną nazwę gałęzi, jeśli jest inna
|
||||
else
|
||||
echo "Brak zmian do commitowania"
|
||||
fi
|
||||
|
||||
# Czekaj 10 minut (600 sekund)
|
||||
sleep 10
|
||||
done
|
||||
Reference in New Issue
Block a user