zebra-day 0.0.32__py3-none-any.whl → 1.0.2__py3-none-any.whl

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.
Files changed (190) hide show
  1. zebra_day/__init__.py +35 -0
  2. zebra_day/bin/fetch_zebra_config.py +15 -0
  3. zebra_day/bin/generate_coord_grid_zpl.py +50 -0
  4. zebra_day/bin/print_zpl_from_file.py +21 -0
  5. zebra_day/bin/probe_new_label_dimensions.py +75 -0
  6. zebra_day/bin/scan_for_networed_zebra_printers_curl.sh +2 -1
  7. zebra_day/bin/zserve.py +701 -259
  8. zebra_day/cli/__init__.py +240 -0
  9. zebra_day/cli/cognito.py +121 -0
  10. zebra_day/cli/gui.py +255 -0
  11. zebra_day/cli/printer.py +168 -0
  12. zebra_day/cli/template.py +176 -0
  13. zebra_day/cmd_mgr.py +35 -0
  14. zebra_day/etc/label_styles/blank.zpl +0 -0
  15. zebra_day/etc/label_styles/cornersStripOf4Squares_1inX1in.zpl +55 -0
  16. zebra_day/etc/label_styles/corners_1inX2in.zpl +28 -0
  17. zebra_day/etc/label_styles/corners_20cmX30cm.zpl +6 -0
  18. zebra_day/etc/label_styles/corners_smallTube.zpl +7 -0
  19. zebra_day/etc/label_styles/corners_unspecifiedDimensions.zpl +15 -0
  20. zebra_day/etc/label_styles/plate_1inX0.25inHD.zpl +9 -0
  21. zebra_day/etc/label_styles/smallTubeWdotHD_prod.zpl +8 -0
  22. zebra_day/etc/label_styles/smallTubeWdot_corners.zpl +7 -0
  23. zebra_day/etc/label_styles/smallTubeWdot_prod.zpl +8 -0
  24. zebra_day/etc/label_styles/smallTubeWdot_prodAlt1.zpl +6 -0
  25. zebra_day/etc/label_styles/smallTubeWdot_prodAlt1b.zpl +3 -0
  26. zebra_day/etc/label_styles/smallTubeWdot_prodV2.zpl +8 -0
  27. zebra_day/etc/label_styles/smallTubeWdot_reagent.zpl +29 -0
  28. zebra_day/etc/label_styles/stripOf4Squares_1inX1in.zpl +32 -0
  29. zebra_day/etc/label_styles/test_800dX800dCoordinateArray.zpl +1 -0
  30. zebra_day/etc/label_styles/tmps/tmp_zpl_templates.here +0 -0
  31. zebra_day/etc/label_styles/tube_20mmX30mmA.zpl +7 -0
  32. zebra_day/etc/label_styles/tube_2inX0.5in.zpl +15 -0
  33. zebra_day/etc/label_styles/tube_2inX0.5inHD.zpl +15 -0
  34. zebra_day/etc/label_styles/tube_2inX1inHD.zpl +22 -0
  35. zebra_day/etc/label_styles/tube_2inX1inHDv3.zpl +21 -0
  36. zebra_day/etc/old_printer_config/2026-02-01_01:50:25.022846_printer_config.json +1 -0
  37. zebra_day/etc/old_printer_config/2026-02-01_01:50:25.033657_printer_config.json +1 -0
  38. zebra_day/etc/old_printer_config/2026-02-01_01:50:25.039597_printer_config.json +3 -0
  39. zebra_day/etc/old_printer_config/2026-02-01_01:50:25.047295_printer_config.json +1 -0
  40. zebra_day/etc/old_printer_config/2026-02-01_01:50:25.055804_printer_config.json +1 -0
  41. zebra_day/etc/old_printer_config/2026-02-01_01:50:25.061337_printer_config.json +3 -0
  42. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.073326_printer_config.json +1 -0
  43. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.081950_printer_config.json +1 -0
  44. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.088251_printer_config.json +3 -0
  45. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.096501_printer_config.json +1 -0
  46. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.104767_printer_config.json +1 -0
  47. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.110364_printer_config.json +3 -0
  48. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.118239_printer_config.json +1 -0
  49. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.125950_printer_config.json +1 -0
  50. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.349866_printer_config.json +1 -0
  51. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.361085_printer_config.json +3 -0
  52. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.558323_printer_config.json +1 -0
  53. zebra_day/etc/old_printer_config/2026-02-01_01:51:24.565756_printer_config.json +3 -0
  54. zebra_day/etc/old_printer_config/{2023-10-25_02:19:04.139607_printer_config.json → 2026-02-01_01:51:29.739070_printer_config.json} +4 -3
  55. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.753796_printer_config.json +1 -0
  56. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.760201_printer_config.json +3 -0
  57. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.768747_printer_config.json +1 -0
  58. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.775312_printer_config.json +3 -0
  59. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.782533_printer_config.json +1 -0
  60. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.789287_printer_config.json +1 -0
  61. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.794230_printer_config.json +3 -0
  62. zebra_day/etc/old_printer_config/2026-02-01_01:51:29.800021_printer_config.json +5 -0
  63. zebra_day/etc/printer_config.json +3 -54
  64. zebra_day/etc/printer_config.template.json +3 -2
  65. zebra_day/etc/tmp_printers0.json +5 -0
  66. zebra_day/etc/tmp_printers374.json +5 -0
  67. zebra_day/etc/tmp_printers383.json +5 -0
  68. zebra_day/etc/tmp_printers450.json +5 -0
  69. zebra_day/etc/tmp_printers504.json +5 -0
  70. zebra_day/etc/tmp_printers608.json +5 -0
  71. zebra_day/etc/tmp_printers657.json +5 -0
  72. zebra_day/etc/tmp_printers838.json +5 -0
  73. zebra_day/etc/tmp_printers839.json +5 -0
  74. zebra_day/etc/tmp_printers933.json +5 -0
  75. zebra_day/etc/tmp_printers957.json +5 -0
  76. zebra_day/exceptions.py +88 -0
  77. zebra_day/files/hold +0 -0
  78. zebra_day/files/test_png_17696.png +0 -0
  79. zebra_day/files/test_png_23477.png +0 -0
  80. zebra_day/files/test_png_28157.png +0 -0
  81. zebra_day/files/test_png_35832.png +0 -0
  82. zebra_day/files/test_png_36400.png +0 -0
  83. zebra_day/files/test_png_40816.png +0 -0
  84. zebra_day/files/test_png_49564.png +0 -0
  85. zebra_day/files/test_png_53848.png +0 -0
  86. zebra_day/files/test_png_62542.png +0 -0
  87. zebra_day/files/test_png_91597.png +0 -0
  88. zebra_day/files/test_png_93633.png +0 -0
  89. zebra_day/files/tmpbjo3k7q1.png +0 -0
  90. zebra_day/files/tmpigtr4pwy.png +0 -0
  91. zebra_day/files/zpl_label_tube_2inX1in_2026-02-01_01:51:24.370964.png +0 -0
  92. zebra_day/logging_config.py +74 -0
  93. zebra_day/logs/.hold +0 -0
  94. zebra_day/logs/print_requests.log +2 -0
  95. zebra_day/paths.py +143 -0
  96. zebra_day/print_mgr.py +489 -103
  97. zebra_day/static/datschund.css +63 -43
  98. zebra_day/static/datschund.png +0 -0
  99. zebra_day/static/daylily.png +0 -0
  100. zebra_day/static/favicon.svg +20 -0
  101. zebra_day/static/general.css +99 -0
  102. zebra_day/static/js/zebra_modern.js +172 -0
  103. zebra_day/static/lsmc.css +354 -0
  104. zebra_day/static/moon.jpeg +0 -0
  105. zebra_day/static/oakland.css +0 -32
  106. zebra_day/static/popday_daylily.css +1 -1
  107. zebra_day/static/style.css +39 -0
  108. zebra_day/static/zebra_modern.css +771 -0
  109. zebra_day/templates/base.html +36 -0
  110. zebra_day/templates/bpr.html +72 -0
  111. zebra_day/templates/build_new_config.html +36 -0
  112. zebra_day/templates/build_print_request.html +32 -0
  113. zebra_day/templates/chg_ui_style.html +19 -0
  114. zebra_day/templates/edit_template.html +128 -0
  115. zebra_day/templates/edit_zpl.html +37 -0
  116. zebra_day/templates/index.html +82 -0
  117. zebra_day/templates/legacy/base.html +37 -0
  118. zebra_day/templates/legacy/bpr.html +72 -0
  119. zebra_day/templates/legacy/build_new_config.html +36 -0
  120. zebra_day/templates/legacy/build_print_request.html +32 -0
  121. zebra_day/templates/legacy/chg_ui_style.html +19 -0
  122. zebra_day/templates/legacy/edit_template.html +128 -0
  123. zebra_day/templates/legacy/edit_zpl.html +37 -0
  124. zebra_day/templates/legacy/index.html +82 -0
  125. zebra_day/templates/legacy/list_prior_configs.html +24 -0
  126. zebra_day/templates/legacy/print_result.html +30 -0
  127. zebra_day/templates/legacy/printer_details.html +25 -0
  128. zebra_day/templates/legacy/printer_status.html +70 -0
  129. zebra_day/templates/legacy/save_result.html +17 -0
  130. zebra_day/templates/legacy/send_print_request.html +34 -0
  131. zebra_day/templates/legacy/simple_print.html +94 -0
  132. zebra_day/templates/legacy/view_pstation_json.html +29 -0
  133. zebra_day/templates/list_prior_configs.html +24 -0
  134. zebra_day/templates/modern/base.html +98 -0
  135. zebra_day/templates/modern/config.html +141 -0
  136. zebra_day/templates/modern/dashboard.html +160 -0
  137. zebra_day/templates/modern/print_request.html +141 -0
  138. zebra_day/templates/modern/print_result.html +88 -0
  139. zebra_day/templates/modern/printer_detail.html +117 -0
  140. zebra_day/templates/modern/printers.html +133 -0
  141. zebra_day/templates/modern/save_result.html +46 -0
  142. zebra_day/templates/modern/template_editor.html +172 -0
  143. zebra_day/templates/modern/templates.html +122 -0
  144. zebra_day/templates/print_result.html +30 -0
  145. zebra_day/templates/printer_details.html +25 -0
  146. zebra_day/templates/printer_status.html +70 -0
  147. zebra_day/templates/save_result.html +17 -0
  148. zebra_day/templates/send_print_request.html +34 -0
  149. zebra_day/templates/simple_print.html +94 -0
  150. zebra_day/templates/view_pstation_json.html +29 -0
  151. zebra_day/web/__init__.py +9 -0
  152. zebra_day/web/app.py +171 -0
  153. zebra_day/web/auth.py +172 -0
  154. zebra_day/web/middleware.py +159 -0
  155. zebra_day/web/routers/__init__.py +2 -0
  156. zebra_day/web/routers/api.py +163 -0
  157. zebra_day/web/routers/ui.py +1051 -0
  158. zebra_day/zpl_renderer.py +273 -0
  159. zebra_day-1.0.2.dist-info/METADATA +786 -0
  160. zebra_day-1.0.2.dist-info/RECORD +179 -0
  161. {zebra_day-0.0.32.dist-info → zebra_day-1.0.2.dist-info}/WHEEL +1 -1
  162. zebra_day-1.0.2.dist-info/entry_points.txt +4 -0
  163. zebra_day/etc/.blind +0 -1
  164. zebra_day/etc/current_style.txt +0 -1
  165. zebra_day/etc/label_styles/test_2inX1in.zpl +0 -22
  166. zebra_day/etc/label_styles/tmps/labware_2inX1in.na.2023-10-24_12:49:21.045127.zpl +0 -21
  167. zebra_day/etc/label_styles/tmps/labware_2inX1in.naggg.2023-10-24_16:02:04.704814.8888.2023-10-24_16:02:16.443911.zpl +0 -21
  168. zebra_day/etc/label_styles/tmps/labware_2inX1in.naggg.2023-10-24_16:02:04.704814.zpl +0 -21
  169. zebra_day/etc/label_styles/tmps/test_2inX1in.na.2023-10-24_12:45:37.002774.zpl +0 -22
  170. zebra_day/etc/old_printer_config/2023-10-24_16:06:06.931764_printer_config.json +0 -67
  171. zebra_day/etc/printer_config.json~ +0 -67
  172. zebra_day/files/tmp_2olihg4.png +0 -0
  173. zebra_day/files/tmpveojoyvn.png +0 -0
  174. zebra_day/files/zpl_label_labware_2inX1in_2023-10-25_02:30:08.093631.png +0 -0
  175. zebra_day/files/zpl_label_test_2inX1in_2023-10-24_15:54:29.343124.png +0 -0
  176. zebra_day/files/zpl_label_test_2inX1in_2023-10-24_16:01:45.670132.png +0 -0
  177. zebra_day/static/beyonce.css +0 -227
  178. zebra_day/static/datschund_on_moon.css +0 -164
  179. zebra_day/static/medicalsci.css +0 -144
  180. zebra_day/static/moar_zebra.css +0 -133
  181. zebra_day/static/popday.css +0 -140
  182. zebra_day/static/popday_dark.css +0 -140
  183. zebra_day/static/popday_dog.css +0 -140
  184. zebra_day-0.0.32.dist-info/METADATA +0 -14
  185. zebra_day-0.0.32.dist-info/RECORD +0 -53
  186. zebra_day-0.0.32.dist-info/entry_points.txt +0 -2
  187. /zebra_day/{etc/label_styles/blank_0inX0in.zpl → bin/__init__.py} +0 -0
  188. /zebra_day/etc/label_styles/{labware_2inX1in.zpl → generic_2inX1in.zpl} +0 -0
  189. {zebra_day-0.0.32.dist-info → zebra_day-1.0.2.dist-info/licenses}/LICENSE +0 -0
  190. {zebra_day-0.0.32.dist-info → zebra_day-1.0.2.dist-info}/top_level.txt +0 -0
@@ -1,140 +0,0 @@
1
- @font-face {
2
- font-family: 'Monoid';
3
- src: url('/etc/Monoid-Regular-HalfTight-Dollar-0-1-l.ttf') format('truetype');
4
- font-weight: normal;
5
- font-style: normal;
6
- }
7
-
8
- body {
9
- font-family: 'Monoid', monospace;
10
- background-color: #FFD700; /* Bold golden background reminiscent of Warhol's color palette */
11
- color: #D91E63; /* Bold Pink text, Warhol-esque */
12
- margin: 0;
13
- padding: 20px;
14
- background-image: url('../imgs/datschund.pngx'); /* A repetitive pattern of daylilies, think Warhol's multiple Monroe's */
15
- background-repeat: repeat;
16
- }
17
-
18
- h1, h2 {
19
- color: #2E86C1; /* Vibrant blue for headers */
20
- border-bottom: 3px solid #2E86C1;
21
- padding-bottom: 5px;
22
- }
23
-
24
- ul {
25
- list-style-type: none;
26
- padding: 0;
27
- margin-left: 21px;
28
- }
29
-
30
- li::before {
31
- content: '';
32
- display: inline-block;
33
- width: 5px;
34
- height: 5px;
35
- border-radius: 50%;
36
- background-color: #D91E63; /* Reusing bold pink color */
37
- margin-right: 10px;
38
- vertical-align: middle;
39
- }
40
-
41
- a {
42
- color: #196F3D; /* A deep green for links, contrast with the daylily theme */
43
- text-decoration: none;
44
- transition: color 0.3s ease;
45
- }
46
-
47
- a:hover {
48
- color: #2E86C1; /* Vibrant blue on hover */
49
- }
50
-
51
- small {
52
- color: #7D3C98; /* Purple tint for smaller text, keeping with the vibrant palette */
53
- }
54
-
55
- .spinner-hidden {
56
- display: none;
57
- position: fixed;
58
- top: 0; left: 0; right: 0; bottom: 0;
59
- background: rgba(255,215,0,0.7); /* Transparent golden background, keeping in theme */
60
- z-index: 1000;
61
- align-items: center;
62
- justify-content: center;
63
- display: flex;
64
- }
65
-
66
- #spinner {
67
- position: fixed;
68
- top: 50%;
69
- left: 50%;
70
- transform: translate(-50%, -50%);
71
- z-index: 9999;
72
- }
73
-
74
- .loader, .cloader {
75
- border: 8px solid #7D3C98; /* Purple borders */
76
- border-top: 8px solid #2E86C1; /* Blue on top to keep the spinning noticeable */
77
- border-radius: 50%;
78
- width: 50px;
79
- height: 50px;
80
- animation: spin 1s linear infinite;
81
- }
82
-
83
- @keyframes spin {
84
- 0% { transform: rotate(0deg); }
85
- 100% { transform: rotate(360deg); }
86
- }
87
-
88
- hr {
89
- border: 0;
90
- height: 2px;
91
- background-image: linear-gradient(to right, #D91E63, #FFD700, #2E86C1);
92
- margin: 20px 0;
93
- }
94
-
95
- input[type=text], textarea, select {
96
- background-color: #FFFFFF; /* White background for input fields */
97
- color: #D91E63; /* Pink text */
98
- border: 2px solid #196F3D; /* Green border */
99
- border-radius: 5px;
100
- padding: 5px 10px;
101
- outline: none;
102
- transition: background-color 0.3s ease;
103
- }
104
-
105
- input[type=text]:hover, textarea:hover, select:hover {
106
- background-color: #FFFAE5; /* A very light yellow for hover */
107
- }
108
-
109
- input[type=submit], button, input[type="button"] {
110
- background-color: #D91E63; /* Pink buttons */
111
- color: #FFFFFF; /* White text on buttons */
112
- border: none;
113
- border-radius: 5px;
114
- padding: 8px 15px;
115
- cursor: pointer;
116
- outline: none;
117
- transition: background-color 0.3s ease;
118
- }
119
-
120
- input[type=submit]:hover, button:hover, input[type="button"]:hover {
121
- background-color: #E74C3C; /* Reddish hover effect */
122
- }
123
-
124
- textarea::-webkit-scrollbar {
125
- width: 10px;
126
- }
127
-
128
- textarea::-webkit-scrollbar-thumb {
129
- background-color: #2E86C1;
130
- border-radius: 5px;
131
- }
132
-
133
- textarea::-webkit-scrollbar-track {
134
- background-color: #FFD700; /* Golden background to keep in theme */
135
- border-radius: 5px;
136
- }
137
-
138
- #spinner.spinner-hidden {
139
- display: none;
140
- }
@@ -1,140 +0,0 @@
1
- @font-face {
2
- font-family: 'Monoid';
3
- src: url('/etc/Monoid-Regular-HalfTight-Dollar-0-1-l.ttf') format('truetype');
4
- font-weight: normal;
5
- font-style: normal;
6
- }
7
-
8
- body {
9
- font-family: 'Monoid', monospace;
10
- background-color: #FFD700; /* Bold golden background reminiscent of Warhol's color palette */
11
- color: #D91E63; /* Bold Pink text, Warhol-esque */
12
- margin: 0;
13
- padding: 20px;
14
- background-image: url('../imgs/moon.jpeg'); /* A repetitive pattern of daylilies, think Warhol's multiple Monroe's */
15
- background-repeat: repeat;
16
- }
17
-
18
- h1, h2 {
19
- color: #2E86C1; /* Vibrant blue for headers */
20
- border-bottom: 3px solid #2E86C1;
21
- padding-bottom: 5px;
22
- }
23
-
24
- ul {
25
- list-style-type: none;
26
- padding: 0;
27
- margin-left: 21px;
28
- }
29
-
30
- li::before {
31
- content: '';
32
- display: inline-block;
33
- width: 5px;
34
- height: 5px;
35
- border-radius: 50%;
36
- background-color: #D91E63; /* Reusing bold pink color */
37
- margin-right: 10px;
38
- vertical-align: middle;
39
- }
40
-
41
- a {
42
- color: #196F3D; /* A deep green for links, contrast with the daylily theme */
43
- text-decoration: none;
44
- transition: color 0.3s ease;
45
- }
46
-
47
- a:hover {
48
- color: #2E86C1; /* Vibrant blue on hover */
49
- }
50
-
51
- small {
52
- color: #7D3C98; /* Purple tint for smaller text, keeping with the vibrant palette */
53
- }
54
-
55
- .spinner-hidden {
56
- display: none;
57
- position: fixed;
58
- top: 0; left: 0; right: 0; bottom: 0;
59
- background: rgba(255,215,0,0.7); /* Transparent golden background, keeping in theme */
60
- z-index: 1000;
61
- align-items: center;
62
- justify-content: center;
63
- display: flex;
64
- }
65
-
66
- #spinner {
67
- position: fixed;
68
- top: 50%;
69
- left: 50%;
70
- transform: translate(-50%, -50%);
71
- z-index: 9999;
72
- }
73
-
74
- .loader, .cloader {
75
- border: 8px solid #7D3C98; /* Purple borders */
76
- border-top: 8px solid #2E86C1; /* Blue on top to keep the spinning noticeable */
77
- border-radius: 50%;
78
- width: 50px;
79
- height: 50px;
80
- animation: spin 1s linear infinite;
81
- }
82
-
83
- @keyframes spin {
84
- 0% { transform: rotate(0deg); }
85
- 100% { transform: rotate(360deg); }
86
- }
87
-
88
- hr {
89
- border: 0;
90
- height: 2px;
91
- background-image: linear-gradient(to right, #D91E63, #FFD700, #2E86C1);
92
- margin: 20px 0;
93
- }
94
-
95
- input[type=text], textarea, select {
96
- background-color: #FFFFFF; /* White background for input fields */
97
- color: #D91E63; /* Pink text */
98
- border: 2px solid #196F3D; /* Green border */
99
- border-radius: 5px;
100
- padding: 5px 10px;
101
- outline: none;
102
- transition: background-color 0.3s ease;
103
- }
104
-
105
- input[type=text]:hover, textarea:hover, select:hover {
106
- background-color: #FFFAE5; /* A very light yellow for hover */
107
- }
108
-
109
- input[type=submit], button, input[type="button"] {
110
- background-color: #D91E63; /* Pink buttons */
111
- color: #FFFFFF; /* White text on buttons */
112
- border: none;
113
- border-radius: 5px;
114
- padding: 8px 15px;
115
- cursor: pointer;
116
- outline: none;
117
- transition: background-color 0.3s ease;
118
- }
119
-
120
- input[type=submit]:hover, button:hover, input[type="button"]:hover {
121
- background-color: #E74C3C; /* Reddish hover effect */
122
- }
123
-
124
- textarea::-webkit-scrollbar {
125
- width: 10px;
126
- }
127
-
128
- textarea::-webkit-scrollbar-thumb {
129
- background-color: #2E86C1;
130
- border-radius: 5px;
131
- }
132
-
133
- textarea::-webkit-scrollbar-track {
134
- background-color: #FFD700; /* Golden background to keep in theme */
135
- border-radius: 5px;
136
- }
137
-
138
- #spinner.spinner-hidden {
139
- display: none;
140
- }
@@ -1,140 +0,0 @@
1
- @font-face {
2
- font-family: 'Monoid';
3
- src: url('/etc/Monoid-Regular-HalfTight-Dollar-0-1-l.ttf') format('truetype');
4
- font-weight: normal;
5
- font-style: normal;
6
- }
7
-
8
- body {
9
- font-family: 'Monoid', monospace;
10
- background-color: #FFD700; /* Bold golden background reminiscent of Warhol's color palette */
11
- color: #D91E63; /* Bold Pink text, Warhol-esque */
12
- margin: 0;
13
- padding: 20px;
14
- background-image: linear-gradient(rgba(21, 2, 2, 0.99), rgba(55, 55, 55, 0.8)), url('../imgs/datschund.png');
15
- background-repeat: repeat;
16
- }
17
-
18
- h1, h2 {
19
- color: rgb(222,221,222); /* Vibrant blue for headers */
20
- border-bottom: 3px solid #2E86C1;
21
- padding-bottom: 5px;
22
- }
23
-
24
- ul {
25
- list-style-type: none;
26
- padding: 0;
27
- margin-left: 21px;
28
- }
29
-
30
- li::before {
31
- content: '';
32
- display: inline-block;
33
- width: 5px;
34
- height: 5px;
35
- border-radius: 50%;
36
- background-color: #D91E63; /* Reusing bold pink color */
37
- margin-right: 10px;
38
- vertical-align: middle;
39
- }
40
-
41
- a {
42
- color: rgb(111,255,10); /* A deep green for links, contrast with the daylily theme */
43
- text-decoration: none;
44
- transition: color 0.3s ease;
45
- }
46
-
47
- a:hover {
48
- color: #2E86C1; /* Vibrant blue on hover */
49
- }
50
-
51
- small {
52
- color: rgba(221,1,211); /* Purple tint for smaller text, keeping with the vibrant palette */
53
- }
54
-
55
- .spinner-hidden {
56
- display: none;
57
- position: fixed;
58
- top: 0; left: 0; right: 0; bottom: 0;
59
- background: rgba(255,215,0,0.7); /* Transparent golden background, keeping in theme */
60
- z-index: 1000;
61
- align-items: center;
62
- justify-content: center;
63
- display: flex;
64
- }
65
-
66
- #spinner {
67
- position: fixed;
68
- top: 50%;
69
- left: 50%;
70
- transform: translate(-50%, -50%);
71
- z-index: 9999;
72
- }
73
-
74
- .loader, .cloader {
75
- border: 8px solid #7D3C98; /* Purple borders */
76
- border-top: 8px solid #2E86C1; /* Blue on top to keep the spinning noticeable */
77
- border-radius: 50%;
78
- width: 50px;
79
- height: 50px;
80
- animation: spin 1s linear infinite;
81
- }
82
-
83
- @keyframes spin {
84
- 0% { transform: rotate(0deg); }
85
- 100% { transform: rotate(360deg); }
86
- }
87
-
88
- hr {
89
- border: 0;
90
- height: 2px;
91
- background-image: linear-gradient(to right, #D91E63, #FFD700, #2E86C1);
92
- margin: 20px 0;
93
- }
94
-
95
- input[type=text], textarea, select {
96
- background-color: #FFFFFF; /* White background for input fields */
97
- color: #D91E63; /* Pink text */
98
- border: 2px solid #196F3D; /* Green border */
99
- border-radius: 5px;
100
- padding: 5px 10px;
101
- outline: none;
102
- transition: background-color 0.3s ease;
103
- }
104
-
105
- input[type=text]:hover, textarea:hover, select:hover {
106
- background-color: #FFFAE5; /* A very light yellow for hover */
107
- }
108
-
109
- input[type=submit], button, input[type="button"] {
110
- background-color: #D91E63; /* Pink buttons */
111
- color: #FFFFFF; /* White text on buttons */
112
- border: none;
113
- border-radius: 5px;
114
- padding: 8px 15px;
115
- cursor: pointer;
116
- outline: none;
117
- transition: background-color 0.3s ease;
118
- }
119
-
120
- input[type=submit]:hover, button:hover, input[type="button"]:hover {
121
- background-color: #E74C3C; /* Reddish hover effect */
122
- }
123
-
124
- textarea::-webkit-scrollbar {
125
- width: 10px;
126
- }
127
-
128
- textarea::-webkit-scrollbar-thumb {
129
- background-color: #2E86C1;
130
- border-radius: 5px;
131
- }
132
-
133
- textarea::-webkit-scrollbar-track {
134
- background-color: #FFD700; /* Golden background to keep in theme */
135
- border-radius: 5px;
136
- }
137
-
138
- #spinner.spinner-hidden {
139
- display: none;
140
- }
@@ -1,14 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: zebra-day
3
- Version: 0.0.32
4
- Summary: A Python library to manage a zebra printer fleet and an api for ZPL print requests.
5
- Home-page: https://github.com/Daylily-Informatics/zebra_day
6
- Author: John Major
7
- Author-email: john@daylilyinformatics.com
8
- License-File: LICENSE
9
- Requires-Dist: yaml-config-day
10
- Requires-Dist: requests
11
- Requires-Dist: pytz
12
- Requires-Dist: cherrypy
13
- Requires-Dist: ipython
14
-
@@ -1,53 +0,0 @@
1
- zebra_day/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- zebra_day/print_mgr.py,sha256=Gxoc_HA80yy94iUM3BONBSanNR1EnP1X0VzeLPq-6pI,9181
3
- zebra_day/bin/scan_for_networed_zebra_printers.py,sha256=chzUhIxHvOWoN3aBih2FNa7G0uCwcVKkGgcZUe5XJUQ,592
4
- zebra_day/bin/scan_for_networed_zebra_printers_arp_scan.sh,sha256=XMV7Wc3XF3cd8gkqdFTeH9mzaQ2rc2kZyOVI_VFmDoI,25
5
- zebra_day/bin/scan_for_networed_zebra_printers_curl.sh,sha256=JW2pVsm7m4feXKSA8O3vvAxAwTNIyGXY7BgiRkBcpgg,827
6
- zebra_day/bin/zserve.py,sha256=Ah7qsnMd1XRg4SsaXEpv2DG2HQ6vQYJa_y487FtwLlk,29209
7
- zebra_day/etc/.blind,sha256=J9FTfjerf_tRwE6ZYO5EWkwT-8-MAMfVE_v5KtK5FQg,14
8
- zebra_day/etc/Monoid-Regular-HalfTight-Dollar-0-1-l.ttf,sha256=RFG3q_GHoEFsEaJb-PIayWRgy_RuFeC0ABkjcSBXT7c,79748
9
- zebra_day/etc/current_style.txt,sha256=xhkXwpPLirLbkWwCSpGTScAoZYadxqN3tGZQWXTSVJg,5
10
- zebra_day/etc/printer_config.json,sha256=ywSp-Pbr-xIM9-WQcPx8dzpJMRTfhKwe7xI7UwO_Bfg,2181
11
- zebra_day/etc/printer_config.json~,sha256=lXlsxS9zU6785JvXFXxOLSwfAwVIw1fF6KGEosVbaBU,2169
12
- zebra_day/etc/printer_config.template.json,sha256=3YGn4hwjPC9RbQYJlzAdXcqKm8IE2CVtCx0lAlGW6PA,352
13
- zebra_day/etc/label_styles/blank_0inX0in.zpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- zebra_day/etc/label_styles/labware_2inX1in.zpl,sha256=Bdav8dcm6X8ZNvpgFXl5TZlPV97sZHY8ORzmNVogEnk,261
15
- zebra_day/etc/label_styles/plate_1inX0.25in.zpl,sha256=NBUKRsBj1azzssW-thL3h4p1-UlXX2RICZFe3nG0B1Y,107
16
- zebra_day/etc/label_styles/test_2inX1in.zpl,sha256=q1LajmyCW5ZGPQUIG9lmDfgay1WkLPwe5YjBUCtJ25U,243
17
- zebra_day/etc/label_styles/tube_2inX0.3in.zpl,sha256=39Sc-oZeVLrbvy2OH4oN7xQaZ2R6YHWHVIhQoQ_PGkw,181
18
- zebra_day/etc/label_styles/tube_2inX1in.zpl,sha256=kR6lUF4VWlAp1DvxjoQVi6BeenwySam5tdNzsKtnK6g,287
19
- zebra_day/etc/label_styles/tmps/.hold,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- zebra_day/etc/label_styles/tmps/labware_2inX1in.na.2023-10-24_12:49:21.045127.zpl,sha256=Bdav8dcm6X8ZNvpgFXl5TZlPV97sZHY8ORzmNVogEnk,261
21
- zebra_day/etc/label_styles/tmps/labware_2inX1in.naggg.2023-10-24_16:02:04.704814.8888.2023-10-24_16:02:16.443911.zpl,sha256=Bdav8dcm6X8ZNvpgFXl5TZlPV97sZHY8ORzmNVogEnk,261
22
- zebra_day/etc/label_styles/tmps/labware_2inX1in.naggg.2023-10-24_16:02:04.704814.zpl,sha256=Bdav8dcm6X8ZNvpgFXl5TZlPV97sZHY8ORzmNVogEnk,261
23
- zebra_day/etc/label_styles/tmps/test_2inX1in.na.2023-10-24_12:45:37.002774.zpl,sha256=87OHsLhPH9trT3YzEGlGfEI4qYf246CQKyTsZlQCkHM,264
24
- zebra_day/etc/old_printer_config/.hold,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- zebra_day/etc/old_printer_config/2023-10-24_16:06:06.931764_printer_config.json,sha256=lXlsxS9zU6785JvXFXxOLSwfAwVIw1fF6KGEosVbaBU,2169
26
- zebra_day/etc/old_printer_config/2023-10-25_02:19:04.139607_printer_config.json,sha256=3YGn4hwjPC9RbQYJlzAdXcqKm8IE2CVtCx0lAlGW6PA,352
27
- zebra_day/files/.hold,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- zebra_day/files/tmp_2olihg4.png,sha256=GRLBzyGc9HoQikKmJuUwoMH_Q24dCV2Zut-Ec71sAgc,8250
29
- zebra_day/files/tmpveojoyvn.png,sha256=MT9EABbouo7WfFQXNwuhvf3hceJwKi2kxvgZQWCHlxE,8250
30
- zebra_day/files/zpl_label_labware_2inX1in_2023-10-25_02:30:08.093631.png,sha256=fnSBNRYdjcnACCohVQN5DCY54qrzpW2pQg2NTtlKJXg,9624
31
- zebra_day/files/zpl_label_test_2inX1in_2023-10-24_15:54:29.343124.png,sha256=MQNDNvRxjeumzM9WknXYfMwG0hJXUKoL2LMZtmQc7uI,6122
32
- zebra_day/files/zpl_label_test_2inX1in_2023-10-24_16:01:45.670132.png,sha256=8Br4aLej77TXTNODbW5dUKKx9O7gdZuGcg-NWtdi0Hs,6744
33
- zebra_day/static/beyonce.css,sha256=ERbdVf7xItpp8PbHhY4SZyoIxrRRYELOoxlzPb57dwg,5276
34
- zebra_day/static/datschund.css,sha256=5sm1GSrvGh7U61MhB-Ih-w--NfC9ItKibiRZY1VNoyw,2739
35
- zebra_day/static/datschund_on_moon.css,sha256=4hGlB8yRD0huS9VA7soLZfv-OajGUwp2RxnjRm_gADc,3508
36
- zebra_day/static/medicalsci.css,sha256=ecpwyb7nbN272hwckmADwvLQZRFP1AW7vPB0TpxhN5c,3035
37
- zebra_day/static/moar_zebra.css,sha256=IStF2_5mYsGAZT5iA_Gwq4G8vjGFp-Ve1hjKvn7b1TE,2628
38
- zebra_day/static/oakland.css,sha256=ipd0HPIgaVbADOMrFZcrsrydWlX8yHRG6p_JyFwXlJE,5245
39
- zebra_day/static/petrichor.css,sha256=fvppzOpgrGQHlcnVDIlUTUDNXOcrLR9VfYeJ1kQOXSI,3037
40
- zebra_day/static/popday.css,sha256=guB2UNAC-Ye8MVm-eav9HigBDbafK4csfgNYt0LlFyw,3396
41
- zebra_day/static/popday_dark.css,sha256=jHOPNmB--4e9CThjXnfpXlTIHyvhv23FqBxZOKgfeSM,3391
42
- zebra_day/static/popday_daylily.css,sha256=w5hQDgJ_LhqRIVCajPXSZyyqDHxNU4eUYxA3DfOt6bQ,3388
43
- zebra_day/static/popday_dog.css,sha256=crEdsN8cFyOz38ptDoeqHrQfpXrn1gOTc6qGsifUvKs,3408
44
- zebra_day/static/style.css,sha256=ecpwyb7nbN272hwckmADwvLQZRFP1AW7vPB0TpxhN5c,3035
45
- zebra_day/static/triangles.css,sha256=9SYCqxX1cxAA_adunAg8PLuR4j8gnfh5vf01nEKiFY8,2778
46
- zebra_day/static/tron.css,sha256=EodvGGALe0ePUeSaYPZU8zPP84b_onGIwI3zgaeTg_U,8579
47
- zebra_day/static/zebras.css,sha256=I5k4_s8qg2qPtwxVX_R-KUWIED1nNkTWz2xzdDuwX-o,3600
48
- zebra_day-0.0.32.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
49
- zebra_day-0.0.32.dist-info/METADATA,sha256=B1I0gG__xh6TK7LwqAJDaBfgLlEcviJ-7hdkSUa5ak0,413
50
- zebra_day-0.0.32.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
51
- zebra_day-0.0.32.dist-info/entry_points.txt,sha256=NLTVkdKESWZKYvqhNwXH_-KVuaJYpFM1f0eYchy75hY,61
52
- zebra_day-0.0.32.dist-info/top_level.txt,sha256=YTHvTEmr_0Jdxstja9CpvzaFCBedOq8EhKnrhDg4Pm4,10
53
- zebra_day-0.0.32.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- zday_quickstart = zebra_day.print_mgr:main