Compare commits

...

9 Commits

Author SHA1 Message Date
674f035ae4 Merge pull request 'origin/main' (#1) from origin/main into main
Reviewed-on: #1
2025-11-12 15:49:51 +01:00
Francesco Albano
a1b64abea7 Merge branch 'main' into origin/main 2025-11-12 22:41:20 +08:00
Francesco Albano
a2f430a2bf Add proxy configuration for API requests to local server 2025-11-12 22:40:12 +08:00
itskovacs
5700ae5853 🔖 Version bump 2025-11-11 19:31:48 +01:00
itskovacs
d364052b4d 💄 On attachment delete: update plans 2025-11-11 19:31:19 +01:00
itskovacs
f166ccc795 📝 Update docs with new indications and tips 2025-11-11 19:30:55 +01:00
itskovacs
92a97edd3c 🐛 Fix mixed UTC logic 2025-11-11 19:29:11 +01:00
itskovacs
d6a5d65d88 🎨 prettier 2025-11-11 19:28:49 +01:00
itskovacs
e8c9fe86f2 :fix: Delete created files on failed import 2025-11-11 18:23:06 +01:00
93 changed files with 411 additions and 387 deletions

2
backend/.gitignore vendored
View File

@ -1,3 +1 @@
/.venv/ /.venv/
**/__pycache__/

View File

@ -1 +1 @@
__version__ = "1.27.1" __version__ = "1.28.0"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -19,7 +19,7 @@ from ..models.models import (Backup, BackupStatus, Category, CategoryRead,
TripRead, User, UserRead) TripRead, User, UserRead)
from .date import dt_utc, iso_to_dt from .date import dt_utc, iso_to_dt
from .utils import (assets_folder_path, attachments_trip_folder_path, from .utils import (assets_folder_path, attachments_trip_folder_path,
b64img_decode, save_image_to_file) b64img_decode, remove_image, save_image_to_file)
def process_backup_export(session: SessionDep, backup_id: int): def process_backup_export(session: SessionDep, backup_id: int):
@ -147,7 +147,6 @@ async def process_backup_import(
except Exception: except Exception:
raise HTTPException(status_code=400, detail="Invalid file") raise HTTPException(status_code=400, detail="Invalid file")
try:
with ZipFile(io.BytesIO(zip_content), "r") as zipf: with ZipFile(io.BytesIO(zip_content), "r") as zipf:
zip_filenames = zipf.namelist() zip_filenames = zipf.namelist()
if "data.json" not in zip_filenames: if "data.json" not in zip_filenames:
@ -170,6 +169,9 @@ async def process_backup_import(
if path.startswith("attachments/") and not path.endswith("/") if path.startswith("attachments/") and not path.endswith("/")
} }
error_details = "Bad request"
created_image_filenames = []
created_attachment_trips = []
try: try:
existing_categories = { existing_categories = {
category.name: category category.name: category
@ -196,6 +198,7 @@ async def process_backup_import(
session.add(image) session.add(image)
session.flush() session.flush()
session.refresh(image) session.refresh(image)
created_image_filenames.append(filename)
if category_exists.image_id: if category_exists.image_id:
old_image = session.get(Image, category_exists.image_id) old_image = session.get(Image, category_exists.image_id)
@ -213,9 +216,7 @@ async def process_backup_import(
continue continue
new_category = { new_category = {
key: category[key] key: category[key] for key in category.keys() if key not in {"id", "image", "image_id"}
for key in category.keys()
if key not in {"id", "image", "image_id"}
} }
new_category["user"] = current_user new_category["user"] = current_user
@ -230,6 +231,7 @@ async def process_backup_import(
session.add(image) session.add(image)
session.flush() session.flush()
session.refresh(image) session.refresh(image)
created_image_filenames.append(filename)
new_category["image_id"] = image.id new_category["image_id"] = image.id
except Exception: except Exception:
pass pass
@ -270,6 +272,7 @@ async def process_backup_import(
session.add(image) session.add(image)
session.flush() session.flush()
session.refresh(image) session.refresh(image)
created_image_filenames.append(filename)
new_place["image_id"] = image.id new_place["image_id"] = image.id
except Exception: except Exception:
pass pass
@ -341,6 +344,7 @@ async def process_backup_import(
session.add(image) session.add(image)
session.flush() session.flush()
session.refresh(image) session.refresh(image)
created_image_filenames.append(filename)
new_trip["image_id"] = image.id new_trip["image_id"] = image.id
except Exception: except Exception:
pass pass
@ -372,13 +376,14 @@ async def process_backup_import(
new_attachment = { new_attachment = {
key: attachment[key] key: attachment[key]
for key in attachment for key in attachment
if key not in {"id", "trip_id", "trip"} if key not in {"id", "trip_id", "trip", "uploaded_by"}
} }
new_attachment["trip_id"] = new_trip.id new_attachment["trip_id"] = new_trip.id
new_attachment["user"] = current_user new_attachment["uploaded_by"] = current_user
new_attachment_obj = TripAttachment(**new_attachment) new_attachment_obj = TripAttachment(**new_attachment)
attachment_path = attachments_trip_folder_path(new_trip.id) / stored_filename attachment_path = attachments_trip_folder_path(new_trip.id) / stored_filename
created_attachment_trips.append(new_trip.id)
attachment_path.write_bytes(attachment_bytes) attachment_path.write_bytes(attachment_bytes)
session.add(new_attachment_obj) session.add(new_attachment_obj)
session.flush() session.flush()
@ -397,13 +402,19 @@ async def process_backup_import(
session.flush() session.flush()
for item in day.get("items", []): for item in day.get("items", []):
if item.get("paid_by"):
u = item.get("paid_by")
db_user = session.get(User, u)
if not db_user:
error_details = f"User <{u}> does not exist and is specified in Paid By"
raise
item_data = { item_data = {
key: item[key] key: item[key]
for key in item for key in item
if key not in {"id", "place", "place_id", "image", "image_id", "attachments"} if key not in {"id", "place", "place_id", "image", "image_id", "attachments"}
} }
item_data["day_id"] = new_day.id item_data["day_id"] = new_day.id
item_data["user"] = current_user
place = item.get("place") place = item.get("place")
if place and (place_id := place.get("id")): if place and (place_id := place.get("id")):
@ -421,6 +432,7 @@ async def process_backup_import(
session.add(image) session.add(image)
session.flush() session.flush()
session.refresh(image) session.refresh(image)
created_image_filenames.append(filename)
item_data["image_id"] = image.id item_data["image_id"] = image.id
except Exception: except Exception:
pass pass
@ -482,14 +494,21 @@ async def process_backup_import(
"settings": UserRead.serialize(session.get(User, current_user)), "settings": UserRead.serialize(session.get(User, current_user)),
} }
except Exception as exc: except Exception:
session.rollback() session.rollback()
print(exc) for filename in created_image_filenames:
raise HTTPException(status_code=400, detail="Bad request") remove_image(filename)
for trip_id in created_attachment_trips:
except Exception as exc: try:
print(exc) folder = attachments_trip_folder_path(trip_id)
raise HTTPException(status_code=400, detail="Bad request") if not folder.exists():
return
for file in folder.iterdir():
file.unlink()
folder.rmdir()
except Exception:
pass
raise HTTPException(status_code=400, detail=error_details)
async def process_legacy_import( async def process_legacy_import(

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Page Not Found | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/404.html"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docusaurus_tag" content="default"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docsearch:docusaurus_tag" content="default"><meta data-rh="true" property="og:title" content="Page Not Found | TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/404.html"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/404.html" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/404.html" hreflang="x-default"><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Page Not Found | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/404.html"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docusaurus_tag" content="default"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docsearch:docusaurus_tag" content="default"><meta data-rh="true" property="og:title" content="Page Not Found | TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/404.html"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/404.html" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/404.html" hreflang="x-default"><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -0,0 +1 @@
"use strict";(globalThis.webpackChunktripdocs=globalThis.webpackChunktripdocs||[]).push([[972],{2541:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>p,contentTitle:()=>c,default:()=>d,frontMatter:()=>a,metadata:()=>r,toc:()=>o});const r=JSON.parse('{"id":"trips-planner/trip-places","title":"Trip - Places","description":"A trip can reference places","source":"@site/docs/trips-planner/trip-places.md","sourceDirName":"trips-planner","slug":"/trips-planner/trip-places","permalink":"/trip/docs/trips-planner/trip-places","draft":false,"unlisted":false,"tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"sidebar_position":5,"description":"A trip can reference places"},"sidebar":"docSidebar","previous":{"title":"Trip - Concepts","permalink":"/trip/docs/trips-planner/trip-concepts"},"next":{"title":"Trip - Map","permalink":"/trip/docs/trips-planner/trip-map"}}');var i=n(4848),s=n(8453);const a={sidebar_position:5,description:"A trip can reference places"},c="Trip - Places",p={},o=[];function l(e){const t={admonition:"admonition",em:"em",h1:"h1",header:"header",p:"p",...(0,s.R)(),...e.components};return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(t.header,{children:(0,i.jsx)(t.h1,{id:"trip---places",children:"Trip - Places"})}),"\n",(0,i.jsx)(t.admonition,{title:"TL;DR",type:"note",children:(0,i.jsx)(t.p,{children:"A trip can reference places. Manage the associated places and create new ones from the trip interface"})}),"\n",(0,i.jsx)(t.p,{children:"A trip can reference\xa0your places\xa0or those of other members, to associate them to the plans."}),"\n",(0,i.jsx)(t.admonition,{title:"important",type:"info",children:(0,i.jsx)(t.p,{children:"Creating a place from a trip is a shortcut, the place itself is not owned by the trip."})}),"\n",(0,i.jsx)(t.admonition,{type:"tip",children:(0,i.jsx)(t.p,{children:"The \u2705 icon next to the place's category indicates that the place is used in the plans."})}),"\n",(0,i.jsxs)(t.p,{children:["The list of references places is in the dedicated ",(0,i.jsx)(t.em,{children:"Places"})," panel."]}),"\n",(0,i.jsx)("img",{src:"/trip/img/trip_places.png",alt:"Trip - Places"}),"\n",(0,i.jsx)("div",{style:{textAlign:"center"},children:(0,i.jsx)("sup",{children:"Trip - Places"})}),"\n",(0,i.jsx)(t.p,{children:"To reference places to your trip, you can either manage the associated places or directly create new ones from the trip interface."}),"\n",(0,i.jsx)("img",{src:"/trip/img/trip_places_manage.png",alt:"Trip - Manage or Create Places"}),"\n",(0,i.jsx)("div",{style:{textAlign:"center"},children:(0,i.jsx)("sup",{children:"Trip - Manage or Create Places"})}),"\n",(0,i.jsx)(t.p,{children:"Hovering over a place highlights it on the map."}),"\n",(0,i.jsx)("img",{src:"/trip/img/trip_place_highlight.png",alt:"Trip - Highlight place on hover"}),"\n",(0,i.jsx)("div",{style:{textAlign:"center"},children:(0,i.jsx)("sup",{children:"Trip - Highlight place on hover"})})]})}function d(e={}){const{wrapper:t}={...(0,s.R)(),...e.components};return t?(0,i.jsx)(t,{...e,children:(0,i.jsx)(l,{...e})}):l(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>a,x:()=>c});var r=n(6540);const i={},s=r.createContext(i);function a(e){const t=r.useContext(s);return r.useMemo(function(){return"function"==typeof e?e(t):{...t,...e}},[t,e])}function c(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:a(e.components),r.createElement(s.Provider,{value:t},e.children)}}}]);

View File

@ -1 +0,0 @@
"use strict";(globalThis.webpackChunktripdocs=globalThis.webpackChunktripdocs||[]).push([[972],{2541:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>c,contentTitle:()=>a,default:()=>d,frontMatter:()=>p,metadata:()=>r,toc:()=>o});const r=JSON.parse('{"id":"trips-planner/trip-places","title":"Trip - Places","description":"A trip can reference places","source":"@site/docs/trips-planner/trip-places.md","sourceDirName":"trips-planner","slug":"/trips-planner/trip-places","permalink":"/trip/docs/trips-planner/trip-places","draft":false,"unlisted":false,"tags":[],"version":"current","sidebarPosition":5,"frontMatter":{"sidebar_position":5,"description":"A trip can reference places"},"sidebar":"docSidebar","previous":{"title":"Trip - Concepts","permalink":"/trip/docs/trips-planner/trip-concepts"},"next":{"title":"Trip - Map","permalink":"/trip/docs/trips-planner/trip-map"}}');var i=n(4848),s=n(8453);const p={sidebar_position:5,description:"A trip can reference places"},a="Trip - Places",c={},o=[];function l(e){const t={admonition:"admonition",h1:"h1",header:"header",p:"p",...(0,s.R)(),...e.components};return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(t.header,{children:(0,i.jsx)(t.h1,{id:"trip---places",children:"Trip - Places"})}),"\n",(0,i.jsx)(t.admonition,{title:"TL;DR",type:"note",children:(0,i.jsx)(t.p,{children:"A trip can reference places. Manage the associated places and create new ones from the trip interface"})}),"\n",(0,i.jsx)(t.p,{children:"A trip can reference\xa0your places\xa0or those of other members, to associate them to the plans."}),"\n",(0,i.jsx)(t.p,{children:"To add places to your trip, you can either manage the associated places or directly create new ones from the trip interface."}),"\n",(0,i.jsx)(t.admonition,{title:"important",type:"info",children:(0,i.jsx)(t.p,{children:"Creating a place from a trip is a shortcut, the place itself is not owned by the trip."})}),"\n",(0,i.jsx)("img",{src:"/trip/img/trip_places.png",alt:"Trip - Places"}),"\n",(0,i.jsx)("div",{style:{textAlign:"center"},children:(0,i.jsx)("sup",{children:"Trip - Places"})}),"\n",(0,i.jsx)(t.admonition,{type:"tip",children:(0,i.jsx)(t.p,{children:"The \u2705 icon next to the place's category indicates that the place is used in the plans."})}),"\n",(0,i.jsx)(t.p,{children:"Hovering over a place highlights it on the map."}),"\n",(0,i.jsx)("img",{src:"/trip/img/trip_place_highlight.png",alt:"Trip - Highlight place on hover"}),"\n",(0,i.jsx)("div",{style:{textAlign:"center"},children:(0,i.jsx)("sup",{children:"Trip - Highlight place on hover"})})]})}function d(e={}){const{wrapper:t}={...(0,s.R)(),...e.components};return t?(0,i.jsx)(t,{...e,children:(0,i.jsx)(l,{...e})}):l(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>p,x:()=>a});var r=n(6540);const i={},s=r.createContext(i);function p(e){const t=r.useContext(s);return r.useMemo(function(){return"function"==typeof e?e(t):{...t,...e}},[t,e])}function a(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:p(e.components),r.createElement(s.Provider,{value:t},e.children)}}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Getting Started | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/getting-started"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Getting Started | TRIP"><meta data-rh="true" name="description" content="Set up and configure TRIP"><meta data-rh="true" property="og:description" content="Set up and configure TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/getting-started"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/getting-started" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/getting-started" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Getting Started","item":"https://itskovacs.github.io/trip/docs/category/getting-started"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Getting Started | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/getting-started"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Getting Started | TRIP"><meta data-rh="true" name="description" content="Set up and configure TRIP"><meta data-rh="true" property="og:description" content="Set up and configure TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/getting-started"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/getting-started" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/getting-started" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Getting Started","item":"https://itskovacs.github.io/trip/docs/category/getting-started"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Map Tracker | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/map-tracker"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Map Tracker | TRIP"><meta data-rh="true" name="description" content="Documentation focused on the Points Of Interest"><meta data-rh="true" property="og:description" content="Documentation focused on the Points Of Interest"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/map-tracker"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/map-tracker" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/map-tracker" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Map Tracker | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/map-tracker"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Map Tracker | TRIP"><meta data-rh="true" name="description" content="Documentation focused on the Points Of Interest"><meta data-rh="true" property="og:description" content="Documentation focused on the Points Of Interest"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/map-tracker"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/map-tracker" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/map-tracker" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Miscelaneous | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/miscelaneous"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Miscelaneous | TRIP"><meta data-rh="true" name="description" content="Additional resources"><meta data-rh="true" property="og:description" content="Additional resources"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/miscelaneous"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/miscelaneous" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/miscelaneous" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Miscelaneous","item":"https://itskovacs.github.io/trip/docs/category/miscelaneous"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Miscelaneous | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/miscelaneous"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Miscelaneous | TRIP"><meta data-rh="true" name="description" content="Additional resources"><meta data-rh="true" property="og:description" content="Additional resources"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/miscelaneous"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/miscelaneous" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/miscelaneous" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Miscelaneous","item":"https://itskovacs.github.io/trip/docs/category/miscelaneous"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trips Planner | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/trips-planner"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trips Planner | TRIP"><meta data-rh="true" name="description" content="Documentation focused on the Trip part"><meta data-rh="true" property="og:description" content="Documentation focused on the Trip part"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/trips-planner"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/trips-planner" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/trips-planner" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trips Planner | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/category/trips-planner"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trips Planner | TRIP"><meta data-rh="true" name="description" content="Documentation focused on the Trip part"><meta data-rh="true" property="og:description" content="Documentation focused on the Trip part"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/category/trips-planner"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/trips-planner" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/category/trips-planner" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Contributing | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/contributing"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Contributing | TRIP"><meta data-rh="true" name="description" content="Contributions are welcome! Open an issue to report bugs, start a discussion to share ideas or submit a pull request for new features."><meta data-rh="true" property="og:description" content="Contributions are welcome! Open an issue to report bugs, start a discussion to share ideas or submit a pull request for new features."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/contributing"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/contributing" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/contributing" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Contributing","item":"https://itskovacs.github.io/trip/docs/contributing"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Contributing | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/contributing"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Contributing | TRIP"><meta data-rh="true" name="description" content="Contributions are welcome! Open an issue to report bugs, start a discussion to share ideas or submit a pull request for new features."><meta data-rh="true" property="og:description" content="Contributions are welcome! Open an issue to report bugs, start a discussion to share ideas or submit a pull request for new features."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/contributing"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/contributing" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/contributing" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Contributing","item":"https://itskovacs.github.io/trip/docs/contributing"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Configuration | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/getting-started/configuration"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Configuration | TRIP"><meta data-rh="true" name="description" content="Configure TRIP"><meta data-rh="true" property="og:description" content="Configure TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/getting-started/configuration"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/configuration" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/configuration" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Getting Started","item":"https://itskovacs.github.io/trip/docs/category/getting-started"},{"@type":"ListItem","position":2,"name":"Configuration","item":"https://itskovacs.github.io/trip/docs/getting-started/configuration"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Configuration | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/getting-started/configuration"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Configuration | TRIP"><meta data-rh="true" name="description" content="Configure TRIP"><meta data-rh="true" property="og:description" content="Configure TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/getting-started/configuration"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/configuration" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/configuration" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Getting Started","item":"https://itskovacs.github.io/trip/docs/category/getting-started"},{"@type":"ListItem","position":2,"name":"Configuration","item":"https://itskovacs.github.io/trip/docs/getting-started/configuration"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Deployment | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/getting-started/deploy"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Deployment | TRIP"><meta data-rh="true" name="description" content="Deploy TRIP"><meta data-rh="true" property="og:description" content="Deploy TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/getting-started/deploy"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/deploy" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/deploy" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Getting Started","item":"https://itskovacs.github.io/trip/docs/category/getting-started"},{"@type":"ListItem","position":2,"name":"Deployment","item":"https://itskovacs.github.io/trip/docs/getting-started/deploy"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Deployment | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/getting-started/deploy"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Deployment | TRIP"><meta data-rh="true" name="description" content="Deploy TRIP"><meta data-rh="true" property="og:description" content="Deploy TRIP"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/getting-started/deploy"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/deploy" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/getting-started/deploy" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Getting Started","item":"https://itskovacs.github.io/trip/docs/category/getting-started"},{"@type":"ListItem","position":2,"name":"Deployment","item":"https://itskovacs.github.io/trip/docs/getting-started/deploy"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Introduction | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/intro"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Introduction | TRIP"><meta data-rh="true" name="description" content="TRIP is a self-hostable minimalist Map tracker and Trips planner to visualize your points of interest (POI) and organize your next adventure details."><meta data-rh="true" property="og:description" content="TRIP is a self-hostable minimalist Map tracker and Trips planner to visualize your points of interest (POI) and organize your next adventure details."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/intro"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/intro" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/intro" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Introduction","item":"https://itskovacs.github.io/trip/docs/intro"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Introduction | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/intro"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Introduction | TRIP"><meta data-rh="true" name="description" content="TRIP is a self-hostable minimalist Map tracker and Trips planner to visualize your points of interest (POI) and organize your next adventure details."><meta data-rh="true" property="og:description" content="TRIP is a self-hostable minimalist Map tracker and Trips planner to visualize your points of interest (POI) and organize your next adventure details."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/intro"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/intro" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/intro" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Introduction","item":"https://itskovacs.github.io/trip/docs/intro"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Introduction | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/introduction"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Introduction | TRIP"><meta data-rh="true" name="description" content="Introduction to Map"><meta data-rh="true" property="og:description" content="Introduction to Map"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/introduction"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/introduction" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/introduction" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Introduction","item":"https://itskovacs.github.io/trip/docs/map-tracker/introduction"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Introduction | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/introduction"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Introduction | TRIP"><meta data-rh="true" name="description" content="Introduction to Map"><meta data-rh="true" property="og:description" content="Introduction to Map"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/introduction"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/introduction" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/introduction" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Introduction","item":"https://itskovacs.github.io/trip/docs/map-tracker/introduction"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Map - Filtering | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Map - Filtering | TRIP"><meta data-rh="true" name="description" content="Filtering the Places on the Map"><meta data-rh="true" property="og:description" content="Filtering the Places on the Map"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Map - Filtering","item":"https://itskovacs.github.io/trip/docs/map-tracker/map-filtering"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Map - Filtering | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Map - Filtering | TRIP"><meta data-rh="true" name="description" content="Filtering the Places on the Map"><meta data-rh="true" property="og:description" content="Filtering the Places on the Map"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-filtering" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Map - Filtering","item":"https://itskovacs.github.io/trip/docs/map-tracker/map-filtering"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Map - Panel | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/map-panel"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Map - Panel | TRIP"><meta data-rh="true" name="description" content="Displaying the Places panel"><meta data-rh="true" property="og:description" content="Displaying the Places panel"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/map-panel"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-panel" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-panel" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Map - Panel","item":"https://itskovacs.github.io/trip/docs/map-tracker/map-panel"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Map - Panel | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/map-panel"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Map - Panel | TRIP"><meta data-rh="true" name="description" content="Displaying the Places panel"><meta data-rh="true" property="og:description" content="Displaying the Places panel"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/map-panel"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-panel" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/map-panel" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Map - Panel","item":"https://itskovacs.github.io/trip/docs/map-tracker/map-panel"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Places - Creation | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/places-creation"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Places - Creation | TRIP"><meta data-rh="true" name="description" content="Creating a Place using the Place creation modal"><meta data-rh="true" property="og:description" content="Creating a Place using the Place creation modal"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/places-creation"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places-creation" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places-creation" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Places - Creation","item":"https://itskovacs.github.io/trip/docs/map-tracker/places-creation"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Places - Creation | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/places-creation"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Places - Creation | TRIP"><meta data-rh="true" name="description" content="Creating a Place using the Place creation modal"><meta data-rh="true" property="og:description" content="Creating a Place using the Place creation modal"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/places-creation"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places-creation" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places-creation" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Places - Creation","item":"https://itskovacs.github.io/trip/docs/map-tracker/places-creation"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">
@ -33,6 +33,7 @@
</ul> </ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="gmaps-api-autocompletion">GMaps API autocompletion<a href="#gmaps-api-autocompletion" class="hash-link" aria-label="Direct link to GMaps API autocompletion" title="Direct link to GMaps API autocompletion" translate="no"></a></h3> <h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="gmaps-api-autocompletion">GMaps API autocompletion<a href="#gmaps-api-autocompletion" class="hash-link" aria-label="Direct link to GMaps API autocompletion" title="Direct link to GMaps API autocompletion" translate="no"></a></h3>
<div class="theme-admonition theme-admonition-warning admonition_xJq3 alert alert--warning"><div class="admonitionHeading_Gvgb"><span class="admonitionIcon_Rf37"><svg viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 0 0 0 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 0 0 .01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"></path></svg></span>warning</div><div class="admonitionContent_BuS1"><p>You must add your <em>Google API Key</em> in your <a class="" href="/trip/docs/map-tracker/settings">settings</a>.</p></div></div> <div class="theme-admonition theme-admonition-warning admonition_xJq3 alert alert--warning"><div class="admonitionHeading_Gvgb"><span class="admonitionIcon_Rf37"><svg viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 0 0 0 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 0 0 .01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"></path></svg></span>warning</div><div class="admonitionContent_BuS1"><p>You must add your <em>Google API Key</em> in your <a class="" href="/trip/docs/map-tracker/settings">settings</a>.</p></div></div>
<div class="theme-admonition theme-admonition-tip admonition_xJq3 alert alert--success"><div class="admonitionHeading_Gvgb"><span class="admonitionIcon_Rf37"><svg viewBox="0 0 12 16"><path fill-rule="evenodd" d="M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z"></path></svg></span>tip</div><div class="admonitionContent_BuS1"><p>You can use the shortcuts <kbd>Shift</kbd>+<kbd>Enter</kbd> to run the completion and <kbd>Ctrl</kbd>+<kbd>Enter</kbd> to confirm the modal (if there is no missing field)</p></div></div>
<p>After entering a name, you can autocomplete the other fields by clicking the button inside the input area.</p> <p>After entering a name, you can autocomplete the other fields by clicking the button inside the input area.</p>
<img src="/trip/img/place_gmaps_api.png" alt="Autocomplete using GMaps API"> <img src="/trip/img/place_gmaps_api.png" alt="Autocomplete using GMaps API">
<div style="text-align:center"><sup>Autocomplete using GMaps API</sup></div> <div style="text-align:center"><sup>Autocomplete using GMaps API</sup></div>

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Places | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/places"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Places | TRIP"><meta data-rh="true" name="description" content="Your map displays all your Places (Points of Interest). Click on any Place to view details and interact with it."><meta data-rh="true" property="og:description" content="Your map displays all your Places (Points of Interest). Click on any Place to view details and interact with it."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/places"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Places","item":"https://itskovacs.github.io/trip/docs/map-tracker/places"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Places | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/places"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Places | TRIP"><meta data-rh="true" name="description" content="Your map displays all your Places (Points of Interest). Click on any Place to view details and interact with it."><meta data-rh="true" property="og:description" content="Your map displays all your Places (Points of Interest). Click on any Place to view details and interact with it."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/places"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/places" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Places","item":"https://itskovacs.github.io/trip/docs/map-tracker/places"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Settings | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/settings"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Settings | TRIP"><meta data-rh="true" name="description" content="Customize your app experience, manage categories, make backups, enable TOTP, and more."><meta data-rh="true" property="og:description" content="Customize your app experience, manage categories, make backups, enable TOTP, and more."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/settings"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/settings" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/settings" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Settings","item":"https://itskovacs.github.io/trip/docs/map-tracker/settings"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Settings | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/map-tracker/settings"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Settings | TRIP"><meta data-rh="true" name="description" content="Customize your app experience, manage categories, make backups, enable TOTP, and more."><meta data-rh="true" property="og:description" content="Customize your app experience, manage categories, make backups, enable TOTP, and more."><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/map-tracker/settings"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/settings" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/map-tracker/settings" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Map Tracker","item":"https://itskovacs.github.io/trip/docs/category/map-tracker"},{"@type":"ListItem","position":2,"name":"Settings","item":"https://itskovacs.github.io/trip/docs/map-tracker/settings"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Backup and Restore | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/misc/backup"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Backup and Restore | TRIP"><meta data-rh="true" name="description" content="Backup and Restore your data"><meta data-rh="true" property="og:description" content="Backup and Restore your data"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/misc/backup"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/backup" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/backup" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Miscelaneous","item":"https://itskovacs.github.io/trip/docs/category/miscelaneous"},{"@type":"ListItem","position":2,"name":"Backup and Restore","item":"https://itskovacs.github.io/trip/docs/misc/backup"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Backup and Restore | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/misc/backup"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Backup and Restore | TRIP"><meta data-rh="true" name="description" content="Backup and Restore your data"><meta data-rh="true" property="og:description" content="Backup and Restore your data"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/misc/backup"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/backup" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/backup" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Miscelaneous","item":"https://itskovacs.github.io/trip/docs/category/miscelaneous"},{"@type":"ListItem","position":2,"name":"Backup and Restore","item":"https://itskovacs.github.io/trip/docs/misc/backup"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Installing on Synology NAS | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/misc/synology"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Installing on Synology NAS | TRIP"><meta data-rh="true" name="description" content="Installing on Synology NAS using Docker and Portainer"><meta data-rh="true" property="og:description" content="Installing on Synology NAS using Docker and Portainer"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/misc/synology"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/synology" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/synology" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Miscelaneous","item":"https://itskovacs.github.io/trip/docs/category/miscelaneous"},{"@type":"ListItem","position":2,"name":"Installing on Synology NAS","item":"https://itskovacs.github.io/trip/docs/misc/synology"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Installing on Synology NAS | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/misc/synology"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Installing on Synology NAS | TRIP"><meta data-rh="true" name="description" content="Installing on Synology NAS using Docker and Portainer"><meta data-rh="true" property="og:description" content="Installing on Synology NAS using Docker and Portainer"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/misc/synology"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/synology" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/misc/synology" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Miscelaneous","item":"https://itskovacs.github.io/trip/docs/category/miscelaneous"},{"@type":"ListItem","position":2,"name":"Installing on Synology NAS","item":"https://itskovacs.github.io/trip/docs/misc/synology"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Introduction | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/introduction"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Introduction | TRIP"><meta data-rh="true" name="description" content="Introduction to Map"><meta data-rh="true" property="og:description" content="Introduction to Map"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/introduction"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/introduction" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/introduction" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Introduction","item":"https://itskovacs.github.io/trip/docs/trips-planner/introduction"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Introduction | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/introduction"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Introduction | TRIP"><meta data-rh="true" name="description" content="Introduction to Map"><meta data-rh="true" property="og:description" content="Introduction to Map"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/introduction"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/introduction" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/introduction" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Introduction","item":"https://itskovacs.github.io/trip/docs/trips-planner/introduction"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Anonymous share | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Anonymous share | TRIP"><meta data-rh="true" name="description" content="Share your trip publicly via a unique read-only link"><meta data-rh="true" property="og:description" content="Share your trip publicly via a unique read-only link"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Anonymous share","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Anonymous share | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Anonymous share | TRIP"><meta data-rh="true" name="description" content="Share your trip publicly via a unique read-only link"><meta data-rh="true" property="og:description" content="Share your trip publicly via a unique read-only link"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Anonymous share","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-ano-share"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Archive | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Archive | TRIP"><meta data-rh="true" name="description" content="Archive a Trip once it&#x27;s complete"><meta data-rh="true" property="og:description" content="Archive a Trip once it&#x27;s complete"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Archive","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-archive"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Archive | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Archive | TRIP"><meta data-rh="true" name="description" content="Archive a Trip once it&#x27;s complete"><meta data-rh="true" property="og:description" content="Archive a Trip once it&#x27;s complete"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-archive" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Archive","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-archive"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Attachments &amp; lists | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Attachments &amp; lists | TRIP"><meta data-rh="true" name="description" content="Your trip can hold attachments, a checklist, a packing list"><meta data-rh="true" property="og:description" content="Your trip can hold attachments, a checklist, a packing list"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Attachments & lists","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Attachments &amp; lists | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Attachments &amp; lists | TRIP"><meta data-rh="true" name="description" content="Your trip can hold attachments, a checklist, a packing list"><meta data-rh="true" property="og:description" content="Your trip can hold attachments, a checklist, a packing list"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Attachments & lists","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-attachments-lists"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Collaboration | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Collaboration | TRIP"><meta data-rh="true" name="description" content="Collaborate on a trip with other members"><meta data-rh="true" property="og:description" content="Collaborate on a trip with other members"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Collaboration","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Collaboration | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Collaboration | TRIP"><meta data-rh="true" name="description" content="Collaborate on a trip with other members"><meta data-rh="true" property="og:description" content="Collaborate on a trip with other members"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Collaboration","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-collaboration"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Concepts | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Concepts | TRIP"><meta data-rh="true" name="description" content="Trip days, plans, a trip is organized in a table-like structure"><meta data-rh="true" property="og:description" content="Trip days, plans, a trip is organized in a table-like structure"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Concepts","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Concepts | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Concepts | TRIP"><meta data-rh="true" name="description" content="Trip days, plans, a trip is organized in a table-like structure"><meta data-rh="true" property="og:description" content="Trip days, plans, a trip is organized in a table-like structure"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Concepts","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-concepts"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Creation | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Creation | TRIP"><meta data-rh="true" name="description" content="Creating a trip"><meta data-rh="true" property="og:description" content="Creating a trip"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Creation","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-creation"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Creation | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Creation | TRIP"><meta data-rh="true" name="description" content="Creating a trip"><meta data-rh="true" property="og:description" content="Creating a trip"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-creation" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Creation","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-creation"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Export and print | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-export"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Export and print | TRIP"><meta data-rh="true" name="description" content="Export your trip in multiple formats to suit your needs"><meta data-rh="true" property="og:description" content="Export your trip in multiple formats to suit your needs"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-export"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-export" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-export" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Export and print","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-export"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Export and print | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-export"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Export and print | TRIP"><meta data-rh="true" name="description" content="Export your trip in multiple formats to suit your needs"><meta data-rh="true" property="og:description" content="Export your trip in multiple formats to suit your needs"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-export"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-export" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-export" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Export and print","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-export"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Map | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-map"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Map | TRIP"><meta data-rh="true" name="description" content="The map displays your places and plans, with options to highlight itineraries"><meta data-rh="true" property="og:description" content="The map displays your places and plans, with options to highlight itineraries"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-map"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-map" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-map" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Map","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-map"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Map | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-map"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Map | TRIP"><meta data-rh="true" name="description" content="The map displays your places and plans, with options to highlight itineraries"><meta data-rh="true" property="og:description" content="The map displays your places and plans, with options to highlight itineraries"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-map"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-map" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-map" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Map","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-map"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Plan creation | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Plan creation | TRIP"><meta data-rh="true" name="description" content="Create your first plan"><meta data-rh="true" property="og:description" content="Create your first plan"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Plan creation","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Plan creation | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Plan creation | TRIP"><meta data-rh="true" name="description" content="Create your first plan"><meta data-rh="true" property="og:description" content="Create your first plan"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Plan creation","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-plan-creation"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trip - Plans | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Plans | TRIP"><meta data-rh="true" name="description" content="Understand your trip plans"><meta data-rh="true" property="og:description" content="Understand your trip plans"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Plans","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-plans"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trip - Plans | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trip - Plans | TRIP"><meta data-rh="true" name="description" content="Understand your trip plans"><meta data-rh="true" property="og:description" content="Understand your trip plans"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trip-plans" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trip - Plans","item":"https://itskovacs.github.io/trip/docs/trips-planner/trip-plans"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Trips | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trips"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trips | TRIP"><meta data-rh="true" name="description" content="Viewing your trips"><meta data-rh="true" property="og:description" content="Viewing your trips"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trips"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trips" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trips" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trips","item":"https://itskovacs.github.io/trip/docs/trips-planner/trips"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Trips | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/docs/trips-planner/trips"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docusaurus_version" content="current"><meta data-rh="true" name="docusaurus_tag" content="docs-default-current"><meta data-rh="true" name="docsearch:version" content="current"><meta data-rh="true" name="docsearch:docusaurus_tag" content="docs-default-current"><meta data-rh="true" property="og:title" content="Trips | TRIP"><meta data-rh="true" name="description" content="Viewing your trips"><meta data-rh="true" property="og:description" content="Viewing your trips"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/docs/trips-planner/trips"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trips" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/docs/trips-planner/trips" hreflang="x-default"><script data-rh="true" type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Trips Planner","item":"https://itskovacs.github.io/trip/docs/category/trips-planner"},{"@type":"ListItem","position":2,"name":"Trips","item":"https://itskovacs.github.io/trip/docs/trips-planner/trips"}]}</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="generator" content="Docusaurus v3.9.2"> <meta name="generator" content="Docusaurus v3.9.2">
<title data-rh="true">Home | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docusaurus_tag" content="default"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docsearch:docusaurus_tag" content="default"><meta data-rh="true" property="og:title" content="Home | TRIP"><meta data-rh="true" name="description" content="TRIP documentation. See github.com/itskovacs/trip for more information"><meta data-rh="true" property="og:description" content="TRIP documentation. See github.com/itskovacs/trip for more information"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/" hreflang="x-default"><script data-rh="true">function insertBanner(){var n=document.createElement("div");n.id="__docusaurus-base-url-issue-banner-container";n.innerHTML='\n<div id="__docusaurus-base-url-issue-banner" style="border: thick solid red; background-color: rgb(255, 230, 179); margin: 20px; padding: 20px; font-size: 20px;">\n <p style="font-weight: bold; font-size: 30px;">Your Docusaurus site did not load properly.</p>\n <p>A very common reason is a wrong site <a href="https://docusaurus.io/docs/docusaurus.config.js/#baseUrl" style="font-weight: bold;">baseUrl configuration</a>.</p>\n <p>Current configured baseUrl = <span style="font-weight: bold; color: red;">/trip/</span> </p>\n <p>We suggest trying baseUrl = <span id="__docusaurus-base-url-issue-banner-suggestion-container" style="font-weight: bold; color: green;"></span></p>\n</div>\n',document.body.prepend(n);var e=document.getElementById("__docusaurus-base-url-issue-banner-suggestion-container"),s=window.location.pathname,o="/"===s.substr(-1)?s:s+"/";e.innerHTML=o}document.addEventListener("DOMContentLoaded",function(){void 0===window.docusaurus&&insertBanner()})</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css"> <title data-rh="true">Home | TRIP</title><meta data-rh="true" name="viewport" content="width=device-width,initial-scale=1"><meta data-rh="true" name="twitter:card" content="summary_large_image"><meta data-rh="true" property="og:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" name="twitter:image" content="https://itskovacs.github.io/trip/img/favicon.png"><meta data-rh="true" property="og:url" content="https://itskovacs.github.io/trip/"><meta data-rh="true" property="og:locale" content="en"><meta data-rh="true" name="docusaurus_locale" content="en"><meta data-rh="true" name="docusaurus_tag" content="default"><meta data-rh="true" name="docsearch:language" content="en"><meta data-rh="true" name="docsearch:docusaurus_tag" content="default"><meta data-rh="true" property="og:title" content="Home | TRIP"><meta data-rh="true" name="description" content="TRIP documentation. See github.com/itskovacs/trip for more information"><meta data-rh="true" property="og:description" content="TRIP documentation. See github.com/itskovacs/trip for more information"><link data-rh="true" rel="icon" href="/trip/img/favicon.png"><link data-rh="true" rel="canonical" href="https://itskovacs.github.io/trip/"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/" hreflang="en"><link data-rh="true" rel="alternate" href="https://itskovacs.github.io/trip/" hreflang="x-default"><script data-rh="true">function insertBanner(){var n=document.createElement("div");n.id="__docusaurus-base-url-issue-banner-container";n.innerHTML='\n<div id="__docusaurus-base-url-issue-banner" style="border: thick solid red; background-color: rgb(255, 230, 179); margin: 20px; padding: 20px; font-size: 20px;">\n <p style="font-weight: bold; font-size: 30px;">Your Docusaurus site did not load properly.</p>\n <p>A very common reason is a wrong site <a href="https://docusaurus.io/docs/docusaurus.config.js/#baseUrl" style="font-weight: bold;">baseUrl configuration</a>.</p>\n <p>Current configured baseUrl = <span style="font-weight: bold; color: red;">/trip/</span> </p>\n <p>We suggest trying baseUrl = <span id="__docusaurus-base-url-issue-banner-suggestion-container" style="font-weight: bold; color: green;"></span></p>\n</div>\n',document.body.prepend(n);var e=document.getElementById("__docusaurus-base-url-issue-banner-suggestion-container"),s=window.location.pathname,o="/"===s.substr(-1)?s:s+"/";e.innerHTML=o}document.addEventListener("DOMContentLoaded",function(){void 0===window.docusaurus&&insertBanner()})</script><link rel="stylesheet" href="/trip/assets/css/styles.fba44b67.css">
<script src="/trip/assets/js/runtime~main.7981b117.js" defer="defer"></script> <script src="/trip/assets/js/runtime~main.7e832786.js" defer="defer"></script>
<script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script> <script src="/trip/assets/js/main.5fbd8ce6.js" defer="defer"></script>
</head> </head>
<body class="navigation-with-keyboard"> <body class="navigation-with-keyboard">

View File

@ -2027,13 +2027,16 @@ export class TripComponent implements AfterViewInit {
next: () => { next: () => {
this.trip!.attachments = this.trip?.attachments?.filter((att) => att.id != attachmentId); this.trip!.attachments = this.trip?.attachments?.filter((att) => att.id != attachmentId);
let modifiedItem = false; let modifiedItem = false;
this.trip?.days.forEach(d => d.items.forEach(i => { this.trip?.days.forEach((d) =>
d.items.forEach((i) => {
if (i.attachments?.length) { if (i.attachments?.length) {
i.attachments = i.attachments.filter(attachment => attachment.id != attachmentId); i.attachments = i.attachments.filter((attachment) => attachment.id != attachmentId);
modifiedItem = true; modifiedItem = true;
} }
})) }),
if (this.selectedItem?.attachments?.length) this.selectedItem.attachments = this.selectedItem.attachments.filter((a) => a.id != attachmentId); );
if (this.selectedItem?.attachments?.length)
this.selectedItem.attachments = this.selectedItem.attachments.filter((a) => a.id != attachmentId);
if (modifiedItem) this.flattenTripDayItems(); if (modifiedItem) this.flattenTripDayItems();
}, },
}); });

View File

@ -113,7 +113,7 @@ export class TripsComponent implements OnInit {
const tripDays: Partial<TripDay>[] = []; const tripDays: Partial<TripDay>[] = [];
const current = new Date(from); const current = new Date(from);
while (current <= to) { while (current <= to) {
const year = current.getUTCFullYear(); const year = current.getFullYear();
const month = String(current.getMonth() + 1).padStart(2, '0'); const month = String(current.getMonth() + 1).padStart(2, '0');
const day = String(current.getDate()).padStart(2, '0'); const day = String(current.getDate()).padStart(2, '0');
const label = `${day} ${months[current.getMonth()]}`; const label = `${day} ${months[current.getMonth()]}`;

View File

@ -12,8 +12,8 @@
<circle r="20" cy="50" cx="50"></circle> <circle r="20" cy="50" cx="50"></circle>
</svg> </svg>
} @else { } @else {
<p-button icon="pi pi-sparkles" variant="text" [disabled]="!placeForm.get('name')!.value" pTooltip="Complete using GMaps API" <p-button icon="pi pi-sparkles" variant="text" [disabled]="!placeForm.get('name')!.value"
(click)="gmapsSearchText()" /> pTooltip="Complete using GMaps API" (click)="gmapsSearchText()" />
} }
</div> </div>
</div> </div>

View File

@ -213,12 +213,12 @@ export class PlaceCreateModalComponent {
this.gmapsLoading = false; this.gmapsLoading = false;
if (r.category) { if (r.category) {
this.categories$?.pipe(take(1)).subscribe({ this.categories$?.pipe(take(1)).subscribe({
next: categories => { next: (categories) => {
const category: Category | undefined = categories.find(c => c.name == r.category); const category: Category | undefined = categories.find((c) => c.name == r.category);
if (!category) return; if (!category) return;
this.placeForm.get('category')?.setValue(category.id); this.placeForm.get('category')?.setValue(category.id);
} },
}) });
} }
} }
@ -235,7 +235,7 @@ export class PlaceCreateModalComponent {
} }
if (results.length == 1) { if (results.length == 1) {
this.gmapsToForm(results[0]) this.gmapsToForm(results[0]);
return; return;
} }

View File

@ -36,7 +36,7 @@ export class TripCreateDayModalComponent {
} }
formatDateWithoutTimezone(date: Date) { formatDateWithoutTimezone(date: Date) {
const year = date.getUTCFullYear(); const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0'); const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0'); const day = String(date.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`; return `${year}-${month}-${day}`;

View File

@ -54,7 +54,7 @@ export const Interceptor = (req: HttpRequest<unknown>, next: HttpHandlerFn): Obs
const errDetails = ERROR_CONFIG[err.status]; const errDetails = ERROR_CONFIG[err.status];
if (errDetails) { if (errDetails) {
console.error(err); console.error(err);
let msg = "" let msg = '';
msg = err.message || errDetails.detail; msg = err.message || errDetails.detail;
if (!Array.isArray(err.error?.detail)) { if (!Array.isArray(err.error?.detail)) {
msg = err.error.detail; msg = err.error.detail;