noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] branch unstable updated (bed2fd54a -> ffa6cb8


From: dwm
Subject: [Noalyss-commit] [noalyss] branch unstable updated (bed2fd54a -> ffa6cb848)
Date: Mon, 19 Aug 2024 15:03:07 -0400 (EDT)

sparkyx pushed a change to branch unstable
in repository noalyss.

    from bed2fd54a Merge branch 'unstable' of gitlab.com:noalyss/noalyss into 
unstable
     new 16347125b widget : Creation of widget for the DASHBOARD Contains 
widget Agenda, Todo List, Report ,...
     new 5a7a2c9b1 Widget : add install.php for each
     new 9d1f7bf29 Widget : javascript variable uniq
     new 7828333c0 Documentation
     new b9dc257e6 Cosmetic and Documentation
     new 0d4c6d23d WIDGET : ergonomy, show a number on the widget the dialog 
box to manage them appears
     new 9ed7fe540 WIDGET : db upgrade 199
     new e279559f7 PHPUnit : update test
     new ffa6cb848 Cosmetic : loading of widget

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 html/ajax_misc.php                                 |  10 +
 html/css/style-classic7.css                        | 143 ++++++++-
 html/js/noalyss_script.js                          | 301 +++++++++++++++++-
 html/js/todo_list.js                               |   8 +-
 include/ajax/ajax_calendar_zoom.php                |   2 +-
 include/ajax/ajax_preference.php                   |  19 --
 include/class/acc_ledger.class.php                 |   7 +-
 include/class/calendar.class.php                   |  12 +-
 include/class/noalyss_user.class.php               |  32 +-
 include/constant.php                               |   5 +-
 include/dashboard.inc.php                          |  18 +-
 include/sql/patch/upgrade199.sql                   |  67 ++++
 include/template/calendar.php                      |   7 +-
 include/template/dashboard.php                     | 210 ++-----------
 .../status_operation_event-main_display.php        |   2 +-
 include/widget/agenda/agenda.php                   |  55 ++++
 .../agenda/install.php}                            |  10 +-
 include/widget/ajax.php                            | 143 +++++++++
 include/widget/bookmark/bookmark.php               |  72 +++++
 .../bookmark/install.php}                          |  15 +-
 include/widget/coming_event/coming_event.php       |  44 +++
 .../coming_event/install.php}                      |  13 +-
 include/widget/event/event-display.php             |  54 ++++
 include/widget/event/event.php                     |  71 +++++
 .../event/install.php}                             |  15 +-
 .../invoice/install.php}                           |  15 +-
 include/widget/invoice/invoice-display.php         |  64 ++++
 include/widget/invoice/invoice.php                 |  85 +++++
 .../last_event/install.php}                        |  12 +-
 .../last_event/last_event-display.php}             |  41 +--
 .../last_event/last_event.php}                     |  55 ++--
 .../last_operation/install.php}                    |  12 +-
 .../last_operation/last_operation-display.php      |  54 ++++
 .../last_operation/last_operation.php}             |  55 ++--
 .../mini_report/install.php}                       |  13 +-
 include/widget/mini_report/mini_report.php         | 120 +++++++
 .../todo_list/install.php}                         |  11 +-
 .../todo_list/todo_list-display_new_note.php       |  45 +++
 include/widget/todo_list/todo_list.php             |  77 +++++
 include/widget/widget-development.md               | 110 +++++++
 include/widget/widget.php                          | 344 +++++++++++++++++++++
 sql/upgrade.sql                                    |  23 --
 .../{acc_balance.Test.php => acc_balanceTest.php}  |   0
 unit-test/include/class/acc_ledgerTest.php         |   2 +-
 unit-test/include/class/acc_ledger_searchTest.php  |   2 +-
 45 files changed, 2064 insertions(+), 411 deletions(-)
 create mode 100644 include/sql/patch/upgrade199.sql
 create mode 100644 include/widget/agenda/agenda.php
 copy include/{template/fiche_def-input_detail.php => 
widget/agenda/install.php} (73%)
 create mode 100644 include/widget/ajax.php
 create mode 100644 include/widget/bookmark/bookmark.php
 copy include/{template/fiche_def-input_detail.php => 
widget/bookmark/install.php} (69%)
 create mode 100644 include/widget/coming_event/coming_event.php
 copy include/{template/fiche_def-input_detail.php => 
widget/coming_event/install.php} (73%)
 create mode 100644 include/widget/event/event-display.php
 create mode 100644 include/widget/event/event.php
 copy include/{template/fiche_def-input_detail.php => widget/event/install.php} 
(68%)
 copy include/{template/fiche_def-input_detail.php => 
widget/invoice/install.php} (67%)
 create mode 100644 include/widget/invoice/invoice-display.php
 create mode 100644 include/widget/invoice/invoice.php
 copy include/{template/fiche_def-input_detail.php => 
widget/last_event/install.php} (75%)
 copy include/{template/tax_detail-button_export_csv.php => 
widget/last_event/last_event-display.php} (51%)
 copy include/{database/default_menu_sql.class.php => 
widget/last_event/last_event.php} (52%)
 copy include/{template/fiche_def-input_detail.php => 
widget/last_operation/install.php} (72%)
 create mode 100644 include/widget/last_operation/last_operation-display.php
 copy include/{class/bank.class.php => 
widget/last_operation/last_operation.php} (50%)
 copy include/{template/fiche_def-input_detail.php => 
widget/mini_report/install.php} (74%)
 create mode 100644 include/widget/mini_report/mini_report.php
 copy include/{template/fiche_def-input_detail.php => 
widget/todo_list/install.php} (74%)
 create mode 100644 include/widget/todo_list/todo_list-display_new_note.php
 create mode 100644 include/widget/todo_list/todo_list.php
 create mode 100644 include/widget/widget-development.md
 create mode 100644 include/widget/widget.php
 rename unit-test/include/class/{acc_balance.Test.php => acc_balanceTest.php} 
(100%)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]