Compare commits
No commits in common. "master" and "labeling_bot/add-fastapi-and-qr" have entirely different histories.
master
...
labeling_b
33 changed files with 14 additions and 11549 deletions
|
|
@ -1,6 +0,0 @@
|
|||
.venv
|
||||
.git
|
||||
__pycache__
|
||||
*.pyc
|
||||
.ruff_cache
|
||||
.mypy_cache
|
||||
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
|
|
@ -1 +0,0 @@
|
|||
* @MartaSien
|
||||
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
|
|
@ -1,11 +0,0 @@
|
|||
# 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
16
.github/linters/.mega-linter.yml
vendored
|
|
@ -1,16 +0,0 @@
|
|||
# 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
37
.github/workflows/megalinter.yml
vendored
|
|
@ -1,37 +0,0 @@
|
|||
# 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
55
.github/workflows/update-website.yml
vendored
|
|
@ -1,55 +0,0 @@
|
|||
# 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
3
.gitignore
vendored
|
|
@ -1,3 +0,0 @@
|
|||
env
|
||||
__pycache__
|
||||
.env
|
||||
23
Dockerfile
23
Dockerfile
|
|
@ -1,20 +1,15 @@
|
|||
# Build stage
|
||||
FROM python:3.11 AS builder
|
||||
FROM python:3.11
|
||||
|
||||
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
||||
RUN mkdir /app
|
||||
COPY / /app
|
||||
|
||||
COPY pyproject.toml poetry.lock /app/
|
||||
|
||||
WORKDIR /app
|
||||
COPY pyproject.toml uv.lock ./
|
||||
RUN uv sync --frozen --no-install-project
|
||||
COPY . .
|
||||
RUN uv sync
|
||||
|
||||
# Runtime stage
|
||||
FROM python:3.11-slim
|
||||
ENV PYTHONPATH=${PYTHONPATH}:${PWD}
|
||||
RUN pip install poetry
|
||||
|
||||
WORKDIR /app
|
||||
COPY --from=builder /app/ /app/
|
||||
RUN poetry config virtualenvs.create false
|
||||
RUN poetry install --only main
|
||||
|
||||
ENV PATH="/app/.venv/bin:$PATH"
|
||||
|
||||
CMD ["fastapi", "dev", "--host", "0.0.0.0", "--port", "31337", "labeler/adapter/fastapi_srv.py" ]
|
||||
|
|
|
|||
64
README.md
64
README.md
|
|
@ -1,64 +0,0 @@
|
|||
# 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.
|
||||
|
||||
## Uruchomienie połączenia z drukarką etykiet
|
||||
|
||||
Potrzebne, by działał przycisk w kolumnie `print`. Po kliknięciu, nastąpi próba połączenia się z drukarką Brother PT-E550W, pod adresem IP zdefiniowanym w `PRINTER_IT`, w celu wydruku naklejki z kodem QR.
|
||||
|
||||
```bash
|
||||
uv venv --python 3.11
|
||||
source .venv.bin/activate
|
||||
uv sync
|
||||
fastapi dev --port 31337 labeler/adapter/fastapi_srv.py
|
||||
export PRINTER_IT=192.168.0.147
|
||||
```
|
||||
|
||||
W razie problemów, spróbuj alternatywnych komend:
|
||||
```bash
|
||||
source .venv/Scripts/activate
|
||||
uv run -- fastapi dev --port 31337 labeler/adapter/fastapi_srv.py
|
||||
```
|
||||
|
||||
## 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/)
|
||||
- [hbrylkowski/labeling_bot](https://github.com/hbrylkowski/labeling_bot)
|
||||
|
|
@ -1,117 +0,0 @@
|
|||
'''
|
||||
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)")
|
||||
|
||||
File diff suppressed because it is too large
Load diff
14
fegen/docs/static/css/style.css
vendored
14
fegen/docs/static/css/style.css
vendored
|
|
@ -1,14 +0,0 @@
|
|||
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
fegen/docs/static/xml/label_12.xml
vendored
177
fegen/docs/static/xml/label_12.xml
vendored
|
|
@ -1,177 +0,0 @@
|
|||
<?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
fegen/docs/static/xml/label_18.xml
vendored
518
fegen/docs/static/xml/label_18.xml
vendored
|
|
@ -1,518 +0,0 @@
|
|||
<?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
fegen/docs/static/xml/label_18_flag.xml
vendored
336
fegen/docs/static/xml/label_18_flag.xml
vendored
|
|
@ -1,336 +0,0 @@
|
|||
<?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
fegen/docs/static/xml/label_18_ribbon.xml
vendored
319
fegen/docs/static/xml/label_18_ribbon.xml
vendored
|
|
@ -1,319 +0,0 @@
|
|||
<?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
fegen/docs/static/xml/prop.xml
vendored
22
fegen/docs/static/xml/prop.xml
vendored
|
|
@ -1,22 +0,0 @@
|
|||
<?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>
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
import os, re, shutil
|
||||
from jinja2 import Environment, FileSystemLoader
|
||||
import pandas as pd
|
||||
|
||||
|
||||
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>'
|
||||
)
|
||||
print_button = f'<a href="http://localhost:31337/print/{item_id}"><button id="prn_{item_id}"><i class="fa fa-print"></i> {item_id}</button></a>'
|
||||
return row + [download_button, print_button]
|
||||
|
||||
|
||||
def generate_dashboard():
|
||||
"""Generate dashboard from zasoby.csv file"""
|
||||
print("Generating HTML dashboard")
|
||||
website_folder = "fegen/docs"
|
||||
data = pd.read_csv("zasoby.csv")
|
||||
env = Environment(loader=FileSystemLoader("fegen/template"))
|
||||
print("Removing old website files")
|
||||
print("Creating a new website")
|
||||
shutil.copytree("fegen/template/static", f"{website_folder}/static", dirs_exist_ok=True)
|
||||
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", "print"]
|
||||
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__":
|
||||
from discourse import DiscourseDatabase
|
||||
|
||||
DiscourseDatabase()
|
||||
generate_dashboard()
|
||||
print("Done!")
|
||||
|
|
@ -1,160 +0,0 @@
|
|||
<!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>
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
{% 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>
|
||||
<a href="/refresh"><button id="refresh"><i class="fa fa-arrows-rotate"></i> Refresh</button></a>
|
||||
<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 %}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
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;
|
||||
}
|
||||
|
|
@ -1,177 +0,0 @@
|
|||
<?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>
|
||||
|
|
@ -1,518 +0,0 @@
|
|||
<?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>
|
||||
|
|
@ -1,336 +0,0 @@
|
|||
<?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>
|
||||
|
|
@ -1,319 +0,0 @@
|
|||
<?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>
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
<?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>
|
||||
Binary file not shown.
|
|
@ -5,15 +5,9 @@ from labeler.infra.e550w_printer.printer import E550W
|
|||
from labeler.infra.renderer import PILRenderer
|
||||
|
||||
from fastapi import FastAPI
|
||||
from fastapi.responses import HTMLResponse, RedirectResponse
|
||||
from fastapi.staticfiles import StaticFiles
|
||||
|
||||
from fegen import discourse, main
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
app.mount("/static", StaticFiles(directory="fegen/docs/static"), name="static")
|
||||
|
||||
|
||||
class LabelingBot:
|
||||
def __init__(self, app: Application):
|
||||
|
|
@ -71,11 +65,6 @@ class LabelingBot:
|
|||
# await update.message.reply_text("Cancelled.")
|
||||
# return ConversationHandler.END
|
||||
|
||||
@app.get("/", response_class=HTMLResponse)
|
||||
async def root():
|
||||
with open("fegen/docs/index.html", "rb") as f:
|
||||
index = f.read()
|
||||
return index
|
||||
|
||||
@app.get("/print/{item_id}")
|
||||
def print_item(item_id: int, q: str | None = None):
|
||||
|
|
@ -89,10 +78,3 @@ def print_item(item_id: int, q: str | None = None):
|
|||
with open("label.png", "wb") as preview:
|
||||
preview.write(label.bytes)
|
||||
bot.print_qrcode(item_id, 25)
|
||||
return RedirectResponse(url="/", status_code=302)
|
||||
|
||||
@app.get("/refresh")
|
||||
def refresh():
|
||||
discourse.DiscourseDatabase()
|
||||
main.generate_dashboard()
|
||||
return RedirectResponse(url="/", status_code=302)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ name = "python-scratchpad"
|
|||
version = "0.1.0"
|
||||
description = ""
|
||||
# authors = ["Hubert Bryłkowski <hubert@brylkowski.com>"]
|
||||
readme = "readme.md"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"brother-ql @ git+https://github.com/hbrylkowski/brother_ql@4225d13d209e8e4a2c17e87a75f42809e0da8fda",
|
||||
|
|
@ -16,10 +16,6 @@ dependencies = [
|
|||
"pyasn1==0.4.8,<0.5",
|
||||
"python-telegram-bot>=20.3,<21",
|
||||
"fastapi[standard]>=0.114.0",
|
||||
"requests==2.32.5",
|
||||
"Jinja2==3.1.6",
|
||||
"pandas==2.3.3",
|
||||
"python-dotenv==1.2.1",
|
||||
]
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
|
|
|
|||
188
uv.lock
generated
188
uv.lock
generated
|
|
@ -4,8 +4,7 @@ requires-python = ">=3.11"
|
|||
resolution-markers = [
|
||||
"python_full_version >= '3.14'",
|
||||
"python_full_version == '3.13.*'",
|
||||
"python_full_version == '3.12.*'",
|
||||
"python_full_version < '3.12'",
|
||||
"python_full_version < '3.13'",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -419,145 +418,12 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "numpy"
|
||||
version = "2.4.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/10/8b/c265f4823726ab832de836cdd184d0986dcf94480f81e8739692a7ac7af2/numpy-2.4.3.tar.gz", hash = "sha256:483a201202b73495f00dbc83796c6ae63137a9bdade074f7648b3e32613412dd", size = 20727743, upload-time = "2026-03-09T07:58:53.426Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/f9/51/5093a2df15c4dc19da3f79d1021e891f5dcf1d9d1db6ba38891d5590f3fe/numpy-2.4.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:33b3bf58ee84b172c067f56aeadc7ee9ab6de69c5e800ab5b10295d54c581adb", size = 16957183, upload-time = "2026-03-09T07:55:57.774Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b5/7c/c061f3de0630941073d2598dc271ac2f6cbcf5c83c74a5870fea07488333/numpy-2.4.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ba7b51e71c05aa1f9bc3641463cd82308eab40ce0d5c7e1fd4038cbf9938147", size = 14968734, upload-time = "2026-03-09T07:56:00.494Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ef/27/d26c85cbcd86b26e4f125b0668e7a7c0542d19dd7d23ee12e87b550e95b5/numpy-2.4.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a1988292870c7cb9d0ebb4cc96b4d447513a9644801de54606dc7aabf2b7d920", size = 5475288, upload-time = "2026-03-09T07:56:02.857Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/2b/09/3c4abbc1dcd8010bf1a611d174c7aa689fc505585ec806111b4406f6f1b1/numpy-2.4.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:23b46bb6d8ecb68b58c09944483c135ae5f0e9b8d8858ece5e4ead783771d2a9", size = 6805253, upload-time = "2026-03-09T07:56:04.53Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/21/bc/e7aa3f6817e40c3f517d407742337cbb8e6fc4b83ce0b55ab780c829243b/numpy-2.4.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a016db5c5dba78fa8fe9f5d80d6708f9c42ab087a739803c0ac83a43d686a470", size = 15969479, upload-time = "2026-03-09T07:56:06.638Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/78/51/9f5d7a41f0b51649ddf2f2320595e15e122a40610b233d51928dd6c92353/numpy-2.4.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:715de7f82e192e8cae5a507a347d97ad17598f8e026152ca97233e3666daaa71", size = 16901035, upload-time = "2026-03-09T07:56:09.405Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/64/6e/b221dd847d7181bc5ee4857bfb026182ef69499f9305eb1371cbb1aea626/numpy-2.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2ddb7919366ee468342b91dea2352824c25b55814a987847b6c52003a7c97f15", size = 17325657, upload-time = "2026-03-09T07:56:12.067Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/eb/b8/8f3fd2da596e1063964b758b5e3c970aed1949a05200d7e3d46a9d46d643/numpy-2.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a315e5234d88067f2d97e1f2ef670a7569df445d55400f1e33d117418d008d52", size = 18635512, upload-time = "2026-03-09T07:56:14.629Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/5c/24/2993b775c37e39d2f8ab4125b44337ab0b2ba106c100980b7c274a22bee7/numpy-2.4.3-cp311-cp311-win32.whl", hash = "sha256:2b3f8d2c4589b1a2028d2a770b0fc4d1f332fb5e01521f4de3199a896d158ddd", size = 6238100, upload-time = "2026-03-09T07:56:17.243Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/76/1d/edccf27adedb754db7c4511d5eac8b83f004ae948fe2d3509e8b78097d4c/numpy-2.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:77e76d932c49a75617c6d13464e41203cd410956614d0a0e999b25e9e8d27eec", size = 12609816, upload-time = "2026-03-09T07:56:19.089Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/92/82/190b99153480076c8dce85f4cfe7d53ea84444145ffa54cb58dcd460d66b/numpy-2.4.3-cp311-cp311-win_arm64.whl", hash = "sha256:eb610595dd91560905c132c709412b512135a60f1851ccbd2c959e136431ff67", size = 10485757, upload-time = "2026-03-09T07:56:21.753Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a9/ed/6388632536f9788cea23a3a1b629f25b43eaacd7d7377e5d6bc7b9deb69b/numpy-2.4.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:61b0cbabbb6126c8df63b9a3a0c4b1f44ebca5e12ff6997b80fcf267fb3150ef", size = 16669628, upload-time = "2026-03-09T07:56:24.252Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/74/1b/ee2abfc68e1ce728b2958b6ba831d65c62e1b13ce3017c13943f8f9b5b2e/numpy-2.4.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7395e69ff32526710748f92cd8c9849b361830968ea3e24a676f272653e8983e", size = 14696872, upload-time = "2026-03-09T07:56:26.991Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ba/d1/780400e915ff5638166f11ca9dc2c5815189f3d7cf6f8759a1685e586413/numpy-2.4.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:abdce0f71dcb4a00e4e77f3faf05e4616ceccfe72ccaa07f47ee79cda3b7b0f4", size = 5203489, upload-time = "2026-03-09T07:56:29.414Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/0b/bb/baffa907e9da4cc34a6e556d6d90e032f6d7a75ea47968ea92b4858826c4/numpy-2.4.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:48da3a4ee1336454b07497ff7ec83903efa5505792c4e6d9bf83d99dc07a1e18", size = 6550814, upload-time = "2026-03-09T07:56:32.225Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7b/12/8c9f0c6c95f76aeb20fc4a699c33e9f827fa0d0f857747c73bb7b17af945/numpy-2.4.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:32e3bef222ad6b052280311d1d60db8e259e4947052c3ae7dd6817451fc8a4c5", size = 15666601, upload-time = "2026-03-09T07:56:34.461Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/bd/79/cc665495e4d57d0aa6fbcc0aa57aa82671dfc78fbf95fe733ed86d98f52a/numpy-2.4.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e7dd01a46700b1967487141a66ac1a3cf0dd8ebf1f08db37d46389401512ca97", size = 16621358, upload-time = "2026-03-09T07:56:36.852Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a8/40/b4ecb7224af1065c3539f5ecfff879d090de09608ad1008f02c05c770cb3/numpy-2.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:76f0f283506c28b12bba319c0fab98217e9f9b54e6160e9c79e9f7348ba32e9c", size = 17016135, upload-time = "2026-03-09T07:56:39.337Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f7/b1/6a88e888052eed951afed7a142dcdf3b149a030ca59b4c71eef085858e43/numpy-2.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:737f630a337364665aba3b5a77e56a68cc42d350edd010c345d65a3efa3addcc", size = 18345816, upload-time = "2026-03-09T07:56:42.31Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f3/8f/103a60c5f8c3d7fc678c19cd7b2476110da689ccb80bc18050efbaeae183/numpy-2.4.3-cp312-cp312-win32.whl", hash = "sha256:26952e18d82a1dbbc2f008d402021baa8d6fc8e84347a2072a25e08b46d698b9", size = 5960132, upload-time = "2026-03-09T07:56:44.851Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d7/7c/f5ee1bf6ed888494978046a809df2882aad35d414b622893322df7286879/numpy-2.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:65f3c2455188f09678355f5cae1f959a06b778bc66d535da07bf2ef20cd319d5", size = 12316144, upload-time = "2026-03-09T07:56:47.057Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/71/46/8d1cb3f7a00f2fb6394140e7e6623696e54c6318a9d9691bb4904672cf42/numpy-2.4.3-cp312-cp312-win_arm64.whl", hash = "sha256:2abad5c7fef172b3377502bde47892439bae394a71bc329f31df0fd829b41a9e", size = 10220364, upload-time = "2026-03-09T07:56:49.849Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b6/d0/1fe47a98ce0df229238b77611340aff92d52691bcbc10583303181abf7fc/numpy-2.4.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b346845443716c8e542d54112966383b448f4a3ba5c66409771b8c0889485dd3", size = 16665297, upload-time = "2026-03-09T07:56:52.296Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/27/d9/4e7c3f0e68dfa91f21c6fb6cf839bc829ec920688b1ce7ec722b1a6202fb/numpy-2.4.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2629289168f4897a3c4e23dc98d6f1731f0fc0fe52fb9db19f974041e4cc12b9", size = 14691853, upload-time = "2026-03-09T07:56:54.992Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/3a/66/bd096b13a87549683812b53ab211e6d413497f84e794fb3c39191948da97/numpy-2.4.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:bb2e3cf95854233799013779216c57e153c1ee67a0bf92138acca0e429aefaee", size = 5198435, upload-time = "2026-03-09T07:56:57.184Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a2/2f/687722910b5a5601de2135c891108f51dfc873d8e43c8ed9f4ebb440b4a2/numpy-2.4.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:7f3408ff897f8ab07a07fbe2823d7aee6ff644c097cc1f90382511fe982f647f", size = 6546347, upload-time = "2026-03-09T07:56:59.531Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/bf/ec/7971c4e98d86c564750393fab8d7d83d0a9432a9d78bb8a163a6dc59967a/numpy-2.4.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:decb0eb8a53c3b009b0962378065589685d66b23467ef5dac16cbe818afde27f", size = 15664626, upload-time = "2026-03-09T07:57:01.385Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7e/eb/7daecbea84ec935b7fc732e18f532073064a3816f0932a40a17f3349185f/numpy-2.4.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d5f51900414fc9204a0e0da158ba2ac52b75656e7dce7e77fb9f84bfa343b4cc", size = 16608916, upload-time = "2026-03-09T07:57:04.008Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/df/58/2a2b4a817ffd7472dca4421d9f0776898b364154e30c95f42195041dc03b/numpy-2.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6bd06731541f89cdc01b261ba2c9e037f1543df7472517836b78dfb15bd6e476", size = 17015824, upload-time = "2026-03-09T07:57:06.347Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/4a/ca/627a828d44e78a418c55f82dd4caea8ea4a8ef24e5144d9e71016e52fb40/numpy-2.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:22654fe6be0e5206f553a9250762c653d3698e46686eee53b399ab90da59bd92", size = 18334581, upload-time = "2026-03-09T07:57:09.114Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/cd/c0/76f93962fc79955fcba30a429b62304332345f22d4daec1cb33653425643/numpy-2.4.3-cp313-cp313-win32.whl", hash = "sha256:d71e379452a2f670ccb689ec801b1218cd3983e253105d6e83780967e899d687", size = 5958618, upload-time = "2026-03-09T07:57:11.432Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b1/3c/88af0040119209b9b5cb59485fa48b76f372c73068dbf9254784b975ac53/numpy-2.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:0a60e17a14d640f49146cb38e3f105f571318db7826d9b6fef7e4dce758faecd", size = 12312824, upload-time = "2026-03-09T07:57:13.586Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/58/ce/3d07743aced3d173f877c3ef6a454c2174ba42b584ab0b7e6d99374f51ed/numpy-2.4.3-cp313-cp313-win_arm64.whl", hash = "sha256:c9619741e9da2059cd9c3f206110b97583c7152c1dc9f8aafd4beb450ac1c89d", size = 10221218, upload-time = "2026-03-09T07:57:16.183Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/62/09/d96b02a91d09e9d97862f4fc8bfebf5400f567d8eb1fe4b0cc4795679c15/numpy-2.4.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7aa4e54f6469300ebca1d9eb80acd5253cdfa36f2c03d79a35883687da430875", size = 14819570, upload-time = "2026-03-09T07:57:18.564Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b5/ca/0b1aba3905fdfa3373d523b2b15b19029f4f3031c87f4066bd9d20ef6c6b/numpy-2.4.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d1b90d840b25874cf5cd20c219af10bac3667db3876d9a495609273ebe679070", size = 5326113, upload-time = "2026-03-09T07:57:21.052Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c0/63/406e0fd32fcaeb94180fd6a4c41e55736d676c54346b7efbce548b94a914/numpy-2.4.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a749547700de0a20a6718293396ec237bb38218049cfce788e08fcb716e8cf73", size = 6646370, upload-time = "2026-03-09T07:57:22.804Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b6/d0/10f7dc157d4b37af92720a196be6f54f889e90dcd30dce9dc657ed92c257/numpy-2.4.3-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f3c4a151a2e529adf49c1d54f0f57ff8f9b233ee4d44af623a81553ab86368", size = 15723499, upload-time = "2026-03-09T07:57:24.693Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/66/f1/d1c2bf1161396629701bc284d958dc1efa3a5a542aab83cf11ee6eb4cba5/numpy-2.4.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22c31dc07025123aedf7f2db9e91783df13f1776dc52c6b22c620870dc0fab22", size = 16657164, upload-time = "2026-03-09T07:57:27.676Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1a/be/cca19230b740af199ac47331a21c71e7a3d0ba59661350483c1600d28c37/numpy-2.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:148d59127ac95979d6f07e4d460f934ebdd6eed641db9c0db6c73026f2b2101a", size = 17081544, upload-time = "2026-03-09T07:57:30.664Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b9/c5/9602b0cbb703a0936fb40f8a95407e8171935b15846de2f0776e08af04c7/numpy-2.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a97cbf7e905c435865c2d939af3d93f99d18eaaa3cabe4256f4304fb51604349", size = 18380290, upload-time = "2026-03-09T07:57:33.763Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ed/81/9f24708953cd30be9ee36ec4778f4b112b45165812f2ada4cc5ea1c1f254/numpy-2.4.3-cp313-cp313t-win32.whl", hash = "sha256:be3b8487d725a77acccc9924f65fd8bce9af7fac8c9820df1049424a2115af6c", size = 6082814, upload-time = "2026-03-09T07:57:36.491Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e2/9e/52f6eaa13e1a799f0ab79066c17f7016a4a8ae0c1aefa58c82b4dab690b4/numpy-2.4.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1ec84fd7c8e652b0f4aaaf2e6e9cc8eaa9b1b80a537e06b2e3a2fb176eedcb26", size = 12452673, upload-time = "2026-03-09T07:57:38.281Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c4/04/b8cece6ead0b30c9fbd99bb835ad7ea0112ac5f39f069788c5558e3b1ab2/numpy-2.4.3-cp313-cp313t-win_arm64.whl", hash = "sha256:120df8c0a81ebbf5b9020c91439fccd85f5e018a927a39f624845be194a2be02", size = 10290907, upload-time = "2026-03-09T07:57:40.747Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/70/ae/3936f79adebf8caf81bd7a599b90a561334a658be4dcc7b6329ebf4ee8de/numpy-2.4.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:5884ce5c7acfae1e4e1b6fde43797d10aa506074d25b531b4f54bde33c0c31d4", size = 16664563, upload-time = "2026-03-09T07:57:43.817Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9b/62/760f2b55866b496bb1fa7da2a6db076bef908110e568b02fcfc1422e2a3a/numpy-2.4.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:297837823f5bc572c5f9379b0c9f3a3365f08492cbdc33bcc3af174372ebb168", size = 14702161, upload-time = "2026-03-09T07:57:46.169Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/32/af/a7a39464e2c0a21526fb4fb76e346fb172ebc92f6d1c7a07c2c139cc17b1/numpy-2.4.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:a111698b4a3f8dcbe54c64a7708f049355abd603e619013c346553c1fd4ca90b", size = 5208738, upload-time = "2026-03-09T07:57:48.506Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/29/8c/2a0cf86a59558fa078d83805589c2de490f29ed4fb336c14313a161d358a/numpy-2.4.3-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:4bd4741a6a676770e0e97fe9ab2e51de01183df3dcbcec591d26d331a40de950", size = 6543618, upload-time = "2026-03-09T07:57:50.591Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/aa/b8/612ce010c0728b1c363fa4ea3aa4c22fe1c5da1de008486f8c2f5cb92fae/numpy-2.4.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:54f29b877279d51e210e0c80709ee14ccbbad647810e8f3d375561c45ef613dd", size = 15680676, upload-time = "2026-03-09T07:57:52.34Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a9/7e/4f120ecc54ba26ddf3dc348eeb9eb063f421de65c05fc961941798feea18/numpy-2.4.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:679f2a834bae9020f81534671c56fd0cc76dd7e5182f57131478e23d0dc59e24", size = 16613492, upload-time = "2026-03-09T07:57:54.91Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/2c/86/1b6020db73be330c4b45d5c6ee4295d59cfeef0e3ea323959d053e5a6909/numpy-2.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d84f0f881cb2225c2dfd7f78a10a5645d487a496c6668d6cc39f0f114164f3d0", size = 17031789, upload-time = "2026-03-09T07:57:57.641Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/07/3a/3b90463bf41ebc21d1b7e06079f03070334374208c0f9a1f05e4ae8455e7/numpy-2.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d213c7e6e8d211888cc359bab7199670a00f5b82c0978b9d1c75baf1eddbeac0", size = 18339941, upload-time = "2026-03-09T07:58:00.577Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a8/74/6d736c4cd962259fd8bae9be27363eb4883a2f9069763747347544c2a487/numpy-2.4.3-cp314-cp314-win32.whl", hash = "sha256:52077feedeff7c76ed7c9f1a0428558e50825347b7545bbb8523da2cd55c547a", size = 6007503, upload-time = "2026-03-09T07:58:03.331Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/48/39/c56ef87af669364356bb011922ef0734fc49dad51964568634c72a009488/numpy-2.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:0448e7f9caefb34b4b7dd2b77f21e8906e5d6f0365ad525f9f4f530b13df2afc", size = 12444915, upload-time = "2026-03-09T07:58:06.353Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9d/1f/ab8528e38d295fd349310807496fabb7cf9fe2e1f70b97bc20a483ea9d4a/numpy-2.4.3-cp314-cp314-win_arm64.whl", hash = "sha256:b44fd60341c4d9783039598efadd03617fa28d041fc37d22b62d08f2027fa0e7", size = 10494875, upload-time = "2026-03-09T07:58:08.734Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e6/ef/b7c35e4d5ef141b836658ab21a66d1a573e15b335b1d111d31f26c8ef80f/numpy-2.4.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0a195f4216be9305a73c0e91c9b026a35f2161237cf1c6de9b681637772ea657", size = 14822225, upload-time = "2026-03-09T07:58:11.034Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/cd/8d/7730fa9278cf6648639946cc816e7cc89f0d891602584697923375f801ed/numpy-2.4.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:cd32fbacb9fd1bf041bf8e89e4576b6f00b895f06d00914820ae06a616bdfef7", size = 5328769, upload-time = "2026-03-09T07:58:13.67Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/47/01/d2a137317c958b074d338807c1b6a383406cdf8b8e53b075d804cc3d211d/numpy-2.4.3-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:2e03c05abaee1f672e9d67bc858f300b5ccba1c21397211e8d77d98350972093", size = 6649461, upload-time = "2026-03-09T07:58:15.912Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/5c/34/812ce12bc0f00272a4b0ec0d713cd237cb390666eb6206323d1cc9cedbb2/numpy-2.4.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7d1ce23cce91fcea443320a9d0ece9b9305d4368875bab09538f7a5b4131938a", size = 15725809, upload-time = "2026-03-09T07:58:17.787Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/25/c0/2aed473a4823e905e765fee3dc2cbf504bd3e68ccb1150fbdabd5c39f527/numpy-2.4.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c59020932feb24ed49ffd03704fbab89f22aa9c0d4b180ff45542fe8918f5611", size = 16655242, upload-time = "2026-03-09T07:58:20.476Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f2/c8/7e052b2fc87aa0e86de23f20e2c42bd261c624748aa8efd2c78f7bb8d8c6/numpy-2.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:9684823a78a6cd6ad7511fc5e25b07947d1d5b5e2812c93fe99d7d4195130720", size = 17080660, upload-time = "2026-03-09T07:58:23.067Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f3/3d/0876746044db2adcb11549f214d104f2e1be00f07a67edbb4e2812094847/numpy-2.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0200b25c687033316fb39f0ff4e3e690e8957a2c3c8d22499891ec58c37a3eb5", size = 18380384, upload-time = "2026-03-09T07:58:25.839Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/07/12/8160bea39da3335737b10308df4f484235fd297f556745f13092aa039d3b/numpy-2.4.3-cp314-cp314t-win32.whl", hash = "sha256:5e10da9e93247e554bb1d22f8edc51847ddd7dde52d85ce31024c1b4312bfba0", size = 6154547, upload-time = "2026-03-09T07:58:28.289Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/42/f3/76534f61f80d74cc9cdf2e570d3d4eeb92c2280a27c39b0aaf471eda7b48/numpy-2.4.3-cp314-cp314t-win_amd64.whl", hash = "sha256:45f003dbdffb997a03da2d1d0cb41fbd24a87507fb41605c0420a3db5bd4667b", size = 12633645, upload-time = "2026-03-09T07:58:30.384Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/1f/b6/7c0d4334c15983cec7f92a69e8ce9b1e6f31857e5ee3a413ac424e6bd63d/numpy-2.4.3-cp314-cp314t-win_arm64.whl", hash = "sha256:4d382735cecd7bcf090172489a525cd7d4087bc331f7df9f60ddc9a296cf208e", size = 10565454, upload-time = "2026-03-09T07:58:33.031Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/64/e4/4dab9fb43c83719c29241c535d9e07be73bea4bc0c6686c5816d8e1b6689/numpy-2.4.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c6b124bfcafb9e8d3ed09130dbee44848c20b3e758b6bbf006e641778927c028", size = 16834892, upload-time = "2026-03-09T07:58:35.334Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c9/29/f8b6d4af90fed3dfda84ebc0df06c9833d38880c79ce954e5b661758aa31/numpy-2.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:76dbb9d4e43c16cf9aa711fcd8de1e2eeb27539dcefb60a1d5e9f12fae1d1ed8", size = 14893070, upload-time = "2026-03-09T07:58:37.7Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9a/04/a19b3c91dbec0a49269407f15d5753673a09832daed40c45e8150e6fa558/numpy-2.4.3-pp311-pypy311_pp73-macosx_14_0_arm64.whl", hash = "sha256:29363fbfa6f8ee855d7569c96ce524845e3d726d6c19b29eceec7dd555dab152", size = 5399609, upload-time = "2026-03-09T07:58:39.853Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/79/34/4d73603f5420eab89ea8a67097b31364bf7c30f811d4dd84b1659c7476d9/numpy-2.4.3-pp311-pypy311_pp73-macosx_14_0_x86_64.whl", hash = "sha256:bc71942c789ef415a37f0d4eab90341425a00d538cd0642445d30b41023d3395", size = 6714355, upload-time = "2026-03-09T07:58:42.365Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/58/ad/1100d7229bb248394939a12a8074d485b655e8ed44207d328fdd7fcebc7b/numpy-2.4.3-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e58765ad74dcebd3ef0208a5078fba32dc8ec3578fe84a604432950cd043d79", size = 15800434, upload-time = "2026-03-09T07:58:44.837Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/0c/fd/16d710c085d28ba4feaf29ac60c936c9d662e390344f94a6beaa2ac9899b/numpy-2.4.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e236dbda4e1d319d681afcbb136c0c4a8e0f1a5c58ceec2adebb547357fe857", size = 16729409, upload-time = "2026-03-09T07:58:47.972Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/57/a7/b35835e278c18b85206834b3aa3abe68e77a98769c59233d1f6300284781/numpy-2.4.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:4b42639cdde6d24e732ff823a3fa5b701d8acad89c4142bc1d0bd6dc85200ba5", size = 12504685, upload-time = "2026-03-09T07:58:50.525Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "packbits"
|
||||
version = "0.6"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/1b/23/78a967c9b9961258da2bf0d0a63bf12293ccddf96ec77361ee7b44f543f1/packbits-0.6.tar.gz", hash = "sha256:bc6b370bb34e04ac8cfa835e06c0484380affc6d593adb8009dd6c0f7bfff034", size = 2167, upload-time = "2013-04-06T08:22:59.65Z" }
|
||||
|
||||
[[package]]
|
||||
name = "pandas"
|
||||
version = "2.3.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "numpy" },
|
||||
{ name = "python-dateutil" },
|
||||
{ name = "pytz" },
|
||||
{ name = "tzdata" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/c1/fa/7ac648108144a095b4fb6aa3de1954689f7af60a14cf25583f4960ecb878/pandas-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:602b8615ebcc4a0c1751e71840428ddebeb142ec02c786e8ad6b1ce3c8dec523", size = 11578790, upload-time = "2025-09-29T23:18:30.065Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9b/35/74442388c6cf008882d4d4bdfc4109be87e9b8b7ccd097ad1e7f006e2e95/pandas-2.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8fe25fc7b623b0ef6b5009149627e34d2a4657e880948ec3c840e9402e5c1b45", size = 10833831, upload-time = "2025-09-29T23:38:56.071Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/fe/e4/de154cbfeee13383ad58d23017da99390b91d73f8c11856f2095e813201b/pandas-2.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b468d3dad6ff947df92dcb32ede5b7bd41a9b3cceef0a30ed925f6d01fb8fa66", size = 12199267, upload-time = "2025-09-29T23:18:41.627Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/bf/c9/63f8d545568d9ab91476b1818b4741f521646cbdd151c6efebf40d6de6f7/pandas-2.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b98560e98cb334799c0b07ca7967ac361a47326e9b4e5a7dfb5ab2b1c9d35a1b", size = 12789281, upload-time = "2025-09-29T23:18:56.834Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f2/00/a5ac8c7a0e67fd1a6059e40aa08fa1c52cc00709077d2300e210c3ce0322/pandas-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37b5848ba49824e5c30bedb9c830ab9b7751fd049bc7914533e01c65f79791", size = 13240453, upload-time = "2025-09-29T23:19:09.247Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/27/4d/5c23a5bc7bd209231618dd9e606ce076272c9bc4f12023a70e03a86b4067/pandas-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db4301b2d1f926ae677a751eb2bd0e8c5f5319c9cb3f88b0becbbb0b07b34151", size = 13890361, upload-time = "2025-09-29T23:19:25.342Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/8e/59/712db1d7040520de7a4965df15b774348980e6df45c129b8c64d0dbe74ef/pandas-2.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:f086f6fe114e19d92014a1966f43a3e62285109afe874f067f5abbdcbb10e59c", size = 11348702, upload-time = "2025-09-29T23:19:38.296Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9c/fb/231d89e8637c808b997d172b18e9d4a4bc7bf31296196c260526055d1ea0/pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53", size = 11597846, upload-time = "2025-09-29T23:19:48.856Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/5c/bd/bf8064d9cfa214294356c2d6702b716d3cf3bb24be59287a6a21e24cae6b/pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35", size = 10729618, upload-time = "2025-09-29T23:39:08.659Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/57/56/cf2dbe1a3f5271370669475ead12ce77c61726ffd19a35546e31aa8edf4e/pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908", size = 11737212, upload-time = "2025-09-29T23:19:59.765Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e5/63/cd7d615331b328e287d8233ba9fdf191a9c2d11b6af0c7a59cfcec23de68/pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89", size = 12362693, upload-time = "2025-09-29T23:20:14.098Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a6/de/8b1895b107277d52f2b42d3a6806e69cfef0d5cf1d0ba343470b9d8e0a04/pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98", size = 12771002, upload-time = "2025-09-29T23:20:26.76Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/87/21/84072af3187a677c5893b170ba2c8fbe450a6ff911234916da889b698220/pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084", size = 13450971, upload-time = "2025-09-29T23:20:41.344Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/86/41/585a168330ff063014880a80d744219dbf1dd7a1c706e75ab3425a987384/pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b", size = 10992722, upload-time = "2025-09-29T23:20:54.139Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713", size = 11544671, upload-time = "2025-09-29T23:21:05.024Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/31/94/72fac03573102779920099bcac1c3b05975c2cb5f01eac609faf34bed1ca/pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8", size = 10680807, upload-time = "2025-09-29T23:21:15.979Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/16/87/9472cf4a487d848476865321de18cc8c920b8cab98453ab79dbbc98db63a/pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d", size = 11709872, upload-time = "2025-09-29T23:21:27.165Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac", size = 12306371, upload-time = "2025-09-29T23:21:40.532Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/33/81/a3afc88fca4aa925804a27d2676d22dcd2031c2ebe08aabd0ae55b9ff282/pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c", size = 12765333, upload-time = "2025-09-29T23:21:55.77Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/8d/0f/b4d4ae743a83742f1153464cf1a8ecfafc3ac59722a0b5c8602310cb7158/pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493", size = 13418120, upload-time = "2025-09-29T23:22:10.109Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee", size = 10993991, upload-time = "2025-09-29T23:25:04.889Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f9/ca/3f8d4f49740799189e1395812f3bf23b5e8fc7c190827d55a610da72ce55/pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5", size = 12048227, upload-time = "2025-09-29T23:22:24.343Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/0e/5a/f43efec3e8c0cc92c4663ccad372dbdff72b60bdb56b2749f04aa1d07d7e/pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21", size = 11411056, upload-time = "2025-09-29T23:22:37.762Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/46/b1/85331edfc591208c9d1a63a06baa67b21d332e63b7a591a5ba42a10bb507/pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78", size = 11645189, upload-time = "2025-09-29T23:22:51.688Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/04/fd/74903979833db8390b73b3a8a7d30d146d710bd32703724dd9083950386f/pandas-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ee15f284898e7b246df8087fc82b87b01686f98ee67d85a17b7ab44143a3a9a0", size = 11540635, upload-time = "2025-09-29T23:25:52.486Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/21/00/266d6b357ad5e6d3ad55093a7e8efc7dd245f5a842b584db9f30b0f0a287/pandas-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1611aedd912e1ff81ff41c745822980c49ce4a7907537be8692c8dbc31924593", size = 10759079, upload-time = "2025-09-29T23:26:33.204Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ca/05/d01ef80a7a3a12b2f8bbf16daba1e17c98a2f039cbc8e2f77a2c5a63d382/pandas-2.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d2cefc361461662ac48810cb14365a365ce864afe85ef1f447ff5a1e99ea81c", size = 11814049, upload-time = "2025-09-29T23:27:15.384Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/15/b2/0e62f78c0c5ba7e3d2c5945a82456f4fac76c480940f805e0b97fcbc2f65/pandas-2.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ee67acbbf05014ea6c763beb097e03cd629961c8a632075eeb34247120abcb4b", size = 12332638, upload-time = "2025-09-29T23:27:51.625Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c5/33/dd70400631b62b9b29c3c93d2feee1d0964dc2bae2e5ad7a6c73a7f25325/pandas-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c46467899aaa4da076d5abc11084634e2d197e9460643dd455ac3db5856b24d6", size = 12886834, upload-time = "2025-09-29T23:28:21.289Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d3/18/b5d48f55821228d0d2692b34fd5034bb185e854bdb592e9c640f6290e012/pandas-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6253c72c6a1d990a410bc7de641d34053364ef8bcd3126f7e7450125887dffe3", size = 13409925, upload-time = "2025-09-29T23:28:58.261Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a6/3d/124ac75fcd0ecc09b8fdccb0246ef65e35b012030defb0e0eba2cbbbe948/pandas-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:1b07204a219b3b7350abaae088f451860223a52cfb8a6c53358e7948735158e5", size = 11109071, upload-time = "2025-09-29T23:32:27.484Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/89/9c/0e21c895c38a157e0faa1fb64587a9226d6dd46452cac4532d80c3c4a244/pandas-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2462b1a365b6109d275250baaae7b760fd25c726aaca0054649286bcfbb3e8ec", size = 12048504, upload-time = "2025-09-29T23:29:31.47Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d7/82/b69a1c95df796858777b68fbe6a81d37443a33319761d7c652ce77797475/pandas-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0242fe9a49aa8b4d78a4fa03acb397a58833ef6199e9aa40a95f027bb3a1b6e7", size = 11410702, upload-time = "2025-09-29T23:29:54.591Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f9/88/702bde3ba0a94b8c73a0181e05144b10f13f29ebfc2150c3a79062a8195d/pandas-2.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a21d830e78df0a515db2b3d2f5570610f5e6bd2e27749770e8bb7b524b89b450", size = 11634535, upload-time = "2025-09-29T23:30:21.003Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a4/1e/1bac1a839d12e6a82ec6cb40cda2edde64a2013a66963293696bbf31fbbb/pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5", size = 12121582, upload-time = "2025-09-29T23:30:43.391Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/44/91/483de934193e12a3b1d6ae7c8645d083ff88dec75f46e827562f1e4b4da6/pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788", size = 12699963, upload-time = "2025-09-29T23:31:10.009Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/70/44/5191d2e4026f86a2a109053e194d3ba7a31a2d10a9c2348368c63ed4e85a/pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87", size = 13202175, upload-time = "2025-09-29T23:31:59.173Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pillow"
|
||||
version = "9.5.0"
|
||||
|
|
@ -697,25 +563,13 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/25/7e/1e17facea54dd21c6a72db6ae57a5bfdd56edd54b8c4850668b554bdddba/pysnmp-4.4.12-py2.py3-none-any.whl", hash = "sha256:d90946c5d7c55b1ddc03e065a99a2ed36e748dcf166ca04ee4126b8f25fc057a", size = 296498, upload-time = "2019-09-24T16:28:57.676Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "python-dateutil"
|
||||
version = "2.9.0.post0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "six" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "python-dotenv"
|
||||
version = "1.2.1"
|
||||
version = "1.2.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/f0/26/19cadc79a718c5edbec86fd4919a6b6d3f681039a2f6d66d14be94e75fb9/python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6", size = 44221, upload-time = "2025-10-26T15:12:10.434Z" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -735,14 +589,11 @@ dependencies = [
|
|||
{ name = "brother-ql" },
|
||||
{ name = "fastapi", extra = ["standard"] },
|
||||
{ name = "jinja2" },
|
||||
{ name = "pandas" },
|
||||
{ name = "pillow" },
|
||||
{ name = "pyasn1" },
|
||||
{ name = "pysnmp" },
|
||||
{ name = "python-dotenv" },
|
||||
{ name = "python-telegram-bot" },
|
||||
{ name = "qrcode", extra = ["pil"] },
|
||||
{ name = "requests" },
|
||||
{ name = "setuptools" },
|
||||
]
|
||||
|
||||
|
|
@ -750,16 +601,12 @@ dependencies = [
|
|||
requires-dist = [
|
||||
{ name = "brother-ql", git = "https://github.com/hbrylkowski/brother_ql?rev=4225d13d209e8e4a2c17e87a75f42809e0da8fda" },
|
||||
{ name = "fastapi", extras = ["standard"], specifier = ">=0.114.0" },
|
||||
{ name = "jinja2", specifier = "==3.1.6" },
|
||||
{ name = "jinja2", specifier = ">=3.1.2,<4" },
|
||||
{ name = "pandas", specifier = "==2.3.3" },
|
||||
{ name = "pillow", specifier = ">=9.5.0,<10" },
|
||||
{ name = "pyasn1", specifier = "==0.4.8,<0.5" },
|
||||
{ name = "pysnmp", specifier = ">=4.4.12,<5" },
|
||||
{ name = "python-dotenv", specifier = "==1.2.1" },
|
||||
{ name = "python-telegram-bot", specifier = ">=20.3,<21" },
|
||||
{ name = "qrcode", extras = ["pil"] },
|
||||
{ name = "requests", specifier = "==2.32.5" },
|
||||
{ name = "setuptools", specifier = "<81" },
|
||||
]
|
||||
|
||||
|
|
@ -775,15 +622,6 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/6f/8e/4e4ed06986557fce0c41c3dfc60c5495b1095cf8a552bdc4c56e96aefdac/python_telegram_bot-20.8-py3-none-any.whl", hash = "sha256:a98ddf2f237d6584b03a2f8b20553e1b5e02c8d3a1ea8e17fd06cc955af78c14", size = 604866, upload-time = "2024-02-08T17:39:12.202Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pytz"
|
||||
version = "2026.1.post1"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/56/db/b8721d71d945e6a8ac63c0fc900b2067181dbb50805958d4d4661cf7d277/pytz-2026.1.post1.tar.gz", hash = "sha256:3378dde6a0c3d26719182142c56e60c7f9af7e968076f31aae569d72a0358ee1", size = 321088, upload-time = "2026-03-03T07:47:50.683Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pyusb"
|
||||
version = "1.3.1"
|
||||
|
|
@ -925,15 +763,6 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "six"
|
||||
version = "1.17.0"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sniffio"
|
||||
version = "1.3.1"
|
||||
|
|
@ -979,15 +808,6 @@ wheels = [
|
|||
{ url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tzdata"
|
||||
version = "2025.3"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/c202b344c5ca7daf398f3b8a477eeb205cf3b6f32e7ec3a6bac0629ca975/tzdata-2025.3.tar.gz", hash = "sha256:de39c2ca5dc7b0344f2eba86f49d614019d29f060fc4ebc8a417896a620b56a7", size = 196772, upload-time = "2025-12-13T17:45:35.667Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/c7/b0/003792df09decd6849a5e39c28b513c06e84436a54440380862b5aeff25d/tzdata-2025.3-py2.py3-none-any.whl", hash = "sha256:06a47e5700f3081aab02b2e513160914ff0694bce9947d6b76ebd6bf57cfc5d1", size = 348521, upload-time = "2025-12-13T17:45:33.889Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "urllib3"
|
||||
version = "2.6.3"
|
||||
|
|
|
|||
461
zasoby.csv
461
zasoby.csv
|
|
@ -1,461 +0,0 @@
|
|||
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,[]
|
||||
747,"<a href=""https://kb.hs3.pl/t/747"">Gra handheld ""Crazy Brick""</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'video-game']"
|
||||
745,"<a href=""https://kb.hs3.pl/t/745"">Statyw na aparat</a>",unknown,[]
|
||||
735,"<a href=""https://kb.hs3.pl/t/735"">STD17NF03L</a>",unknown,[]
|
||||
734,"<a href=""https://kb.hs3.pl/t/734"">Szuflada z procesorami STM32</a>","<a href=""https://kb.hs3.pl/tag/lab"">lab</a>",['lab']
|
||||
732,"<a href=""https://kb.hs3.pl/t/732"">Eksplodujące pudełko HS3</a>","<a href=""https://kb.hs3.pl/tag/cow-work"">cow-work</a>","['cow-work', 'projects']"
|
||||
731,"<a href=""https://kb.hs3.pl/t/731"">STM32F723</a>",unknown,[]
|
||||
730,"<a href=""https://kb.hs3.pl/t/730"">NUCLEO G431RB</a>",unknown,[]
|
||||
729,"<a href=""https://kb.hs3.pl/t/729"">Nucleo Expansion Board Led Driver</a>",unknown,[]
|
||||
728,"<a href=""https://kb.hs3.pl/t/728"">Nucleo Expansion Board MultiSensor</a>",unknown,[]
|
||||
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']
|
||||
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']
|
||||
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']
|
||||
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']
|
||||
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']
|
||||
530,"<a href=""https://kb.hs3.pl/t/530"">Discman SONY</a>","<a href=""https://kb.hs3.pl/tag/audiolab"">audiolab</a>",['audiolab']
|
||||
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']
|
||||
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']"
|
||||
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']
|
||||
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']
|
||||
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']"
|
||||
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']"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue