An error occurred fetching the project authors.
  1. 11 Apr, 2024 1 commit
  2. 28 Apr, 2022 1 commit
  3. 02 Dec, 2021 1 commit
  4. 17 Dec, 2020 1 commit
    • Léo-Paul Géneau's avatar
      software/jupyter: move to python 3 · b15cac5f
      Léo-Paul Géneau authored
      moves python2 release to component/jupyter-py2 because it is required by ERP5
      but not maintained anymore
      
      moves to python 3 :
      - test/test.py
      - jupyter_notebook_config.py.jinja
      - ERP5kernel.py
      
      modifies custom.js to create a workaround for events issue
      see (https://github.com/jupyter/notebook/issues/2499)
      
      upgrades slapos.cookbook version to 1.0.171 to use zero_knowledge recipe
      with python 3
      
      adds jupyter partition check in software/erp5/test/test_erp5.py
      b15cac5f
  5. 05 Aug, 2020 1 commit
  6. 19 Nov, 2019 1 commit
  7. 22 Jun, 2018 1 commit
  8. 16 Mar, 2018 1 commit
  9. 08 Mar, 2018 2 commits
  10. 13 Sep, 2017 1 commit
  11. 07 Sep, 2017 1 commit
    • Iliya Manolov's avatar
      Feature/jupyterlab · 68a1495d
      Iliya Manolov authored
      JupyterLab is provided side-by-side with Jupyter Classic interface with same process.
      
      Published URL changed:
      
       * jupyterlab-url provides IPv6 URL to JupterLab interface
       * jupyter-class-url provides IPv6 URL to the classic UI
      
      Thanks to using only one process, the path in the URL differentiates the style of the interface.
      
      Note: This MR replaces closed !207
      
      /reviewed-on !218
      68a1495d
  12. 14 Aug, 2017 1 commit
  13. 08 Aug, 2017 1 commit
    • Łukasz Nowak's avatar
      jupyter: Simplify ERP5kernel maintenance · 554dc32d
      Łukasz Nowak authored
      Instead of templating python code, make it static and parameterize it
      with parameters.
      
      kernel.json can pass default ERP5 url, which is (dirty) read by
      ERP5kernel. Additionally ERP5kernel.py is just linked into kernel
      directory, which simplifies debugging.
      
      Note: This commit is still dirty, but it prepares ERP5kernel.py to be
            packaged, thus there is no reason to make more changes and
            cleanup.
      
      /reviewed-on !206
      554dc32d
  14. 25 Jul, 2017 2 commits
  15. 12 Jul, 2017 1 commit
  16. 05 Jul, 2017 1 commit
  17. 24 May, 2017 1 commit
  18. 16 May, 2017 1 commit
  19. 02 May, 2017 1 commit
  20. 27 Apr, 2017 1 commit
    • Alain Takoudjou's avatar
      Add new stack certificate authority based on new CA implemetation · dbcb00d2
      Alain Takoudjou authored
      The CA python egg is here: https://lab.nexedi.com/vpelletier/caucase
      instance-certificate-authority.cfg.jinja2.in deploy a CA server which expose an API on HTTP,
      all request are done using GET, PUT, DELETE and POST on that API.
      CA server use ngix + gunicorn (for wsgi)
      
      Auth server is an apache httpd which validate client certificate for authentification.
      It autmatically request a signed certificate to CA and use it in apache configuration.
      
      client request will be validated using:
      SSLVerifyClient require in apache config
      
      The CA expose two URL:
      ${certificate-authority-server:url} which is https URL used to access admin interface
      ${certificate-authority-server:insecure-url} is the HTTP url which can be used to post csr and download certificate
      dbcb00d2