Compare commits
No commits in common. "c90f8c6ae42a4ba55968d19967cee1923a3f30bc" and "34e13c5643ce36192e038136ccf47ea22ea4fbc5" have entirely different histories.
c90f8c6ae4
...
34e13c5643
26 changed files with 10248 additions and 0 deletions
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
* @MartaSien
|
||||||
11
.github/dependabot.yml
vendored
Normal file
11
.github/dependabot.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
|
# Please see the documentation for all configuration options:
|
||||||
|
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "pip"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
16
.github/linters/.mega-linter.yml
vendored
Normal file
16
.github/linters/.mega-linter.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Configuration file for MegaLinter
|
||||||
|
# See all available variables at https://megalinter.io/configuration/ and in linters documentation
|
||||||
|
# ADD YOUR CUSTOM ENV VARIABLES HERE OR DEFINE THEM IN A FILE .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY
|
||||||
|
ENABLE_LINTERS:
|
||||||
|
- PYTHON_BLACK
|
||||||
|
- PYTHON_RUFF
|
||||||
|
- CSS_STYLELINT
|
||||||
|
- HTML_HTMLHINT
|
||||||
|
- MARKDOWN_MARKDOWNLINT
|
||||||
|
- YAML_PRETTIER
|
||||||
|
MARKDOWN_FILTER_REGEX_EXCLUDE: '(LICENSE\.md|docs/NEWS\.md)'
|
||||||
|
MARKDOWN_MARKDOWN_LINK_CHECK_DISABLE_ERRORS: true
|
||||||
|
PRE_COMMANDS:
|
||||||
|
- command: R --slave -e 'install.packages(c("lintr"))'
|
||||||
|
cwd: "root"
|
||||||
|
PRINT_ALL_FILES: false
|
||||||
37
.github/workflows/megalinter.yml
vendored
Normal file
37
.github/workflows/megalinter.yml
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
# MegaLinter GitHub Action configuration file
|
||||||
|
# More info at https://megalinter.io
|
||||||
|
name: MegaLinter
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
env:
|
||||||
|
MEGALINTER_CONFIG: .github/linters/.mega-linter.yml
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.ref }}-${{ github.workflow }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
megalinter:
|
||||||
|
name: MegaLinter
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
# Git Checkout
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PAT }}
|
||||||
|
|
||||||
|
- name: MegaLinter
|
||||||
|
id: ml
|
||||||
|
# You can override MegaLinter flavor used to have faster performances
|
||||||
|
# More info at https://megalinter.io/flavors/
|
||||||
|
uses: oxsecurity/megalinter/flavors/python@v8.0.0
|
||||||
|
env:
|
||||||
|
VALIDATE_ALL_CODEBASE: true
|
||||||
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
|
# DISABLE: COPYPASTE,SPELL # Uncomment to disable copy-paste and spell checks
|
||||||
55
.github/workflows/update-website.yml
vendored
Normal file
55
.github/workflows/update-website.yml
vendored
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
# Simple workflow for deploying static content to GitHub Pages
|
||||||
|
name: Update website
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Runs on pushes targeting the default branch
|
||||||
|
pull_request:
|
||||||
|
branches: ["master"]
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||||
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||||
|
concurrency:
|
||||||
|
group: "update"
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# Run Python script to fetch REST API info
|
||||||
|
update:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
# Give the default GITHUB_TOKEN write permission to commit and push the
|
||||||
|
# added or changed files to the repository.
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
# Push to protected branch
|
||||||
|
token: ${{ secrets.PAT }}
|
||||||
|
# Fetch all commits instead of a single, top one
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: "3.10"
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r requirements.txt
|
||||||
|
- name: Generate files
|
||||||
|
run: python main.py
|
||||||
|
- name: Prepare deployment branch
|
||||||
|
run: |
|
||||||
|
git stash
|
||||||
|
git checkout gh-pages
|
||||||
|
git reset --hard origin/master
|
||||||
|
git stash pop
|
||||||
|
- name: Commit and push
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v7.1.0
|
||||||
|
with:
|
||||||
|
commit_message: Update website
|
||||||
|
push_options: --force
|
||||||
|
branch: gh-pages
|
||||||
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
env
|
||||||
|
__pycache__
|
||||||
|
.env
|
||||||
45
ORIG_README.md
Normal file
45
ORIG_README.md
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
# HS3 Baza zasobów Dashboard
|
||||||
|
|
||||||
|
Skrypt, który generuje podsumowanie [Bazy Wiedzy zasobów Hackerspace Trójmiasto](https://kb.hs3.pl/docs) w formie statycznej strony internetowej.
|
||||||
|
|
||||||
|
## Sposób działania
|
||||||
|
|
||||||
|
1. Baza Wiedzy znajduje się na Discourse Hackerspace Trójmiasto i jest dostępna publicznie. Projekt wykorzystuje Discourse REST API do pobrania listy zasobów.
|
||||||
|
1. Lista zasobów zapisana jest w pliku csv `zasoby.csv`.
|
||||||
|
1. Skrypt tworzy statyczną stronę internetową na podstawie pliku `.csv`.
|
||||||
|
1. Strona jest hostowana przy pomocy GitHub Pages.
|
||||||
|
|
||||||
|
## Możliwości generatora bazy zasobów csv
|
||||||
|
|
||||||
|
- pobieranie listy wszystkich zasobów z wybranej kategorii
|
||||||
|
- pobieranie ID, tagów i treści posta każdego zasobu
|
||||||
|
- wyłuskanie z treści posta informacji:
|
||||||
|
- nazwa przedmiotu
|
||||||
|
- miejsce zamieszkania
|
||||||
|
- ilość
|
||||||
|
- opiekunowie
|
||||||
|
- oto jak powinien wyglądać ostateczny wpis:
|
||||||
|
|
||||||
|
```
|
||||||
|
ID, nazwa, miejsce, ilość, opiekunowie, tagi
|
||||||
|
```
|
||||||
|
|
||||||
|
## Automatyczna aktualizacja
|
||||||
|
|
||||||
|
Żeby działały automatyczne aktualizacje przy użyciu GitHub Actions należy w sekretach dodać sekret o nazwie `PAT` którego wartością jest Personal Access Token z uprawnieniami do modyfikowania repozytorium.
|
||||||
|
|
||||||
|
## Możliwości dashboard'u
|
||||||
|
|
||||||
|
- filtrowanie bazy zasobów po tagach
|
||||||
|
- sortowanie alfabetyczne bazy zasobów po dowolnej kolumnie
|
||||||
|
- linki do zasobu na Discourse w ID zasobu
|
||||||
|
- łatwa zmiana ilości kolumn dashboardu
|
||||||
|
|
||||||
|
## Co chcę dodać w przyszłości
|
||||||
|
|
||||||
|
- wizualizacja statystyk z bazy zasobów
|
||||||
|
- generowanie drugiego pliku csv służącego do wygenerowania naklejek z kodem QR
|
||||||
|
|
||||||
|
## Dokumentacja
|
||||||
|
|
||||||
|
- [Discourse REST API](https://docs.discourse.org/)
|
||||||
116
discourse.py
Normal file
116
discourse.py
Normal file
|
|
@ -0,0 +1,116 @@
|
||||||
|
'''
|
||||||
|
Class to generate a csv file based on data fetched via Discourse REST API
|
||||||
|
'''
|
||||||
|
import os
|
||||||
|
import csv
|
||||||
|
import json
|
||||||
|
import requests
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
DISCOURSE_URL = "https://kb.hs3.pl" # Database is hosted here
|
||||||
|
CATEGORY_ID = 9 # Database category ID
|
||||||
|
PLACES = [
|
||||||
|
"cow-work",
|
||||||
|
"garage",
|
||||||
|
"lab",
|
||||||
|
"audiolab",
|
||||||
|
"server-room"
|
||||||
|
]
|
||||||
|
class DiscourseDatabase():
|
||||||
|
def __init__(self):
|
||||||
|
data = self.get_category_data()
|
||||||
|
self.category_topics_csv(data)
|
||||||
|
load_dotenv()
|
||||||
|
|
||||||
|
def get_headers(self, auth=False):
|
||||||
|
"""Get request headers, optionally with auth data."""
|
||||||
|
headers = {
|
||||||
|
"content-type": "application/json",
|
||||||
|
}
|
||||||
|
if auth:
|
||||||
|
headers["Api-Key"] = os.getenv("DISCOURSE_PAT")
|
||||||
|
headers["Api-Username"] = os.getenv("DISCOURSE_USERNAME")
|
||||||
|
return headers
|
||||||
|
|
||||||
|
def get_category_data(self) -> dict:
|
||||||
|
"""Get all topics from a Discourse category with pagination"""
|
||||||
|
url = f"{DISCOURSE_URL}/c/{CATEGORY_ID}.json"
|
||||||
|
print(f"Fetching data from {url}")
|
||||||
|
all_topics = []
|
||||||
|
page = 0
|
||||||
|
while True:
|
||||||
|
params = {"per_page": 100, "page": page}
|
||||||
|
res = requests.get(url, headers=self.get_headers(), params=params)
|
||||||
|
res.raise_for_status()
|
||||||
|
res_json = res.json()
|
||||||
|
topics = res_json["topic_list"]["topics"]
|
||||||
|
if not topics:
|
||||||
|
break
|
||||||
|
for topic in topics:
|
||||||
|
if topic["category_id"] == CATEGORY_ID:
|
||||||
|
all_topics.append(topic)
|
||||||
|
print(f"Fetched page {page}: {len(topics)} topics, {len(all_topics)} total in category")
|
||||||
|
page += 1
|
||||||
|
return {"topic_list": {"topics": all_topics}}
|
||||||
|
|
||||||
|
def get_topic_content(self, topic_id: str):
|
||||||
|
"""Get a single topic's content"""
|
||||||
|
get_url = f"{DISCOURSE_URL}/posts/{topic_id}.json"
|
||||||
|
res = requests.get(get_url, headers=self.get_headers(auth=True))
|
||||||
|
res.raise_for_status()
|
||||||
|
return res.json()
|
||||||
|
|
||||||
|
def category_topics_csv(self, category_data) -> None:
|
||||||
|
"""Save category topics to a csv file"""
|
||||||
|
columns = ["id", "title", "place", "tags"]
|
||||||
|
records = category_data["topic_list"]["topics"]
|
||||||
|
with open('zasoby.csv', 'w', encoding='UTF8') as f:
|
||||||
|
write = csv.writer(f)
|
||||||
|
write.writerow(columns)
|
||||||
|
for topic in records:
|
||||||
|
html_url = f'<a href="{DISCOURSE_URL}/t/{topic["id"]}">{topic["title"]}</a>'
|
||||||
|
place = self.get_place(topic)
|
||||||
|
write.writerow([topic["id"], html_url, place, topic["tags"]])
|
||||||
|
print(f"New zasoby.csv generated with {len(records)} records")
|
||||||
|
|
||||||
|
def get_place(self, topic):
|
||||||
|
"""Get place of a topic"""
|
||||||
|
for place in PLACES:
|
||||||
|
if place in topic["tags"]:
|
||||||
|
return f'<a href="https://kb.hs3.pl/tag/{place}">{place}</a>'
|
||||||
|
return "unknown"
|
||||||
|
|
||||||
|
def replace_string_in_post(self, topic_id: str, old_string: str, new_string: str) -> dict:
|
||||||
|
"""Replace a selected string within a topic's first post using Discourse REST API"""
|
||||||
|
# Fetch the topic to get the first post ID
|
||||||
|
topic_url = f"{DISCOURSE_URL}/t/{topic_id}.json"
|
||||||
|
topic_res = requests.get(topic_url, headers=self.get_headers(auth=True))
|
||||||
|
topic_res.raise_for_status()
|
||||||
|
topic_data = topic_res.json()
|
||||||
|
|
||||||
|
# Get the first post ID from the topic
|
||||||
|
first_post_id = topic_data["post_stream"]["posts"][0]["id"]
|
||||||
|
|
||||||
|
# Fetch the post content
|
||||||
|
post_url = f"{DISCOURSE_URL}/posts/{first_post_id}.json"
|
||||||
|
post_res = requests.get(post_url, headers=self.get_headers(auth=True))
|
||||||
|
post_res.raise_for_status()
|
||||||
|
post_data = post_res.json()
|
||||||
|
|
||||||
|
# Replace the string
|
||||||
|
updated_raw = post_data["raw"].replace(old_string, new_string)
|
||||||
|
|
||||||
|
# Update the post
|
||||||
|
payload = {"post": {"raw": updated_raw}}
|
||||||
|
res = requests.put(post_url, json=payload, headers=self.get_headers(auth=True))
|
||||||
|
res.raise_for_status()
|
||||||
|
return res.json()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
disc = DiscourseDatabase()
|
||||||
|
category = disc.get_category_data()
|
||||||
|
records = category["topic_list"]["topics"]
|
||||||
|
for topic in records:
|
||||||
|
if "lab" in topic["tags"]:
|
||||||
|
disc.replace_string_in_post(topic["id"], "[Workshop](https://kb.s.hs3.pl/tag/workshop)", "[Lab](https://kb.s.hs3.pl/tag/lab)")
|
||||||
|
|
||||||
6503
docs/index.html
Normal file
6503
docs/index.html
Normal file
File diff suppressed because it is too large
Load diff
14
docs/static/css/style.css
vendored
Normal file
14
docs/static/css/style.css
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
footer {
|
||||||
|
padding: 12px;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* || Sidenav */
|
||||||
|
.sidenav {
|
||||||
|
width: 250px;
|
||||||
|
position: sticky;
|
||||||
|
z-index: 1;
|
||||||
|
top: 0;
|
||||||
|
overflow-x: hidden;
|
||||||
|
padding: 6px 8px 6px 16px;
|
||||||
|
}
|
||||||
177
docs/static/xml/label_12.xml
vendored
Normal file
177
docs/static/xml/label_12.xml
vendored
Normal file
|
|
@ -0,0 +1,177 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
|
||||||
|
generator="P-touch Editor 5.4.016 Windows">
|
||||||
|
<pt:body currentSheet="Arkusz 1" direction="LTR">
|
||||||
|
<style:sheet name="Arkusz 1">
|
||||||
|
<style:paper media="0" width="33.6pt" height="51.2pt" marginLeft="2.8pt"
|
||||||
|
marginTop="5.6pt" marginRight="2.8pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="8" paperColor="#FFFFFF" paperInk="#000000" split="1" format="259"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
|
||||||
|
<style:cutLine regularCut="0pt" freeCut="" />
|
||||||
|
<style:backGround x="2.8pt" y="5.6pt" width="28pt" height="40pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="-0.6pt" y="2.2pt" width="34.8pt" height="34.8pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
|
||||||
|
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false" />
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.2pt" mbcs="auto"
|
||||||
|
joint="1" version="auto" />
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="8.9pt" y="35.5pt" width="15.8pt" height="6.5pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="9pt" combinedChars="false" />
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="7.2pt" y="40.7pt" width="7.9pt" height="6.3pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="9pt" combinedChars="false" />
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="16.5pt" y="40.7pt" width="7.9pt" height="6.3pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="9pt" combinedChars="false" />
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
518
docs/static/xml/label_18.xml
vendored
Normal file
518
docs/static/xml/label_18.xml
vendored
Normal file
|
|
@ -0,0 +1,518 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
|
||||||
|
generator="P-touch Editor 5.4.016 Windows">
|
||||||
|
<pt:body currentSheet="Arkusz 1" direction="LTR">
|
||||||
|
<style:sheet name="Arkusz 1">
|
||||||
|
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
|
||||||
|
<style:cutLine regularCut="0pt" freeCut="" />
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
|
||||||
|
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false" />
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
|
||||||
|
joint="1" version="auto" />
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:innerObject>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
|
||||||
|
height="12.1pt" backColor="#FFFFFF"
|
||||||
|
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000"
|
||||||
|
printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="nazwa" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST"
|
||||||
|
templateMergeType="NONE" templateMergeID="0"
|
||||||
|
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false"
|
||||||
|
aspectNormal="false" shrink="false" autoLF="false"
|
||||||
|
avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT"
|
||||||
|
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false"
|
||||||
|
charSpace="0" lineSpace="0" orgPoint="8pt"
|
||||||
|
combinedChars="false" />
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="5">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</text:innerObject>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst6" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Arial" width="0" italic="false" weight="400"
|
||||||
|
charSet="238" pitchAndFamily="34" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
|
||||||
|
shrink="true" autoLF="true" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="5pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
|
||||||
|
charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
|
||||||
|
<style:cutLine regularCut="0pt" freeCut="" />
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
|
||||||
|
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false" />
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
|
||||||
|
joint="1" version="auto" />
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:innerObject>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
|
||||||
|
height="12.1pt" backColor="#FFFFFF"
|
||||||
|
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000"
|
||||||
|
printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="nazwa" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST"
|
||||||
|
templateMergeType="NONE" templateMergeID="0"
|
||||||
|
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false"
|
||||||
|
aspectNormal="false" shrink="false" autoLF="false"
|
||||||
|
avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT"
|
||||||
|
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false"
|
||||||
|
charSpace="0" lineSpace="0" orgPoint="8pt"
|
||||||
|
combinedChars="false" />
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="5">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</text:innerObject>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst6" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Arial" width="0" italic="false" weight="400"
|
||||||
|
charSet="238" pitchAndFamily="34" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
|
||||||
|
shrink="true" autoLF="true" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="5pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
|
||||||
|
charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
336
docs/static/xml/label_18_flag.xml
vendored
Normal file
336
docs/static/xml/label_18_flag.xml
vendored
Normal file
|
|
@ -0,0 +1,336 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
|
||||||
|
generator="com.brother.PtouchEditor">
|
||||||
|
<pt:body currentSheet="Sheet 1" direction="LTR">
|
||||||
|
<style:sheet name="Sheet 1">
|
||||||
|
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
|
||||||
|
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
|
||||||
|
<pt:objects>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="15.7pt" y="221pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<draw:poly>
|
||||||
|
<pt:objectStyle x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="DASH" widthX="0.3pt" widthY="0.3pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Polygon2" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<draw:polyStyle shape="LINE" arrowBegin="ROUND" arrowEnd="ROUND">
|
||||||
|
<draw:polyOrgPos x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"></draw:polyOrgPos>
|
||||||
|
<draw:polyLinePoints points="1pt,144.5pt 52.2pt,144.2pt"></draw:polyLinePoints>
|
||||||
|
</draw:polyStyle>
|
||||||
|
</draw:poly>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
319
docs/static/xml/label_18_ribbon.xml
vendored
Normal file
319
docs/static/xml/label_18_ribbon.xml
vendored
Normal file
|
|
@ -0,0 +1,319 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
|
||||||
|
generator="com.brother.PtouchEditor">
|
||||||
|
<pt:body currentSheet="Sheet 1" direction="LTR">
|
||||||
|
<style:sheet name="Sheet 1">
|
||||||
|
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
|
||||||
|
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
|
||||||
|
<pt:objects>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="56.6pt" width="10.4pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.5pt" y="221pt" width="10.4pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
22
docs/static/xml/prop.xml
vendored
Normal file
22
docs/static/xml/prop.xml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<meta:properties xmlns:meta="http://schemas.brother.info/ptouch/2007/lbx/meta"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/">
|
||||||
|
<meta:appName>com.brother.PtouchEditor</meta:appName>
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:subject></dc:subject>
|
||||||
|
<dc:creator></dc:creator>
|
||||||
|
<meta:keyword></meta:keyword>
|
||||||
|
<dc:description></dc:description>
|
||||||
|
<meta:template></meta:template>
|
||||||
|
<dcterms:created>2026-02-02T18:12:13Z</dcterms:created>
|
||||||
|
<dcterms:modified>2026-02-02T18:16:23Z</dcterms:modified>
|
||||||
|
<meta:lastPrinted></meta:lastPrinted>
|
||||||
|
<meta:modifiedBy></meta:modifiedBy>
|
||||||
|
<meta:revision>17</meta:revision>
|
||||||
|
<meta:editTime>0</meta:editTime>
|
||||||
|
<meta:numPages>1</meta:numPages>
|
||||||
|
<meta:numWords>0</meta:numWords>
|
||||||
|
<meta:numChars>0</meta:numChars>
|
||||||
|
<meta:security>0</meta:security>
|
||||||
|
<meta:transferScript></meta:transferScript>
|
||||||
|
</meta:properties>
|
||||||
45
main.py
Normal file
45
main.py
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
import os, re, shutil
|
||||||
|
from jinja2 import Environment, FileSystemLoader
|
||||||
|
import pandas as pd
|
||||||
|
from discourse import DiscourseDatabase
|
||||||
|
|
||||||
|
|
||||||
|
def add_download_button(row):
|
||||||
|
item_id = re.sub(r'<a href.*/([0-9]+)".*', "\\1", row[1])
|
||||||
|
download_button = (
|
||||||
|
f'<button id="btn_{item_id}"><i class="fa fa-download"></i> {item_id}</button>'
|
||||||
|
)
|
||||||
|
return row + [download_button]
|
||||||
|
|
||||||
|
|
||||||
|
def generate_dashboard():
|
||||||
|
"""Generate dashboard from zasoby.csv file"""
|
||||||
|
print("Generating HTML dashboard")
|
||||||
|
website_folder = "docs"
|
||||||
|
data = pd.read_csv("zasoby.csv")
|
||||||
|
env = Environment(loader=FileSystemLoader("template"))
|
||||||
|
print("Removing old website files")
|
||||||
|
shutil.rmtree(f"./{website_folder}")
|
||||||
|
os.mkdir(f"./{website_folder}")
|
||||||
|
print("Creating a new website")
|
||||||
|
shutil.copytree("template/static", f"{website_folder}/static")
|
||||||
|
template = env.get_template("_main_layout.html")
|
||||||
|
with open(f"{website_folder}/index.html", "w+", encoding="utf-8") as file:
|
||||||
|
header_row = data.columns.values.tolist() + ["label"]
|
||||||
|
rows = map(
|
||||||
|
add_download_button,
|
||||||
|
data.values.tolist(),
|
||||||
|
)
|
||||||
|
html = template.render(
|
||||||
|
title="Baza Zasobów Hackerspace Trójmiasto",
|
||||||
|
t_header=header_row,
|
||||||
|
t_body=rows,
|
||||||
|
)
|
||||||
|
file.write(html)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
DiscourseDatabase()
|
||||||
|
generate_dashboard()
|
||||||
|
print("Done!")
|
||||||
|
|
||||||
4
requirements.txt
Normal file
4
requirements.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
requests==2.32.5
|
||||||
|
Jinja2==3.1.6
|
||||||
|
pandas==2.3.3
|
||||||
|
python-dotenv==1.2.1
|
||||||
160
template/_base_template.html
Normal file
160
template/_base_template.html
Normal file
|
|
@ -0,0 +1,160 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="Dashboard" />
|
||||||
|
<title>Baza Zasobów Hackerspace Trójmiasto</title>
|
||||||
|
<link rel="shortcut icon" href="static/favicon.ico" />
|
||||||
|
<!-- Font Awesome CSS -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
|
||||||
|
/>
|
||||||
|
<!-- Bootstrap CSS -->
|
||||||
|
<link
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
integrity=""
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="static/css/style.css" />
|
||||||
|
<!-- DataTables CSS -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css"
|
||||||
|
/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{% block body %}{% endblock body %}
|
||||||
|
<dialog>
|
||||||
|
<div>
|
||||||
|
<input type="radio" id="12mm" name="type" value="12mm" />
|
||||||
|
<label for="12mm">12mm</label><br />
|
||||||
|
<input type="radio" id="18mm" name="type" value="18mm" checked />
|
||||||
|
<label for="18mm">18mm</label><br />
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
id="12mm_flag"
|
||||||
|
name="type"
|
||||||
|
value="12mm_flag"
|
||||||
|
disabled
|
||||||
|
/>
|
||||||
|
<label for="12mm_flag">12mm flag</label><br />
|
||||||
|
<input type="radio" id="18mm_flag" name="type" value="18mm_flag" />
|
||||||
|
<label for="18mm_flag">18mm flag</label><br />
|
||||||
|
<input type="radio" id="18mm_ribbon" name="type" value="18mm_ribbon" />
|
||||||
|
<label for="18mm_ribbon">18mm ribbon</label><br />
|
||||||
|
<input
|
||||||
|
type="radio"
|
||||||
|
id="24mm_ribbon"
|
||||||
|
name="type"
|
||||||
|
value="24mm_ribbon"
|
||||||
|
disabled
|
||||||
|
/>
|
||||||
|
<label for="24mm_ribbon">24mm ribbon</label><br />
|
||||||
|
<input type="text" id="item_id" name="item_id" value="" />
|
||||||
|
</div>
|
||||||
|
<button id="download" autofocus>Download</button>
|
||||||
|
</dialog>
|
||||||
|
<footer>
|
||||||
|
<a href="https://github.com/MartaSien/hs3-baza-zasobow-dashboard"
|
||||||
|
>Baza zasobów Hackerspace Trójmiasto</a
|
||||||
|
>
|
||||||
|
</footer>
|
||||||
|
<!-- jQuery -->
|
||||||
|
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
|
||||||
|
<!-- DataTables JS -->
|
||||||
|
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
$("#dashboardTable").DataTable({ paging: false });
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="module">
|
||||||
|
import { downloadZip } from "https://cdn.jsdelivr.net/npm/client-zip/index.js";
|
||||||
|
|
||||||
|
let db_12mm_label_template;
|
||||||
|
let db_18mm_label_template;
|
||||||
|
let db_18mm_flag_template;
|
||||||
|
let db_18mm_ribbon_template;
|
||||||
|
let prop_input;
|
||||||
|
|
||||||
|
async function loadXml(path) {
|
||||||
|
const response = await fetch(path);
|
||||||
|
return await response.text();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function initTemplates() {
|
||||||
|
db_12mm_label_template = await loadXml('static/xml/label_12.xml');
|
||||||
|
db_18mm_label_template = await loadXml('static/xml/label_18.xml');
|
||||||
|
db_18mm_flag_template = await loadXml('static/xml/label_18_flag.xml');
|
||||||
|
db_18mm_ribbon_template = await loadXml('static/xml/label_18_ribbon.xml');
|
||||||
|
prop_input = await loadXml('static/xml/prop.xml');
|
||||||
|
}
|
||||||
|
|
||||||
|
async function make_label(item_id, template) {
|
||||||
|
const prop = {
|
||||||
|
name: "prop.xml",
|
||||||
|
lastModified: new Date(),
|
||||||
|
input: prop_input,
|
||||||
|
};
|
||||||
|
let label_template;
|
||||||
|
|
||||||
|
switch (template) {
|
||||||
|
case "12mm":
|
||||||
|
label_template = db_12mm_label_template;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "18mm":
|
||||||
|
label_template = db_18mm_label_template;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "18mm_flag":
|
||||||
|
label_template = db_18mm_flag_template;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "18mm_ribbon":
|
||||||
|
label_template = db_18mm_ribbon_template;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
const label = label_template.replaceAll("{ITEM_ID}", item_id);
|
||||||
|
const db_label = {
|
||||||
|
name: "label.xml",
|
||||||
|
lastModified: new Date(),
|
||||||
|
input: label,
|
||||||
|
};
|
||||||
|
|
||||||
|
const blob = await downloadZip([prop, db_label]).blob();
|
||||||
|
|
||||||
|
const link = document.createElement("a");
|
||||||
|
link.href = URL.createObjectURL(blob);
|
||||||
|
link.download = "hs3_db_label_" + template + "_" + item_id + ".lbx";
|
||||||
|
link.click();
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", async () => {
|
||||||
|
await initTemplates();
|
||||||
|
|
||||||
|
const dialog = document.querySelector("dialog");
|
||||||
|
|
||||||
|
Array.prototype.slice
|
||||||
|
.call(document.getElementsByTagName("button"))
|
||||||
|
.forEach((element) => {
|
||||||
|
if (element.id.startsWith("btn_")) {
|
||||||
|
element.addEventListener("click", (e) => {
|
||||||
|
const item_id = e.target.id.replace("btn_", "");
|
||||||
|
document.getElementById("item_id").value = item_id;
|
||||||
|
dialog.showModal();
|
||||||
|
document.getElementById("download").onclick = function () {
|
||||||
|
const item_id = document.getElementById("item_id").value;
|
||||||
|
const dialog = document.querySelector("dialog");
|
||||||
|
const template = document.querySelector("input:checked").id;
|
||||||
|
make_label(item_id, template);
|
||||||
|
dialog.close();
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
28
template/_main_layout.html
Normal file
28
template/_main_layout.html
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{% extends "_base_template.html" %} {% block body %}
|
||||||
|
<div id="site-body" class="container-fluid">
|
||||||
|
<div class="row flex-nonwrap">
|
||||||
|
<div class="sidenav">{% block sidenav %}{% endblock sidenav %}</div>
|
||||||
|
<div class="main">
|
||||||
|
<h1>Baza Zasobów Hackerspace Trójmiasto</h1>
|
||||||
|
<table id="dashboardTable">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
{% for cell in t_header %}
|
||||||
|
<td>{{cell}}</td>
|
||||||
|
{% endfor %}
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{% for row in t_body %}
|
||||||
|
<tr>
|
||||||
|
{% for cell in row %}
|
||||||
|
<td>{{cell}}</td>
|
||||||
|
{% endfor %}
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock body %}
|
||||||
14
template/static/css/style.css
Normal file
14
template/static/css/style.css
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
footer {
|
||||||
|
padding: 12px;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* || Sidenav */
|
||||||
|
.sidenav {
|
||||||
|
width: 250px;
|
||||||
|
position: sticky;
|
||||||
|
z-index: 1;
|
||||||
|
top: 0;
|
||||||
|
overflow-x: hidden;
|
||||||
|
padding: 6px 8px 6px 16px;
|
||||||
|
}
|
||||||
177
template/static/xml/label_12.xml
Normal file
177
template/static/xml/label_12.xml
Normal file
|
|
@ -0,0 +1,177 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
|
||||||
|
generator="P-touch Editor 5.4.016 Windows">
|
||||||
|
<pt:body currentSheet="Arkusz 1" direction="LTR">
|
||||||
|
<style:sheet name="Arkusz 1">
|
||||||
|
<style:paper media="0" width="33.6pt" height="51.2pt" marginLeft="2.8pt"
|
||||||
|
marginTop="5.6pt" marginRight="2.8pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="8" paperColor="#FFFFFF" paperInk="#000000" split="1" format="259"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
|
||||||
|
<style:cutLine regularCut="0pt" freeCut="" />
|
||||||
|
<style:backGround x="2.8pt" y="5.6pt" width="28pt" height="40pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="-0.6pt" y="2.2pt" width="34.8pt" height="34.8pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
|
||||||
|
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false" />
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.2pt" mbcs="auto"
|
||||||
|
joint="1" version="auto" />
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="8.9pt" y="35.5pt" width="15.8pt" height="6.5pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="9pt" combinedChars="false" />
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="7.2pt" y="40.7pt" width="7.9pt" height="6.3pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="9pt" combinedChars="false" />
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="16.5pt" y="40.7pt" width="7.9pt" height="6.3pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="9pt" combinedChars="false" />
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
518
template/static/xml/label_18.xml
Normal file
518
template/static/xml/label_18.xml
Normal file
|
|
@ -0,0 +1,518 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
|
||||||
|
generator="P-touch Editor 5.4.016 Windows">
|
||||||
|
<pt:body currentSheet="Arkusz 1" direction="LTR">
|
||||||
|
<style:sheet name="Arkusz 1">
|
||||||
|
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
|
||||||
|
<style:cutLine regularCut="0pt" freeCut="" />
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
|
||||||
|
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false" />
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
|
||||||
|
joint="1" version="auto" />
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:innerObject>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
|
||||||
|
height="12.1pt" backColor="#FFFFFF"
|
||||||
|
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000"
|
||||||
|
printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="nazwa" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST"
|
||||||
|
templateMergeType="NONE" templateMergeID="0"
|
||||||
|
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false"
|
||||||
|
aspectNormal="false" shrink="false" autoLF="false"
|
||||||
|
avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT"
|
||||||
|
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false"
|
||||||
|
charSpace="0" lineSpace="0" orgPoint="8pt"
|
||||||
|
combinedChars="false" />
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="5">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</text:innerObject>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst6" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Arial" width="0" italic="false" weight="400"
|
||||||
|
charSet="238" pitchAndFamily="34" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
|
||||||
|
shrink="true" autoLF="true" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="5pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
|
||||||
|
charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
|
||||||
|
<style:cutLine regularCut="0pt" freeCut="" />
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
|
||||||
|
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false" />
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
|
||||||
|
joint="1" version="auto" />
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="700" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:innerObject>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
|
||||||
|
height="12.1pt" backColor="#FFFFFF"
|
||||||
|
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000"
|
||||||
|
printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="nazwa" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST"
|
||||||
|
templateMergeType="NONE" templateMergeID="0"
|
||||||
|
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
|
||||||
|
linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false"
|
||||||
|
aspectNormal="false" shrink="false" autoLF="false"
|
||||||
|
avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT"
|
||||||
|
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false"
|
||||||
|
charSpace="0" lineSpace="0" orgPoint="8pt"
|
||||||
|
combinedChars="false" />
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="5">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0"
|
||||||
|
italic="false" weight="700" charSet="238"
|
||||||
|
pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0"
|
||||||
|
strikeout="0" size="8pt" orgSize="28.8pt"
|
||||||
|
textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</text:innerObject>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst6" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Arial" width="0" italic="false" weight="400"
|
||||||
|
charSet="238" pitchAndFamily="34" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
|
||||||
|
shrink="true" autoLF="true" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="5pt" combinedChars="false" />
|
||||||
|
<pt:data></pt:data>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1" />
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" linkStatus="NONE" linkID="0" />
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
|
||||||
|
charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false" />
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER" />
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
|
||||||
|
orgPoint="8pt" combinedChars="false" />
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="1">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="800" charSet="238" pitchAndFamily="49" />
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
|
||||||
|
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
336
template/static/xml/label_18_flag.xml
Normal file
336
template/static/xml/label_18_flag.xml
Normal file
|
|
@ -0,0 +1,336 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
|
||||||
|
generator="com.brother.PtouchEditor">
|
||||||
|
<pt:body currentSheet="Sheet 1" direction="LTR">
|
||||||
|
<style:sheet name="Sheet 1">
|
||||||
|
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
|
||||||
|
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
|
||||||
|
<pt:objects>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="15.7pt" y="221pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<draw:poly>
|
||||||
|
<pt:objectStyle x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="DASH" widthX="0.3pt" widthY="0.3pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Polygon2" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<draw:polyStyle shape="LINE" arrowBegin="ROUND" arrowEnd="ROUND">
|
||||||
|
<draw:polyOrgPos x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"></draw:polyOrgPos>
|
||||||
|
<draw:polyLinePoints points="1pt,144.5pt 52.2pt,144.2pt"></draw:polyLinePoints>
|
||||||
|
</draw:polyStyle>
|
||||||
|
</draw:poly>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
319
template/static/xml/label_18_ribbon.xml
Normal file
319
template/static/xml/label_18_ribbon.xml
Normal file
|
|
@ -0,0 +1,319 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
|
||||||
|
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
|
||||||
|
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
|
||||||
|
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
|
||||||
|
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
|
||||||
|
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
|
||||||
|
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
|
||||||
|
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
|
||||||
|
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
|
||||||
|
generator="com.brother.PtouchEditor">
|
||||||
|
<pt:body currentSheet="Sheet 1" direction="LTR">
|
||||||
|
<style:sheet name="Sheet 1">
|
||||||
|
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
|
||||||
|
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
|
||||||
|
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
|
||||||
|
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
|
||||||
|
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
|
||||||
|
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
|
||||||
|
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
|
||||||
|
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
|
||||||
|
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
|
||||||
|
<pt:objects>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.8pt" y="56.6pt" width="10.4pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="0" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
<pt:group>
|
||||||
|
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
|
||||||
|
anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Group5" ID="0" lock="2"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
|
||||||
|
linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<pt:objects>
|
||||||
|
<barcode:barcode>
|
||||||
|
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
|
||||||
|
color="#000000" printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Barcode1" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
|
||||||
|
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
|
||||||
|
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
|
||||||
|
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
|
||||||
|
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
|
||||||
|
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
|
||||||
|
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
|
||||||
|
</barcode:barcode>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="20.5pt" y="221pt" width="10.4pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst4" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>{ITEM_ID}</pt:data>
|
||||||
|
<text:stringItem charLen="2">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>ID:</pt:data>
|
||||||
|
<text:stringItem charLen="3">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
<text:text>
|
||||||
|
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
|
||||||
|
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
|
||||||
|
angle="180" anchor="TOPLEFT" flip="NONE">
|
||||||
|
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
|
||||||
|
printColorNumber="1"></pt:pen>
|
||||||
|
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
|
||||||
|
<pt:expanded objectName="Tekst5" ID="0" lock="0"
|
||||||
|
templateMergeTarget="LABELLIST" templateMergeType="NONE"
|
||||||
|
templateMergeID="0" allowOutOfBoundsTransfer="false"
|
||||||
|
linkStatus="NONE" linkID="0"></pt:expanded>
|
||||||
|
</pt:objectStyle>
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
|
||||||
|
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
|
||||||
|
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
|
||||||
|
inLineAlignment="CENTER"></text:textAlign>
|
||||||
|
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
|
||||||
|
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
|
||||||
|
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
|
||||||
|
<pt:data>HS3-DB</pt:data>
|
||||||
|
<text:stringItem charLen="6">
|
||||||
|
<text:ptFontInfo>
|
||||||
|
<text:logFont name="Source Code Pro" width="0" italic="false"
|
||||||
|
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
|
||||||
|
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
|
||||||
|
size="8pt" orgSize="28.8pt" textColor="#000000"
|
||||||
|
textPrintColorNumber="1"></text:fontExt>
|
||||||
|
</text:ptFontInfo>
|
||||||
|
</text:stringItem>
|
||||||
|
</text:text>
|
||||||
|
</pt:objects>
|
||||||
|
</pt:group>
|
||||||
|
</pt:objects>
|
||||||
|
</style:sheet>
|
||||||
|
</pt:body>
|
||||||
|
</pt:document>
|
||||||
22
template/static/xml/prop.xml
Normal file
22
template/static/xml/prop.xml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<meta:properties xmlns:meta="http://schemas.brother.info/ptouch/2007/lbx/meta"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/">
|
||||||
|
<meta:appName>com.brother.PtouchEditor</meta:appName>
|
||||||
|
<dc:title></dc:title>
|
||||||
|
<dc:subject></dc:subject>
|
||||||
|
<dc:creator></dc:creator>
|
||||||
|
<meta:keyword></meta:keyword>
|
||||||
|
<dc:description></dc:description>
|
||||||
|
<meta:template></meta:template>
|
||||||
|
<dcterms:created>2026-02-02T18:12:13Z</dcterms:created>
|
||||||
|
<dcterms:modified>2026-02-02T18:16:23Z</dcterms:modified>
|
||||||
|
<meta:lastPrinted></meta:lastPrinted>
|
||||||
|
<meta:modifiedBy></meta:modifiedBy>
|
||||||
|
<meta:revision>17</meta:revision>
|
||||||
|
<meta:editTime>0</meta:editTime>
|
||||||
|
<meta:numPages>1</meta:numPages>
|
||||||
|
<meta:numWords>0</meta:numWords>
|
||||||
|
<meta:numChars>0</meta:numChars>
|
||||||
|
<meta:security>0</meta:security>
|
||||||
|
<meta:transferScript></meta:transferScript>
|
||||||
|
</meta:properties>
|
||||||
452
zasoby.csv
Normal file
452
zasoby.csv
Normal file
|
|
@ -0,0 +1,452 @@
|
||||||
|
id,title,place,tags
|
||||||
|
45,"<a href=""https://kb.hs3.pl/t/45"">Jak stworzyć nowy wpis do bazy zasobów Hackerspace Trójmiasto?</a>",unknown,[]
|
||||||
|
20,"<a href=""https://kb.hs3.pl/t/20"">O kategorii: Baza Wiedzy Hackerspace'u</a>",unknown,[]
|
||||||
|
376,"<a href=""https://kb.hs3.pl/t/376"">Drukarka 3D HEVO (Hypercube Evolution</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', '3d-print']"
|
||||||
|
699,"<a href=""https://kb.hs3.pl/t/699"">Gra Blood Bowl z przyległościami</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'audiolab', 'boardgame', 'sticker-needed']"
|
||||||
|
720,"<a href=""https://kb.hs3.pl/t/720"">Płytki ewaluacyjne STEVAL-VP318L1F +?</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
702,"<a href=""https://kb.hs3.pl/t/702"">Wózek na tacki projektowe</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
719,"<a href=""https://kb.hs3.pl/t/719"">Pudełko projektowe ""Fala za Falą""</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'sticker-needed']"
|
||||||
|
703,"<a href=""https://kb.hs3.pl/t/703"">Tacki projektowe</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'sticker-needed']"
|
||||||
|
414,"<a href=""https://kb.hs3.pl/t/414"">Tester kabli RJ45, RJ11/12, BNC Lanberg</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
718,"<a href=""https://kb.hs3.pl/t/718"">Zestaw nitonakrętek alu+stal G02910</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
717,"<a href=""https://kb.hs3.pl/t/717"">Gniazdo DC 5,5/2,5mm do druku - poziome</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
716,"<a href=""https://kb.hs3.pl/t/716"">Konektor FPC 8-pin</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
715,"<a href=""https://kb.hs3.pl/t/715"">Przełącznik DIP switch 2 tory</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
714,"<a href=""https://kb.hs3.pl/t/714"">Przełącznik DIP switch 4 tory</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
713,"<a href=""https://kb.hs3.pl/t/713"">Diody LED czerwone, błękitne</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
712,"<a href=""https://kb.hs3.pl/t/712"">Złącze śrubowe ARK 3-pinowe</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
711,"<a href=""https://kb.hs3.pl/t/711"">Złącze śrubowe ARK 2-pinowe</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
710,"<a href=""https://kb.hs3.pl/t/710"">Złącze śrubowe ARK 4-pinowe</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
709,"<a href=""https://kb.hs3.pl/t/709"">ESP-32</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
708,"<a href=""https://kb.hs3.pl/t/708"">Origami LED Matrix</a>","<a href=""https://kb.hs3.pl/tag/server-room"">server-room</a>","['projects', 'server-room']"
|
||||||
|
704,"<a href=""https://kb.hs3.pl/t/704"">Tranzystor PNP bipolarny 50V</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
705,"<a href=""https://kb.hs3.pl/t/705"">Tranzystor NPN bipolarny 45V</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
707,"<a href=""https://kb.hs3.pl/t/707"">Przycisk monostabilny - tact switch</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
706,"<a href=""https://kb.hs3.pl/t/706"">Tranzystor T482 BVBR11</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'electronics']"
|
||||||
|
561,"<a href=""https://kb.hs3.pl/t/561"">Antena Dipol na 30m</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
701,"<a href=""https://kb.hs3.pl/t/701"">Celestia - edukacyjna ściana nocnego nieba</a>","<a href=""https://kb.hs3.pl/tag/server-room"">server-room</a>","['projects', 'server-room']"
|
||||||
|
538,"<a href=""https://kb.hs3.pl/t/538"">Interfejs audio Line6 GX</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
388,"<a href=""https://kb.hs3.pl/t/388"">Zasilacz 16A, 12V dc</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
700,"<a href=""https://kb.hs3.pl/t/700"">Drukarka 3D Creality Ender do samodzielnego złożenia</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'sticker-needed']"
|
||||||
|
377,"<a href=""https://kb.hs3.pl/t/377"">Drukarka 3D “Elegoo Neptune 4 Pro”</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', '3d-print']"
|
||||||
|
514,"<a href=""https://kb.hs3.pl/t/514"">Pistolet do kleju na gorąco</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
698,"<a href=""https://kb.hs3.pl/t/698"">Disco betoniarka</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>","['garage', 'projects', 'sticker-needed']"
|
||||||
|
456,"<a href=""https://kb.hs3.pl/t/456"">Wzmacniacz gitarowy Roland Micro Cube</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
179,"<a href=""https://kb.hs3.pl/t/179"">Sprzęt komp Desktop Dr Robotomy</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
585,"<a href=""https://kb.hs3.pl/t/585"">Ścianka narzędziowa</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
584,"<a href=""https://kb.hs3.pl/t/584"">Stojak ze śrubokrętami</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
583,"<a href=""https://kb.hs3.pl/t/583"">Pudełko z zapalniczkami</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
582,"<a href=""https://kb.hs3.pl/t/582"">Konwerter ATC-1000 firmy F&F</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
581,"<a href=""https://kb.hs3.pl/t/581"">Pojemnik z konektorami</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
580,"<a href=""https://kb.hs3.pl/t/580"">Pudło - rurki / koszulki termokurczliwe, różne rodzaje</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
579,"<a href=""https://kb.hs3.pl/t/579"">Uchwyt na kolbę gorącego powietrza (hot-air) z magnetycznym stolikiem naprawczym W.E.R 628</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
578,"<a href=""https://kb.hs3.pl/t/578"">Myjka ultradźwiękowa 2</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
577,"<a href=""https://kb.hs3.pl/t/577"">Żywiczna drukarka 3D Elegoo Mars 2 Pro</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', '3d-print']"
|
||||||
|
576,"<a href=""https://kb.hs3.pl/t/576"">Pudło z filamentami kolorowymi krótkimi</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', '3d-print']"
|
||||||
|
529,"<a href=""https://kb.hs3.pl/t/529"">Projektor Optoma</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
527,"<a href=""https://kb.hs3.pl/t/527"">Stacja dokująca USB-C + ładowarka bezprzewodowa</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
575,"<a href=""https://kb.hs3.pl/t/575"">Pudło z materiałami do drukarek 3D</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
574,"<a href=""https://kb.hs3.pl/t/574"">Laminator biurowy Leitz iLAM Office Pro A3</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
573,"<a href=""https://kb.hs3.pl/t/573"">Deska do krojenia, bambus, 53x46 cm</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
572,"<a href=""https://kb.hs3.pl/t/572"">Farba Akrylowa Greenish</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
571,"<a href=""https://kb.hs3.pl/t/571"">Smartphone Nexus LG</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
570,"<a href=""https://kb.hs3.pl/t/570"">Smartphone Google</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
569,"<a href=""https://kb.hs3.pl/t/569"">Smartphone Samsung</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
568,"<a href=""https://kb.hs3.pl/t/568"">Redmi smartphone</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
567,"<a href=""https://kb.hs3.pl/t/567"">iPhone</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
566,"<a href=""https://kb.hs3.pl/t/566"">Materiały do plotera (winyl i inne) + krepa</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
565,"<a href=""https://kb.hs3.pl/t/565"">Antena bazowa HamRadioShop 10 cm</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
564,"<a href=""https://kb.hs3.pl/t/564"">LORA / Meshtastic</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
563,"<a href=""https://kb.hs3.pl/t/563"">Przełącznik antenowy na 4 anteny KF ze sterownikiem</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
562,"<a href=""https://kb.hs3.pl/t/562"">DREMEL 3000</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
560,"<a href=""https://kb.hs3.pl/t/560"">Przełącznik antenowy z kontrolerem</a>",unknown,[]
|
||||||
|
304,"<a href=""https://kb.hs3.pl/t/304"">Monitor LG StudioWorks 560N</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
554,"<a href=""https://kb.hs3.pl/t/554"">ArcaderOS - Śmieciowy Arcade Charytatywny dla każdego</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
283,"<a href=""https://kb.hs3.pl/t/283"">Telewizor Funai</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
531,"<a href=""https://kb.hs3.pl/t/531"">Streamer LTO-4 HP M8609A</a>","<a href=""https://kb.hs3.pl/tag/server-room"">server-room</a>",['server-room']
|
||||||
|
285,"<a href=""https://kb.hs3.pl/t/285"">Konsola do gier Sony PlayStation 2 Slim + kontroler Namco GunCon</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
478,"<a href=""https://kb.hs3.pl/t/478"">Gitara basowa Squier Precision Bass</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
479,"<a href=""https://kb.hs3.pl/t/479"">Guitalele Ever Play GT-WBK</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
481,"<a href=""https://kb.hs3.pl/t/481"">Gitara elektryczna Blond STR-1H MN SFG</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
480,"<a href=""https://kb.hs3.pl/t/480"">Gitara elektryczna Blond TE-1 MN BB</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
533,"<a href=""https://kb.hs3.pl/t/533"">Access Point Mikrotik cAP ac</a>",unknown,[]
|
||||||
|
546,"<a href=""https://kb.hs3.pl/t/546"">Kwadraty ze sklejki w drewnianych pudełkach</a>",unknown,[]
|
||||||
|
545,"<a href=""https://kb.hs3.pl/t/545"">LEGO piedestał z figurkami i jednorożcem</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
541,"<a href=""https://kb.hs3.pl/t/541"">HAM QRP Szpej</a>",unknown,[]
|
||||||
|
543,"<a href=""https://kb.hs3.pl/t/543"">PKL, RF7, kable koncentryczne KF</a>",unknown,[]
|
||||||
|
542,"<a href=""https://kb.hs3.pl/t/542"">Antena Uda-Yagi 2m i 70 cm</a>",unknown,[]
|
||||||
|
370,"<a href=""https://kb.hs3.pl/t/370"">Infiniti mirror - części, pudło</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
540,"<a href=""https://kb.hs3.pl/t/540"">Icom 706-mk2</a>",unknown,[]
|
||||||
|
537,"<a href=""https://kb.hs3.pl/t/537"">Płyta główna GIGABYTE GA-790XT-USB3</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
536,"<a href=""https://kb.hs3.pl/t/536"">Płyta główna ECS L7VMM3</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
535,"<a href=""https://kb.hs3.pl/t/535"">Płyta główna EPoX EP-8K9A7I</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
92,"<a href=""https://kb.hs3.pl/t/92"">Drukarka 3D Creality K1 Max</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'tools', '3d-print']"
|
||||||
|
530,"<a href=""https://kb.hs3.pl/t/530"">Discman SONY</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
454,"<a href=""https://kb.hs3.pl/t/454"">Perkusja Alesis DM8</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'audiolab']"
|
||||||
|
273,"<a href=""https://kb.hs3.pl/t/273"">Drukarka Samsung ML-3710ND</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
476,"<a href=""https://kb.hs3.pl/t/476"">Wieża TECHNICS EH550 - kolumny głośnikowe</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
286,"<a href=""https://kb.hs3.pl/t/286"">Magnetowid VHS Philips VR 471</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
482,"<a href=""https://kb.hs3.pl/t/482"">Magnetofon kasetowy Technics RS-B765</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
317,"<a href=""https://kb.hs3.pl/t/317"">Sound Technology 1700B Distortion Measurement System</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
311,"<a href=""https://kb.hs3.pl/t/311"">Hung Chang Oscilloscope 5504 40MHz</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
279,"<a href=""https://kb.hs3.pl/t/279"">Komputer Apple Macintosh SE</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
292,"<a href=""https://kb.hs3.pl/t/292"">Wieża TECHNICS EH550 - Stereo sound processor SH-EH550</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
293,"<a href=""https://kb.hs3.pl/t/293"">Wieża TECHNICS EH550 - Stereo cassette deck RS-EH750</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
294,"<a href=""https://kb.hs3.pl/t/294"">Wieża TECHNICS EH550 - Compact disc player SL-EH750</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
291,"<a href=""https://kb.hs3.pl/t/291"">Wieża TECHNICS EH550 - Stereo tuner amplifier SA-EH550</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
532,"<a href=""https://kb.hs3.pl/t/532"">Telefon komórkowy Compas CTKE08</a>",unknown,[]
|
||||||
|
357,"<a href=""https://kb.hs3.pl/t/357"">Radio samochodowe Alpine</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
519,"<a href=""https://kb.hs3.pl/t/519"">Statyw Keyboard</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'audiolab']"
|
||||||
|
352,"<a href=""https://kb.hs3.pl/t/352"">Przejściówki USB-A => Power Jack</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
451,"<a href=""https://kb.hs3.pl/t/451"">Maty lutownicze</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'lab']"
|
||||||
|
490,"<a href=""https://kb.hs3.pl/t/490"">Radiomagnetofon przenośny Panasonic RQ-V77</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
312,"<a href=""https://kb.hs3.pl/t/312"">Szufladka ""Zestawy adapterów końcówek do zasilacza laptopa"" / końcówki do zasilania</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
526,"<a href=""https://kb.hs3.pl/t/526"">Monitory</a>",unknown,[]
|
||||||
|
528,"<a href=""https://kb.hs3.pl/t/528"">Stacja dokująca USB-C z wbudowaną klawiaturą Unitek</a>",unknown,[]
|
||||||
|
61,"<a href=""https://kb.hs3.pl/t/61"">HS3 BOFH</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'garage', 'events', 'bofh']"
|
||||||
|
493,"<a href=""https://kb.hs3.pl/t/493"">Wkrętarka Niteo Tools</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
494,"<a href=""https://kb.hs3.pl/t/494"">Quad Power Supply Cobrabid KB-60-01</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
495,"<a href=""https://kb.hs3.pl/t/495"">Lenco PA-45 Portable Sound System with Bluetooth</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
496,"<a href=""https://kb.hs3.pl/t/496"">Głośnik gitarowy DIY</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
498,"<a href=""https://kb.hs3.pl/t/498"">Wiertarka udarowa | Bosch Professional GSB 16 RE</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
497,"<a href=""https://kb.hs3.pl/t/497"">Drukarka DYMO Omega S0717930</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
499,"<a href=""https://kb.hs3.pl/t/499"">Pudło ""wiercimy, wkręcamy i różne inne""</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
500,"<a href=""https://kb.hs3.pl/t/500"">Pudło z chemią</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
503,"<a href=""https://kb.hs3.pl/t/503"">Lutownica TS 80</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
507,"<a href=""https://kb.hs3.pl/t/507"">ZD-939L stacja na gorące powietrze HOT-AIR</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
513,"<a href=""https://kb.hs3.pl/t/513"">Urządzenie do wywoływania klisz polimerowych KENT Belichtungsgerät BG 250</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
501,"<a href=""https://kb.hs3.pl/t/501"">Switch Planet FSD-803</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
502,"<a href=""https://kb.hs3.pl/t/502"">Switch ES-3208P</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
504,"<a href=""https://kb.hs3.pl/t/504"">Access Point TP-Link</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
505,"<a href=""https://kb.hs3.pl/t/505"">Mikrofon T-Bone SC-300</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
506,"<a href=""https://kb.hs3.pl/t/506"">Uchwyty biurkowe do mikrofonu/kamery</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
508,"<a href=""https://kb.hs3.pl/t/508"">Bongosy</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
509,"<a href=""https://kb.hs3.pl/t/509"">Dalekopis Lorenz LO133 Automatik</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
515,"<a href=""https://kb.hs3.pl/t/515"">Zegar mA</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
510,"<a href=""https://kb.hs3.pl/t/510"">Soundbar Dell AX510</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
511,"<a href=""https://kb.hs3.pl/t/511"">Głośniki komputerowe Creative Inspire T3100</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
516,"<a href=""https://kb.hs3.pl/t/516"">Głośnik CUBE</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
512,"<a href=""https://kb.hs3.pl/t/512"">Pegasus & Co</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
517,"<a href=""https://kb.hs3.pl/t/517"">Rozlutownica</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
518,"<a href=""https://kb.hs3.pl/t/518"">Wałek giętki do wiertarki Dremel</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
520,"<a href=""https://kb.hs3.pl/t/520"">Uchwyt do telewizora / monitora</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
521,"<a href=""https://kb.hs3.pl/t/521"">Terminal MOTOROLA MC9062 (1 szt) i MC9060 (3 szt)</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
522,"<a href=""https://kb.hs3.pl/t/522"">HUB 10Mb Hewlett Packard J3188A</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
489,"<a href=""https://kb.hs3.pl/t/489"">Aparat fotograficzny Agat 18K</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
488,"<a href=""https://kb.hs3.pl/t/488"">Aparat fotograficzny Nikon Coolpix L26</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
487,"<a href=""https://kb.hs3.pl/t/487"">Aparat fotograficzny Hitachi HDC-761E</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
486,"<a href=""https://kb.hs3.pl/t/486"">Aparat fotograficzny Konica Minolta</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
485,"<a href=""https://kb.hs3.pl/t/485"">Odtwarzacz przenośny Philips</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
484,"<a href=""https://kb.hs3.pl/t/484"">Komputer AiO POS CHD8700</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
483,"<a href=""https://kb.hs3.pl/t/483"">Tuner Technics ST-600L</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
491,"<a href=""https://kb.hs3.pl/t/491"">Odkurzacz Zelmer</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
492,"<a href=""https://kb.hs3.pl/t/492"">Poziomica 1,50m</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
455,"<a href=""https://kb.hs3.pl/t/455"">Wzmacniacz gitarowy Peavey Rage 258</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
458,"<a href=""https://kb.hs3.pl/t/458"">Słuchawki Creative Aurvana Live!</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
459,"<a href=""https://kb.hs3.pl/t/459"">Słuchawki Sennheiser HD25</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
460,"<a href=""https://kb.hs3.pl/t/460"">Mikrofon Grundig GDM 312</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
461,"<a href=""https://kb.hs3.pl/t/461"">Looper Ditto TC Electronic</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
462,"<a href=""https://kb.hs3.pl/t/462"">Mikser Behringer MX400 Micromix</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
463,"<a href=""https://kb.hs3.pl/t/463"">Korg Volca Keys</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
464,"<a href=""https://kb.hs3.pl/t/464"">Korg Volca Sample</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
465,"<a href=""https://kb.hs3.pl/t/465"">Korg Volca Mix</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
466,"<a href=""https://kb.hs3.pl/t/466"">Korg Volca Bass</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
467,"<a href=""https://kb.hs3.pl/t/467"">Korg Volca Modular</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
468,"<a href=""https://kb.hs3.pl/t/468"">Yamaha DD-10 Drum Machine</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
477,"<a href=""https://kb.hs3.pl/t/477"">Wzmacniacz zintegrowany Technics SU-810</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
470,"<a href=""https://kb.hs3.pl/t/470"">Mikrofon Rode NT1-A</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
473,"<a href=""https://kb.hs3.pl/t/473"">Obudowa komputerowa Chieftec Tower of BBL (but SMOL)</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
447,"<a href=""https://kb.hs3.pl/t/447"">Aerograf PS-22 Verke</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
475,"<a href=""https://kb.hs3.pl/t/475"">Głośniki LG CMS4340F</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
474,"<a href=""https://kb.hs3.pl/t/474"">Wzmacniacz DIY 12V DC</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
472,"<a href=""https://kb.hs3.pl/t/472"">Obudowa komputerowa Chieftec Tower of BBL</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
471,"<a href=""https://kb.hs3.pl/t/471"">Głośniki DIY d33p w00f</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
469,"<a href=""https://kb.hs3.pl/t/469"">A8 Wireless Sound Transmitter/Receiver</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
453,"<a href=""https://kb.hs3.pl/t/453"">Klawiatury laptopowe</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
452,"<a href=""https://kb.hs3.pl/t/452"">Klawiatury</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
417,"<a href=""https://kb.hs3.pl/t/417"">Kable Audio Jack-Jack Mono</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
449,"<a href=""https://kb.hs3.pl/t/449"">Omnifixo</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'lab']"
|
||||||
|
448,"<a href=""https://kb.hs3.pl/t/448"">Joystick Thrustmaster T.16000M</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
206,"<a href=""https://kb.hs3.pl/t/206"">Club* Mate</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
450,"<a href=""https://kb.hs3.pl/t/450"">Lutownica T12 + groty</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'lab']"
|
||||||
|
441,"<a href=""https://kb.hs3.pl/t/441"">Podnośnik samochodowe 2,5 ton</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>","['garage', 'tools']"
|
||||||
|
443,"<a href=""https://kb.hs3.pl/t/443"">Odciąg trocin/wiórów Cormak</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>",['garage']
|
||||||
|
439,"<a href=""https://kb.hs3.pl/t/439"">Mikro regały. W70xD50xH55</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>",['garage']
|
||||||
|
405,"<a href=""https://kb.hs3.pl/t/405"">Home Automation Switches</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'lab', 'server-room']"
|
||||||
|
431,"<a href=""https://kb.hs3.pl/t/431"">Audio Mixer XENYX 302USB</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
430,"<a href=""https://kb.hs3.pl/t/430"">Głośniki Loewe L82 A</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
429,"<a href=""https://kb.hs3.pl/t/429"">Komputer Sun Ultra 45 Workstation 500s XVR2500 ULTRAsparc IIIi</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
428,"<a href=""https://kb.hs3.pl/t/428"">Hodowla gryzoni (myszki et al.)</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
426,"<a href=""https://kb.hs3.pl/t/426"">Karton ""Drukarka paragonowa + etykietki""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
415,"<a href=""https://kb.hs3.pl/t/415"">Multimetr, oscyloskop, generator sygnałów JT-OMS01</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
375,"<a href=""https://kb.hs3.pl/t/375"">Termostaty</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'lab', 'audiolab', 'server-room']"
|
||||||
|
432,"<a href=""https://kb.hs3.pl/t/432"">Rode Wireless GO II</a>",unknown,[]
|
||||||
|
435,"<a href=""https://kb.hs3.pl/t/435"">Capture Card/Passthrough (black)</a>",unknown,[]
|
||||||
|
434,"<a href=""https://kb.hs3.pl/t/434"">Capture Card (gray)</a>",unknown,[]
|
||||||
|
438,"<a href=""https://kb.hs3.pl/t/438"">Rode Lav Mic</a>",unknown,[]
|
||||||
|
437,"<a href=""https://kb.hs3.pl/t/437"">MACROSILICON usb extscreen</a>",unknown,[]
|
||||||
|
436,"<a href=""https://kb.hs3.pl/t/436"">HDMI Extender</a>",unknown,[]
|
||||||
|
433,"<a href=""https://kb.hs3.pl/t/433"">1->4 HDMI Splitter</a>",unknown,[]
|
||||||
|
149,"<a href=""https://kb.hs3.pl/t/149"">LEDon Pink pussy</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
151,"<a href=""https://kb.hs3.pl/t/151"">LEDon Bulb</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
148,"<a href=""https://kb.hs3.pl/t/148"">LEDon HS3</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
147,"<a href=""https://kb.hs3.pl/t/147"">LEDon Classy Lady</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
418,"<a href=""https://kb.hs3.pl/t/418"">Karton ""Artykuły higieniczne""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
419,"<a href=""https://kb.hs3.pl/t/419"">Karton ""Akces(er)oria lutowanie""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
421,"<a href=""https://kb.hs3.pl/t/421"">Karton ""HS3 Narzędzia Warsztatowe""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
422,"<a href=""https://kb.hs3.pl/t/422"">Karton ""Taśmy samoprzylepne""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
423,"<a href=""https://kb.hs3.pl/t/423"">Karton ""Przedłużacze 230V""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
424,"<a href=""https://kb.hs3.pl/t/424"">Rzepowisko</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
427,"<a href=""https://kb.hs3.pl/t/427"">Głośniki Creative GigaWorks T20 MultiMedia Speaker 28W MF1545</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||||
|
425,"<a href=""https://kb.hs3.pl/t/425"">Repeater Zigbee Cow-work</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
420,"<a href=""https://kb.hs3.pl/t/420"">Karton ""Bags""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
208,"<a href=""https://kb.hs3.pl/t/208"">Komputer Nixdorf XT ""All-in-One Portable""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
47,"<a href=""https://kb.hs3.pl/t/47"">Cricut Maker 3 ploter tnący</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'tools']"
|
||||||
|
411,"<a href=""https://kb.hs3.pl/t/411"">Stacja W.E.R 852D+ do prac z smd</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
416,"<a href=""https://kb.hs3.pl/t/416"">Switch zarządzalny MikroTik CRS309-1G-8S+IN 1x1GbE 8x10GbE SFP+ RS232 PoE</a>","<a href=""https://kb.hs3.pl/tag/server-room"">server-room</a>",['server-room']
|
||||||
|
413,"<a href=""https://kb.hs3.pl/t/413"">Zasilacz regulowany</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
412,"<a href=""https://kb.hs3.pl/t/412"">Stacja lutownicza 937D</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
410,"<a href=""https://kb.hs3.pl/t/410"">Stacja lutownicza LF-1660SD</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
409,"<a href=""https://kb.hs3.pl/t/409"">Stacja do rozlutowywania DS-915</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
197,"<a href=""https://kb.hs3.pl/t/197"">Sprzęt komp laptop Oden-dono</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
189,"<a href=""https://kb.hs3.pl/t/189"">Sprzęt komp laptop Udon-san</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
200,"<a href=""https://kb.hs3.pl/t/200"">Sprzęt komp laptop Bogumił</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
202,"<a href=""https://kb.hs3.pl/t/202"">Sprzęt komp laptop Amilo</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
193,"<a href=""https://kb.hs3.pl/t/193"">Sprzęt komp laptop Victoria</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
188,"<a href=""https://kb.hs3.pl/t/188"">Sprzęt komp laptop mały Jaś</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
199,"<a href=""https://kb.hs3.pl/t/199"">Sprzęt komp laptop Robin</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
407,"<a href=""https://kb.hs3.pl/t/407"">Mikser audio Phonic MM2005</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'audiolab']"
|
||||||
|
401,"<a href=""https://kb.hs3.pl/t/401"">Telewizor LG 37LK450-ZH</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
404,"<a href=""https://kb.hs3.pl/t/404"">Kamera USB Savio CAK-02</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
397,"<a href=""https://kb.hs3.pl/t/397"">Telewizor NEC E658</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
406,"<a href=""https://kb.hs3.pl/t/406"">Klawiatura sterująca MIDI/USB AKAI MPK 61</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'audiolab']"
|
||||||
|
398,"<a href=""https://kb.hs3.pl/t/398"">Telewizor Samsung LE37C530</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
403,"<a href=""https://kb.hs3.pl/t/403"">Domofon Hikvision</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
400,"<a href=""https://kb.hs3.pl/t/400"">Chromecast 2 NC2-6A5</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
399,"<a href=""https://kb.hs3.pl/t/399"">Klawiatura MIDI Arturia Keystep</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'audiolab']"
|
||||||
|
395,"<a href=""https://kb.hs3.pl/t/395"">Przyssawka do powierzchni płaskich</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
394,"<a href=""https://kb.hs3.pl/t/394"">Rozlutownica bez regulacji temperatury</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
393,"<a href=""https://kb.hs3.pl/t/393"">Lutownica Solomon</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
392,"<a href=""https://kb.hs3.pl/t/392"">Myjka Ultradźwiękowa</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
391,"<a href=""https://kb.hs3.pl/t/391"">Kamera statyw zestaw do pracy z płytkami PCB</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
390,"<a href=""https://kb.hs3.pl/t/390"">Wyciąg stanowiska do lutowania</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
384,"<a href=""https://kb.hs3.pl/t/384"">Pojemnik FOTO</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
389,"<a href=""https://kb.hs3.pl/t/389"">Karton z częściami SMD</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
387,"<a href=""https://kb.hs3.pl/t/387"">Klucze płaskooczkowe</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
386,"<a href=""https://kb.hs3.pl/t/386"">Suwmiarka</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
385,"<a href=""https://kb.hs3.pl/t/385"">Wiertarka Cemi statyw imadło</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
383,"<a href=""https://kb.hs3.pl/t/383"">Obudowa robota sprzątającego</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
382,"<a href=""https://kb.hs3.pl/t/382"">Drukarka 3D Photon żywiczna</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
381,"<a href=""https://kb.hs3.pl/t/381"">Wiertarka statyw Dremel</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
354,"<a href=""https://kb.hs3.pl/t/354"">Czujnik temperatury i wilgotności</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
374,"<a href=""https://kb.hs3.pl/t/374"">Hot Plate</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
379,"<a href=""https://kb.hs3.pl/t/379"">Drukarka 3D Creality K1MAX</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
257,"<a href=""https://kb.hs3.pl/t/257"">Gra L game</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
372,"<a href=""https://kb.hs3.pl/t/372"">Skrzynia skarbów</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
378,"<a href=""https://kb.hs3.pl/t/378"">Nitownica do nitonakrętek</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
380,"<a href=""https://kb.hs3.pl/t/380"">Mikroskop Eduko</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
356,"<a href=""https://kb.hs3.pl/t/356"">Karton ""termostaty""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
358,"<a href=""https://kb.hs3.pl/t/358"">Karton ""wSchody""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
359,"<a href=""https://kb.hs3.pl/t/359"">Karton ""materiały plastyczne""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
360,"<a href=""https://kb.hs3.pl/t/360"">Pojemnik ""złącza, taśmy, słupki""</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
361,"<a href=""https://kb.hs3.pl/t/361"">Karton Zigbee</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
362,"<a href=""https://kb.hs3.pl/t/362"">Karton ""electro""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
363,"<a href=""https://kb.hs3.pl/t/363"">Instalacja Lasy Oliwskie</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
371,"<a href=""https://kb.hs3.pl/t/371"">Uchwyt do płytek PCB</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
364,"<a href=""https://kb.hs3.pl/t/364"">Karton Led String Light</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
368,"<a href=""https://kb.hs3.pl/t/368"">Zgrzewarka do ogniw</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
369,"<a href=""https://kb.hs3.pl/t/369"">Lutownica gazowa</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
373,"<a href=""https://kb.hs3.pl/t/373"">OPSIS</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
367,"<a href=""https://kb.hs3.pl/t/367"">Przejściówki USB-C => B, micro B, mini B, micro B 3, Lightning</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
365,"<a href=""https://kb.hs3.pl/t/365"">Karton ""USB""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
366,"<a href=""https://kb.hs3.pl/t/366"">Karton ""Polish C Power""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
355,"<a href=""https://kb.hs3.pl/t/355"">Zasilacz regulowany USB-C Power Delivery Zasilacz 100W 5V/9V/12V/15V/20V</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
351,"<a href=""https://kb.hs3.pl/t/351"">Przejściówki USB-C => Power Jack</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
353,"<a href=""https://kb.hs3.pl/t/353"">Przejściówka Power Jack => USB-C</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
350,"<a href=""https://kb.hs3.pl/t/350"">Body Fat Scale</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
349,"<a href=""https://kb.hs3.pl/t/349"">DVD Video ""Monty Python: A teraz coś z zupełnie innej beczki""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
348,"<a href=""https://kb.hs3.pl/t/348"">14 in 1 Educational Solar Robot</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
347,"<a href=""https://kb.hs3.pl/t/347"">Gra wideo ""PS3 Ridge Racer 7""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
346,"<a href=""https://kb.hs3.pl/t/346"">Cyberdeck Ijona</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
345,"<a href=""https://kb.hs3.pl/t/345"">Gra wideo ""PS3 Uncharted: Drake's Fortune DE""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
344,"<a href=""https://kb.hs3.pl/t/344"">Szafka ze sprzętem telekomunikacyjnym</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
340,"<a href=""https://kb.hs3.pl/t/340"">Kartón z wkrętami, kołkami i pudelkami</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
343,"<a href=""https://kb.hs3.pl/t/343"">Gra wideo ""PS3 Colin McRae: Dirt 2""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
341,"<a href=""https://kb.hs3.pl/t/341"">Gra wideo ""PS3 Ratchet & Clank Quest for Booty""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
342,"<a href=""https://kb.hs3.pl/t/342"">Odtwarzacz Linn Sekrit DS-I + kolumny</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
339,"<a href=""https://kb.hs3.pl/t/339"">Gra wideo ""Need for Speed: Most Wanted""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
338,"<a href=""https://kb.hs3.pl/t/338"">Gra wideo ""Commandos 3: Kierunek Berlin""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
337,"<a href=""https://kb.hs3.pl/t/337"">Gra wideo ""Heroes of Might and Magic V: Kuźnia Przeznaczenia""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
336,"<a href=""https://kb.hs3.pl/t/336"">Puzzle Ptaki 500 - Politechnika Gdańska</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
335,"<a href=""https://kb.hs3.pl/t/335"">Wiertarka PSR 1440 LI-2 + AL 1880 CV BOSCH</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'tools']"
|
||||||
|
334,"<a href=""https://kb.hs3.pl/t/334"">5-Port Fast Ethernet Switch Edimax 10/100Mbps</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
333,"<a href=""https://kb.hs3.pl/t/333"">Karton ""ZASILACZE LAPTOP""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
332,"<a href=""https://kb.hs3.pl/t/332"">Karton ""URZĄDZENIA SIECIOWE LAN""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
331,"<a href=""https://kb.hs3.pl/t/331"">Karton ""VR""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
330,"<a href=""https://kb.hs3.pl/t/330"">Karton ""RADIO""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
326,"<a href=""https://kb.hs3.pl/t/326"">Lampa z lupą</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
328,"<a href=""https://kb.hs3.pl/t/328"">Lampa z lupą niesprawna</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
329,"<a href=""https://kb.hs3.pl/t/329"">Karton ""RÓŻNE MAŁE ZASILACZE""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
327,"<a href=""https://kb.hs3.pl/t/327"">Karton ""PRZEWODY ZASILAJACE""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
325,"<a href=""https://kb.hs3.pl/t/325"">Karton ""PRZEWODY <1MM2""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
324,"<a href=""https://kb.hs3.pl/t/324"">Karton ""AUDIO PRO""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
323,"<a href=""https://kb.hs3.pl/t/323"">Karton ""VIDEO""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
322,"<a href=""https://kb.hs3.pl/t/322"">Karton ""AUDIO JABRA""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
321,"<a href=""https://kb.hs3.pl/t/321"">Karton ""HDMI""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
320,"<a href=""https://kb.hs3.pl/t/320"">Karton ""RETRO AV SCART ET AL""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
319,"<a href=""https://kb.hs3.pl/t/319"">Karton ""LAN przewody""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
318,"<a href=""https://kb.hs3.pl/t/318"">Gra zręcznościowa “Wooden Blocks""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
316,"<a href=""https://kb.hs3.pl/t/316"">Wavetek Universal Antenna Coupler WWG MMS-4107S</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
287,"<a href=""https://kb.hs3.pl/t/287"">Gra wideo “PC Warcraft II: Tides of Darkness”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
289,"<a href=""https://kb.hs3.pl/t/289"">Gra wideo ""PC Fallout 1""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
297,"<a href=""https://kb.hs3.pl/t/297"">Naklejki ""własność prywatna""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
299,"<a href=""https://kb.hs3.pl/t/299"">Gra Koci Cymbergaj</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
300,"<a href=""https://kb.hs3.pl/t/300"">Multifunction Printer Canon MG3150</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
302,"<a href=""https://kb.hs3.pl/t/302"">Skaner Plustek OpticPro ST24</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
305,"<a href=""https://kb.hs3.pl/t/305"">Voltage, Distortion, and Noise Meter VN-1687 Unitra Elmasz</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
306,"<a href=""https://kb.hs3.pl/t/306"">WANPTEK Programmable DC Power Supply</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
307,"<a href=""https://kb.hs3.pl/t/307"">Oscyloskop Hantek 6022BE</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
309,"<a href=""https://kb.hs3.pl/t/309"">Type SMG-1 Stereo Generator Radiometer Copenhagen</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
313,"<a href=""https://kb.hs3.pl/t/313"">Karton ""Słuchawki""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
301,"<a href=""https://kb.hs3.pl/t/301"">Karton ""ARTYKUŁY BIUROWE""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
314,"<a href=""https://kb.hs3.pl/t/314"">PINTEK 20MHz oscilloscope PS-200</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
315,"<a href=""https://kb.hs3.pl/t/315"">PAL-B System?</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
296,"<a href=""https://kb.hs3.pl/t/296"">HUBy USB-C</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
144,"<a href=""https://kb.hs3.pl/t/144"">Venus</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
52,"<a href=""https://kb.hs3.pl/t/52"">Evil Submarine</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'projects']"
|
||||||
|
295,"<a href=""https://kb.hs3.pl/t/295"">Dmuchawa do elektroniki Appio</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
288,"<a href=""https://kb.hs3.pl/t/288"">Gra wideo ""Warcraft II: Battle.net Edition""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
290,"<a href=""https://kb.hs3.pl/t/290"">Projektor Barco F22 SX+ Ultra Wide VizSim</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
284,"<a href=""https://kb.hs3.pl/t/284"">Robotarm SVI-2000 QuickShot</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
282,"<a href=""https://kb.hs3.pl/t/282"">Komputer ZX Spectrum +2</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
281,"<a href=""https://kb.hs3.pl/t/281"">Gra wideo “PC Mortyr 2093-1944”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
280,"<a href=""https://kb.hs3.pl/t/280"">Komputer Commodore C=64</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
278,"<a href=""https://kb.hs3.pl/t/278"">Philips PM5415TX color TV Pattern Generator</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
277,"<a href=""https://kb.hs3.pl/t/277"">Joystick QuickShot II Turbo</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
276,"<a href=""https://kb.hs3.pl/t/276"">Gra wideo “PC Dragon Dice”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
275,"<a href=""https://kb.hs3.pl/t/275"">Joystick Quickshot</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
274,"<a href=""https://kb.hs3.pl/t/274"">Komputer Spectravideo SVI–738</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
272,"<a href=""https://kb.hs3.pl/t/272"">Gra wideo “PC Man Of War”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
271,"<a href=""https://kb.hs3.pl/t/271"">Gra wideo “PC Warcraft: Orcs & Humans”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
270,"<a href=""https://kb.hs3.pl/t/270"">Gra wideo “Nowy Teenagent”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
269,"<a href=""https://kb.hs3.pl/t/269"">Gra wideo ""PC Requiem: Avenging Angel""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
268,"<a href=""https://kb.hs3.pl/t/268"">Gra wideo “PC CLASH”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
267,"<a href=""https://kb.hs3.pl/t/267"">Gra wideo ""PC Baldur’s Gate: Opowieści z Wybrzeża Mieczy""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
266,"<a href=""https://kb.hs3.pl/t/266"">Gra wideo “PC Fallout 2 - A Post Nuclear Role Playing Game”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
265,"<a href=""https://kb.hs3.pl/t/265"">Gra wideo “PC Might & Magic: Heroes VI - Pirates of the Savage Sea”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
264,"<a href=""https://kb.hs3.pl/t/264"">Gra wideo “PC Konung: Legenda Północy”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
263,"<a href=""https://kb.hs3.pl/t/263"">Gra wideo “PC End of Twilight: Zaginiona tarcza wikinga”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
262,"<a href=""https://kb.hs3.pl/t/262"">Gra wideo “Alien Nations”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
261,"<a href=""https://kb.hs3.pl/t/261"">Gra wideo “PC Tony Hawk's Underground 2”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
259,"<a href=""https://kb.hs3.pl/t/259"">Gra wideo ""PC Kroniki czarnego księżyca""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
260,"<a href=""https://kb.hs3.pl/t/260"">Gra wideo ""PC ony Hawk's Pro Skater 3""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
256,"<a href=""https://kb.hs3.pl/t/256"">Gra wideo “PC Full Spectrum Warrior”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
258,"<a href=""https://kb.hs3.pl/t/258"">Gra wideo ""PC Invictus: W Cieniu Olimpu""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
236,"<a href=""https://kb.hs3.pl/t/236"">Gra planszowa ""Carcassonne. Gra o zamkach, miastach i rycerzach.”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
237,"<a href=""https://kb.hs3.pl/t/237"">Gra zręcznościowa ""Wieża""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
238,"<a href=""https://kb.hs3.pl/t/238"">Gra planszowa ""Postaw na klocka""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
239,"<a href=""https://kb.hs3.pl/t/239"">Gra planszowa “Tajniacy”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
240,"<a href=""https://kb.hs3.pl/t/240"">Gra planszowa “Story Cubes: Podróże”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
253,"<a href=""https://kb.hs3.pl/t/253"">Gra wideo ""PS2 Charlie and the Chocolate Factory""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
254,"<a href=""https://kb.hs3.pl/t/254"">Gra wideo “ The Chronicles of Narnia: The Lion, The Witch and The Wardrobe”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
255,"<a href=""https://kb.hs3.pl/t/255"">Gra wideo “PS2 Conflict: Vietnam”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
248,"<a href=""https://kb.hs3.pl/t/248"">Komputer Amstrad 128k Colour Personal Computer</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
249,"<a href=""https://kb.hs3.pl/t/249"">Zasilacz laboratoryjny Zhaoxin</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'tools']"
|
||||||
|
250,"<a href=""https://kb.hs3.pl/t/250"">Gra karciana ""Monty Python and the Holy Grail CCG Booster Pack""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
252,"<a href=""https://kb.hs3.pl/t/252"">Konsola do gier Doom.txt</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
251,"<a href=""https://kb.hs3.pl/t/251"">Konsola do gier DoomGirl</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||||
|
212,"<a href=""https://kb.hs3.pl/t/212"">SUN Keyboard & Mouse Collection</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
243,"<a href=""https://kb.hs3.pl/t/243"">Gra karciana ""List Miłosny""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
242,"<a href=""https://kb.hs3.pl/t/242"">Dodatek do gry “ KeyForge: Zew Archontów - Talia Archonta”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
241,"<a href=""https://kb.hs3.pl/t/241"">Gra planszowa “Developer Dilemmas”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
244,"<a href=""https://kb.hs3.pl/t/244"">Osciloscope OS-352 ZUE Unitem</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
245,"<a href=""https://kb.hs3.pl/t/245"">Dodatek do gry “KeyForge: Czas Wstąpienia - Talia Archonta”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
246,"<a href=""https://kb.hs3.pl/t/246"">Gra planszowa “Dobble: collector”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
247,"<a href=""https://kb.hs3.pl/t/247"">Gra planszowa “Cytadela”</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
91,"<a href=""https://kb.hs3.pl/t/91"">Drukarka 3D Creality Ender 3</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>","['lab', 'tools', '3d-print']"
|
||||||
|
139,"<a href=""https://kb.hs3.pl/t/139"">Drukarka Brother PT-E550WSP</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||||
|
222,"<a href=""https://kb.hs3.pl/t/222"">Gra planszowa “Spiskowcy""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
232,"<a href=""https://kb.hs3.pl/t/232"">Gra planszowa “Takie Życie - Ciekawostki""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
234,"<a href=""https://kb.hs3.pl/t/234"">Gra planszowa ""Załoga: Wyprawa w głębiny""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
235,"<a href=""https://kb.hs3.pl/t/235"">Gra planszowa ""Decrypto""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
233,"<a href=""https://kb.hs3.pl/t/233"">Blinkenkrate</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'projects']"
|
||||||
|
231,"<a href=""https://kb.hs3.pl/t/231"">Mecanorma 9,99999MHz</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
230,"<a href=""https://kb.hs3.pl/t/230"">SECAM/PAL TV Pattern Generator Type K944</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
229,"<a href=""https://kb.hs3.pl/t/229"">TRIO 15MHz Oscilloscope CS-1560A</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
228,"<a href=""https://kb.hs3.pl/t/228"">Monitor Trinitron</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
227,"<a href=""https://kb.hs3.pl/t/227"">Oscyloskop ST-315A II KABID Radiotechnika</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
226,"<a href=""https://kb.hs3.pl/t/226"">Grundig AM/FM Generator AS4</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
225,"<a href=""https://kb.hs3.pl/t/225"">Mera tronik Digital Voltmeter Type V530</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
224,"<a href=""https://kb.hs3.pl/t/224"">Hewlett Packard 8640A Signal Generator</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
223,"<a href=""https://kb.hs3.pl/t/223"">Sprzęt komp all-in-one krągły iMac *inander</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
221,"<a href=""https://kb.hs3.pl/t/221"">Monitor Amstrad CTM644</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
220,"<a href=""https://kb.hs3.pl/t/220"">UNITRA Unima Digital Multimeter 1331</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
219,"<a href=""https://kb.hs3.pl/t/219"">Leader LVS-5851 A PAL Vectorscope</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
218,"<a href=""https://kb.hs3.pl/t/218"">Zopan Signal Generator KZ 1623</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
217,"<a href=""https://kb.hs3.pl/t/217"">UNITRA Elmasz Miernik nierównomierności ND-1481</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
216,"<a href=""https://kb.hs3.pl/t/216"">SUN CD-ROM Caddy Loaded</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
215,"<a href=""https://kb.hs3.pl/t/215"">Xbox 360 Plain</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
214,"<a href=""https://kb.hs3.pl/t/214"">Xbox 360 Chrome</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
213,"<a href=""https://kb.hs3.pl/t/213"">Xbox 360 Toothless</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
211,"<a href=""https://kb.hs3.pl/t/211"">SUN Ultra 5 Bottom</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
210,"<a href=""https://kb.hs3.pl/t/210"">SUN Ultra 5 Top</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
209,"<a href=""https://kb.hs3.pl/t/209"">SUN Sparkstation 20</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
203,"<a href=""https://kb.hs3.pl/t/203"">Multimetr TL-4</a>",unknown,[]
|
||||||
|
156,"<a href=""https://kb.hs3.pl/t/156"">Drabinka</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
155,"<a href=""https://kb.hs3.pl/t/155"">Flipchart</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
166,"<a href=""https://kb.hs3.pl/t/166"">Gra planszowa Oriflamme</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
168,"<a href=""https://kb.hs3.pl/t/168"">Gra planszowa ""To ja go tnę""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
152,"<a href=""https://kb.hs3.pl/t/152"">Gra planszowa Dreadful Circus</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
160,"<a href=""https://kb.hs3.pl/t/160"">Gra planszowa ""Mage Knight Dugeons""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
169,"<a href=""https://kb.hs3.pl/t/169"">Gra planszowa Mix Tura</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'boardgame']"
|
||||||
|
171,"<a href=""https://kb.hs3.pl/t/171"">Gra karciana UNO</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
140,"<a href=""https://kb.hs3.pl/t/140"">Kamizelka projektu 'Człowiek'</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
167,"<a href=""https://kb.hs3.pl/t/167"">Sprzęt komp Monitor Samson</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
165,"<a href=""https://kb.hs3.pl/t/165"">Sprzęt komp Monitor mały Dellton</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
163,"<a href=""https://kb.hs3.pl/t/163"">Sprzęt komp all-in-one krągły iMaciej</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
162,"<a href=""https://kb.hs3.pl/t/162"">Sprzęt komp monitor Dellton</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
161,"<a href=""https://kb.hs3.pl/t/161"">Sprzęt komp All-in-one Asuseł</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
159,"<a href=""https://kb.hs3.pl/t/159"">Sprzęt komp monitor Optimus Prime</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
158,"<a href=""https://kb.hs3.pl/t/158"">Sprzęt komp monitor Hehe Prince</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
157,"<a href=""https://kb.hs3.pl/t/157"">Sprzęt komp All-in-one Lenovaldek</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
154,"<a href=""https://kb.hs3.pl/t/154"">Sprzęt komp All-in-one Bazzite</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
143,"<a href=""https://kb.hs3.pl/t/143"">Von Count</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
142,"<a href=""https://kb.hs3.pl/t/142"">Kaktus</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
141,"<a href=""https://kb.hs3.pl/t/141"">Tramwajomat</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
170,"<a href=""https://kb.hs3.pl/t/170"">Sprzęt komp Desktop FrankenSUN</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
172,"<a href=""https://kb.hs3.pl/t/172"">Sprzęt komp Desktop Bandzior</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
173,"<a href=""https://kb.hs3.pl/t/173"">Sprzęt komp Desktop GOOD BOY</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
174,"<a href=""https://kb.hs3.pl/t/174"">Sprzęt komp Desktop Unbreak My Heart</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
175,"<a href=""https://kb.hs3.pl/t/175"">Sprzęt komp Desktop Mucha w Zupie</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
178,"<a href=""https://kb.hs3.pl/t/178"">Sprzęt komp Desktop Roxanne</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
180,"<a href=""https://kb.hs3.pl/t/180"">Sprzęt komp Desktop Wronisław</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
194,"<a href=""https://kb.hs3.pl/t/194"">Sprzęt komp laptop Wonder Boy</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
204,"<a href=""https://kb.hs3.pl/t/204"">Sprzęt komp laptop Lego Dell</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
181,"<a href=""https://kb.hs3.pl/t/181"">Klimatyzator</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
205,"<a href=""https://kb.hs3.pl/t/205"">Sprzęt komp laptop HackLab-0x01</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
185,"<a href=""https://kb.hs3.pl/t/185"">Dekadowy Generator RC PW-9</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
186,"<a href=""https://kb.hs3.pl/t/186"">Sprzęt komp laptop Vojtěch</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
187,"<a href=""https://kb.hs3.pl/t/187"">PMZ-12 Automatic Distortion Meter</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
190,"<a href=""https://kb.hs3.pl/t/190"">Dekadowy Generator RC PW-9 NATIONAL</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
191,"<a href=""https://kb.hs3.pl/t/191"">Dekadowy Generator RC PW-9 TK2</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
192,"<a href=""https://kb.hs3.pl/t/192"">Generator RC PO-20</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
195,"<a href=""https://kb.hs3.pl/t/195"">Miernik napięć, zniekształceń i szumów VN-1064/A</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
184,"<a href=""https://kb.hs3.pl/t/184"">Sprzęt komp All-in-one Przyczajony nieobecny Bazyl</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
183,"<a href=""https://kb.hs3.pl/t/183"">Sprzęt komp All-in-one Przyczajony Bazyl Lewy</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
182,"<a href=""https://kb.hs3.pl/t/182"">Sprzęt komp All-in-one Przyczajony Bazyl pierwszy</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
108,"<a href=""https://kb.hs3.pl/t/108"">PC Engines APU2 Router Box</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'networking']"
|
||||||
|
150,"<a href=""https://kb.hs3.pl/t/150"">LEDon Schrödinger's pussy</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
164,"<a href=""https://kb.hs3.pl/t/164"">Sprzęt komp Monitor Hapeusz</a>",unknown,[]
|
||||||
|
153,"<a href=""https://kb.hs3.pl/t/153"">LEDon Duck</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
145,"<a href=""https://kb.hs3.pl/t/145"">Prince Charming</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
93,"<a href=""https://kb.hs3.pl/t/93"">King Bob</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>",['cow-work']
|
||||||
|
90,"<a href=""https://kb.hs3.pl/t/90"">Chciejlista</a>",unknown,[]
|
||||||
|
85,"<a href=""https://kb.hs3.pl/t/85"">Komu powinien służyć Spejs</a>",unknown,[]
|
||||||
|
84,"<a href=""https://kb.hs3.pl/t/84"">Budżet</a>",unknown,[]
|
||||||
|
83,"<a href=""https://kb.hs3.pl/t/83"">Hackerspace Dragon Dreaming</a>",unknown,[]
|
||||||
|
82,"<a href=""https://kb.hs3.pl/t/82"">Biblioteka</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'books']"
|
||||||
|
66,"<a href=""https://kb.hs3.pl/t/66"">Apteczki</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'garage', 'bhp']"
|
||||||
|
44,"<a href=""https://kb.hs3.pl/t/44"">Brayton Power</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>","['garage', 'projects']"
|
||||||
|
50,"<a href=""https://kb.hs3.pl/t/50"">Infinity mirror (duże)</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>","['garage', 'projects']"
|
||||||
|
41,"<a href=""https://kb.hs3.pl/t/41"">Wiertarka PSB 500 RE BOSCH</a>","<a href=""https://kb.hs3.pl/tag/garage"">garage</a>","['garage', 'tools']"
|
||||||
|
46,"<a href=""https://kb.hs3.pl/t/46"">What the Duck</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'wled']"
|
||||||
|
Can't render this file because it contains an unexpected character in line 4 and column 153.
|
Loading…
Add table
Add a link
Reference in a new issue