|
| 1 | +--- |
| 2 | +# The list (by include, exclude) of default files that will not be overwritten by the upgrade. |
| 3 | +# That that can be extended with managed_files or reduced with unmanaged_files from the |
| 4 | +# project.yaml file in the project root directory. |
| 5 | +default_project_file: |
| 6 | + include: |
| 7 | + - geoportal/setup\.py |
| 8 | + - geoportal/vars\.yaml |
| 9 | + - geoportal/Makefile |
| 10 | + - geoportal/geomapfish_geoportal/__init__\.py |
| 11 | + - geoportal/geomapfish_geoportal/templates/.* |
| 12 | + - geoportal/geomapfish_geoportal/locale/.* |
| 13 | + - geoportal/geomapfish_geoportal/static/.* |
| 14 | + - geoportal/geomapfish_geoportal/static-ngeo/.* |
| 15 | + - print/print-apps/.* |
| 16 | + - mapserver/.* |
| 17 | + - tilegeneration/config\.yaml\.tmpl |
| 18 | + - project\.yaml |
| 19 | + - docker-compose\.yaml |
| 20 | + - env\.project |
| 21 | + - README\.rst |
| 22 | + - \.github/workflows/main\.yaml |
| 23 | + - \.github/workflows/rebuild\.yaml |
| 24 | + exclude: |
| 25 | + - mapserver/demo\.map\.tmpl |
| 26 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/image/favicon\.ico |
| 27 | + |
| 28 | +# Files ignored when creating the diff files => will just be left untouched. |
| 29 | +no_diff: |
| 30 | + - .*\.po |
| 31 | + - CONST_.+ |
| 32 | + - .*/CONST_.+ |
| 33 | + |
| 34 | +# Files that will be present in the CONST_create_template but will not be considered in the upgrade. |
| 35 | +# Used to provide the alt applications => does not disturb the user during upgrade. |
| 36 | +extra: |
| 37 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/mobile_alt\.html\.ejs |
| 38 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/oeedit\.html\.ejs |
| 39 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/Controllermobile_alt\.js |
| 40 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/Controlleroeedit\.js |
| 41 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/sass/mobile_alt\.scss |
| 42 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/sass/vars_mobile_alt\.scss |
| 43 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/sass/oeedit\.scss |
| 44 | + - geoportal/geomapfish_geoportal/static-ngeo/js/apps/sass/vars_oeedit\.scss |
| 45 | + - geoportal/interfaces/desktop_alt\.html\.mako |
| 46 | + - geoportal/geomapfish_geoportal/static/images/background-layer-button\.png |
| 47 | + - tests/test_testapp.py |
| 48 | + |
| 49 | +# Automated file system operations: |
| 50 | +# Remove some files or directories: |
| 51 | +# - action: remove |
| 52 | +# paths: |
| 53 | +# - <one file or directory> |
| 54 | +# Move a file: |
| 55 | +# - action: move |
| 56 | +# from: <src file> |
| 57 | +# to: <dst file> |
| 58 | +upgrade_files: |
| 59 | + - action: remove |
| 60 | + paths: |
| 61 | + - geoportal/tools/extract-messages.js |
| 62 | + - action: move |
| 63 | + from: geoportal/lingua-server.cfg |
| 64 | + to: geoportal/lingva-server.cfg |
| 65 | + - action: move |
| 66 | + from: geoportal/lingua-client.cfg |
| 67 | + to: geoportal/lingva-client.cfg |
0 commit comments