Skip to content

Commit

Permalink
Update build scripts and link newest framework version
Browse files Browse the repository at this point in the history
  • Loading branch information
DaSpors committed Nov 20, 2023
1 parent 20fa761 commit 56347ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
/tools/PhpTracer/bin/Release/PhpTracer.vshost.exe.manifest
/tools/PhpTracer/bin/Release/PhpTracer.vshost.exe.config
/tools/PhpTracer/bin/Release/PhpTracer.vshost.exe

/tools/*.zip
/tools/*.phar
/web/documentor/controller/_quick.ref
/web/app/sample.db
/web/testing
/web/logs/*.*
/netbeans/Scavix WDF Tools/nbproject/private/
/netbeans/Scavix WebFramework/nbproject/private/

Expand Down
4 changes: 2 additions & 2 deletions tools/build/build.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

echo "Building '$pharname'...\n";

$conf = strtolower(array_pop($argv));
$conf = strtolower(array_pop($argv)?:'');
@mkdir($conf);

class StripFilesFilter extends RecursiveFilterIterator
{
public function accept()
public function accept():bool
{
return stripos($this->current()->getPathname(),'.git') === false;
}
Expand Down
2 changes: 1 addition & 1 deletion web/system
Submodule system updated 46 files
+2 −2 base/control.class.php
+10 −0 base/datetimeex.class.php
+38 −36 base/htmlpage.class.php
+37 −35 base/ratelimit.class.php
+14 −2 essentials/admin/sysadmin.class.php
+1 −1 essentials/admin/sysadminuser.class.php
+20 −19 essentials/localization/cultureinfo.inc.php
+80 −67 essentials/logging.php
+1 −1 essentials/logging/logentry.class.php
+16 −26 essentials/logging/logger.class.php
+2 −2 essentials/logging/tracelogger.class.php
+15 −4 essentials/model/columnschema.class.php
+126 −97 essentials/model/datasource.class.php
+96 −44 essentials/model/driver/mysql.class.php
+51 −25 essentials/model/driver/sqlite.class.php
+264 −225 essentials/model/model.class.php
+180 −171 essentials/model/query.class.php
+104 −70 essentials/model/resultset.class.php
+21 −11 essentials/model/tableschema.class.php
+3,839 −3,708 essentials/resources/lessphp/lessc.inc.php
+3 −6 essentials/resources/wdfresource.class.php
+1 −1 essentials/translation/poeditor/translationadmin.class.php
+1 −1 lib/controls/form/button.class.php
+2 −2 lib/controls/form/select.class.php
+1 −1 lib/controls/leaflet.class.php
+28 −12 lib/controls/listing/wdflisting.class.php
+1 −1 lib/controls/table/databasetable.class.php
+2 −2 lib/controls/table/tbody.class.php
+1 −1 lib/jquery-ui/uibutton.class.php
+1 −1 lib/jquery-ui/uidatabasetable.class.php
+4 −3 modules/cli.php
+2 −2 modules/cli/clilogger.class.php
+1 −1 modules/payment/gate2shop.class.php
+2 −2 modules/timeframe.php
+42 −0 modules/uploads.php
+181 −0 modules/uploads/folderarchivetask.class.php
+327 −0 modules/uploads/wdffilemodel.trait.php
+437 −0 modules/uploads/wdffolderarchive.class.php
+88 −90 res/htmlpage.js
+2 −2 res/jquery.js
+17 −0 res/wdflisting.less
+216 −141 system.php
+124 −93 system_functions.php
+2 −2 tasks/checktask.class.php
+3 −0 tasks/task.class.php
+59 −58 tasks/wdftaskmodel.class.php

0 comments on commit 56347ec

Please sign in to comment.