Deployed da41b6d
with MkDocs version: 1.0.4
|
@ -153,10 +153,9 @@
|
|||
<div class="section">
|
||||
|
||||
<h1 id="before-you-start">Before You Start</h1>
|
||||
<p>These documents will guide you through the process of creating your own Extractor
|
||||
service of which will enable NewPipe to access additional streaming services, such as the currently supported YouTube and SoundCloud.
|
||||
The whole documentation consists of this page, which explains the general concept of the NewPipeExtractor, as well as our
|
||||
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/">Jdoc</a> setup.</p>
|
||||
<p>These documents will guide you through the process of understanding or creating your own Extractor
|
||||
service of which will enable NewPipe to access additional streaming services, such as the currently supported YouTube, SoundCloud and MediaCCC.
|
||||
The whole documentation consists of this page and <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/">Jdoc</a> setup, which explains the general concept of the NewPipeExtractor.</p>
|
||||
<p><strong>IMPORTANT!!!</strong> This is likely to be the worst documentation you have ever read, so do not hesitate to
|
||||
<a href="https://github.com/teamnewpipe/documentation/issues">report</a> if
|
||||
you find any spelling errors, incomplete parts or you simply don't understand something. We are an open community
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
<li><a class="toctree-l3" href="#collectorextractor-pattern-for-lists">Collector/Extractor Pattern for Lists</a></li>
|
||||
|
||||
<li><a class="toctree-l3" href="#infoitems-encapsulated-in-pages">InfoItems Encapsulated in Pages</a></li>
|
||||
<li><a class="toctree-l3" href="#listextractor">ListExtractor</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
@ -196,15 +196,16 @@ try {
|
|||
<h2 id="collectorextractor-pattern-for-lists">Collector/Extractor Pattern for Lists</h2>
|
||||
<p>Information can be represented as a list. In NewPipe, a list is represented by a
|
||||
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html">InfoItemsCollector</a>.
|
||||
A InfoItemCollector will collect and assemble a list of <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItem.html">InfoItem</a>.
|
||||
For each item that should be extracted, a new Extractor must be created, and given to the InfoItemCollector via <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html#commit-E-">commit()</a>.</p>
|
||||
A InfoItemsCollector will collect and assemble a list of <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItem.html">InfoItem</a>.
|
||||
For each item that should be extracted, a new Extractor must be created, and given to the InfoItemsCollector via <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html#commit-E-">commit()</a>.</p>
|
||||
<p><img alt="InfoItemsCollector_objectdiagram.svg" src="../img/InfoItemsCollector_objectdiagram.svg" /></p>
|
||||
<p>If you are implementing a list for your service you need to extend InfoItem containing the extracted information
|
||||
and implement an <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/Extractor.html">InfoItemExtractor</a>,
|
||||
that will return the data of one InfoItem.</p>
|
||||
<p>If you are implementing a list in your service you need to implement an <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/Extractor.html">InfoItemExtractor</a>,
|
||||
that will be able to retreve data for one and only one InfoItem. This extractor will then be <em>comitted</em> to the <strong>InfoItemsCollector</strong> that can collect the type of InfoItems you want to generate.</p>
|
||||
<p>A common implementation would look like this:</p>
|
||||
<pre><code>private MyInfoItemCollector collectInfoItemsFromElement(Element e) {
|
||||
MyInfoItemCollector collector = new MyInfoItemCollector(getServiceId());
|
||||
<pre><code>private SomeInfoItemCollector collectInfoItemsFromElement(Element e) {
|
||||
// See *Some* as something like Stream or Channel
|
||||
// e.g. StreamInfoItemsCollector, and ChannelInfoItemsCollector are provided by NP
|
||||
SomeInfoItemCollector collector = new SomeInfoItemCollector(getServiceId());
|
||||
|
||||
for(final Element li : element.children()) {
|
||||
collector.commit(new InfoItemExtractor() {
|
||||
|
@ -225,15 +226,21 @@ that will return the data of one InfoItem.</p>
|
|||
|
||||
</code></pre>
|
||||
|
||||
<h2 id="infoitems-encapsulated-in-pages">InfoItems Encapsulated in Pages</h2>
|
||||
<h2 id="listextractor">ListExtractor</h2>
|
||||
<p>There is more to know about lists:</p>
|
||||
<ol>
|
||||
<li>
|
||||
<p>When a streaming site shows a list of items, it usually offers some additional information about that list like its title, a thumbnail,
|
||||
and its creator. Such info can be called <strong>list header</strong>.</p>
|
||||
<p>When a website shows a long list of items it usually does not load the whole list, but only a part of it. In order to get more items you may have to click on a next page button, or scroll down. </p>
|
||||
<p>This is why a list in NewPipe lists are chopped down into smaller lists called <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemsPage.html">InfoItemsPage</a>s. Each page has its own URL, and needs to be extracted separately.</p>
|
||||
<p>Additional metadata about the list and extracting multiple pages can be handled by a
|
||||
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html">ListExtractor</a>,
|
||||
and its <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemsPage.html">ListExtractor.InfoItemsPage</a>.</p>
|
||||
<p>For extracting list header information it behaves like a regular extractor. For handling <code>InfoItemsPages</code> it adds methods
|
||||
</li>
|
||||
<li>
|
||||
<p>When a website shows a long list of items it usually does not load the whole list, but only a part of it. In order to get more items you may have to click on a next page button, or scroll down.</p>
|
||||
</li>
|
||||
</ol>
|
||||
<p>Both of these Problems are fixed by the <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html">ListExtractor</a> which takes care about extracting additional metadata about the liast,
|
||||
and by chopping down lists into several pages, so called <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemsPage.html">InfoItemsPage</a>s.
|
||||
Each page has its own URL, and needs to be extracted separately.</p>
|
||||
<p>For extracting list header information a <code>ListExtractor</code> behaves like a regular extractor. For handling <code>InfoItemsPages</code> it adds methods
|
||||
such as:</p>
|
||||
<ul>
|
||||
<li><a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html#getInitialPage--">getInitialPage()</a>
|
||||
|
@ -245,6 +252,46 @@ such as:</p>
|
|||
</ul>
|
||||
<p>The reason why the first page is handled special is because many Websites such as YouTube will load the first page of
|
||||
items like a regular web page, but all the others as an AJAX request.</p>
|
||||
<p>An InfoItemsPage itself has two constructors which take these parameters:
|
||||
- The <strong>InfoitemsCollector</strong> of the list that the page should represent
|
||||
- A <strong>nextPageUrl</strong> which represents the url of the following page (may be null if not page follows).
|
||||
- Optionally <strong>errors</strong> which is a list of Exceptions that may have happened during extracton.</p>
|
||||
<p>Here is a simplified reference implementation of a list extractor that only extracts pages, but not metadata:</p>
|
||||
<pre><code>class MyListExtractor extends ListExtractor {
|
||||
...
|
||||
private Document document;
|
||||
|
||||
...
|
||||
|
||||
public InfoItemsPage<SomeInfoItem> getPage(pageUrl)
|
||||
throws ExtractionException {
|
||||
SomeInfoItemCollector collector = new SomeInfoItemCollector(getServiceId());
|
||||
document = myFunctionToGetThePageHTMLWhatever(pageUrl);
|
||||
|
||||
//remember this part from the simple list extraction
|
||||
for(final Element li : document.children()) {
|
||||
collector.commit(new InfoItemExtractor() {
|
||||
@Override
|
||||
public String getName() throws ParsingException {
|
||||
...
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getUrl() throws ParsingException {
|
||||
...
|
||||
}
|
||||
...
|
||||
}
|
||||
return new InfoItemsPage<SomeInfoItem>(collector, myFunctionToGetTheNextPageUrl(document));
|
||||
}
|
||||
|
||||
public InfoItemsPage<SomeInfoItem> getInitialPage() {
|
||||
//document here got initialzied by the fetch() function.
|
||||
return getPage(getTheCurrentPageUrl(document));
|
||||
}
|
||||
...
|
||||
}
|
||||
</code></pre>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,62 +1,62 @@
|
|||
.hljs {
|
||||
display:block;
|
||||
overflow-x:auto;
|
||||
padding:1em;
|
||||
color:#333;
|
||||
background:#f8f8f8
|
||||
}
|
||||
.hljs-comment,.hljs-quote {
|
||||
color:#998;
|
||||
font-style:italic
|
||||
}
|
||||
.hljs-keyword,.hljs-selector-tag,.hljs-subst {
|
||||
color:#333;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr {
|
||||
color:#008080
|
||||
}
|
||||
.hljs-string,.hljs-doctag {
|
||||
color:#d14
|
||||
}
|
||||
.hljs-title,.hljs-section,.hljs-selector-id {
|
||||
color:#900;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-subst {
|
||||
font-weight:normal
|
||||
}
|
||||
.hljs-type,.hljs-class .hljs-title {
|
||||
color:#458;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-tag,.hljs-name,.hljs-attribute {
|
||||
color:#000080;
|
||||
font-weight:normal
|
||||
}
|
||||
.hljs-regexp,.hljs-link {
|
||||
color:#009926
|
||||
}
|
||||
.hljs-symbol,.hljs-bullet {
|
||||
color:#990073
|
||||
}
|
||||
.hljs-built_in,.hljs-builtin-name {
|
||||
color:#0086b3
|
||||
}
|
||||
.hljs-meta {
|
||||
color:#999;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-deletion {
|
||||
background:#fdd
|
||||
}
|
||||
.hljs-addition {
|
||||
background:#dfd
|
||||
}
|
||||
.hljs-emphasis {
|
||||
font-style:italic
|
||||
}
|
||||
.hljs-strong {
|
||||
font-weight:bold
|
||||
}
|
||||
|
||||
.hljs {
|
||||
display:block;
|
||||
overflow-x:auto;
|
||||
padding:1em;
|
||||
color:#333;
|
||||
background:#f8f8f8
|
||||
}
|
||||
.hljs-comment,.hljs-quote {
|
||||
color:#998;
|
||||
font-style:italic
|
||||
}
|
||||
.hljs-keyword,.hljs-selector-tag,.hljs-subst {
|
||||
color:#333;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr {
|
||||
color:#008080
|
||||
}
|
||||
.hljs-string,.hljs-doctag {
|
||||
color:#d14
|
||||
}
|
||||
.hljs-title,.hljs-section,.hljs-selector-id {
|
||||
color:#900;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-subst {
|
||||
font-weight:normal
|
||||
}
|
||||
.hljs-type,.hljs-class .hljs-title {
|
||||
color:#458;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-tag,.hljs-name,.hljs-attribute {
|
||||
color:#000080;
|
||||
font-weight:normal
|
||||
}
|
||||
.hljs-regexp,.hljs-link {
|
||||
color:#009926
|
||||
}
|
||||
.hljs-symbol,.hljs-bullet {
|
||||
color:#990073
|
||||
}
|
||||
.hljs-built_in,.hljs-builtin-name {
|
||||
color:#0086b3
|
||||
}
|
||||
.hljs-meta {
|
||||
color:#999;
|
||||
font-weight:bold
|
||||
}
|
||||
.hljs-deletion {
|
||||
background:#fdd
|
||||
}
|
||||
.hljs-addition {
|
||||
background:#dfd
|
||||
}
|
||||
.hljs-emphasis {
|
||||
font-style:italic
|
||||
}
|
||||
.hljs-strong {
|
||||
font-weight:bold
|
||||
}
|
||||
|
||||
|
|
|
@ -1,115 +1,115 @@
|
|||
.codehilite code, .codehilite pre{color:#3F3F3F;background-color:#F7F7F7;
|
||||
overflow: auto;
|
||||
box-sizing: border-box;
|
||||
|
||||
padding: 0.01em 16px;
|
||||
padding-top: 0.01em;
|
||||
padding-right-value: 16px;
|
||||
padding-bottom: 0.01em;
|
||||
padding-left-value: 16px;
|
||||
padding-left-ltr-source: physical;
|
||||
padding-left-rtl-source: physical;
|
||||
padding-right-ltr-source: physical;
|
||||
padding-right-rtl-source: physical;
|
||||
|
||||
border-radius: 16px !important;
|
||||
border-top-left-radius: 16px;
|
||||
border-top-right-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
|
||||
border: 1px solid #CCC !important;
|
||||
border-top-width: 1px;
|
||||
border-right-width-value: 1px;
|
||||
border-right-width-ltr-source: physical;
|
||||
border-right-width-rtl-source: physical;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width-value: 1px;
|
||||
border-left-width-ltr-source: physical;
|
||||
border-left-width-rtl-source: physical;
|
||||
border-top-style: solid;
|
||||
border-right-style-value: solid;
|
||||
border-right-style-ltr-source: physical;
|
||||
border-right-style-rtl-source: physical;
|
||||
border-bottom-style: solid;
|
||||
border-left-style-value: solid;
|
||||
border-left-style-ltr-source: physical;
|
||||
border-left-style-rtl-source: physical;
|
||||
border-top-color: #CCC;
|
||||
border-right-color-value: #CCC;
|
||||
border-right-color-ltr-source: physical;
|
||||
border-right-color-rtl-source: physical;
|
||||
border-bottom-color: #CCC;
|
||||
border-left-color-value: #CCC;
|
||||
border-left-color-ltr-source: physical;
|
||||
border-left-color-rtl-source: physical;
|
||||
-moz-border-top-colors: none;
|
||||
-moz-border-right-colors: none;
|
||||
-moz-border-bottom-colors: none;
|
||||
-moz-border-left-colors: none;
|
||||
border-image-source: none;
|
||||
border-image-slice: 100% 100% 100% 100%;
|
||||
border-image-width: 1 1 1 1;
|
||||
border-image-outset: 0 0 0 0;
|
||||
border-image-repeat: stretch stretch;}
|
||||
.codehilite .hll { background-color: #ffffcc }
|
||||
.codehilite .c { color: #999988; font-style: italic } /* Comment */
|
||||
.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.codehilite .k { color: #000000; font-weight: bold } /* Keyword */
|
||||
.codehilite .o { color: #000000; font-weight: bold } /* Operator */
|
||||
.codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
||||
.codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
||||
.codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
||||
.codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
||||
.codehilite .gr { color: #aa0000 } /* Generic.Error */
|
||||
.codehilite .gh { color: #999999 } /* Generic.Heading */
|
||||
.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.codehilite .go { color: #888888 } /* Generic.Output */
|
||||
.codehilite .gp { color: #555555 } /* Generic.Prompt */
|
||||
.codehilite .gs { font-weight: bold } /* Generic.Strong */
|
||||
.codehilite .gu { color: #aaaaaa } /* Generic.Subheading */
|
||||
.codehilite .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
|
||||
.codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
|
||||
.codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
|
||||
.codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
|
||||
.codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
|
||||
.codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
||||
.codehilite .m { color: #009999 } /* Literal.Number */
|
||||
.codehilite .s { color: #d01040 } /* Literal.String */
|
||||
.codehilite .na { color: #008080 } /* Name.Attribute */
|
||||
.codehilite .nb { color: #0086B3 } /* Name.Builtin */
|
||||
.codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */
|
||||
.codehilite .no { color: #008080 } /* Name.Constant */
|
||||
.codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
|
||||
.codehilite .ni { color: #800080 } /* Name.Entity */
|
||||
.codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
||||
.codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */
|
||||
.codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */
|
||||
.codehilite .nn { color: #555555 } /* Name.Namespace */
|
||||
.codehilite .nt { color: #000080 } /* Name.Tag */
|
||||
.codehilite .nv { color: #008080 } /* Name.Variable */
|
||||
.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.codehilite .mf { color: #009999 } /* Literal.Number.Float */
|
||||
.codehilite .mh { color: #009999 } /* Literal.Number.Hex */
|
||||
.codehilite .mi { color: #009999 } /* Literal.Number.Integer */
|
||||
.codehilite .mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.codehilite .sb { color: #d01040 } /* Literal.String.Backtick */
|
||||
.codehilite .sc { color: #d01040 } /* Literal.String.Char */
|
||||
.codehilite .sd { color: #d01040 } /* Literal.String.Doc */
|
||||
.codehilite .s2 { color: #d01040 } /* Literal.String.Double */
|
||||
.codehilite .se { color: #d01040 } /* Literal.String.Escape */
|
||||
.codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */
|
||||
.codehilite .si { color: #d01040 } /* Literal.String.Interpol */
|
||||
.codehilite .sx { color: #d01040 } /* Literal.String.Other */
|
||||
.codehilite .sr { color: #009926 } /* Literal.String.Regex */
|
||||
.codehilite .s1 { color: #d01040 } /* Literal.String.Single */
|
||||
.codehilite .ss { color: #990073 } /* Literal.String.Symbol */
|
||||
.codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||
.codehilite .vc { color: #008080 } /* Name.Variable.Class */
|
||||
.codehilite .vg { color: #008080 } /* Name.Variable.Global */
|
||||
.codehilite .vi { color: #008080 } /* Name.Variable.Instance */
|
||||
.codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||
.codehilite code, .codehilite pre{color:#3F3F3F;background-color:#F7F7F7;
|
||||
overflow: auto;
|
||||
box-sizing: border-box;
|
||||
|
||||
padding: 0.01em 16px;
|
||||
padding-top: 0.01em;
|
||||
padding-right-value: 16px;
|
||||
padding-bottom: 0.01em;
|
||||
padding-left-value: 16px;
|
||||
padding-left-ltr-source: physical;
|
||||
padding-left-rtl-source: physical;
|
||||
padding-right-ltr-source: physical;
|
||||
padding-right-rtl-source: physical;
|
||||
|
||||
border-radius: 16px !important;
|
||||
border-top-left-radius: 16px;
|
||||
border-top-right-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
|
||||
border: 1px solid #CCC !important;
|
||||
border-top-width: 1px;
|
||||
border-right-width-value: 1px;
|
||||
border-right-width-ltr-source: physical;
|
||||
border-right-width-rtl-source: physical;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width-value: 1px;
|
||||
border-left-width-ltr-source: physical;
|
||||
border-left-width-rtl-source: physical;
|
||||
border-top-style: solid;
|
||||
border-right-style-value: solid;
|
||||
border-right-style-ltr-source: physical;
|
||||
border-right-style-rtl-source: physical;
|
||||
border-bottom-style: solid;
|
||||
border-left-style-value: solid;
|
||||
border-left-style-ltr-source: physical;
|
||||
border-left-style-rtl-source: physical;
|
||||
border-top-color: #CCC;
|
||||
border-right-color-value: #CCC;
|
||||
border-right-color-ltr-source: physical;
|
||||
border-right-color-rtl-source: physical;
|
||||
border-bottom-color: #CCC;
|
||||
border-left-color-value: #CCC;
|
||||
border-left-color-ltr-source: physical;
|
||||
border-left-color-rtl-source: physical;
|
||||
-moz-border-top-colors: none;
|
||||
-moz-border-right-colors: none;
|
||||
-moz-border-bottom-colors: none;
|
||||
-moz-border-left-colors: none;
|
||||
border-image-source: none;
|
||||
border-image-slice: 100% 100% 100% 100%;
|
||||
border-image-width: 1 1 1 1;
|
||||
border-image-outset: 0 0 0 0;
|
||||
border-image-repeat: stretch stretch;}
|
||||
.codehilite .hll { background-color: #ffffcc }
|
||||
.codehilite .c { color: #999988; font-style: italic } /* Comment */
|
||||
.codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.codehilite .k { color: #000000; font-weight: bold } /* Keyword */
|
||||
.codehilite .o { color: #000000; font-weight: bold } /* Operator */
|
||||
.codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
||||
.codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
||||
.codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
||||
.codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
||||
.codehilite .gr { color: #aa0000 } /* Generic.Error */
|
||||
.codehilite .gh { color: #999999 } /* Generic.Heading */
|
||||
.codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.codehilite .go { color: #888888 } /* Generic.Output */
|
||||
.codehilite .gp { color: #555555 } /* Generic.Prompt */
|
||||
.codehilite .gs { font-weight: bold } /* Generic.Strong */
|
||||
.codehilite .gu { color: #aaaaaa } /* Generic.Subheading */
|
||||
.codehilite .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
|
||||
.codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
|
||||
.codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
|
||||
.codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
|
||||
.codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
|
||||
.codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
||||
.codehilite .m { color: #009999 } /* Literal.Number */
|
||||
.codehilite .s { color: #d01040 } /* Literal.String */
|
||||
.codehilite .na { color: #008080 } /* Name.Attribute */
|
||||
.codehilite .nb { color: #0086B3 } /* Name.Builtin */
|
||||
.codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */
|
||||
.codehilite .no { color: #008080 } /* Name.Constant */
|
||||
.codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
|
||||
.codehilite .ni { color: #800080 } /* Name.Entity */
|
||||
.codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
||||
.codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */
|
||||
.codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */
|
||||
.codehilite .nn { color: #555555 } /* Name.Namespace */
|
||||
.codehilite .nt { color: #000080 } /* Name.Tag */
|
||||
.codehilite .nv { color: #008080 } /* Name.Variable */
|
||||
.codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.codehilite .mf { color: #009999 } /* Literal.Number.Float */
|
||||
.codehilite .mh { color: #009999 } /* Literal.Number.Hex */
|
||||
.codehilite .mi { color: #009999 } /* Literal.Number.Integer */
|
||||
.codehilite .mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.codehilite .sb { color: #d01040 } /* Literal.String.Backtick */
|
||||
.codehilite .sc { color: #d01040 } /* Literal.String.Char */
|
||||
.codehilite .sd { color: #d01040 } /* Literal.String.Doc */
|
||||
.codehilite .s2 { color: #d01040 } /* Literal.String.Double */
|
||||
.codehilite .se { color: #d01040 } /* Literal.String.Escape */
|
||||
.codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */
|
||||
.codehilite .si { color: #d01040 } /* Literal.String.Interpol */
|
||||
.codehilite .sx { color: #d01040 } /* Literal.String.Other */
|
||||
.codehilite .sr { color: #009926 } /* Literal.String.Regex */
|
||||
.codehilite .s1 { color: #d01040 } /* Literal.String.Single */
|
||||
.codehilite .ss { color: #990073 } /* Literal.String.Symbol */
|
||||
.codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||
.codehilite .vc { color: #008080 } /* Name.Variable.Class */
|
||||
.codehilite .vg { color: #008080 } /* Name.Variable.Global */
|
||||
.codehilite .vi { color: #008080 } /* Name.Variable.Instance */
|
||||
.codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||
|
|
|
@ -1,60 +1,60 @@
|
|||
/*
|
||||
Stylesheet to load all local fonts except Font-Awesome because that is done by the theme.
|
||||
Add all new fonts below.
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inconsolata';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Inconsolata'), local('Inconsolata-Regular'), url(../fonts/Inconsolata-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inconsolata';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url(../fonts/Inconsolata-Bold.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Lato Regular'), local('Lato-Regular'), url(../fonts/Lato-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Lato Bold'), local('Lato-Bold'), url(../fonts/Lato-Bold.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: local('Lato Italic'), local('Lato-Italic'), url(../fonts/Lato-Italic.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(../fonts/Lato-BoldItalic.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto Slab';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(../fonts/RobotoSlab-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto Slab';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(../fonts/RobotoSlab-Bold.ttf) format('truetype');
|
||||
}
|
||||
/*
|
||||
Stylesheet to load all local fonts except Font-Awesome because that is done by the theme.
|
||||
Add all new fonts below.
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inconsolata';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Inconsolata'), local('Inconsolata-Regular'), url(../fonts/Inconsolata-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inconsolata';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url(../fonts/Inconsolata-Bold.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Lato Regular'), local('Lato-Regular'), url(../fonts/Lato-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Lato Bold'), local('Lato-Bold'), url(../fonts/Lato-Bold.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: local('Lato Italic'), local('Lato-Italic'), url(../fonts/Lato-Italic.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(../fonts/Lato-BoldItalic.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto Slab';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(../fonts/RobotoSlab-Regular.ttf) format('truetype');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Roboto Slab';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(../fonts/RobotoSlab-Bold.ttf) format('truetype');
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
.wy-nav-top i {
|
||||
line-height: 50px;
|
||||
.wy-nav-top i {
|
||||
line-height: 50px;
|
||||
}
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
|
@ -1,39 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd">
|
||||
<svg width="22cm" height="8cm" viewBox="199 199 435 159" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="200" y="260" width="141.3" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="200" y="260" width="141.3" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="270.65" y="281.9">
|
||||
<tspan x="270.65" y="281.9">:InfoItemsCollector</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="210" y1="284.9" x2="331.3" y2="284.9"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="400" y="200" width="232.65" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="200" width="232.65" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="221.9">
|
||||
<tspan x="516.325" y="221.9">itemExtractor1:InfoItemExtractor</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="224.9" x2="622.65" y2="224.9"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="400" y="260" width="232.65" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="260" width="232.65" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="281.9">
|
||||
<tspan x="516.325" y="281.9">itemExtractor2:InfoItemExtractor</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="284.9" x2="622.65" y2="284.9"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="400" y="320" width="232.65" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="320" width="232.65" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="341.9">
|
||||
<tspan x="516.325" y="341.9">itemExtractor3:InfoItemExtractor</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="344.9" x2="622.65" y2="344.9"/>
|
||||
</g>
|
||||
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,218 398.993,218 "/>
|
||||
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 343.309,278 397.993,278 398.993,278 "/>
|
||||
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,338 398.993,338 "/>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd">
|
||||
<svg width="22cm" height="8cm" viewBox="199 199 435 159" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="200" y="260" width="141.3" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="200" y="260" width="141.3" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="270.65" y="281.9">
|
||||
<tspan x="270.65" y="281.9">:InfoItemsCollector</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="210" y1="284.9" x2="331.3" y2="284.9"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="400" y="200" width="232.65" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="200" width="232.65" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="221.9">
|
||||
<tspan x="516.325" y="221.9">itemExtractor1:InfoItemExtractor</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="224.9" x2="622.65" y2="224.9"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="400" y="260" width="232.65" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="260" width="232.65" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="281.9">
|
||||
<tspan x="516.325" y="281.9">itemExtractor2:InfoItemExtractor</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="284.9" x2="622.65" y2="284.9"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect style="fill: #ffffff" x="400" y="320" width="232.65" height="36"/>
|
||||
<rect style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x="400" y="320" width="232.65" height="36"/>
|
||||
<text font-size="12.8" style="fill: #000000;text-anchor:middle;font-family:sans-serif;font-style:normal;font-weight:normal" x="516.325" y="341.9">
|
||||
<tspan x="516.325" y="341.9">itemExtractor3:InfoItemExtractor</tspan>
|
||||
</text>
|
||||
<line style="fill: none; fill-opacity:0; stroke-width: 1; stroke: #000000" x1="410" y1="344.9" x2="622.65" y2="344.9"/>
|
||||
</g>
|
||||
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,218 398.993,218 "/>
|
||||
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 343.309,278 397.993,278 398.993,278 "/>
|
||||
<polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="342.309,278 370.651,278 370.651,338 398.993,338 "/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 156 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
@ -1,149 +1,149 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210"
|
||||
height="300"
|
||||
viewBox="385 95 104.17968 152.03365"
|
||||
version="1.1"
|
||||
id="svg39"
|
||||
sodipodi:docname="feature_branch.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata45">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs43" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview41"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.48032051"
|
||||
inkscape:cx="151.1811"
|
||||
inkscape:cy="245.66929"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg39" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.6187154,0,0,0.6187154,144.56047,34.721636)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="411"
|
||||
cy="243.14999"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="411"
|
||||
y1="267.14999"
|
||||
x2="410.05899"
|
||||
y2="338.67801"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="405.161,330.849 410.029,340.914 415.161,330.981 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="459.65701"
|
||||
y="107.209"
|
||||
id="text20">
|
||||
<tspan
|
||||
x="459.65701"
|
||||
y="107.209"
|
||||
id="tspan18">feature_xyz</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="494.25"
|
||||
cy="150.39999"
|
||||
id="ellipse22"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g28">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="M 494.25,173.65 C 491,206.15 412,169.15 411.089,214.679"
|
||||
id="path24"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="406.246,206.816 411.045,216.914 416.244,207.016 "
|
||||
id="polyline26" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="481"
|
||||
y="102"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="481"
|
||||
y="102"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="505"
|
||||
y="103"
|
||||
id="text36">
|
||||
<tspan
|
||||
x="505"
|
||||
y="103"
|
||||
id="tspan34" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="210"
|
||||
height="300"
|
||||
viewBox="385 95 104.17968 152.03365"
|
||||
version="1.1"
|
||||
id="svg39"
|
||||
sodipodi:docname="feature_branch.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata45">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs43" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview41"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.48032051"
|
||||
inkscape:cx="151.1811"
|
||||
inkscape:cy="245.66929"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg39" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.6187154,0,0,0.6187154,144.56047,34.721636)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="411"
|
||||
cy="243.14999"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="411"
|
||||
y1="267.14999"
|
||||
x2="410.05899"
|
||||
y2="338.67801"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="405.161,330.849 410.029,340.914 415.161,330.981 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="459.65701"
|
||||
y="107.209"
|
||||
id="text20">
|
||||
<tspan
|
||||
x="459.65701"
|
||||
y="107.209"
|
||||
id="tspan18">feature_xyz</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="494.25"
|
||||
cy="150.39999"
|
||||
id="ellipse22"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g28">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="M 494.25,173.65 C 491,206.15 412,169.15 411.089,214.679"
|
||||
id="path24"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="406.246,206.816 411.045,216.914 416.244,207.016 "
|
||||
id="polyline26" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="481"
|
||||
y="102"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="481"
|
||||
y="102"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="505"
|
||||
y="103"
|
||||
id="text36">
|
||||
<tspan
|
||||
x="505"
|
||||
y="103"
|
||||
id="tspan34" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.4 KiB |
|
@ -1,160 +1,160 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="150"
|
||||
height="270"
|
||||
viewBox="469 90 72.429685 138.47884"
|
||||
version="1.1"
|
||||
id="svg43"
|
||||
sodipodi:docname="hotfix_branch.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata49">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs47" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview45"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="1.921282"
|
||||
inkscape:cx="124.67896"
|
||||
inkscape:cy="181.09135"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg43" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.53799084,0,0,0.53799084,213.8928,44.943413)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="558"
|
||||
y="102.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="558"
|
||||
y="102.15"
|
||||
id="tspan2">master</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="588"
|
||||
cy="241.14999"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="588"
|
||||
y1="265.14999"
|
||||
x2="587.05902"
|
||||
y2="336.67801"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="582.161,328.849 587.029,338.914 592.161,328.981 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="476.65799"
|
||||
y="104.209"
|
||||
id="text20">
|
||||
<tspan
|
||||
x="476.65799"
|
||||
y="104.209"
|
||||
id="tspan18">hotfix</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="494.25"
|
||||
cy="150.39999"
|
||||
id="ellipse22"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g28">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 494.25,173.65 c -3.25,32.5 94.75,-6.5 93.839,39.029"
|
||||
id="path24"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="583.246,204.816 588.045,214.914 593.244,205.016 "
|
||||
id="polyline26" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="481"
|
||||
y="102"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="481"
|
||||
y="102"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="505"
|
||||
y="103"
|
||||
id="text36">
|
||||
<tspan
|
||||
x="505"
|
||||
y="103"
|
||||
id="tspan34" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="588"
|
||||
y="101"
|
||||
id="text40">
|
||||
<tspan
|
||||
x="588"
|
||||
y="101"
|
||||
id="tspan38" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="150"
|
||||
height="270"
|
||||
viewBox="469 90 72.429685 138.47884"
|
||||
version="1.1"
|
||||
id="svg43"
|
||||
sodipodi:docname="hotfix_branch.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata49">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs47" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview45"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="1.921282"
|
||||
inkscape:cx="124.67896"
|
||||
inkscape:cy="181.09135"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg43" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.53799084,0,0,0.53799084,213.8928,44.943413)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="558"
|
||||
y="102.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="558"
|
||||
y="102.15"
|
||||
id="tspan2">master</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="588"
|
||||
cy="241.14999"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="588"
|
||||
y1="265.14999"
|
||||
x2="587.05902"
|
||||
y2="336.67801"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="582.161,328.849 587.029,338.914 592.161,328.981 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="476.65799"
|
||||
y="104.209"
|
||||
id="text20">
|
||||
<tspan
|
||||
x="476.65799"
|
||||
y="104.209"
|
||||
id="tspan18">hotfix</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="494.25"
|
||||
cy="150.39999"
|
||||
id="ellipse22"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g28">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 494.25,173.65 c -3.25,32.5 94.75,-6.5 93.839,39.029"
|
||||
id="path24"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="583.246,204.816 588.045,214.914 593.244,205.016 "
|
||||
id="polyline26" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="481"
|
||||
y="102"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="481"
|
||||
y="102"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="505"
|
||||
y="103"
|
||||
id="text36">
|
||||
<tspan
|
||||
x="505"
|
||||
y="103"
|
||||
id="tspan34" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="588"
|
||||
y="101"
|
||||
id="text40">
|
||||
<tspan
|
||||
x="588"
|
||||
y="101"
|
||||
id="tspan38" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
@ -1,210 +1,210 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="310"
|
||||
height="300"
|
||||
viewBox="390 95 157.2066 158.28308"
|
||||
version="1.1"
|
||||
id="svg65"
|
||||
sodipodi:docname="merge_into_dev.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata71">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs69" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview67"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="2.9384314"
|
||||
inkscape:cx="319.09352"
|
||||
inkscape:cy="270.89374"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg65" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.4714669,0,0,0.4714669,202.11115,49.067333)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="417"
|
||||
cy="333.14999"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="417"
|
||||
y1="357.14999"
|
||||
x2="416.05899"
|
||||
y2="428.67801"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="411.161,420.849 416.029,430.914 421.161,420.981 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="470"
|
||||
y="108.15"
|
||||
id="text20">
|
||||
<tspan
|
||||
x="470"
|
||||
y="108.15"
|
||||
id="tspan18">feature_xyz</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="500.25"
|
||||
cy="240.39999"
|
||||
id="ellipse22"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g28">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="M 500.25,263.65 C 497,296.15 418,259.15 417.089,304.679"
|
||||
id="path24"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="412.246,296.816 417.045,306.914 422.244,297.016 "
|
||||
id="polyline26" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="416.75"
|
||||
cy="156.89999"
|
||||
id="ellipse30"
|
||||
r="22.75" />
|
||||
<g
|
||||
id="g36">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 416.75,179.65 c 0.25,32.5 82.25,12.5 83.277,33.033"
|
||||
id="path32"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="494.645,205.179 500.138,214.917 504.633,204.68 "
|
||||
id="polyline34" />
|
||||
</g>
|
||||
<g
|
||||
id="g42">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="416.75"
|
||||
y1="179.64999"
|
||||
x2="416.991"
|
||||
y2="304.67801"
|
||||
id="line38" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="411.976,296.924 416.996,306.914 421.976,296.904 "
|
||||
id="polyline40" />
|
||||
</g>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="568"
|
||||
y1="160.14999"
|
||||
x2="495.423"
|
||||
y2="184.634"
|
||||
id="line44" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="497.021,189.372 493.825,179.896 485.948,187.83 "
|
||||
id="polygon46" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="583"
|
||||
y="160.14999"
|
||||
id="text54">
|
||||
<tspan
|
||||
x="583"
|
||||
y="160.14999"
|
||||
id="tspan50">PULL REQUEST</tspan>
|
||||
<tspan
|
||||
x="583"
|
||||
y="176.14999"
|
||||
id="tspan52">Do QA/Codereview here</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="text58">
|
||||
<tspan
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="tspan56" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="494"
|
||||
y="104"
|
||||
id="text62">
|
||||
<tspan
|
||||
x="494"
|
||||
y="104"
|
||||
id="tspan60" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="310"
|
||||
height="300"
|
||||
viewBox="390 95 157.2066 158.28308"
|
||||
version="1.1"
|
||||
id="svg65"
|
||||
sodipodi:docname="merge_into_dev.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata71">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs69" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview67"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="2.9384314"
|
||||
inkscape:cx="319.09352"
|
||||
inkscape:cy="270.89374"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg65" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.4714669,0,0,0.4714669,202.11115,49.067333)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="417"
|
||||
cy="333.14999"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="417"
|
||||
y1="357.14999"
|
||||
x2="416.05899"
|
||||
y2="428.67801"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="411.161,420.849 416.029,430.914 421.161,420.981 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="470"
|
||||
y="108.15"
|
||||
id="text20">
|
||||
<tspan
|
||||
x="470"
|
||||
y="108.15"
|
||||
id="tspan18">feature_xyz</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="500.25"
|
||||
cy="240.39999"
|
||||
id="ellipse22"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g28">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="M 500.25,263.65 C 497,296.15 418,259.15 417.089,304.679"
|
||||
id="path24"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="412.246,296.816 417.045,306.914 422.244,297.016 "
|
||||
id="polyline26" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="416.75"
|
||||
cy="156.89999"
|
||||
id="ellipse30"
|
||||
r="22.75" />
|
||||
<g
|
||||
id="g36">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 416.75,179.65 c 0.25,32.5 82.25,12.5 83.277,33.033"
|
||||
id="path32"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="494.645,205.179 500.138,214.917 504.633,204.68 "
|
||||
id="polyline34" />
|
||||
</g>
|
||||
<g
|
||||
id="g42">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="416.75"
|
||||
y1="179.64999"
|
||||
x2="416.991"
|
||||
y2="304.67801"
|
||||
id="line38" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="411.976,296.924 416.996,306.914 421.976,296.904 "
|
||||
id="polyline40" />
|
||||
</g>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="568"
|
||||
y1="160.14999"
|
||||
x2="495.423"
|
||||
y2="184.634"
|
||||
id="line44" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="497.021,189.372 493.825,179.896 485.948,187.83 "
|
||||
id="polygon46" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="583"
|
||||
y="160.14999"
|
||||
id="text54">
|
||||
<tspan
|
||||
x="583"
|
||||
y="160.14999"
|
||||
id="tspan50">PULL REQUEST</tspan>
|
||||
<tspan
|
||||
x="583"
|
||||
y="176.14999"
|
||||
id="tspan52">Do QA/Codereview here</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="text58">
|
||||
<tspan
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="tspan56" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="494"
|
||||
y="104"
|
||||
id="text62">
|
||||
<tspan
|
||||
x="494"
|
||||
y="104"
|
||||
id="tspan60" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
|
@ -1,310 +1,310 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="250"
|
||||
height="300"
|
||||
viewBox="90 94 131.85069 151.23026"
|
||||
version="1.1"
|
||||
id="svg103"
|
||||
sodipodi:docname="rebase_back_hotfix.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata109">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs107" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview105"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.92953528"
|
||||
inkscape:cx="159.4593"
|
||||
inkscape:cy="256.73847"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg103" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.44213893,0,0,0.44213893,49.719377,47.656585)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="356"
|
||||
y="106.636"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="356"
|
||||
y="106.636"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="362.68799"
|
||||
cy="360.51599"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="362.68799"
|
||||
y1="384.51599"
|
||||
x2="362.04901"
|
||||
y2="442.52802"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="357.135,434.71 362.025,444.764 367.134,434.82 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="115.354"
|
||||
cy="262.09799"
|
||||
id="ellipse18"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g24">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 115.354,285.348 c 1.648,35.872 91.902,14.902 92.122,41.962"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.413,319.587 207.494,329.546 212.413,319.506 "
|
||||
id="polyline22" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="426.254"
|
||||
y="106.059"
|
||||
id="text28">
|
||||
<tspan
|
||||
x="426.254"
|
||||
y="106.059"
|
||||
id="tspan26" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="432"
|
||||
y="104"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="432"
|
||||
y="104"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="207.51199"
|
||||
cy="354.78201"
|
||||
id="ellipse34"
|
||||
r="23" />
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="111"
|
||||
y="107"
|
||||
id="text38">
|
||||
<tspan
|
||||
x="111"
|
||||
y="107"
|
||||
id="tspan36">hotfix</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="190"
|
||||
y="107"
|
||||
id="text42">
|
||||
<tspan
|
||||
x="190"
|
||||
y="107"
|
||||
id="tspan40">master</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="207.51199"
|
||||
y1="377.78201"
|
||||
x2="207.052"
|
||||
y2="450.29199"
|
||||
id="line44" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.102,442.496 207.038,452.528 212.101,442.56 "
|
||||
id="polyline46" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="208.517"
|
||||
cy="163.239"
|
||||
id="ellipse50"
|
||||
r="20" />
|
||||
<g
|
||||
id="g56">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 208.544,184.227 c 0.048,39.375 -94.626,3.592 -93.316,50.151"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="110.012,226.757 115.291,236.613 120.008,226.476 "
|
||||
id="polyline54" />
|
||||
</g>
|
||||
<g
|
||||
id="g62">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="208.51801"
|
||||
y1="183.239"
|
||||
x2="207.54201"
|
||||
y2="327.31"
|
||||
id="line58" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.595,319.512 207.527,329.546 212.595,319.58 "
|
||||
id="polyline60" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="363.49799"
|
||||
cy="265.04001"
|
||||
id="ellipse64"
|
||||
r="20" />
|
||||
<g
|
||||
id="g70">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="363.49799"
|
||||
y1="285.04001"
|
||||
x2="362.758"
|
||||
y2="332.04401"
|
||||
id="line66" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="357.881,324.203 362.723,334.28 367.88,324.36 "
|
||||
id="polyline68" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="461.09601"
|
||||
y="151.021"
|
||||
id="text74">
|
||||
<tspan
|
||||
x="461.09601"
|
||||
y="151.021"
|
||||
id="tspan72" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="364.63599"
|
||||
cy="169.187"
|
||||
id="ellipse76"
|
||||
r="20" />
|
||||
<g
|
||||
id="g82">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="364.63599"
|
||||
y1="189.187"
|
||||
x2="363.58899"
|
||||
y2="240.569"
|
||||
id="line78" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="358.748,232.705 363.544,242.804 368.746,232.908 "
|
||||
id="polyline80" />
|
||||
</g>
|
||||
<g
|
||||
id="g88">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1"
|
||||
x1="232.914"
|
||||
y1="203.79601"
|
||||
x2="306.76501"
|
||||
y2="204.82899"
|
||||
id="line84" />
|
||||
<polygon
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="306.835,199.829 306.695,209.828 316.764,204.969 "
|
||||
id="polygon86" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="281.03601"
|
||||
y="187.479"
|
||||
id="text92">
|
||||
<tspan
|
||||
x="281.03601"
|
||||
y="187.479"
|
||||
id="tspan90">REBASE</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="318.04401"
|
||||
y="141.392"
|
||||
id="text96">
|
||||
<tspan
|
||||
x="318.04401"
|
||||
y="141.392"
|
||||
id="tspan94" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="129"
|
||||
y="108"
|
||||
id="text100">
|
||||
<tspan
|
||||
x="129"
|
||||
y="108"
|
||||
id="tspan98" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="250"
|
||||
height="300"
|
||||
viewBox="90 94 131.85069 151.23026"
|
||||
version="1.1"
|
||||
id="svg103"
|
||||
sodipodi:docname="rebase_back_hotfix.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata109">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs107" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview105"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.92953528"
|
||||
inkscape:cx="159.4593"
|
||||
inkscape:cy="256.73847"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg103" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.44213893,0,0,0.44213893,49.719377,47.656585)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="356"
|
||||
y="106.636"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="356"
|
||||
y="106.636"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="362.68799"
|
||||
cy="360.51599"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="362.68799"
|
||||
y1="384.51599"
|
||||
x2="362.04901"
|
||||
y2="442.52802"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="357.135,434.71 362.025,444.764 367.134,434.82 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="115.354"
|
||||
cy="262.09799"
|
||||
id="ellipse18"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g24">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 115.354,285.348 c 1.648,35.872 91.902,14.902 92.122,41.962"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.413,319.587 207.494,329.546 212.413,319.506 "
|
||||
id="polyline22" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="426.254"
|
||||
y="106.059"
|
||||
id="text28">
|
||||
<tspan
|
||||
x="426.254"
|
||||
y="106.059"
|
||||
id="tspan26" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="432"
|
||||
y="104"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="432"
|
||||
y="104"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="207.51199"
|
||||
cy="354.78201"
|
||||
id="ellipse34"
|
||||
r="23" />
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="111"
|
||||
y="107"
|
||||
id="text38">
|
||||
<tspan
|
||||
x="111"
|
||||
y="107"
|
||||
id="tspan36">hotfix</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="190"
|
||||
y="107"
|
||||
id="text42">
|
||||
<tspan
|
||||
x="190"
|
||||
y="107"
|
||||
id="tspan40">master</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="207.51199"
|
||||
y1="377.78201"
|
||||
x2="207.052"
|
||||
y2="450.29199"
|
||||
id="line44" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.102,442.496 207.038,452.528 212.101,442.56 "
|
||||
id="polyline46" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="208.517"
|
||||
cy="163.239"
|
||||
id="ellipse50"
|
||||
r="20" />
|
||||
<g
|
||||
id="g56">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 208.544,184.227 c 0.048,39.375 -94.626,3.592 -93.316,50.151"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="110.012,226.757 115.291,236.613 120.008,226.476 "
|
||||
id="polyline54" />
|
||||
</g>
|
||||
<g
|
||||
id="g62">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="208.51801"
|
||||
y1="183.239"
|
||||
x2="207.54201"
|
||||
y2="327.31"
|
||||
id="line58" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.595,319.512 207.527,329.546 212.595,319.58 "
|
||||
id="polyline60" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="363.49799"
|
||||
cy="265.04001"
|
||||
id="ellipse64"
|
||||
r="20" />
|
||||
<g
|
||||
id="g70">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="363.49799"
|
||||
y1="285.04001"
|
||||
x2="362.758"
|
||||
y2="332.04401"
|
||||
id="line66" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="357.881,324.203 362.723,334.28 367.88,324.36 "
|
||||
id="polyline68" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="461.09601"
|
||||
y="151.021"
|
||||
id="text74">
|
||||
<tspan
|
||||
x="461.09601"
|
||||
y="151.021"
|
||||
id="tspan72" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="364.63599"
|
||||
cy="169.187"
|
||||
id="ellipse76"
|
||||
r="20" />
|
||||
<g
|
||||
id="g82">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="364.63599"
|
||||
y1="189.187"
|
||||
x2="363.58899"
|
||||
y2="240.569"
|
||||
id="line78" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="358.748,232.705 363.544,242.804 368.746,232.908 "
|
||||
id="polyline80" />
|
||||
</g>
|
||||
<g
|
||||
id="g88">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1"
|
||||
x1="232.914"
|
||||
y1="203.79601"
|
||||
x2="306.76501"
|
||||
y2="204.82899"
|
||||
id="line84" />
|
||||
<polygon
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="306.835,199.829 306.695,209.828 316.764,204.969 "
|
||||
id="polygon86" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="281.03601"
|
||||
y="187.479"
|
||||
id="text92">
|
||||
<tspan
|
||||
x="281.03601"
|
||||
y="187.479"
|
||||
id="tspan90">REBASE</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="318.04401"
|
||||
y="141.392"
|
||||
id="text96">
|
||||
<tspan
|
||||
x="318.04401"
|
||||
y="141.392"
|
||||
id="tspan94" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="129"
|
||||
y="108"
|
||||
id="text100">
|
||||
<tspan
|
||||
x="129"
|
||||
y="108"
|
||||
id="tspan98" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.3 KiB |
|
@ -1,338 +1,338 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="400"
|
||||
height="400"
|
||||
viewBox="182 94 204.25833 203.3114"
|
||||
version="1.1"
|
||||
id="svg115"
|
||||
sodipodi:docname="rebase_back_release.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata121">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs119" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview117"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.92953528"
|
||||
inkscape:cx="185.27914"
|
||||
inkscape:cy="250.74271"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg115" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.53220791,0,0,0.53220791,84.333466,54.284818)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="418"
|
||||
y="106.636"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="418"
|
||||
y="106.636"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="424.68799"
|
||||
cy="360.51599"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="424.68799"
|
||||
y1="384.51599"
|
||||
x2="424.95801"
|
||||
y2="453.056"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.928,445.312 424.967,455.292 429.928,445.272 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="323.354"
|
||||
cy="266.09799"
|
||||
id="ellipse18"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g24">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 323.354,289.348 c 1.648,35.872 101.078,15.636 101.298,42.696"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.589,324.321 424.67,334.28 429.588,324.24 "
|
||||
id="polyline22" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="text28">
|
||||
<tspan
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="tspan26" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="494"
|
||||
y="104"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="494"
|
||||
y="104"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="207.51199"
|
||||
cy="354.78201"
|
||||
id="ellipse34"
|
||||
r="23" />
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="287"
|
||||
y="106"
|
||||
id="text38">
|
||||
<tspan
|
||||
x="287"
|
||||
y="106"
|
||||
id="tspan36">release_x.y.z</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="190"
|
||||
y="107"
|
||||
id="text42">
|
||||
<tspan
|
||||
x="190"
|
||||
y="107"
|
||||
id="tspan40">master</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="207.51199"
|
||||
y1="377.78201"
|
||||
x2="207.052"
|
||||
y2="450.29199"
|
||||
id="line44" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.102,442.496 207.038,452.528 212.101,442.56 "
|
||||
id="polyline46" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="208.517"
|
||||
cy="163.239"
|
||||
id="ellipse50"
|
||||
r="20" />
|
||||
<g
|
||||
id="g56">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 208.543,184.117 c 0.048,39.375 113.375,7.702 114.685,54.261"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="318.012,230.757 323.291,240.613 328.008,230.476 "
|
||||
id="polyline54" />
|
||||
</g>
|
||||
<g
|
||||
id="g62">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="208.51801"
|
||||
y1="183.239"
|
||||
x2="207.54201"
|
||||
y2="327.31"
|
||||
id="line58" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.595,319.512 207.527,329.546 212.595,319.58 "
|
||||
id="polyline60" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="517.79999"
|
||||
y="196.278"
|
||||
id="text66">
|
||||
<tspan
|
||||
x="517.79999"
|
||||
y="196.278"
|
||||
id="tspan64">quickfix</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="425.49799"
|
||||
cy="265.04001"
|
||||
id="ellipse68"
|
||||
r="20" />
|
||||
<g
|
||||
id="g74">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="425.49799"
|
||||
y1="285.04001"
|
||||
x2="424.758"
|
||||
y2="332.04401"
|
||||
id="line70" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.881,324.203 424.723,334.28 429.88,324.36 "
|
||||
id="polyline72" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="523.09601"
|
||||
y="151.021"
|
||||
id="text78">
|
||||
<tspan
|
||||
x="523.09601"
|
||||
y="151.021"
|
||||
id="tspan76" />
|
||||
</text>
|
||||
<g
|
||||
id="g84">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="505.672"
|
||||
y1="196.871"
|
||||
x2="349.52399"
|
||||
y2="231.189"
|
||||
id="line80" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="339.757,233.335 350.597,236.072 348.45,226.305 "
|
||||
id="polygon82" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="426.63599"
|
||||
cy="169.187"
|
||||
id="ellipse86"
|
||||
r="20" />
|
||||
<g
|
||||
id="g92">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="426.63599"
|
||||
y1="189.187"
|
||||
x2="425.58899"
|
||||
y2="240.569"
|
||||
id="line88" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="420.748,232.705 425.544,242.804 430.746,232.908 "
|
||||
id="polyline90" />
|
||||
</g>
|
||||
<g
|
||||
id="g98">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="505.672"
|
||||
y1="195.95399"
|
||||
x2="455.58701"
|
||||
y2="235.86501"
|
||||
id="line94" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="447.766,242.097 458.703,239.775 452.471,231.955 "
|
||||
id="polygon96" />
|
||||
</g>
|
||||
<g
|
||||
id="g104">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1"
|
||||
x1="248.914"
|
||||
y1="161.79601"
|
||||
x2="375.14499"
|
||||
y2="163.259"
|
||||
id="line100" />
|
||||
<polygon
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="385.144,163.374 375.203,158.259 375.087,168.258 "
|
||||
id="polygon102" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="358.03601"
|
||||
y="151.479"
|
||||
id="text108">
|
||||
<tspan
|
||||
x="358.03601"
|
||||
y="151.479"
|
||||
id="tspan106">REBASE</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="380.04401"
|
||||
y="141.392"
|
||||
id="text112">
|
||||
<tspan
|
||||
x="380.04401"
|
||||
y="141.392"
|
||||
id="tspan110" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="400"
|
||||
height="400"
|
||||
viewBox="182 94 204.25833 203.3114"
|
||||
version="1.1"
|
||||
id="svg115"
|
||||
sodipodi:docname="rebase_back_release.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata121">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs119" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview117"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.92953528"
|
||||
inkscape:cx="185.27914"
|
||||
inkscape:cy="250.74271"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg115" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.53220791,0,0,0.53220791,84.333466,54.284818)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="418"
|
||||
y="106.636"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="418"
|
||||
y="106.636"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="424.68799"
|
||||
cy="360.51599"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="424.68799"
|
||||
y1="384.51599"
|
||||
x2="424.95801"
|
||||
y2="453.056"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.928,445.312 424.967,455.292 429.928,445.272 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="323.354"
|
||||
cy="266.09799"
|
||||
id="ellipse18"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g24">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 323.354,289.348 c 1.648,35.872 101.078,15.636 101.298,42.696"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.589,324.321 424.67,334.28 429.588,324.24 "
|
||||
id="polyline22" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="text28">
|
||||
<tspan
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="tspan26" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="494"
|
||||
y="104"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="494"
|
||||
y="104"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="207.51199"
|
||||
cy="354.78201"
|
||||
id="ellipse34"
|
||||
r="23" />
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="287"
|
||||
y="106"
|
||||
id="text38">
|
||||
<tspan
|
||||
x="287"
|
||||
y="106"
|
||||
id="tspan36">release_x.y.z</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="190"
|
||||
y="107"
|
||||
id="text42">
|
||||
<tspan
|
||||
x="190"
|
||||
y="107"
|
||||
id="tspan40">master</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="207.51199"
|
||||
y1="377.78201"
|
||||
x2="207.052"
|
||||
y2="450.29199"
|
||||
id="line44" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.102,442.496 207.038,452.528 212.101,442.56 "
|
||||
id="polyline46" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="208.517"
|
||||
cy="163.239"
|
||||
id="ellipse50"
|
||||
r="20" />
|
||||
<g
|
||||
id="g56">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 208.543,184.117 c 0.048,39.375 113.375,7.702 114.685,54.261"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="318.012,230.757 323.291,240.613 328.008,230.476 "
|
||||
id="polyline54" />
|
||||
</g>
|
||||
<g
|
||||
id="g62">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="208.51801"
|
||||
y1="183.239"
|
||||
x2="207.54201"
|
||||
y2="327.31"
|
||||
id="line58" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="202.595,319.512 207.527,329.546 212.595,319.58 "
|
||||
id="polyline60" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="517.79999"
|
||||
y="196.278"
|
||||
id="text66">
|
||||
<tspan
|
||||
x="517.79999"
|
||||
y="196.278"
|
||||
id="tspan64">quickfix</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="425.49799"
|
||||
cy="265.04001"
|
||||
id="ellipse68"
|
||||
r="20" />
|
||||
<g
|
||||
id="g74">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="425.49799"
|
||||
y1="285.04001"
|
||||
x2="424.758"
|
||||
y2="332.04401"
|
||||
id="line70" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.881,324.203 424.723,334.28 429.88,324.36 "
|
||||
id="polyline72" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="523.09601"
|
||||
y="151.021"
|
||||
id="text78">
|
||||
<tspan
|
||||
x="523.09601"
|
||||
y="151.021"
|
||||
id="tspan76" />
|
||||
</text>
|
||||
<g
|
||||
id="g84">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="505.672"
|
||||
y1="196.871"
|
||||
x2="349.52399"
|
||||
y2="231.189"
|
||||
id="line80" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="339.757,233.335 350.597,236.072 348.45,226.305 "
|
||||
id="polygon82" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="426.63599"
|
||||
cy="169.187"
|
||||
id="ellipse86"
|
||||
r="20" />
|
||||
<g
|
||||
id="g92">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="426.63599"
|
||||
y1="189.187"
|
||||
x2="425.58899"
|
||||
y2="240.569"
|
||||
id="line88" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="420.748,232.705 425.544,242.804 430.746,232.908 "
|
||||
id="polyline90" />
|
||||
</g>
|
||||
<g
|
||||
id="g98">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="505.672"
|
||||
y1="195.95399"
|
||||
x2="455.58701"
|
||||
y2="235.86501"
|
||||
id="line94" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="447.766,242.097 458.703,239.775 452.471,231.955 "
|
||||
id="polygon96" />
|
||||
</g>
|
||||
<g
|
||||
id="g104">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-dasharray:20;stroke-opacity:1"
|
||||
x1="248.914"
|
||||
y1="161.79601"
|
||||
x2="375.14499"
|
||||
y2="163.259"
|
||||
id="line100" />
|
||||
<polygon
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="385.144,163.374 375.203,158.259 375.087,168.258 "
|
||||
id="polygon102" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="358.03601"
|
||||
y="151.479"
|
||||
id="text108">
|
||||
<tspan
|
||||
x="358.03601"
|
||||
y="151.479"
|
||||
id="tspan106">REBASE</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="380.04401"
|
||||
y="141.392"
|
||||
id="text112">
|
||||
<tspan
|
||||
x="380.04401"
|
||||
y="141.392"
|
||||
id="tspan110" />
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 10 KiB |
|
@ -1,270 +1,270 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="400"
|
||||
height="330"
|
||||
viewBox="187 94 205.41288 170.74445"
|
||||
version="1.1"
|
||||
id="svg89"
|
||||
sodipodi:docname="release_branch.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata95">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs93" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview91"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.98117613"
|
||||
inkscape:cx="108.31366"
|
||||
inkscape:cy="166.90326"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg89" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.48713258,0,0,0.48713258,94.55635,48.360262)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="424.771"
|
||||
cy="344.20001"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="424.771"
|
||||
y1="368.20001"
|
||||
x2="423.82999"
|
||||
y2="439.729"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="418.933,431.9 423.801,441.964 428.932,432.031 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="328.021"
|
||||
cy="253.45"
|
||||
id="ellipse18"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g24">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 328.021,276.7 c 1.65,35.871 96.496,11.967 96.714,39.028"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.673,308.005 424.753,317.964 429.672,307.924 "
|
||||
id="polyline22" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="text28">
|
||||
<tspan
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="tspan26" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="494"
|
||||
y="104"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="494"
|
||||
y="104"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="212.17999"
|
||||
cy="342.13501"
|
||||
id="ellipse34"
|
||||
r="23" />
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="287"
|
||||
y="106"
|
||||
id="text38">
|
||||
<tspan
|
||||
x="287"
|
||||
y="106"
|
||||
id="tspan36">release_x.y.z</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="190"
|
||||
y="107"
|
||||
id="text42">
|
||||
<tspan
|
||||
x="190"
|
||||
y="107"
|
||||
id="tspan40">master</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="212.17999"
|
||||
y1="365.13501"
|
||||
x2="211.72"
|
||||
y2="437.64499"
|
||||
id="line44" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="206.77,429.849 211.706,439.881 216.769,429.913 "
|
||||
id="polyline46" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="213.185"
|
||||
cy="150.591"
|
||||
id="ellipse50"
|
||||
r="20" />
|
||||
<g
|
||||
id="g56">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 213.211,171.469 c 0.049,39.375 113.375,7.701 114.684,54.261"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="322.679,218.11 327.958,227.965 332.675,217.829 "
|
||||
id="polyline54" />
|
||||
</g>
|
||||
<g
|
||||
id="g62">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="213.185"
|
||||
y1="170.591"
|
||||
x2="212.21001"
|
||||
y2="314.66299"
|
||||
id="line58" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="207.263,306.865 212.195,316.899 217.263,306.933 "
|
||||
id="polyline60" />
|
||||
</g>
|
||||
<g
|
||||
id="g68">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="455.36099"
|
||||
y1="199.99001"
|
||||
x2="369.21399"
|
||||
y2="233.75999"
|
||||
id="line64" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="371.039,238.415 367.389,229.105 359.904,237.409 "
|
||||
id="polygon66" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="473.867"
|
||||
y="199.21899"
|
||||
id="text72">
|
||||
<tspan
|
||||
x="473.867"
|
||||
y="199.21899"
|
||||
id="tspan70">quickfix</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="477.72299"
|
||||
y="143.7"
|
||||
id="text80">
|
||||
<tspan
|
||||
x="477.72299"
|
||||
y="143.7"
|
||||
id="tspan74">PR from release_x.y.z</tspan>
|
||||
<tspan
|
||||
x="477.72299"
|
||||
y="159.7"
|
||||
id="tspan76">to master</tspan>
|
||||
<tspan
|
||||
x="477.72299"
|
||||
y="175.7"
|
||||
id="tspan78" />
|
||||
</text>
|
||||
<g
|
||||
id="g86">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="463.84299"
|
||||
y1="150.63901"
|
||||
x2="337.75699"
|
||||
y2="194.093"
|
||||
id="line82" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="339.386,198.82 336.128,189.366 328.303,197.351 "
|
||||
id="polygon84" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="400"
|
||||
height="330"
|
||||
viewBox="187 94 205.41288 170.74445"
|
||||
version="1.1"
|
||||
id="svg89"
|
||||
sodipodi:docname="release_branch.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata95">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs93" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="740"
|
||||
id="namedview91"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:zoom="0.98117613"
|
||||
inkscape:cx="108.31366"
|
||||
inkscape:cy="166.90326"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg89" />
|
||||
<g
|
||||
id="Hintergrund"
|
||||
transform="matrix(0.48713258,0,0,0.48713258,94.55635,48.360262)">
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="text4">
|
||||
<tspan
|
||||
x="399"
|
||||
y="107.15"
|
||||
id="tspan2">dev</tspan>
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="424.771"
|
||||
cy="344.20001"
|
||||
id="ellipse6"
|
||||
r="24" />
|
||||
<g
|
||||
id="g12">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="424.771"
|
||||
y1="368.20001"
|
||||
x2="423.82999"
|
||||
y2="439.729"
|
||||
id="line8" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="418.933,431.9 423.801,441.964 428.932,432.031 "
|
||||
id="polyline10" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="text16">
|
||||
<tspan
|
||||
x="115.1"
|
||||
y="-31.450001"
|
||||
id="tspan14" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="328.021"
|
||||
cy="253.45"
|
||||
id="ellipse18"
|
||||
r="23.25" />
|
||||
<g
|
||||
id="g24">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 328.021,276.7 c 1.65,35.871 96.496,11.967 96.714,39.028"
|
||||
id="path20"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="419.673,308.005 424.753,317.964 429.672,307.924 "
|
||||
id="polyline22" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="text28">
|
||||
<tspan
|
||||
x="488.254"
|
||||
y="106.059"
|
||||
id="tspan26" />
|
||||
</text>
|
||||
<text
|
||||
font-size="12.8"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.80000019px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="494"
|
||||
y="104"
|
||||
id="text32">
|
||||
<tspan
|
||||
x="494"
|
||||
y="104"
|
||||
id="tspan30" />
|
||||
</text>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="212.17999"
|
||||
cy="342.13501"
|
||||
id="ellipse34"
|
||||
r="23" />
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="287"
|
||||
y="106"
|
||||
id="text38">
|
||||
<tspan
|
||||
x="287"
|
||||
y="106"
|
||||
id="tspan36">release_x.y.z</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="190"
|
||||
y="107"
|
||||
id="text42">
|
||||
<tspan
|
||||
x="190"
|
||||
y="107"
|
||||
id="tspan40">master</tspan>
|
||||
</text>
|
||||
<g
|
||||
id="g48">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="212.17999"
|
||||
y1="365.13501"
|
||||
x2="211.72"
|
||||
y2="437.64499"
|
||||
id="line44" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="206.77,429.849 211.706,439.881 216.769,429.913 "
|
||||
id="polyline46" />
|
||||
</g>
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
cx="213.185"
|
||||
cy="150.591"
|
||||
id="ellipse50"
|
||||
r="20" />
|
||||
<g
|
||||
id="g56">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
d="m 213.211,171.469 c 0.049,39.375 113.375,7.701 114.684,54.261"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="322.679,218.11 327.958,227.965 332.675,217.829 "
|
||||
id="polyline54" />
|
||||
</g>
|
||||
<g
|
||||
id="g62">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="213.185"
|
||||
y1="170.591"
|
||||
x2="212.21001"
|
||||
y2="314.66299"
|
||||
id="line58" />
|
||||
<polyline
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="207.263,306.865 212.195,316.899 217.263,306.933 "
|
||||
id="polyline60" />
|
||||
</g>
|
||||
<g
|
||||
id="g68">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="455.36099"
|
||||
y1="199.99001"
|
||||
x2="369.21399"
|
||||
y2="233.75999"
|
||||
id="line64" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="371.039,238.415 367.389,229.105 359.904,237.409 "
|
||||
id="polygon66" />
|
||||
</g>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="473.867"
|
||||
y="199.21899"
|
||||
id="text72">
|
||||
<tspan
|
||||
x="473.867"
|
||||
y="199.21899"
|
||||
id="tspan70">quickfix</tspan>
|
||||
</text>
|
||||
<text
|
||||
font-size="12.7998"
|
||||
style="font-style:normal;font-weight:normal;font-size:12.79979992px;font-family:sans-serif;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
|
||||
x="477.72299"
|
||||
y="143.7"
|
||||
id="text80">
|
||||
<tspan
|
||||
x="477.72299"
|
||||
y="143.7"
|
||||
id="tspan74">PR from release_x.y.z</tspan>
|
||||
<tspan
|
||||
x="477.72299"
|
||||
y="159.7"
|
||||
id="tspan76">to master</tspan>
|
||||
<tspan
|
||||
x="477.72299"
|
||||
y="175.7"
|
||||
id="tspan78" />
|
||||
</text>
|
||||
<g
|
||||
id="g86">
|
||||
<line
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
x1="463.84299"
|
||||
y1="150.63901"
|
||||
x2="337.75699"
|
||||
y2="194.093"
|
||||
id="line82" />
|
||||
<polygon
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-opacity:1"
|
||||
points="339.386,198.82 336.128,189.366 328.303,197.351 "
|
||||
id="polygon84" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
@ -198,5 +198,5 @@ It focuses on making it possible for the creator of a scraper for a streaming se
|
|||
|
||||
<!--
|
||||
MkDocs version : 1.0.4
|
||||
Build Date UTC : 2019-04-07 17:32:18
|
||||
Build Date UTC : 2019-07-02 12:24:36
|
||||
-->
|
||||
|
|
|
@ -2,47 +2,47 @@
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-04-07</lastmod>
|
||||
<lastmod>2019-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|