Skip to content

Commit c046044

Browse files
committedJan 8, 2024
I created the new Python module called "PHP", and imported the "Update_Websites" sub-class from the "Code" module.
I created the "Update_CSS_Colors" sub-class, using the "Generate_CSS_Selectors" class from the "Text_Generator" module as a base. I updated and improved the sub-class, with better, more organized, and beautiful ways of generating the contents of the "Colors.css" file. Reading the new format of the "Colors.json" file in the "PHP" folder, which now has a list and a dictionary of colors, with the name and Hex code of the colors. I also removed the "Text_Generator" module from the list of modules as I will no longer use it. On the "Python" module, I improved its "Create_New_Module" sub-class a lot. Leaving several things more organized and efficient, making the code more beautiful. And added several code comments too, to improve the understanding of the code.
1 parent 3008776 commit c046044

File tree

27 files changed

+930
-578
lines changed

27 files changed

+930
-578
lines changed
 

‎Module Files/Code/Texts.json

-64
Original file line numberDiff line numberDiff line change
@@ -83,69 +83,5 @@
8383
"you_finished_programming_in": {
8484
"pt": "Você terminou de programar em",
8585
"en": "You finished programming in"
86-
},
87-
"general, title()": {
88-
"pt": "Geral",
89-
"en": "General"
90-
},
91-
"websites": {
92-
"pt": "sites",
93-
"en": "websites"
94-
},
95-
"website, title()": {
96-
"pt": "Site",
97-
"en": "Website"
98-
},
99-
"websites, title()": {
100-
"pt": "Sites",
101-
"en": "Websites"
102-
},
103-
"select_a_website_to_update_its_html_contents": {
104-
"pt": "Selecione um site para atualizar seus conteúdos de HTML",
105-
"en": "Select a website to update its HTML contents"
106-
},
107-
"select_a_website_to_add_it_to_the_list": {
108-
"pt": "Selecione um site para adicioná-lo à lista",
109-
"en": "Select a website to add it to the list"
110-
},
111-
"updating_this_website": {
112-
"pt": "Atualizando este site",
113-
"en": "Updating this website"
114-
},
115-
"updating_these_websites": {
116-
"pt": "Atualizando estes sites",
117-
"en": "Updating these websites"
118-
},
119-
"website_link": {
120-
"pt": "Link do site",
121-
"en": "Website link"
122-
},
123-
"press_enter_when_the_pages_finish_loading": {
124-
"pt": "Pressione Enter quando as páginas terminarem de carregar",
125-
"en": "Press Enter when the pages finish loading"
126-
},
127-
"update_more_websites": {
128-
"pt": "Atualizar mais sites",
129-
"en": "Update more websites"
130-
},
131-
"copy_and_paste_the_text": {
132-
"pt": "Copie e cole o texto",
133-
"en": "Copy and paste the text"
134-
},
135-
"create_website_list_to_update": {
136-
"pt": "Criar lista de sites para atualizar",
137-
"en": "Create website list to update"
138-
},
139-
"finish_selection": {
140-
"pt": "Terminar seleção",
141-
"en": "Finish selection"
142-
},
143-
"you_finished_updating_the_website": {
144-
"pt": "Você terminou de atualizar o site",
145-
"en": "You finished updating the website"
146-
},
147-
"you_finished_updating_these_websites": {
148-
"pt": "Você terminou de atualizar estes sites",
149-
"en": "You finished updating these websites"
15086
}
15187
}

‎Module Files/Food_Time/Times.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"Will be hungry": 3
1111
},
1212
"Ate": {
13-
"Object": "2024-01-02 14:20:24-03:00",
13+
"Object": "2024-01-08 20:28:17-03:00",
1414
"Time": 0,
15-
"Time text": "14:20",
15+
"Time text": "20:28",
1616
"Unit": {
1717
"en": "hours",
1818
"pt": "horas"
@@ -23,9 +23,9 @@
2323
}
2424
},
2525
"Can drink water": {
26-
"Object": "2024-01-02 15:00:24-03:00",
26+
"Object": "2024-01-08 21:08:17-03:00",
2727
"Time": 40,
28-
"Time text": "15:00",
28+
"Time text": "21:08",
2929
"Unit": {
3030
"en": "minutes",
3131
"pt": "minutos"
@@ -36,9 +36,9 @@
3636
}
3737
},
3838
"Will be hungry": {
39-
"Object": "2024-01-02 17:20:24-03:00",
39+
"Object": "2024-01-08 23:28:17-03:00",
4040
"Time": 3,
41-
"Time text": "17:20",
41+
"Time text": "23:28",
4242
"Unit": {
4343
"en": "hours",
4444
"pt": "horas"

‎Module Files/GamePlayer/Texts.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
"first_game_session_of_the_{}_category_in_year": {
7171
"en": "First game session of the \"{}\" category in year",
72-
"pt": "Primeira sessão de jogo da categria \"{}\" no ano"
72+
"pt": "Primeira sessão de jogo da categoria \"{}\" no ano"
7373
},
7474
"start_counting_the_session_time": {
7575
"en": "Start counting the session time",

‎Module Files/PHP/Texts.json

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"general, title()": {
3+
"pt": "Geral",
4+
"en": "General"
5+
},
6+
"websites": {
7+
"pt": "sites",
8+
"en": "websites"
9+
},
10+
"website, title()": {
11+
"pt": "Site",
12+
"en": "Website"
13+
},
14+
"websites, title()": {
15+
"pt": "Sites",
16+
"en": "Websites"
17+
},
18+
"select_a_website_to_update_its_html_contents": {
19+
"pt": "Selecione um site para atualizar seus conteúdos de HTML",
20+
"en": "Select a website to update its HTML contents"
21+
},
22+
"select_a_website_to_add_it_to_the_list": {
23+
"pt": "Selecione um site para adicioná-lo à lista",
24+
"en": "Select a website to add it to the list"
25+
},
26+
"updating_this_website": {
27+
"pt": "Atualizando este site",
28+
"en": "Updating this website"
29+
},
30+
"updating_these_websites": {
31+
"pt": "Atualizando estes sites",
32+
"en": "Updating these websites"
33+
},
34+
"website_link": {
35+
"pt": "Link do site",
36+
"en": "Website link"
37+
},
38+
"press_enter_when_the_pages_finish_loading": {
39+
"pt": "Pressione Enter quando as páginas terminarem de carregar",
40+
"en": "Press Enter when the pages finish loading"
41+
},
42+
"update_more_websites": {
43+
"pt": "Atualizar mais sites",
44+
"en": "Update more websites"
45+
},
46+
"copy_and_paste_the_text": {
47+
"pt": "Copie e cole o texto",
48+
"en": "Copy and paste the text"
49+
},
50+
"create_website_list_to_update": {
51+
"pt": "Criar lista de sites para atualizar",
52+
"en": "Create website list to update"
53+
},
54+
"finish_selection": {
55+
"pt": "Terminar seleção",
56+
"en": "Finish selection"
57+
},
58+
"you_finished_updating_the_website": {
59+
"pt": "Você terminou de atualizar o site",
60+
"en": "You finished updating the website"
61+
},
62+
"you_finished_updating_these_websites": {
63+
"pt": "Você terminou de atualizar estes sites",
64+
"en": "You finished updating these websites"
65+
},
66+
"the_file_of_colors_was_not_modified": {
67+
"pt": "O arquivo de cores não foi modificado",
68+
"en": "The file of colors was not modified"
69+
},
70+
"the_file_of_colors_was_updated_with_new_contents": {
71+
"pt": "O arquivo de cores foi atualizado com novos conteúdos",
72+
"en": "The file of colors was updated with new contents"
73+
}
74+
}
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<key name="Task32" modified="2022-02-08 14:24:07" build="210912">
2-
<value name="Name" type="string" data="{Years}"/>
1+
<key name="Task27" modified="2024-01-08 18:33:05" build="230724">
2+
<value name="Name" type="string" data="{PHP}"/>
33
<value name="Flags" type="dword" data="00000004"/>
44
<value name="Hotkey" type="dword" data="00000000"/>
55
<value name="GuiArgs" type="string" data=""/>
66
<value name="Active" type="long" data="0"/>
77
<value name="Count" type="long" data="1"/>
8-
<value name="Cmd1" type="string" data="py C:\Apps\MS.py -years"/>
8+
<value name="Cmd1" type="string" data="py C:\Apps\MS.py -php"/>
99
</key>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
32
1+
27

‎Module Files/Python/Main class code template.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# [].py
1+
# [module_name].py
22

3-
class [](object):
3+
class [module_name](object):
44
def __init__(self):
55
# Define the module folders
66
from Utility.Define_Folders import Define_Folders as Define_Folders
@@ -75,7 +75,7 @@ class [](object):
7575
def Define_Texts(self):
7676
self.texts = self.JSON.To_Python(self.folders["apps"]["module_files"][self.module["key"]]["texts"])
7777

78-
self.language_texts = self.Language.Item(self.texts)
78+
self.language_texts = self.JSON.Language.Item(self.texts)
7979

8080
self.large_bar = "-----"
8181
self.dash_space = "-"
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"testing": true,
3-
"verbose": true,
2+
"testing": false,
3+
"verbose": false,
44
"user_information": false,
55
"Has active switches": false
66
}

‎Module Files/Utility/Language/Texts.json

+4
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,10 @@
495495
"en": "Empty",
496496
"pt": "Vazio"
497497
},
498+
"empty, title(), feminine": {
499+
"en": "Empty",
500+
"pt": "Vazia"
501+
},
498502
"nothing, title()": {
499503
"en": "Nothing",
500504
"pt": "Nada"

‎Modules/Code/Descriptions.json

-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,5 @@
66
"Help_With_Programming": {
77
"en": "Help with programming",
88
"pt": "Ajudar na programação"
9-
},
10-
"Update_Websites": {
11-
"en": "Update websites",
12-
"pt": "Atualizar sites"
139
}
1410
}

‎Modules/Modules.json

+35-35
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
{
2-
"Utility": {
3-
"List": [
4-
"API",
5-
"Date",
6-
"Define_Folders",
7-
"File",
8-
"Folder",
9-
"Global_Switches",
10-
"Input",
11-
"JSON",
12-
"Language",
2+
"Utility": {
3+
"List": [
4+
"API",
5+
"Date",
6+
"Define_Folders",
7+
"File",
8+
"Folder",
9+
"Global_Switches",
10+
"Input",
11+
"JSON",
12+
"Language",
1313
"System",
14-
"Text"
15-
]
16-
},
17-
"Usage": {
18-
"List": [
19-
"Block_Websites",
20-
"Christmas",
21-
"Code",
14+
"Text"
15+
]
16+
},
17+
"Usage": {
18+
"List": [
19+
"Block_Websites",
20+
"Christmas",
21+
"Code",
2222
"Database",
23-
"Diary",
24-
"Diary_Slim",
25-
"Food_Time",
26-
"Friends",
27-
"GamePlayer",
28-
"Project_Zomboid",
29-
"Python",
30-
"Social_Networks",
31-
"SproutGigs",
32-
"Stories",
33-
"Tasks",
34-
"Text_Generator",
35-
"Watch_History",
36-
"Years"
37-
]
38-
}
23+
"Diary",
24+
"Diary_Slim",
25+
"Food_Time",
26+
"Friends",
27+
"GamePlayer",
28+
"PHP",
29+
"Project_Zomboid",
30+
"Python",
31+
"Social_Networks",
32+
"SproutGigs",
33+
"Stories",
34+
"Tasks",
35+
"Watch_History",
36+
"Years"
37+
]
38+
}
3939
}

‎Modules/PHP/Descriptions.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"show_text": {
3+
"pt": "Gerenciar sites em PHP",
4+
"en": "Manage PHP websites"
5+
},
6+
"Update_Websites": {
7+
"en": "Update websites",
8+
"pt": "Atualizar sites"
9+
},
10+
"Update_CSS_Colors": {
11+
"pt": "Atualizar cores CSS",
12+
"en": "Update CSS colors"
13+
}
14+
}

0 commit comments

Comments
 (0)
Please sign in to comment.