You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
The examples5.ext.net uses CDN as resources, and this proved especially useful. It seems when debug mode is enabled, the triton theme's theme-triton-all-debug.css is missing, so this is for some reason not being included in the CDN release process -- or it is being released under another path.
This should be checked and either the CDN or Ext.NET's wired path should be fixed.
The text was updated successfully, but these errors were encountered:
Every theme's theme-<name>-all-[rtl-]debug[_1|_2].css file is included in Ext.NET as Content instead of EmbeddedResource, and this means the file won't get into Ext.NET's DLL thus does not get published per scripted rules.
It seems the files are not needed at all as embedded resources, so a rule in the scripted CDN deployment should take place.
This can be addressed by updating just the missing files to CDN. This command should help (bash shell in cygwin, might work in OS X and *nix too)
(one-liner) enver="5.1.0"; find src/Build/Ext.Net/extjs -name 'theme-*-all-*debug*.css' | while read file; do pth="${file%/*}"; pth="${pth#src/Build/Ext.Net/}"; fle="${file##*/}"; if [ ! -e "../Speed/ext.net/${enver}/${pth}/${fle}" ]; then cp "$file" ../Speed/ext.net/${enver}/${pth}/${fle}; fi; done
The examples5.ext.net uses CDN as resources, and this proved especially useful. It seems when debug mode is enabled, the triton theme's
theme-triton-all-debug.css
is missing, so this is for some reason not being included in the CDN release process -- or it is being released under another path.This should be checked and either the CDN or Ext.NET's wired path should be fixed.
The text was updated successfully, but these errors were encountered: