Skip to content

Commit

Permalink
Upgrade to micro-MVC (4.2.6)
Browse files Browse the repository at this point in the history
  • Loading branch information
g0d committed Jan 5, 2024
1 parent 1a8842f commit ef15fff
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .htaccess
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# micro-MVC :: HTACCESS configuration file
# Copyright (C) 2016 - 2023
# Copyright (C) 2016 - 2024
# Open Software License (OSL 3.0)

Options All -Indexes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![alt tag](https://github.com/g0d/micro-MVC/blob/master/site/pix/micro_mvc.png)

# micro-MVC (4.2.5)
# micro-MVC (4.2.6)

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/889562a17e174c438fd56d35780822b0)](https://app.codacy.com/gh/g0d/micro-MVC/dashboard)

Expand Down Expand Up @@ -29,7 +29,7 @@ You may test micro-MVC [here](https://micro-mvc.co/).
Enjoy!

George Delaportas (G0D)
Copyright (C) 2015 - 2023 micro-MVC
Copyright (C) 2015 - 2024 micro-MVC
Open Software License (OSL 3.0)
Supported by [PROBOTEK](https://probotek.eu/)
Audited for web security & certified by [OCTAGON](https://octagonsec.gr/)
2 changes: 1 addition & 1 deletion framework/config/misc/ext_autoload.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"js" : ["vulcan", "jap", "yoda", "bull", "taurus", "sensei", "ajax_factory", "content_fetcher", "ultron"],
"js" : ["vulcan", "pythia", "jap", "yoda", "bull", "taurus", "sensei", "ajax_factory", "content_fetcher", "ultron"],
"php" : ["splash"]
}
6 changes: 3 additions & 3 deletions framework/extensions/js/core/msgbox/msgbox.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#msgbox_title
{
text-align: center;
background-color: #4d94b3;
background-color: #ff8d06;
border-radius: 6px;
width: 100%;
margin-left: auto;
Expand All @@ -57,7 +57,7 @@

#msgbox_content
{
text-align: justify;
text-align: center;
min-height: 100px;
margin-bottom: 10px;
}
Expand All @@ -67,7 +67,7 @@
color: #d8d8d8;
background-color: #45454a;
text-align: center;
border: solid 1px #479e44;
border: solid 1px #9e4444;
border-radius: 6px;
cursor: pointer;
width: 24%;
Expand Down
8 changes: 4 additions & 4 deletions framework/extensions/js/user/armadillo/armadillo.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*
Armadillo (JSON DB over the browser)
File: armadillo.js (Version: 1.1)
File: armadillo.js (Version: 1.2)
Description: This file contains the Armadillo extension.
Dependencies: Vulcan, Pythia and Sensei.
Coded by George Delaportas (G0D)
Copyright (C) 2017 - 2022
Copyright (C) 2017 - 2024
Open Software License (OSL 3.0)
*/

Expand Down Expand Up @@ -63,7 +63,7 @@ function armadillo()

for (__this_name in db_array)
{
if (__this_name == name)
if (__this_name === name)
return true;
}

Expand Down Expand Up @@ -144,7 +144,7 @@ function armadillo()

for (__index = 0; __index < __records_length; __index++)
{
if (__this_db[__index].id == values[0])
if (__this_db[__index].id === values[0])
return exec_code.call(this, [__index, __this_db, values[1]]);
}

Expand Down
7 changes: 5 additions & 2 deletions framework/extensions/js/user/workbox/workbox.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
{
text-align: center;
color: #FFFFFF;
background-color: #3eb5d7;
background-color: #ff8d06;
width: 100%;
border-radius: 6px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
Expand All @@ -42,7 +43,8 @@
color: #d8d8d8;
background-color: #3e3737;
text-align: center;
border: solid 1px #E06297;
border: solid 1px #9e4444;
border-radius: 6px;
cursor: pointer;
width: 20%;
margin-left: auto;
Expand Down Expand Up @@ -78,6 +80,7 @@
float: none;
color: #FFFFFF;
background-color: #413F44;
border-radius: 6px;
width: 520px;
height: 460px;
margin-left: auto;
Expand Down
2 changes: 1 addition & 1 deletion framework/misc/dispatchers/gates/auth.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Auth (Programmable gate for authentication)
Auth (Programmable gate for authentication) - { *** THIS IS A TEMPLATE / SAMPLE | NOT A FINAL CODE *** }
File name: auth.php
Description: This file contains the authentication gate (AJAX).
Expand Down
2 changes: 1 addition & 1 deletion framework/misc/dispatchers/gates/content.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Content (Programmable gate for delivering content)
Content (Programmable gate for delivering content) - { *** THIS IS A TEMPLATE / SAMPLE | NOT A FINAL CODE *** }
File name: content.php
Description: This file contains the content gate.
Expand Down
2 changes: 1 addition & 1 deletion framework/misc/dispatchers/gates/register.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Register (Programmable gate for registration)
Register (Programmable gate for registration) - { *** THIS IS A TEMPLATE / SAMPLE | NOT A FINAL CODE *** }
File name: register.php
Description: This file contains the registration gate (AJAX).
Expand Down
2 changes: 1 addition & 1 deletion framework/misc/dispatchers/gates/send_email.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Send Email (Programmable gate for delivering emails)
Send Email (Programmable gate for delivering emails) - { *** THIS IS A TEMPLATE / SAMPLE | NOT A FINAL CODE *** }
File name: send_email.php
Description: This file contains the send email gate.
Expand Down
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# micro-MVC :: Nginx Configuration
# Copyright (C) 2016 - 2023
# Copyright (C) 2016 - 2024
# Open Software License (OSL 3.0)

user nobody nogroup;
Expand Down

0 comments on commit ef15fff

Please sign in to comment.