aboutsummaryrefslogtreecommitdiff
path: root/ui/static/js/confirm_handler.js
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net> 2019-02-19 17:57:40 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net> 2019-02-19 17:57:40 -0800
commit1634e267b8fe33d2f74454fb43c471d224642a89 (patch)
tree01fdc4e038a6b708e6ec93e95e02e2e5f8c8313a /ui/static/js/confirm_handler.js
parent267b7065444b2904e1172817c661709e0b456b80 (diff)
downloadv2-1634e267b8fe33d2f74454fb43c471d224642a89.tar.gz
v2-1634e267b8fe33d2f74454fb43c471d224642a89.tar.zst
v2-1634e267b8fe33d2f74454fb43c471d224642a89.zip
Fix typo in stylesheet
Diffstat (limited to 'ui/static/js/confirm_handler.js')
0 files changed, 0 insertions, 0 deletions
: './analysis.py' ``` 2021-12-14Fix: `pre-commit run -a` (#2671)Gravatar Axel Huebl 4-4/+1 Prepare to enable autofix bot from https://pre-commit.ci 2021-12-14ABLASTR: Fix Doxygen in `DepositCharge`Gravatar Axel Huebl 1-1/+1 2021-12-14Refactor DepositCharge so it can be called from ImpactX. (#2652)Gravatar Andrew Myers 11-178/+304 * Refactor DepositCharge so it can be called from ImpactX. * change thread_num * Fix namespace * remove all static WarpX:: members and methods from DepositChargeDoIt. * fix unused * Don't access ref_ratio unless lev != depos_lev * more unused * remove function to its own file / namespace * don't need a CMakeLists.txt for this * lower case namespace, rename file * Refactor: Profiler Wrapper Explicit control for synchronization instead of global state. Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja> 2021-12-13Adding EB multifabs to the Python interface (#2647)Gravatar Lorenzo Giacomel 8-0/+493 * Adding edge_lengths and face_areas to the Python interface * Added wrappers for the two new arrays of data * Adding a CI test * Fixed test name * Added customRunCmd * Added mpi in test 2021-12-13Add load balancing test (#2561)Gravatar Kevin Z. Zhu 4-26/+41 * Added embedded_circle test * Add embedded_circle test files * Removed diag files * removed PICMI input file * Update to use default regression analysis * Added line breaks for spacing Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja> * Added description * Fixed benchmark file * Added load balancing to test * Commented out load_balancing portion of test. This will be added back in once load balancing is fixed. * Add load balancing to embedded_boundary test * Updated checksum * Added embedded_circle test * Add embedded_circle test files * removed PICMI input file * Update to use default regression analysis * Added load balancing to test * Commented out load_balancing portion of test. This will be added back in once load balancing is fixed. * Add load balancing to embedded_boundary test * added analysis.py file in order to relax tolerance on test * Ensure that timers are used to update load balancing algorithm * Updated test name retrieval Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja> Co-authored-by: Roelof <roelof.groenewald@modernelectron.com> Co-authored-by: Roelof Groenewald <40245517+roelof-groenewald@users.noreply.github.com> 2021-12-14AMReX/PICSAR: Weekly Update (#2666)Gravatar Axel Huebl 7-44/+44 * AMReX: Weekly Update * Reset: PEC_particle, RepellingParticles, subcyclingMR New AMReX grid layout routines split grids until they truly reach number of MPI ranks, if blocking factor allows. This changes some of our particle orders slightly. 2021-12-13Add anisotropic mesh refinement example (#2650)Gravatar Remi Lehe 2-0/+63 * Add anisotropic mesh refinement example * Update benchmark 2021-12-13Add high energy asymptotic fit for Proton-Boron total cross section (#2408)Gravatar Neïl Zaim 1-26/+72 * Add high energy asymptotic fit for Proton Boron total cross section * Write keV and MeV instead of kev and mev * Add @return doxystrings 2021-12-13Fix the scope of profiler for SYCL (#2668)Gravatar Weiqun Zhang 1-5/+5 In main.cpp, the destructor of the profiler was called after amrex::Finalize. This caused an error in SYCL due to a device synchronization call in the dtor, because the SYCL queues in amrex had been deleted. In this commit, we limit the scope of the profiler so that its destructor is called before the queues are deleted. Note that it was never an issue for CUDA/HIP, because the device synchronization calls in those backends do not need any amrex objects. 2021-12-13Add PML Support for multi-J Algorithm (#2603)Gravatar Edoardo Zoni 5-8/+233 * Add PML Support for multi-J Algorithm * Add CI Test 2021-12-13Fixing the initialization of the EB data in ghost cells (#2635)Gravatar Lorenzo Giacomel 4-57/+44 * Using ng_FieldSolver ghost cells in the EB data * Removed an unused variable * Fixed makeEBFabFactory also in in WarpXRgrid.cpp * Fixed end of line whitespace * Undoing #2607 2021-12-13Python: Add 3.10, Relax upper bound (#2664)Gravatar Axel Huebl 1-1/+2 There are no breaking changes in Python 3.10 that affect us. Giving the version compatibility of Python and it's ABI stability, there is no need at the moment to provide an upper limit. Thus, relaxed now in general. 2021-12-13Docs: Fix Warning Logger Typo (#2667)Gravatar Phil Miller 1-1/+1 2021-12-11ABLASTR Library (#2263)Gravatar Axel Huebl 6-41/+78 * [Draft] ABLASTR Library - CMake object library - include FFTW wrappers to start with * Add: MPIInitHelpers * Enable ABLASTR-only builds * Add alias WarpX::ablastr * ABLASTR: openPMD forwarding * make_third_party_includes_system: Avoid Collision * WarpX: depend on `ablastr` * Definitions: WarpX -> ablastr * CMake: Reduce build objects for ABLASTR Skip all object files that we do not use in builds. * CMake: app/shared links all object targets Our `PRIVATE` source/objects are not PUBLICly propagated themselves. 2021-12-11C++17: if constexpr for templates in ShapeFactors (#2659)Gravatar Luca Fedeli 1-150/+84 * use if constexpr to replace template specialization * Rmove Interface Annotations * Replace static_assert with amrex::Abort * Add includes & authors Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja> 2021-12-11QED openPMD Tests: Specify H5 Backend (#2661)Gravatar Axel Huebl 1-2/+2 We default to ADIOS `.bp` if available. Thus, specify HDF5 assumption 2021-12-11ICC CI: Unbound Vars (`setvars.sh`) (#2663)Gravatar Axel Huebl 2-4/+4 Ignore: ``` /opt/intel/oneapi/compiler/latest/env/vars.sh: line 236: OCL_ICD_FILENAMES: unbound variable ``` 2021-12-10`use_default_v_<galilean,comoving>` Only w/ Boosted Frame (#2654)Gravatar Edoardo Zoni 1-3/+18 2021-12-10fix for setting the boundary condition potentials in 1D ES simulations (#2649)Gravatar Roelof Groenewald 1-5/+5 2021-12-10use if constexpr to replace template specialization (#2660)Gravatar Luca Fedeli 1-106/+67 2021-12-10fix check for absolute library install path (#2646)Gravatar s9105947 1-1/+1 Co-authored-by: Hannes T <s9105947@users.noreply.github.com> 2021-12-10CMake: 3.18+ (#2651)Gravatar Axel Huebl 4-6/+6 With the C++17 switch, we required CMake 3.17+ since that one introduced the `cuda_std_17` target compile feature. It turns out that one of the many CUDA improvements in CMake 3.18+ is also to fix that feature for good, so we bump our requirement in CMake. Since CMake is easy to install, it's easier to require a clean newer version than working around a broken old one. Spotted first by Phil on AWS instances, thx! 2021-12-10Docs: `python3 -m pip` & Virtual Env (#2656)Gravatar Axel Huebl 7-14/+22 * Docs: `python3 -m pip` Use `python3 -m pip`: - works independent of PATH - always uses the right Python - is the recommended way to use `pip` * Dependencies: Python incl. venv Backported from #2556. Follow-up to #2653 2021-12-10PWFA 1D: Fix output nameGravatar Axel Huebl 3-2/+2 Hard coded, undocumented convention: turns out this must be the name of the test that we define in the ini file. Logical, isn't it. Not. Follow-up to #2593 2021-12-10Fix: analysis_default_regression.pyGravatar Axel Huebl 1-1/+2 Mismatched checksum file due to crude hard-coding. 2021-12-10Python/setup.py: picmistandard==0.0.18Gravatar Axel Huebl 1-1/+1 Forgotten in #2593 2021-12-09Azure: Ensure latest venv installedGravatar Axel Huebl 1-0/+1 2021-12-09Python GNUmake: Remove Prefix HacksGravatar Axel Huebl 1-20/+20 FREEEEDOM. venv power. 2021-12-09GNUmake `installwarpx`: `mv` -> `cp`Gravatar Axel Huebl 1-1/+1 No reason to rebuild. Make will detect dependency when needed. 2021-12-09Azure: pre-install `setuptools` upgradeGravatar Axel Huebl 2-9/+9 Might fix: ``` - installing setuptools_scm using the system package manager to ensure consistency - migrating from the deprecated setup_requires mechanism to pep517/518 and using a pyproject.toml to declare build dependencies which are reliably pre-installed before running the build tools warnings.warn( TEST FAILED: /home/vsts/.local/lib/python3.8/site-packages/ does NOT support .pth files You are attempting to install a package to a directory that is not on PYTHONPATH and which Python does not read ".pth" files from. The installation directory you specified (via --install-dir, --prefix, or the distutils default setting) was: /home/vsts/.local/lib/python3.8/site-packages/ and your PYTHONPATH environment variable currently contains: '' Here are some of your options for correcting the problem: * You can choose a different installation directory, i.e., one that is on PYTHONPATH or supports .pth files * You can add the installation directory to the PYTHONPATH environment variable. (It must then also be on PYTHONPATH whenever you run Python and want to use the package(s) you are installing.) * You can set up the installation directory to support ".pth" files by using one of the approaches described here: https://setuptools.readthedocs.io/en/latest/easy_install.html#custom-installation-locations Please make the appropriate changes for your system and try again. ``` 2021-12-09Regression/requirements.txt: openpmd-apiGravatar Axel Huebl 1-0/+1 Follow-up to 8f93e010ccf2bb2c5b1236330ebd27d104732890 2021-12-09Fix missing checksums1d (#2657)Gravatar Axel Huebl 3-0/+47 * Docs: Fix missing Checksum Ref * Checksum: LaserAcceleration_1d * Checksum: Python_PlasmaAcceleration_1d 2021-12-09GNUmake & `WarpX-test.ini`: `python` -> `python3`Gravatar Axel Huebl 2-21/+21 Consistent with all other calls to Python in tests. 2021-12-09Azure: `set -eu -o pipefail`Gravatar Axel Huebl 1-0/+2 Lol, that's not the default. We previously had `script` where it was the default. Introduced in #2615