q2rad 0.1.222__py3-none-any.whl → 0.1.223__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.
Potentially problematic release.
This version of q2rad might be problematic. Click here for more details.
- q2rad/q2actions.py +1 -0
- q2rad/q2forms.py +1 -0
- q2rad/q2lines.py +1 -0
- q2rad/q2modules.py +2 -1
- q2rad/q2queries.py +1 -0
- q2rad/q2rad.py +17 -1
- q2rad/q2reports.py +1 -0
- q2rad/version.py +1 -1
- {q2rad-0.1.222.dist-info → q2rad-0.1.223.dist-info}/METADATA +1 -1
- {q2rad-0.1.222.dist-info → q2rad-0.1.223.dist-info}/RECORD +13 -13
- {q2rad-0.1.222.dist-info → q2rad-0.1.223.dist-info}/LICENSE +0 -0
- {q2rad-0.1.222.dist-info → q2rad-0.1.223.dist-info}/WHEEL +0 -0
- {q2rad-0.1.222.dist-info → q2rad-0.1.223.dist-info}/entry_points.txt +0 -0
q2rad/q2actions.py
CHANGED
|
@@ -139,6 +139,7 @@ class Q2Actions(Q2Form, Q2_save_and_run):
|
|
|
139
139
|
self.add_control("/t", _("Comment"))
|
|
140
140
|
self.add_control("comment", gridlabel=_("Comments"), datatype="longtext", control="longtext")
|
|
141
141
|
self.add_control("/")
|
|
142
|
+
self.add_control("q2_time", "Time", datatype="int", noform=1, alignment=7)
|
|
142
143
|
self._add_save_and_run()
|
|
143
144
|
self._add_save_and_run_visible()
|
|
144
145
|
|
q2rad/q2forms.py
CHANGED
q2rad/q2lines.py
CHANGED
q2rad/q2modules.py
CHANGED
|
@@ -56,7 +56,8 @@ class Q2Modules(Q2Form, Q2_save_and_run):
|
|
|
56
56
|
self.add_control("/t", "Comment")
|
|
57
57
|
self.add_control("comment", _("Comment"), control="text", dattype="text")
|
|
58
58
|
|
|
59
|
-
self.add_control("last_line", "Last line", datatype="int", noform=1, migrate=1)
|
|
59
|
+
self.add_control("last_line", "Last line", datatype="int", noform=1, migrate=1, nogrid=1)
|
|
60
|
+
self.add_control("q2_time", "Time", datatype="int", noform=1, alignment=7)
|
|
60
61
|
self.add_control("/")
|
|
61
62
|
|
|
62
63
|
cursor: Q2Cursor = self.q2_app.db_logic.table(table_name="modules", order="name")
|
q2rad/q2queries.py
CHANGED
|
@@ -63,6 +63,7 @@ class Q2Queries(Q2Form, Q2_save_and_run):
|
|
|
63
63
|
# readonly=1,
|
|
64
64
|
)
|
|
65
65
|
self.add_control("comment", _("Comment"), datatype="longtext", noform=1)
|
|
66
|
+
self.add_control("q2_time", "Time", datatype="int", noform=1, alignment=7)
|
|
66
67
|
self._add_save_and_run(save_only=True)
|
|
67
68
|
self._add_save_and_run_visible(save_only=True)
|
|
68
69
|
|
q2rad/q2rad.py
CHANGED
|
@@ -425,6 +425,16 @@ class Q2RadApp(Q2App):
|
|
|
425
425
|
data_schema.add(**x)
|
|
426
426
|
db_logic.set_schema(data_schema)
|
|
427
427
|
|
|
428
|
+
data_schema = Q2DbSchema()
|
|
429
|
+
for form in (
|
|
430
|
+
Q2Constants(),
|
|
431
|
+
Q2Extensions(),
|
|
432
|
+
):
|
|
433
|
+
for x in form.get_table_schema():
|
|
434
|
+
data_schema.add(**x)
|
|
435
|
+
|
|
436
|
+
self.db_data.set_schema(data_schema)
|
|
437
|
+
|
|
428
438
|
def get_autocompletition_list(self):
|
|
429
439
|
rez = []
|
|
430
440
|
tables = self.db_data.db_schema.get_schema_tables()
|
|
@@ -558,7 +568,7 @@ class Q2RadApp(Q2App):
|
|
|
558
568
|
if self.dev_mode:
|
|
559
569
|
self.add_menu("Dev|Forms", self.run_forms)
|
|
560
570
|
self.add_menu("Dev|Modules", self.run_modules)
|
|
561
|
-
self.add_menu("Dev|
|
|
571
|
+
self.add_menu("Dev|Queries", self.run_queries)
|
|
562
572
|
self.add_menu("Dev|Reports", self.run_reports)
|
|
563
573
|
self.add_menu("Dev|Packages", self.run_packages)
|
|
564
574
|
self.add_menu("Dev|-")
|
|
@@ -1183,6 +1193,12 @@ class Q2RadApp(Q2App):
|
|
|
1183
1193
|
control="button",
|
|
1184
1194
|
valid=lambda: Q2Finder(finder.s.find_string).show_other("queries"),
|
|
1185
1195
|
)
|
|
1196
|
+
finder.add_control(
|
|
1197
|
+
"button",
|
|
1198
|
+
"Reports",
|
|
1199
|
+
control="button",
|
|
1200
|
+
valid=lambda: Q2Finder(finder.s.find_string).show_other("reports"),
|
|
1201
|
+
)
|
|
1186
1202
|
finder.cancel_button = 1
|
|
1187
1203
|
finder.run()
|
|
1188
1204
|
|
q2rad/q2reports.py
CHANGED
|
@@ -241,6 +241,7 @@ class Q2Reports(Q2Form, Q2_save_and_run):
|
|
|
241
241
|
noform=1,
|
|
242
242
|
)
|
|
243
243
|
self.add_control("comment", _("Comment"), datatype="text", noform=1)
|
|
244
|
+
self.add_control("q2_time", "Time", datatype="int", noform=1, alignment=7)
|
|
244
245
|
self._add_save_and_run(save_only=True)
|
|
245
246
|
self._add_save_and_run_visible(save_only=True)
|
|
246
247
|
|
q2rad/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.1.
|
|
1
|
+
__version__ = "0.1.223"
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
q2rad/__init__.py,sha256=Y0Up-UTXOmCYC9llNmTF10CpDDgF2kv10pyHT3-YwmQ,183
|
|
2
2
|
q2rad/__main__.py,sha256=zP4JARM-FzFHM-vWLehx7c5N4v4m_F-TuMobCdFzr4Q,824
|
|
3
|
-
q2rad/q2actions.py,sha256=
|
|
3
|
+
q2rad/q2actions.py,sha256=sZftIHXmrVRnmkHVA51foSyAel9ziIa82rAZq03OPh4,8342
|
|
4
4
|
q2rad/q2appmanager.py,sha256=8btKbT_NGBlNxscINVQnpdkLZ032OuvnFeYbXda4Xnw,20616
|
|
5
5
|
q2rad/q2appselector.py,sha256=bjl4MDg9DoU1h6NZOQDElaIGURjVQwiHnsUwr3kp3nc,18813
|
|
6
6
|
q2rad/q2constants.py,sha256=dQtN4OMvZw0FATDAFYjolI7eGMVUnNnbTl6qM-ggZ4I,3416
|
|
7
7
|
q2rad/q2extensions.py,sha256=ZAY2gXKjun666PeYfnqGH0X17ZmTgaOMmjCvxAIltJI,7595
|
|
8
|
-
q2rad/q2forms.py,sha256=
|
|
9
|
-
q2rad/q2lines.py,sha256=
|
|
8
|
+
q2rad/q2forms.py,sha256=U19O_zgLrIk0IXCEzscHhQTSIbgW8XS3ftO2ktEHJvo,11206
|
|
9
|
+
q2rad/q2lines.py,sha256=wm6U_WM2K3C9TLI8971_IYcjtUghlBUdIliMAhEESt0,19276
|
|
10
10
|
q2rad/q2make.py,sha256=wXoyBUwf2zaAl9JjWDCbjAteUElRq0O7ippyaMY9eug,6476
|
|
11
11
|
q2rad/q2market.py,sha256=RNXTNv-fFUgbzBGhHPNXlzGjsAHAtz71BRbTErJarNo,2641
|
|
12
|
-
q2rad/q2modules.py,sha256=
|
|
12
|
+
q2rad/q2modules.py,sha256=RwemVJwfxth0lBN4K96tKz62VOW71C7CmmKyhIoH5mc,4632
|
|
13
13
|
q2rad/q2packages.py,sha256=y72L1RAw1OgtKGaL8lJ1KHIaers5I6kTZSiphwwrY0M,3808
|
|
14
|
-
q2rad/q2queries.py,sha256=
|
|
15
|
-
q2rad/q2rad.py,sha256=
|
|
14
|
+
q2rad/q2queries.py,sha256=YYJEpC_0rXAV8W_lx2604yqnkooHzheFmDCfqbW02zY,13203
|
|
15
|
+
q2rad/q2rad.py,sha256=ObbJUrt_-3Tqu5hrMxY7GXlvkM7FBX8g6TlKBs7IGTo,55887
|
|
16
16
|
q2rad/q2raddb.py,sha256=tMX971d_awTwiWeYLkZGSfdrIs88oiNHBAs2cMFvSbU,4685
|
|
17
|
-
q2rad/q2reports.py,sha256=
|
|
17
|
+
q2rad/q2reports.py,sha256=np_Yfjy7oiQCK9MrFDlD9ojx1dIt6Yg3QqHkJbnjT6w,84886
|
|
18
18
|
q2rad/q2stylesettings.py,sha256=rEJLyLzsffJEXnMbg9bPB3KHLjYfw-49QgrtcYOfGV0,4769
|
|
19
19
|
q2rad/q2utils.py,sha256=Vb5K8Lbb7PzQGDiBEHFrPyDcytVnUSVXy9yIkvWM1Oc,19734
|
|
20
|
-
q2rad/version.py,sha256=
|
|
21
|
-
q2rad-0.1.
|
|
22
|
-
q2rad-0.1.
|
|
23
|
-
q2rad-0.1.
|
|
24
|
-
q2rad-0.1.
|
|
25
|
-
q2rad-0.1.
|
|
20
|
+
q2rad/version.py,sha256=1XpZ9ZHWiFjHHBz1xBKwDLpuS3A_Vb_IEKixlVSqME4,23
|
|
21
|
+
q2rad-0.1.223.dist-info/entry_points.txt,sha256=DmsJQE6f3wYuhdN2h6ARYxSe8_d03paeepfGpdVj5rs,42
|
|
22
|
+
q2rad-0.1.223.dist-info/LICENSE,sha256=JRR3LlR18ghhYXT4G2cWgXmnxRvcuVcKlqncWWK4MRY,10347
|
|
23
|
+
q2rad-0.1.223.dist-info/METADATA,sha256=hEnJx6Vf38LEGE1ghZ30FAgSLn7xu29pwoFQTaykDbs,3369
|
|
24
|
+
q2rad-0.1.223.dist-info/WHEEL,sha256=WGfLGfLX43Ei_YORXSnT54hxFygu34kMpcQdmgmEwCQ,88
|
|
25
|
+
q2rad-0.1.223.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|