@underpostnet/underpost 2.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +14 -0
- package/.env.development +6 -0
- package/.env.production +6 -0
- package/.env.test +6 -0
- package/.github/workflows/ghpkg.yml +115 -0
- package/.github/workflows/publish.yml +84 -0
- package/.github/workflows/pwa-microservices-template.page.yml +54 -0
- package/.github/workflows/pwa-microservices-template.test.yml +30 -0
- package/.nycrc +9 -0
- package/.prettierignore +13 -0
- package/.prettierrc +9 -0
- package/.vscode/extensions.json +72 -0
- package/.vscode/settings.json +106 -0
- package/AUTHORS.md +10 -0
- package/CHANGELOG.md +85 -0
- package/Dockerfile +90 -0
- package/LICENSE +21 -0
- package/README.md +96 -0
- package/bin/cron.js +47 -0
- package/bin/db.js +180 -0
- package/bin/deploy.js +859 -0
- package/bin/file.js +109 -0
- package/bin/index.js +82 -0
- package/bin/ssl.js +55 -0
- package/bin/util.js +204 -0
- package/bin/vs.js +35 -0
- package/conf.js +265 -0
- package/docker-compose.yml +67 -0
- package/jsconfig.json +7 -0
- package/jsdoc.json +32 -0
- package/nodemon.json +6 -0
- package/package.json +134 -0
- package/prometheus.yml +36 -0
- package/src/api/core/core.controller.js +69 -0
- package/src/api/core/core.model.js +11 -0
- package/src/api/core/core.router.js +23 -0
- package/src/api/core/core.service.js +31 -0
- package/src/api/crypto/crypto.controller.js +51 -0
- package/src/api/crypto/crypto.model.js +23 -0
- package/src/api/crypto/crypto.router.js +20 -0
- package/src/api/crypto/crypto.service.js +64 -0
- package/src/api/default/default.controller.js +69 -0
- package/src/api/default/default.model.js +20 -0
- package/src/api/default/default.router.js +23 -0
- package/src/api/default/default.service.js +31 -0
- package/src/api/file/file.controller.js +53 -0
- package/src/api/file/file.model.js +19 -0
- package/src/api/file/file.router.js +21 -0
- package/src/api/file/file.service.js +80 -0
- package/src/api/instance/instance.controller.js +69 -0
- package/src/api/instance/instance.model.js +36 -0
- package/src/api/instance/instance.router.js +33 -0
- package/src/api/instance/instance.service.js +48 -0
- package/src/api/test/test.controller.js +59 -0
- package/src/api/test/test.model.js +14 -0
- package/src/api/test/test.router.js +21 -0
- package/src/api/test/test.service.js +35 -0
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -0
- package/src/api/user/user.model.js +65 -0
- package/src/api/user/user.router.js +345 -0
- package/src/api/user/user.service.js +479 -0
- package/src/api.js +23 -0
- package/src/client/Default.index.js +40 -0
- package/src/client/components/core/Account.js +290 -0
- package/src/client/components/core/AgGrid.js +160 -0
- package/src/client/components/core/Auth.js +19 -0
- package/src/client/components/core/Badge.js +32 -0
- package/src/client/components/core/Blockchain.js +41 -0
- package/src/client/components/core/Blog.js +9 -0
- package/src/client/components/core/BtnIcon.js +101 -0
- package/src/client/components/core/CalendarCore.js +458 -0
- package/src/client/components/core/Chat.js +64 -0
- package/src/client/components/core/ColorPalette.js +5267 -0
- package/src/client/components/core/CommonJs.js +742 -0
- package/src/client/components/core/Content.js +193 -0
- package/src/client/components/core/Css.js +846 -0
- package/src/client/components/core/CssCore.js +844 -0
- package/src/client/components/core/D3Chart.js +44 -0
- package/src/client/components/core/Docs.js +331 -0
- package/src/client/components/core/DropDown.js +164 -0
- package/src/client/components/core/EventsUI.js +46 -0
- package/src/client/components/core/FileExplorer.js +699 -0
- package/src/client/components/core/FullScreen.js +45 -0
- package/src/client/components/core/Input.js +346 -0
- package/src/client/components/core/JoyStick.js +77 -0
- package/src/client/components/core/Keyboard.js +73 -0
- package/src/client/components/core/LoadingAnimation.js +178 -0
- package/src/client/components/core/LogIn.js +187 -0
- package/src/client/components/core/LogOut.js +58 -0
- package/src/client/components/core/Logger.js +26 -0
- package/src/client/components/core/Modal.js +1814 -0
- package/src/client/components/core/NotificationManager.js +84 -0
- package/src/client/components/core/Panel.js +613 -0
- package/src/client/components/core/PanelForm.js +469 -0
- package/src/client/components/core/Polyhedron.js +162 -0
- package/src/client/components/core/Recover.js +204 -0
- package/src/client/components/core/Responsive.js +68 -0
- package/src/client/components/core/RichText.js +53 -0
- package/src/client/components/core/Router.js +76 -0
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -0
- package/src/client/components/core/SocketIo.js +72 -0
- package/src/client/components/core/Stream.js +113 -0
- package/src/client/components/core/ToggleSwitch.js +87 -0
- package/src/client/components/core/ToolTip.js +26 -0
- package/src/client/components/core/Translate.js +446 -0
- package/src/client/components/core/Validator.js +100 -0
- package/src/client/components/core/VanillaJs.js +463 -0
- package/src/client/components/core/Wallet.js +106 -0
- package/src/client/components/core/WebComponent.js +44 -0
- package/src/client/components/core/Webhook.js +25 -0
- package/src/client/components/core/Worker.js +280 -0
- package/src/client/components/default/CommonDefault.js +29 -0
- package/src/client/components/default/CssDefault.js +13 -0
- package/src/client/components/default/ElementsDefault.js +38 -0
- package/src/client/components/default/LogInDefault.js +41 -0
- package/src/client/components/default/LogOutDefault.js +28 -0
- package/src/client/components/default/MenuDefault.js +389 -0
- package/src/client/components/default/RoutesDefault.js +48 -0
- package/src/client/components/default/SettingsDefault.js +16 -0
- package/src/client/components/default/SignUpDefault.js +9 -0
- package/src/client/components/default/SocketIoDefault.js +54 -0
- package/src/client/components/default/TranslateDefault.js +7 -0
- package/src/client/public/default/android-chrome-144x144.png +0 -0
- package/src/client/public/default/android-chrome-192x192.png +0 -0
- package/src/client/public/default/android-chrome-256x256.png +0 -0
- package/src/client/public/default/android-chrome-36x36.png +0 -0
- package/src/client/public/default/android-chrome-384x384.png +0 -0
- package/src/client/public/default/android-chrome-48x48.png +0 -0
- package/src/client/public/default/android-chrome-512x512.png +0 -0
- package/src/client/public/default/android-chrome-72x72.png +0 -0
- package/src/client/public/default/android-chrome-96x96.png +0 -0
- package/src/client/public/default/apple-touch-icon-1024x1024.png +0 -0
- package/src/client/public/default/apple-touch-icon-114x114.png +0 -0
- package/src/client/public/default/apple-touch-icon-120x120.png +0 -0
- package/src/client/public/default/apple-touch-icon-144x144.png +0 -0
- package/src/client/public/default/apple-touch-icon-152x152.png +0 -0
- package/src/client/public/default/apple-touch-icon-167x167.png +0 -0
- package/src/client/public/default/apple-touch-icon-180x180.png +0 -0
- package/src/client/public/default/apple-touch-icon-57x57.png +0 -0
- package/src/client/public/default/apple-touch-icon-60x60.png +0 -0
- package/src/client/public/default/apple-touch-icon-72x72.png +0 -0
- package/src/client/public/default/apple-touch-icon-76x76.png +0 -0
- package/src/client/public/default/apple-touch-icon-precomposed.png +0 -0
- package/src/client/public/default/apple-touch-icon.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1125x2436.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1136x640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1170x2532.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1179x2556.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2208.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1242x2688.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1284x2778.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1290x2796.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1334x750.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1488x2266.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1536x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1620x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1640x2160.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2224.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1668x2388.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-1792x828.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x1536.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2048x2732.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1620.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2160x1640.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2208x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2224x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2266x1488.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2388x1668.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2436x1125.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2532x1170.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2556x1179.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2688x1242.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2732x2048.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2778x1284.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-2796x1290.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-640x1136.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-750x1334.png +0 -0
- package/src/client/public/default/apple-touch-startup-image-828x1792.png +0 -0
- package/src/client/public/default/assets/background/white.jpg +0 -0
- package/src/client/public/default/assets/background/white0-min.jpg +0 -0
- package/src/client/public/default/assets/background/white0.jpg +0 -0
- package/src/client/public/default/assets/logo/base-icon.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +12 -0
- package/src/client/public/default/favicon-16x16.png +0 -0
- package/src/client/public/default/favicon-32x32.png +0 -0
- package/src/client/public/default/favicon-48x48.png +0 -0
- package/src/client/public/default/favicon.ico +0 -0
- package/src/client/public/default/manifest.webmanifest +69 -0
- package/src/client/public/default/mstile-144x144.png +0 -0
- package/src/client/public/default/mstile-150x150.png +0 -0
- package/src/client/public/default/mstile-310x150.png +0 -0
- package/src/client/public/default/mstile-310x310.png +0 -0
- package/src/client/public/default/mstile-70x70.png +0 -0
- package/src/client/public/default/plantuml/client-conf.svg +1 -0
- package/src/client/public/default/plantuml/client-schema.svg +1 -0
- package/src/client/public/default/plantuml/cron-conf.svg +1 -0
- package/src/client/public/default/plantuml/cron-schema.svg +1 -0
- package/src/client/public/default/plantuml/server-conf.svg +1 -0
- package/src/client/public/default/plantuml/server-schema.svg +1 -0
- package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
- package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
- package/src/client/public/default/site.webmanifest +69 -0
- package/src/client/public/default/sitemap +148 -0
- package/src/client/public/default/yandex-browser-50x50.png +0 -0
- package/src/client/public/default/yandex-browser-manifest.json +9 -0
- package/src/client/public/doc/favicon.ico +0 -0
- package/src/client/public/doc/sitemap +148 -0
- package/src/client/public/test/favicon.ico +0 -0
- package/src/client/public/test/sitemap +148 -0
- package/src/client/services/core/core.service.js +170 -0
- package/src/client/services/crypto/crypto.service.js +70 -0
- package/src/client/services/default/default.management.js +343 -0
- package/src/client/services/default/default.service.js +89 -0
- package/src/client/services/file/file.service.js +70 -0
- package/src/client/services/instance/instance.management.js +74 -0
- package/src/client/services/instance/instance.service.js +89 -0
- package/src/client/services/test/test.service.js +70 -0
- package/src/client/services/user/user.management.js +50 -0
- package/src/client/services/user/user.service.js +89 -0
- package/src/client/ssr/Render.js +237 -0
- package/src/client/ssr/common/Alert.js +75 -0
- package/src/client/ssr/common/SsrCore.js +91 -0
- package/src/client/ssr/common/Translate.js +26 -0
- package/src/client/ssr/common/Worker.js +28 -0
- package/src/client/ssr/components/body/CacheControl.js +114 -0
- package/src/client/ssr/components/body/DefaultSplashScreen.js +90 -0
- package/src/client/ssr/components/email/DefaultRecoverEmail.js +21 -0
- package/src/client/ssr/components/email/DefaultVerifyEmail.js +17 -0
- package/src/client/ssr/components/head/Css.js +241 -0
- package/src/client/ssr/components/head/DefaultScripts.js +3 -0
- package/src/client/ssr/components/head/Production.js +1 -0
- package/src/client/ssr/components/head/Pwa.js +146 -0
- package/src/client/ssr/components/head/PwaDefault.js +60 -0
- package/src/client/ssr/components/head/Seo.js +14 -0
- package/src/client/ssr/pages/404.js +12 -0
- package/src/client/ssr/pages/500.js +12 -0
- package/src/client/ssr/pages/maintenance.js +14 -0
- package/src/client/ssr/pages/offline.js +21 -0
- package/src/client/sw/default.sw.js +205 -0
- package/src/client/sw/template.sw.js +84 -0
- package/src/client.build.js +22 -0
- package/src/client.dev.js +21 -0
- package/src/db/DataBaseProvider.js +45 -0
- package/src/db/mariadb/MariaDB.js +33 -0
- package/src/db/mongo/MongooseDB.js +124 -0
- package/src/dns.js +22 -0
- package/src/index.js +43 -0
- package/src/mailer/EmailRender.js +69 -0
- package/src/mailer/MailerProvider.js +96 -0
- package/src/proxy.js +22 -0
- package/src/runtime/lampp/Lampp.js +115 -0
- package/src/runtime/nginx/Nginx.js +3 -0
- package/src/runtime/xampp/Xampp.js +49 -0
- package/src/server/auth.js +235 -0
- package/src/server/backup.js +120 -0
- package/src/server/client-build-live.js +98 -0
- package/src/server/client-build.js +754 -0
- package/src/server/client-dev-server.js +60 -0
- package/src/server/client-formatted.js +58 -0
- package/src/server/client-icons.js +151 -0
- package/src/server/conf.js +929 -0
- package/src/server/crypto.js +91 -0
- package/src/server/dns.js +118 -0
- package/src/server/downloader.js +42 -0
- package/src/server/logger.js +190 -0
- package/src/server/network.js +209 -0
- package/src/server/peer.js +33 -0
- package/src/server/process.js +66 -0
- package/src/server/prompt-optimizer.js +28 -0
- package/src/server/proxy.js +118 -0
- package/src/server/runtime.js +463 -0
- package/src/server/ssl.js +120 -0
- package/src/server.js +25 -0
- package/src/ws/IoInterface.js +45 -0
- package/src/ws/IoServer.js +39 -0
- package/src/ws/core/channels/core.ws.chat.js +23 -0
- package/src/ws/core/channels/core.ws.mailer.js +35 -0
- package/src/ws/core/channels/core.ws.stream.js +31 -0
- package/src/ws/core/core.ws.connection.js +28 -0
- package/src/ws/core/core.ws.emit.js +14 -0
- package/src/ws/core/core.ws.server.js +24 -0
- package/src/ws/core/management/core.ws.chat.js +8 -0
- package/src/ws/core/management/core.ws.mailer.js +16 -0
- package/src/ws/core/management/core.ws.stream.js +8 -0
- package/src/ws/default/channels/default.ws.main.js +16 -0
- package/src/ws/default/default.ws.connection.js +22 -0
- package/src/ws/default/default.ws.emit.js +14 -0
- package/src/ws/default/default.ws.server.js +20 -0
- package/src/ws/default/management/default.ws.main.js +8 -0
- package/startup.js +11 -0
- package/supervisord-openssh-server.conf +5 -0
- package/test/api.test.js +60 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="121px" preserveAspectRatio="none" style="width:848px;height:121px;background:#FFFFFF;" version="1.1" viewBox="0 0 848 121" width="848px" zoomAndPan="magnify"><defs/><g><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="10" y="20"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="15" y="34.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="108" y="34.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="20" y2="40.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="10" x2="156" y1="40.2969" y2="40.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="15" y="55.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="108" y="55.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="103" x2="103" y1="40.2969" y2="60.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="10" y="20"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="88" x="193" y="40.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="56" x="198" y="55.4951">Default</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="264" y="55.4951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="259" x2="259" y1="40.5" y2="60.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="88" x="193" y="40.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="146" x="318" y="30"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="323" y="44.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="43" x="416" y="44.9951">object</text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="30" y2="50.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="318" x2="464" y1="50.2969" y2="50.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="83" x="323" y="65.292">properties</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="416" y="65.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="411" x2="411" y1="50.2969" y2="70.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="146" x="318" y="30"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="71" x="501" y="40"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="54.9951">head</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="555" y="54.9951"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="550" x2="550" y1="40" y2="60.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="501" x2="572" y1="60.2969" y2="60.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="39" x="506" y="75.292">body</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="555" y="75.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="550" x2="550" y1="60.2969" y2="80.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="71" x="501" y="40"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="609" y="10"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="614" y="24.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="667" y="24.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="662" x2="662" y1="10" y2="30.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="609" x2="705" y1="30.2969" y2="30.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="614" y="45.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="667" y="45.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="662" x2="662" y1="30.2969" y2="50.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="609" y="10"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="742" y="30.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="747" y="45.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="792" y="45.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="787" x2="787" y1="30.5" y2="50.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="742" y="30.5"/><rect fill="#F1F1F1" height="40.5938" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="96" x="609" y="69"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="614" y="83.9951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="33" x="667" y="83.9951">array</text><line style="stroke:#000000;stroke-width:1.0;" x1="662" x2="662" y1="69" y2="89.2969"/><line style="stroke:#000000;stroke-width:1.0;" x1="609" x2="705" y1="89.2969" y2="89.2969"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="43" x="614" y="104.292">items</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="12" x="667" y="104.292"> </text><line style="stroke:#000000;stroke-width:1.0;" x1="662" x2="662" y1="89.2969" y2="109.5938"/><rect fill="none" height="40.5938" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="96" x="609" y="69"/><rect fill="#F1F1F1" height="20.2969" rx="5" ry="5" style="stroke:#F1F1F1;stroke-width:1.5;" width="94" x="742" y="89.5"/><text fill="#000000" font-family="sans-serif" font-size="14" font-weight="bold" lengthAdjust="spacing" textLength="35" x="747" y="104.4951">type</text><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacing" textLength="39" x="792" y="104.4951">string</text><line style="stroke:#000000;stroke-width:1.0;" x1="787" x2="787" y1="89.5" y2="109.7969"/><rect fill="none" height="20.2969" rx="5" ry="5" style="stroke:#000000;stroke-width:1.5;" width="94" x="742" y="89.5"/><path d="M693,40.5 L706,40.5 C715.2674,40.5 725.1203,40.5 734.6708,40.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M734.6708,43.531 L736.9441,40.5 L734.6708,37.469 L742.2484,40.5 L734.6708,43.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="693" cy="40.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M560,49.5 L573,49.5 C582.3848,49.5 592.2184,48.3447 601.7089,46.604 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M602.3132,49.6129 L603.9656,46.1508 L601.1046,43.595 L609.2313,45.0933 L602.3132,49.6129 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="560" cy="49.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M693,99.5 L706,99.5 C715.2674,99.5 725.1203,99.5 734.6708,99.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M734.6708,102.531 L736.9441,99.5 L734.6708,96.469 L742.2484,99.5 L734.6708,102.531 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="693" cy="99.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M560,70.5 L573,70.5 C582.3848,70.5 592.2184,71.6553 601.7089,73.396 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M601.1046,76.405 L603.9656,73.8492 L602.3132,70.3871 L609.2313,74.9067 L601.1046,76.405 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="560" cy="70.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M452,60.5 L465,60.5 C474.2448,60.5 484.1667,60.5 493.5755,60.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M493.5755,63.6026 L495.9024,60.5 L493.5755,57.3974 L501.332,60.5 L493.5755,63.6026 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="452" cy="60.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M269,50.5 L282,50.5 C291.2896,50.5 301.0267,50.5 310.694,50.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M310.694,53.5913 L313.0124,50.5 L310.694,47.4087 L318.4221,50.5 L310.694,53.5913 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="269" cy="50.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/><path d="M144,50.5 L157,50.5 C166.2571,50.5 176.1205,50.5 185.6372,50.5 " fill="none" style="stroke:#000000;stroke-width:1.0;stroke-dasharray:3.0,3.0;"/><path d="M185.6372,53.5158 L187.899,50.5 L185.6372,47.4842 L193.1767,50.5 L185.6372,53.5158 " fill="#000000" style="stroke:#000000;stroke-width:1.0;"/><ellipse cx="144" cy="50.5" fill="#000000" rx="3" ry="3" style="stroke:#000000;stroke-width:1.0;"/></g></svg>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Default",
|
|
3
|
+
"short_name": "Default",
|
|
4
|
+
"description": null,
|
|
5
|
+
"dir": "auto",
|
|
6
|
+
"lang": "en-US",
|
|
7
|
+
"display": "standalone",
|
|
8
|
+
"orientation": "any",
|
|
9
|
+
"scope": "/",
|
|
10
|
+
"start_url": "/?homescreen=1",
|
|
11
|
+
"background_color": "#fff",
|
|
12
|
+
"theme_color": "#fff",
|
|
13
|
+
"icons": [
|
|
14
|
+
{
|
|
15
|
+
"src": "/android-chrome-36x36.png",
|
|
16
|
+
"sizes": "36x36",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"purpose": "any maskable"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"src": "/android-chrome-48x48.png",
|
|
22
|
+
"sizes": "48x48",
|
|
23
|
+
"type": "image/png",
|
|
24
|
+
"purpose": "any maskable"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"src": "/android-chrome-72x72.png",
|
|
28
|
+
"sizes": "72x72",
|
|
29
|
+
"type": "image/png",
|
|
30
|
+
"purpose": "any maskable"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"src": "/android-chrome-96x96.png",
|
|
34
|
+
"sizes": "96x96",
|
|
35
|
+
"type": "image/png",
|
|
36
|
+
"purpose": "any maskable"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"src": "/android-chrome-144x144.png",
|
|
40
|
+
"sizes": "144x144",
|
|
41
|
+
"type": "image/png",
|
|
42
|
+
"purpose": "any maskable"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"src": "/android-chrome-192x192.png",
|
|
46
|
+
"sizes": "192x192",
|
|
47
|
+
"type": "image/png",
|
|
48
|
+
"purpose": "any maskable"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"src": "/android-chrome-256x256.png",
|
|
52
|
+
"sizes": "256x256",
|
|
53
|
+
"type": "image/png",
|
|
54
|
+
"purpose": "any maskable"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"src": "/android-chrome-384x384.png",
|
|
58
|
+
"sizes": "384x384",
|
|
59
|
+
"type": "image/png",
|
|
60
|
+
"purpose": "any maskable"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"src": "/android-chrome-512x512.png",
|
|
64
|
+
"sizes": "512x512",
|
|
65
|
+
"type": "image/png",
|
|
66
|
+
"purpose": "any maskable"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsl:stylesheet version="2.0"
|
|
3
|
+
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
4
|
+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
|
|
5
|
+
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
6
|
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
7
|
+
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes" />
|
|
8
|
+
<xsl:template match="/">
|
|
9
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
10
|
+
<head>
|
|
11
|
+
<title>XML Sitemap</title>
|
|
12
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
13
|
+
<style type="text/css">
|
|
14
|
+
body {
|
|
15
|
+
font-family: sans-serif;
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
color: #242628;
|
|
18
|
+
}
|
|
19
|
+
a {
|
|
20
|
+
color: #000;
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
}
|
|
23
|
+
a:hover {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
table {
|
|
27
|
+
border: none;
|
|
28
|
+
border-collapse: collapse;
|
|
29
|
+
width: 100%
|
|
30
|
+
}
|
|
31
|
+
th {
|
|
32
|
+
text-align: left;
|
|
33
|
+
padding-right: 30px;
|
|
34
|
+
font-size: 11px;
|
|
35
|
+
}
|
|
36
|
+
thead th {
|
|
37
|
+
border-bottom: 1px solid #7d878a;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
td {
|
|
41
|
+
font-size:11px;
|
|
42
|
+
padding: 5px;
|
|
43
|
+
}
|
|
44
|
+
tr:nth-child(odd) td {
|
|
45
|
+
background-color: rgba(0,0,0,0.04);
|
|
46
|
+
}
|
|
47
|
+
tr:hover td {
|
|
48
|
+
background-color: #e2edf2;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
#content {
|
|
52
|
+
margin: 0 auto;
|
|
53
|
+
padding: 2% 5%;
|
|
54
|
+
max-width: 800px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.desc {
|
|
58
|
+
margin: 18px 3px;
|
|
59
|
+
line-height: 1.2em;
|
|
60
|
+
}
|
|
61
|
+
.desc a {
|
|
62
|
+
color: #5ba4e5;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</head>
|
|
66
|
+
<body>
|
|
67
|
+
<div id="content">
|
|
68
|
+
<h1>XML Sitemap</h1>
|
|
69
|
+
<p class="desc"> This is a sitemap generated by <a
|
|
70
|
+
href="https://www.nexodev.org">nexodev.org</a>
|
|
71
|
+
</p>
|
|
72
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) > 0">
|
|
73
|
+
<table id="sitemap" cellpadding="3">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th width="75%">Sitemap</th>
|
|
77
|
+
<th width="25%">Last Modified</th>
|
|
78
|
+
</tr>
|
|
79
|
+
</thead>
|
|
80
|
+
<tbody>
|
|
81
|
+
<xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
|
|
82
|
+
<xsl:variable name="sitemapURL">
|
|
83
|
+
<xsl:value-of select="sitemap:loc" />
|
|
84
|
+
</xsl:variable>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>
|
|
87
|
+
<a href="{$sitemapURL}">
|
|
88
|
+
<xsl:value-of select="sitemap:loc" />
|
|
89
|
+
</a>
|
|
90
|
+
</td>
|
|
91
|
+
<td>
|
|
92
|
+
<xsl:value-of
|
|
93
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
94
|
+
</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</xsl:for-each>
|
|
97
|
+
</tbody>
|
|
98
|
+
</table>
|
|
99
|
+
</xsl:if>
|
|
100
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) < 1">
|
|
101
|
+
<p class="desc">
|
|
102
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
103
|
+
</p>
|
|
104
|
+
<table
|
|
105
|
+
id="sitemap" cellpadding="3">
|
|
106
|
+
<thead>
|
|
107
|
+
<tr>
|
|
108
|
+
<th width="70%">URL (<xsl:value-of
|
|
109
|
+
select="count(sitemap:urlset/sitemap:url)" /> total)</th>
|
|
110
|
+
<th width="15%">Images</th>
|
|
111
|
+
<th title="Last Modification Time" width="15%">Last Modified</th>
|
|
112
|
+
</tr>
|
|
113
|
+
</thead>
|
|
114
|
+
<tbody>
|
|
115
|
+
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'" />
|
|
116
|
+
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
|
|
117
|
+
<xsl:for-each select="sitemap:urlset/sitemap:url">
|
|
118
|
+
<tr>
|
|
119
|
+
<td>
|
|
120
|
+
<xsl:variable name="itemURL">
|
|
121
|
+
<xsl:value-of select="sitemap:loc" />
|
|
122
|
+
</xsl:variable>
|
|
123
|
+
<a href="{$itemURL}">
|
|
124
|
+
<xsl:value-of select="sitemap:loc" />
|
|
125
|
+
</a>
|
|
126
|
+
</td>
|
|
127
|
+
<td>
|
|
128
|
+
<xsl:value-of select="count(image:image)" />
|
|
129
|
+
</td>
|
|
130
|
+
<td>
|
|
131
|
+
<xsl:value-of
|
|
132
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
133
|
+
</td>
|
|
134
|
+
</tr>
|
|
135
|
+
</xsl:for-each>
|
|
136
|
+
</tbody>
|
|
137
|
+
</table>
|
|
138
|
+
<p
|
|
139
|
+
class="desc">
|
|
140
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
141
|
+
</p>
|
|
142
|
+
</xsl:if>
|
|
143
|
+
</div>
|
|
144
|
+
</body>
|
|
145
|
+
</html>
|
|
146
|
+
|
|
147
|
+
</xsl:template>
|
|
148
|
+
</xsl:stylesheet>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsl:stylesheet version="2.0"
|
|
3
|
+
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
4
|
+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
|
|
5
|
+
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
6
|
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
7
|
+
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes" />
|
|
8
|
+
<xsl:template match="/">
|
|
9
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
10
|
+
<head>
|
|
11
|
+
<title>XML Sitemap</title>
|
|
12
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
13
|
+
<style type="text/css">
|
|
14
|
+
body {
|
|
15
|
+
font-family: sans-serif;
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
color: #242628;
|
|
18
|
+
}
|
|
19
|
+
a {
|
|
20
|
+
color: #000;
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
}
|
|
23
|
+
a:hover {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
table {
|
|
27
|
+
border: none;
|
|
28
|
+
border-collapse: collapse;
|
|
29
|
+
width: 100%
|
|
30
|
+
}
|
|
31
|
+
th {
|
|
32
|
+
text-align: left;
|
|
33
|
+
padding-right: 30px;
|
|
34
|
+
font-size: 11px;
|
|
35
|
+
}
|
|
36
|
+
thead th {
|
|
37
|
+
border-bottom: 1px solid #7d878a;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
td {
|
|
41
|
+
font-size:11px;
|
|
42
|
+
padding: 5px;
|
|
43
|
+
}
|
|
44
|
+
tr:nth-child(odd) td {
|
|
45
|
+
background-color: rgba(0,0,0,0.04);
|
|
46
|
+
}
|
|
47
|
+
tr:hover td {
|
|
48
|
+
background-color: #e2edf2;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
#content {
|
|
52
|
+
margin: 0 auto;
|
|
53
|
+
padding: 2% 5%;
|
|
54
|
+
max-width: 800px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.desc {
|
|
58
|
+
margin: 18px 3px;
|
|
59
|
+
line-height: 1.2em;
|
|
60
|
+
}
|
|
61
|
+
.desc a {
|
|
62
|
+
color: #5ba4e5;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</head>
|
|
66
|
+
<body>
|
|
67
|
+
<div id="content">
|
|
68
|
+
<h1>XML Sitemap</h1>
|
|
69
|
+
<p class="desc"> This is a sitemap generated by <a
|
|
70
|
+
href="https://www.nexodev.org">nexodev.org</a>
|
|
71
|
+
</p>
|
|
72
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) > 0">
|
|
73
|
+
<table id="sitemap" cellpadding="3">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th width="75%">Sitemap</th>
|
|
77
|
+
<th width="25%">Last Modified</th>
|
|
78
|
+
</tr>
|
|
79
|
+
</thead>
|
|
80
|
+
<tbody>
|
|
81
|
+
<xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
|
|
82
|
+
<xsl:variable name="sitemapURL">
|
|
83
|
+
<xsl:value-of select="sitemap:loc" />
|
|
84
|
+
</xsl:variable>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>
|
|
87
|
+
<a href="{$sitemapURL}">
|
|
88
|
+
<xsl:value-of select="sitemap:loc" />
|
|
89
|
+
</a>
|
|
90
|
+
</td>
|
|
91
|
+
<td>
|
|
92
|
+
<xsl:value-of
|
|
93
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
94
|
+
</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</xsl:for-each>
|
|
97
|
+
</tbody>
|
|
98
|
+
</table>
|
|
99
|
+
</xsl:if>
|
|
100
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) < 1">
|
|
101
|
+
<p class="desc">
|
|
102
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
103
|
+
</p>
|
|
104
|
+
<table
|
|
105
|
+
id="sitemap" cellpadding="3">
|
|
106
|
+
<thead>
|
|
107
|
+
<tr>
|
|
108
|
+
<th width="70%">URL (<xsl:value-of
|
|
109
|
+
select="count(sitemap:urlset/sitemap:url)" /> total)</th>
|
|
110
|
+
<th width="15%">Images</th>
|
|
111
|
+
<th title="Last Modification Time" width="15%">Last Modified</th>
|
|
112
|
+
</tr>
|
|
113
|
+
</thead>
|
|
114
|
+
<tbody>
|
|
115
|
+
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'" />
|
|
116
|
+
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
|
|
117
|
+
<xsl:for-each select="sitemap:urlset/sitemap:url">
|
|
118
|
+
<tr>
|
|
119
|
+
<td>
|
|
120
|
+
<xsl:variable name="itemURL">
|
|
121
|
+
<xsl:value-of select="sitemap:loc" />
|
|
122
|
+
</xsl:variable>
|
|
123
|
+
<a href="{$itemURL}">
|
|
124
|
+
<xsl:value-of select="sitemap:loc" />
|
|
125
|
+
</a>
|
|
126
|
+
</td>
|
|
127
|
+
<td>
|
|
128
|
+
<xsl:value-of select="count(image:image)" />
|
|
129
|
+
</td>
|
|
130
|
+
<td>
|
|
131
|
+
<xsl:value-of
|
|
132
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
133
|
+
</td>
|
|
134
|
+
</tr>
|
|
135
|
+
</xsl:for-each>
|
|
136
|
+
</tbody>
|
|
137
|
+
</table>
|
|
138
|
+
<p
|
|
139
|
+
class="desc">
|
|
140
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
141
|
+
</p>
|
|
142
|
+
</xsl:if>
|
|
143
|
+
</div>
|
|
144
|
+
</body>
|
|
145
|
+
</html>
|
|
146
|
+
|
|
147
|
+
</xsl:template>
|
|
148
|
+
</xsl:stylesheet>
|
|
Binary file
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsl:stylesheet version="2.0"
|
|
3
|
+
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
4
|
+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
|
|
5
|
+
xmlns:sitemap="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
6
|
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
7
|
+
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes" />
|
|
8
|
+
<xsl:template match="/">
|
|
9
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
10
|
+
<head>
|
|
11
|
+
<title>XML Sitemap</title>
|
|
12
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
13
|
+
<style type="text/css">
|
|
14
|
+
body {
|
|
15
|
+
font-family: sans-serif;
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
color: #242628;
|
|
18
|
+
}
|
|
19
|
+
a {
|
|
20
|
+
color: #000;
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
}
|
|
23
|
+
a:hover {
|
|
24
|
+
text-decoration: underline;
|
|
25
|
+
}
|
|
26
|
+
table {
|
|
27
|
+
border: none;
|
|
28
|
+
border-collapse: collapse;
|
|
29
|
+
width: 100%
|
|
30
|
+
}
|
|
31
|
+
th {
|
|
32
|
+
text-align: left;
|
|
33
|
+
padding-right: 30px;
|
|
34
|
+
font-size: 11px;
|
|
35
|
+
}
|
|
36
|
+
thead th {
|
|
37
|
+
border-bottom: 1px solid #7d878a;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
td {
|
|
41
|
+
font-size:11px;
|
|
42
|
+
padding: 5px;
|
|
43
|
+
}
|
|
44
|
+
tr:nth-child(odd) td {
|
|
45
|
+
background-color: rgba(0,0,0,0.04);
|
|
46
|
+
}
|
|
47
|
+
tr:hover td {
|
|
48
|
+
background-color: #e2edf2;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
#content {
|
|
52
|
+
margin: 0 auto;
|
|
53
|
+
padding: 2% 5%;
|
|
54
|
+
max-width: 800px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.desc {
|
|
58
|
+
margin: 18px 3px;
|
|
59
|
+
line-height: 1.2em;
|
|
60
|
+
}
|
|
61
|
+
.desc a {
|
|
62
|
+
color: #5ba4e5;
|
|
63
|
+
}
|
|
64
|
+
</style>
|
|
65
|
+
</head>
|
|
66
|
+
<body>
|
|
67
|
+
<div id="content">
|
|
68
|
+
<h1>XML Sitemap</h1>
|
|
69
|
+
<p class="desc"> This is a sitemap generated by <a
|
|
70
|
+
href="https://www.nexodev.org">nexodev.org</a>
|
|
71
|
+
</p>
|
|
72
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) > 0">
|
|
73
|
+
<table id="sitemap" cellpadding="3">
|
|
74
|
+
<thead>
|
|
75
|
+
<tr>
|
|
76
|
+
<th width="75%">Sitemap</th>
|
|
77
|
+
<th width="25%">Last Modified</th>
|
|
78
|
+
</tr>
|
|
79
|
+
</thead>
|
|
80
|
+
<tbody>
|
|
81
|
+
<xsl:for-each select="sitemap:sitemapindex/sitemap:sitemap">
|
|
82
|
+
<xsl:variable name="sitemapURL">
|
|
83
|
+
<xsl:value-of select="sitemap:loc" />
|
|
84
|
+
</xsl:variable>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>
|
|
87
|
+
<a href="{$sitemapURL}">
|
|
88
|
+
<xsl:value-of select="sitemap:loc" />
|
|
89
|
+
</a>
|
|
90
|
+
</td>
|
|
91
|
+
<td>
|
|
92
|
+
<xsl:value-of
|
|
93
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
94
|
+
</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</xsl:for-each>
|
|
97
|
+
</tbody>
|
|
98
|
+
</table>
|
|
99
|
+
</xsl:if>
|
|
100
|
+
<xsl:if test="count(sitemap:sitemapindex/sitemap:sitemap) < 1">
|
|
101
|
+
<p class="desc">
|
|
102
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
103
|
+
</p>
|
|
104
|
+
<table
|
|
105
|
+
id="sitemap" cellpadding="3">
|
|
106
|
+
<thead>
|
|
107
|
+
<tr>
|
|
108
|
+
<th width="70%">URL (<xsl:value-of
|
|
109
|
+
select="count(sitemap:urlset/sitemap:url)" /> total)</th>
|
|
110
|
+
<th width="15%">Images</th>
|
|
111
|
+
<th title="Last Modification Time" width="15%">Last Modified</th>
|
|
112
|
+
</tr>
|
|
113
|
+
</thead>
|
|
114
|
+
<tbody>
|
|
115
|
+
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'" />
|
|
116
|
+
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
|
|
117
|
+
<xsl:for-each select="sitemap:urlset/sitemap:url">
|
|
118
|
+
<tr>
|
|
119
|
+
<td>
|
|
120
|
+
<xsl:variable name="itemURL">
|
|
121
|
+
<xsl:value-of select="sitemap:loc" />
|
|
122
|
+
</xsl:variable>
|
|
123
|
+
<a href="{$itemURL}">
|
|
124
|
+
<xsl:value-of select="sitemap:loc" />
|
|
125
|
+
</a>
|
|
126
|
+
</td>
|
|
127
|
+
<td>
|
|
128
|
+
<xsl:value-of select="count(image:image)" />
|
|
129
|
+
</td>
|
|
130
|
+
<td>
|
|
131
|
+
<xsl:value-of
|
|
132
|
+
select="concat(substring(sitemap:lastmod,0,11),concat(' ', substring(sitemap:lastmod,12,5)))" />
|
|
133
|
+
</td>
|
|
134
|
+
</tr>
|
|
135
|
+
</xsl:for-each>
|
|
136
|
+
</tbody>
|
|
137
|
+
</table>
|
|
138
|
+
<p
|
|
139
|
+
class="desc">
|
|
140
|
+
<a href="{{web-url}}sitemap.xml" class="back-link">← Back to index</a>
|
|
141
|
+
</p>
|
|
142
|
+
</xsl:if>
|
|
143
|
+
</div>
|
|
144
|
+
</body>
|
|
145
|
+
</html>
|
|
146
|
+
|
|
147
|
+
</xsl:template>
|
|
148
|
+
</xsl:stylesheet>
|