File manager - Edit - /home/opticamezl/www/newok/531c5/com_users.tar
Back
js/admin-users-mail.js 0000644 00000002343 15172633063 0010675 0 ustar 00 /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt * * @deprecated 4.3 * This file is deprecated and will be removed with Joomla 5.0 */ (() => { document.addEventListener('DOMContentLoaded', () => { Joomla.submitbutton = pressbutton => { const form = document.adminForm; const html = document.createElement('joomla-alert'); if (pressbutton === 'mail.cancel') { Joomla.submitform(pressbutton); return; } // do field validation if (form.jform_subject.value === '') { html.innerText = Joomla.Text._('COM_USERS_MAIL_PLEASE_FILL_IN_THE_SUBJECT'); form.insertAdjacentElement('afterbegin', html); } else if (form.jform_group.value < 0) { html.innerText = Joomla.Text._('COM_USERS_MAIL_PLEASE_SELECT_A_GROUP'); form.insertAdjacentElement('afterbegin', html); } else if (form.jform_message.value === '') { html.innerText = Joomla.Text._('COM_USERS_MAIL_PLEASE_FILL_IN_THE_MESSAGE'); form.insertAdjacentElement('afterbegin', html); } else { Joomla.submitform(pressbutton); } }; }); })(); js/admin-users-mail.min.js 0000644 00000001570 15172633063 0011460 0 ustar 00 /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt * * @deprecated 4.3 * This file is deprecated and will be removed with Joomla 5.0 */document.addEventListener("DOMContentLoaded",()=>{Joomla.submitbutton=n=>{const e=document.adminForm,t=document.createElement("joomla-alert");if(n==="mail.cancel"){Joomla.submitform(n);return}e.jform_subject.value===""?(t.innerText=Joomla.Text._("COM_USERS_MAIL_PLEASE_FILL_IN_THE_SUBJECT"),e.insertAdjacentElement("afterbegin",t)):e.jform_group.value<0?(t.innerText=Joomla.Text._("COM_USERS_MAIL_PLEASE_SELECT_A_GROUP"),e.insertAdjacentElement("afterbegin",t)):e.jform_message.value===""?(t.innerText=Joomla.Text._("COM_USERS_MAIL_PLEASE_FILL_IN_THE_MESSAGE"),e.insertAdjacentElement("afterbegin",t)):Joomla.submitform(n)}}); js/admin-users-mail.min.js.gz 0000644 00000000732 15172633063 0012076 0 ustar 00 � ���o�0��+NyJ3�ۤ�4l,s)U���g�q0rld_�S�>�t[+�e������O���n��U���7[�8K�b�3,�h�p�W3I�>�`j��-�>\����휫�d�oFO^F+����|�襁��4ZA�|}@��p��~�i��g�@8�U���$a�}h�W��� kmt���Vp��@��vl{���2|b�t��SM����*~@K��B���,s�Z�� ��'����BS֚ʆ��Ԧ�G�l ��c���u���ʣ$��.����=E�P�c��iTKm��V����/���c�=R�� ٮUDh�*bil-�/11m-�%>P��ў���l1���b6���.�る�i���\,o�(V�ny���2mzW;���ox�&�%n��z�$��X6�5�3��� �y�c1�_���BPcr��/�/����~�tJ����Z�x js/two-factor-focus.js 0000644 00000003567 15172633063 0010741 0 ustar 00 /** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (() => { document.addEventListener('DOMContentLoaded', () => { const elCodeField = document.getElementById('users-mfa-code'); const elValidateButton = document.getElementById('users-mfa-captive-button-submit'); const elToolbarButton = document.getElementById('toolbar-user-mfa-submit')?.querySelector('button'); // Focus the code field. If the code field is hidden, focus the submit button (useful e.g. for WebAuthn) if (elCodeField && elCodeField.style.display !== 'none' && !elCodeField.classList.contains('visually-hidden') && elCodeField.type !== 'hidden') { elCodeField.focus(); } else { if (elValidateButton) { elValidateButton.focus(); } if (elToolbarButton) { elToolbarButton.focus(); } } // Capture the admin toolbar buttons, make them click the inline buttons document.querySelectorAll('.button-user-mfa-submit').forEach(elButton => { elButton.addEventListener('click', e => { e.preventDefault(); elValidateButton.click(); }); }); document.querySelectorAll('.button-user-mfa-logout').forEach(elButton => { elButton.addEventListener('click', e => { e.preventDefault(); const elLogout = document.getElementById('users-mfa-captive-button-logout'); if (elLogout) { elLogout.click(); } }); }); document.querySelectorAll('.button-user-mfa-choose-another').forEach(elButton => { elButton.addEventListener('click', e => { e.preventDefault(); const elChooseAnother = document.getElementById('users-mfa-captive-form-choose-another'); if (elChooseAnother) { elChooseAnother.click(); } }); }); }); })(); js/admin-users-groups-es5.min.js 0000644 00000001125 15172633063 0012543 0 ustar 00 (function(){"use strict";/** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */Joomla=window.Joomla||{},function(t){document.addEventListener("DOMContentLoaded",function(){t.submitbutton=function(n){if(n==="groups.delete"){for(var o=document.getElementsByName("cid[]"),e=0;e<o.length;e+=1)if(o[e].checked&&o[e].parentNode.getAttribute("data-usercount")!=="0")return window.confirm(t.Text._("COM_USERS_GROUPS_CONFIRM_DELETE"))&&t.submitform(n),!1}return t.submitform(n),!1}})}(Joomla)})(); js/two-factor-list.js 0000644 00000001057 15172633063 0010565 0 ustar 00 /** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ ((Joomla, window) => { document.addEventListener('DOMContentLoaded', () => { [].slice.call(document.querySelectorAll('.com-users-methods-list-method-record-delete')).forEach(el => { el.addEventListener('click', event => { if (!window.confirm(Joomla.Text._('JGLOBAL_CONFIRM_DELETE'))) { event.preventDefault(); } }); }); }); })(Joomla, window); js/admin-users-mail-es5.js 0000644 00000002531 15172633063 0011366 0 ustar 00 (function () { 'use strict'; /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt * * @deprecated 4.3 * This file is deprecated and will be removed with Joomla 5.0 */ (function () { document.addEventListener('DOMContentLoaded', function () { Joomla.submitbutton = function (pressbutton) { var form = document.adminForm; var html = document.createElement('joomla-alert'); if (pressbutton === 'mail.cancel') { Joomla.submitform(pressbutton); return; } // do field validation if (form.jform_subject.value === '') { html.innerText = Joomla.Text._('COM_USERS_MAIL_PLEASE_FILL_IN_THE_SUBJECT'); form.insertAdjacentElement('afterbegin', html); } else if (form.jform_group.value < 0) { html.innerText = Joomla.Text._('COM_USERS_MAIL_PLEASE_SELECT_A_GROUP'); form.insertAdjacentElement('afterbegin', html); } else if (form.jform_message.value === '') { html.innerText = Joomla.Text._('COM_USERS_MAIL_PLEASE_FILL_IN_THE_MESSAGE'); form.insertAdjacentElement('afterbegin', html); } else { Joomla.submitform(pressbutton); } }; }); })(); })(); js/two-factor-list-es5.min.js 0000644 00000000764 15172633063 0012045 0 ustar 00 (function(){"use strict";/** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */(function(e,t){document.addEventListener("DOMContentLoaded",function(){[].slice.call(document.querySelectorAll(".com-users-methods-list-method-record-delete")).forEach(function(n){n.addEventListener("click",function(o){t.confirm(e.Text._("JGLOBAL_CONFIRM_DELETE"))||o.preventDefault()})})})})(Joomla,window)})(); js/admin-users-groups.min.js.gz 0000644 00000000644 15172633063 0012475 0 ustar 00 � m�Oo1��|��Ȧ�@NU�Q[�ED�� ��-� nw=Ȟ �߽���:�y��ӼV�Q�|��{�~�e �}���7��0���h�93�Ԅa�n�̻t�j�{���,rMq�;� o1$��&`���P� oat�_0&O��"9c�BB�Ѱ�M��W�A�u������C���M��wpd��ܹ��|�S�w�q��n�;t�)��P�jUz^U�L0��_�`��H�.i�2 u��!�Ӛ~�M����==�]S�2�iw��t�a��.1�ג��Y�-�?����O���9�U�(��9�Z%����B]#�BE�*�a)�},%�G|e���?/�l6_f���|ٟN~ g��]6�3�T�����b)�j^u����:*�Q����)�* js/two-factor-focus-es5.min.js 0000644 00000002241 15172633063 0012201 0 ustar 00 (function(){"use strict";/** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */(function(){document.addEventListener("DOMContentLoaded",function(){var c,e=document.getElementById("users-mfa-code"),u=document.getElementById("users-mfa-captive-button-submit"),l=(c=document.getElementById("toolbar-user-mfa-submit"))==null?void 0:c.querySelector("button");e&&e.style.display!=="none"&&!e.classList.contains("visually-hidden")&&e.type!=="hidden"?e.focus():(u&&u.focus(),l&&l.focus()),document.querySelectorAll(".button-user-mfa-submit").forEach(function(t){t.addEventListener("click",function(n){n.preventDefault(),u.click()})}),document.querySelectorAll(".button-user-mfa-logout").forEach(function(t){t.addEventListener("click",function(n){n.preventDefault();var o=document.getElementById("users-mfa-captive-button-logout");o&&o.click()})}),document.querySelectorAll(".button-user-mfa-choose-another").forEach(function(t){t.addEventListener("click",function(n){n.preventDefault();var o=document.getElementById("users-mfa-captive-form-choose-another");o&&o.click()})})})})()})(); js/two-factor-list-es5.js 0000644 00000001217 15172633063 0011255 0 ustar 00 (function () { 'use strict'; /** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (function (Joomla, window) { document.addEventListener('DOMContentLoaded', function () { [].slice.call(document.querySelectorAll('.com-users-methods-list-method-record-delete')).forEach(function (el) { el.addEventListener('click', function (event) { if (!window.confirm(Joomla.Text._('JGLOBAL_CONFIRM_DELETE'))) { event.preventDefault(); } }); }); }); })(Joomla, window); })(); js/admin-users-groups.min.js 0000644 00000001052 15172633063 0012050 0 ustar 00 /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */Joomla=window.Joomla||{},(e=>{document.addEventListener("DOMContentLoaded",()=>{e.submitbutton=n=>{if(n==="groups.delete"){const o=document.getElementsByName("cid[]");for(let t=0;t<o.length;t+=1)if(o[t].checked&&o[t].parentNode.getAttribute("data-usercount")!=="0")return window.confirm(e.Text._("COM_USERS_GROUPS_CONFIRM_DELETE"))&&e.submitform(n),!1}return e.submitform(n),!1}})})(Joomla); js/admin-users-groups-es5.min.js.gz 0000644 00000000664 15172633063 0013171 0 ustar 00 � m�Oo1��|��Ȧ�@NU�Vm�Q�'�p�"d�Yp�k#{�6|� BQ���<��/��d��f)"D V�wZ�����`7[ >p��}��,| a��0�6���p�%��ϝ��p����J%}�|9�J��E���K�àJxH��j_�=�h��[�JE�a<��E.���<ӳ�u���V��H$j�u�БT��{t4��N����&����ʠa�� Ӻ��ND�eWʼn��eY�6��]�K$d�.|�{�gW� R^�i��_��Bδ5O�L�1����݆�}����-��g����i6��Nt4�O�oD��!gF���"�#&n��u�H)8��+l�8�G|!��l0����|�X ���b5�M���}>�s&D��7~�Cŝh�����8��Qp�o�'�^�U js/two-factor-list.min.js.gz 0000644 00000000526 15172633063 0011766 0 ustar 00 � m�AO1��ɞ�d��*D��@0�'cHm�v;�κ�5ē�No&�����t�J��v� F)��}X��Ê��C�`굄��>��zM��W��)Ia;�e9��G�v&�G��Ǡ��/�j(O�ђ�>P ��DD(��b�*$r�=!0�t0<�u���2��@ϥ�ܢE2^�G�ݑ2h�L���g�2R+��_���pX�C�����T�u�� yG&��F>�<��`r��4� ��;A��飝�oIf�#KM~cC%P>�'˵Hf�rys]�G����~�e�P$i��e�>`�FՎE�}����9k�7Ԥ��-� js/admin-users-groups-es5.js 0000644 00000001705 15172633063 0011765 0 ustar 00 (function () { 'use strict'; /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ Joomla = window.Joomla || {}; (function (Joomla) { document.addEventListener('DOMContentLoaded', function () { Joomla.submitbutton = function (task) { if (task === 'groups.delete') { var cids = document.getElementsByName('cid[]'); for (var i = 0; i < cids.length; i += 1) { if (cids[i].checked && cids[i].parentNode.getAttribute('data-usercount') !== '0') { // @todo replace with joomla-alert if (window.confirm(Joomla.Text._('COM_USERS_GROUPS_CONFIRM_DELETE'))) { Joomla.submitform(task); } return false; } } } Joomla.submitform(task); return false; }; }); })(Joomla); })(); js/two-factor-list.min.js 0000644 00000000673 15172633063 0011352 0 ustar 00 /** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */((e,t)=>{document.addEventListener("DOMContentLoaded",()=>{[].slice.call(document.querySelectorAll(".com-users-methods-list-method-record-delete")).forEach(o=>{o.addEventListener("click",d=>{t.confirm(e.Text._("JGLOBAL_CONFIRM_DELETE"))||d.preventDefault()})})})})(Joomla,window); js/admin-users-mail-es5.min.js.gz 0000644 00000000761 15172633063 0012572 0 ustar 00 � ��oo�0���)N~� fX�IS)�X�R��G ��� #�F�:U|�)�ulڛU;ɒ�9���Ѫ����Q����kE��m�[І/��{�� DIW��a�C���B�H"�c�8�l�v��=|�\e$w~���e�B�M�0B�^�ׅ� ���}���8F�>DHlj�f��#��LW�Σ��%�{���~��FXi��\����6 ���c���O��Z��F�)��+��eY�=ZJu���6�$�R�9Yb�:}gG��T�D�^�6~�K8�p���u���/Qy���`�E�<�7Ҡ'��*����UR��Uh�����"�=R����Q�P[T����X��qm-�>��٣��<b�l�/3���8��f"��i>��;�g˯�"Y���\ۀ���V*��/W������Cq|��e�]�;���^���T$�|��f�k*A��Mc"�l8���_;�c�V���u*:� js/two-factor-list-es5.min.js.gz 0000644 00000000554 15172633063 0012461 0 ustar 00 � m�AoA�� kO3�"�%���-��TUh:c¤�c��f���j#��P��g�{�ڷ�I���h3BN��x8��_8< �L��b2��l�e���"�y��\D���x�u�y$j�5��bp�2B_��=,0!������r�`�� O!#B��U�me�Y0�wt�>yrm�I���z�$u��P�|��Q�^#������0�3�ƨ�]~��/[��:FUGM�f�\6(�!�y(�/=F,�6{�ʺ�?̤O�?t.���Gi�Qh��Y�N7�z����6��o�ݼ�������̑�7��Q��snu�Q����t��zY� js/two-factor-focus-es5.js 0000644 00000004220 15172633063 0011416 0 ustar 00 (function () { 'use strict'; /** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ (function () { document.addEventListener('DOMContentLoaded', function () { var _document$getElementB; var elCodeField = document.getElementById('users-mfa-code'); var elValidateButton = document.getElementById('users-mfa-captive-button-submit'); var elToolbarButton = (_document$getElementB = document.getElementById('toolbar-user-mfa-submit')) == null ? void 0 : _document$getElementB.querySelector('button'); // Focus the code field. If the code field is hidden, focus the submit button (useful e.g. for WebAuthn) if (elCodeField && elCodeField.style.display !== 'none' && !elCodeField.classList.contains('visually-hidden') && elCodeField.type !== 'hidden') { elCodeField.focus(); } else { if (elValidateButton) { elValidateButton.focus(); } if (elToolbarButton) { elToolbarButton.focus(); } } // Capture the admin toolbar buttons, make them click the inline buttons document.querySelectorAll('.button-user-mfa-submit').forEach(function (elButton) { elButton.addEventListener('click', function (e) { e.preventDefault(); elValidateButton.click(); }); }); document.querySelectorAll('.button-user-mfa-logout').forEach(function (elButton) { elButton.addEventListener('click', function (e) { e.preventDefault(); var elLogout = document.getElementById('users-mfa-captive-button-logout'); if (elLogout) { elLogout.click(); } }); }); document.querySelectorAll('.button-user-mfa-choose-another').forEach(function (elButton) { elButton.addEventListener('click', function (e) { e.preventDefault(); var elChooseAnother = document.getElementById('users-mfa-captive-form-choose-another'); if (elChooseAnother) { elChooseAnother.click(); } }); }); }); })(); })(); js/admin-users-groups.js 0000644 00000001531 15172633063 0011270 0 ustar 00 /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ Joomla = window.Joomla || {}; (Joomla => { document.addEventListener('DOMContentLoaded', () => { Joomla.submitbutton = task => { if (task === 'groups.delete') { const cids = document.getElementsByName('cid[]'); for (let i = 0; i < cids.length; i += 1) { if (cids[i].checked && cids[i].parentNode.getAttribute('data-usercount') !== '0') { // @todo replace with joomla-alert if (window.confirm(Joomla.Text._('COM_USERS_GROUPS_CONFIRM_DELETE'))) { Joomla.submitform(task); } return false; } } } Joomla.submitform(task); return false; }; }); })(Joomla); js/two-factor-focus.min.js 0000644 00000002060 15172633063 0011506 0 ustar 00 /** * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */document.addEventListener("DOMContentLoaded",()=>{const e=document.getElementById("users-mfa-code"),c=document.getElementById("users-mfa-captive-button-submit"),u=document.getElementById("toolbar-user-mfa-submit")?.querySelector("button");e&&e.style.display!=="none"&&!e.classList.contains("visually-hidden")&&e.type!=="hidden"?e.focus():(c&&c.focus(),u&&u.focus()),document.querySelectorAll(".button-user-mfa-submit").forEach(t=>{t.addEventListener("click",o=>{o.preventDefault(),c.click()})}),document.querySelectorAll(".button-user-mfa-logout").forEach(t=>{t.addEventListener("click",o=>{o.preventDefault();const n=document.getElementById("users-mfa-captive-button-logout");n&&n.click()})}),document.querySelectorAll(".button-user-mfa-choose-another").forEach(t=>{t.addEventListener("click",o=>{o.preventDefault();const n=document.getElementById("users-mfa-captive-form-choose-another");n&&n.click()})})}); js/two-factor-focus.min.js.gz 0000644 00000000714 15172633063 0012131 0 ustar 00 � �R]o1|�W8~8���T<�iKP�D>$�`|��x��zB���D�h�4}���;���z�~���'�M�&Ƙ�H6�0��<[` ؽ&�s6�F��5Q���n��!n�V�㣖�|֝����<��SZ:k�o!D�� �4A�����a1U�z�?�Ф xR���[�4��:E�o�'�롮�⹐�xo�GbP�0�@S�K;�OB,6+]���ܼ�n�n�X&"�ELˍ%.��:��R��9j�I7�G��.��!�?�r9�,�u�*�۫��=�,�e����2�I[�ژ�smQ۪�e�Am�Ի�B�����d�9Wyʲt.d��7��\��_�Q+SmjA�x��2Κ�<�r�G���[X��H�ܨ#.�A��5�60z���8�,��aj���H5��g�asa�"�A�z� ���0 js/two-factor-focus-es5.min.js.gz 0000644 00000000757 15172633063 0012632 0 ustar 00 � �R�n1}�+?�l�k"�4m ��HR ��w�uk<[{]��{�R*Z��*Ֆ%_��33�JސE/䞧,R���x��X��3ش��kb���d���=6��S0��5����7�����8v�����qZaX�=p9k�G`ݸ{���CЎ}L+g [���Eφs� �Y`��t���)�F=��3�%��OJ��l�6R�.���=uw�K(y~���L��h��~h��Rb��ta�.��G��!��b���1�6����D��� ѭt(:�� ''���٢-�Ȩ� B��0�� �c�2P�Z���q���L�G<ˮ@�c�R�z��G��6&�\[Զ,�s�qP�@=�݀�Ф(�H�,K�S�̝2q����� �����*3m��$��U����Y��{��n��ɑ�yR�8!���� r�������W��I��_m�Ԉ �j��\�as!��b7�a�{�t'h� js/admin-users-mail-es5.min.js 0000644 00000001661 15172633063 0012153 0 ustar 00 (function(){"use strict";/** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt * * @deprecated 4.3 * This file is deprecated and will be removed with Joomla 5.0 */(function(){document.addEventListener("DOMContentLoaded",function(){Joomla.submitbutton=function(n){var e=document.adminForm,t=document.createElement("joomla-alert");if(n==="mail.cancel"){Joomla.submitform(n);return}e.jform_subject.value===""?(t.innerText=Joomla.Text._("COM_USERS_MAIL_PLEASE_FILL_IN_THE_SUBJECT"),e.insertAdjacentElement("afterbegin",t)):e.jform_group.value<0?(t.innerText=Joomla.Text._("COM_USERS_MAIL_PLEASE_SELECT_A_GROUP"),e.insertAdjacentElement("afterbegin",t)):e.jform_message.value===""?(t.innerText=Joomla.Text._("COM_USERS_MAIL_PLEASE_FILL_IN_THE_MESSAGE"),e.insertAdjacentElement("afterbegin",t)):Joomla.submitform(n)}})})()})(); images/emergency.svg 0000644 00000001375 15172633063 0010524 0 ustar 00 <svg height="45" viewBox="0 0 113 45.000001" width="113" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.26346604 0 0 .25599983 -138.31967 -172.80458)"><circle cx="587.5" cy="764.86218" fill="#fc0" r="62.5"/><path d="m676.999999 702.36215h25v25h-25z"/><path d="m726.999999 702.36212h224.99998v24.999987h-224.99998z"/><path d="m676.999999 752.36215h25v25h-25z"/><path d="m726.999999 752.36212h224.99998v24.999987h-224.99998z"/><path d="m676.999999 802.36215h25v25h-25z"/><path d="m726.999999 802.36212h224.99998v24.999987h-224.99998z"/><text font-family="sans-serif" font-size="64.253807" letter-spacing="0" word-spacing="0" x="569.52271" y="809.21387"><tspan font-family="Arial" font-size="128.507614" x="569.52271" y="809.21387">!</tspan></text></g></svg>