> > We would need an alternate source to look in first, if the files 
> > were not found in FRAMEWORK_LOCALE_PATH (from framework.mk). So 
> impl.mk would check in two locations before trying to download from 
> the net.
> 
> Because you have already found out so much - do you think you can 
> provide us with a patch? That would be really appreciated. Otherwise 
> please open a bug report.

I'm not confident with shell script code. I would propose something like:

          if [ ! -r $(FRAMEWORK_CACHE_PATH)/$$LOC.xml -a -r 
$(FRAMEWORK_LOCALE_PATH_ALT)/$$LOC.xml ]; then \
            echo "      - Copying $$LOC.xml..."; \
            cp -f $(FRAMEWORK_LOCALE_PATH)/$$LOC.xml 
$(FRAMEWORK_LOCALE_PATH_ALT)/$$LOC.xml; \
            mod=1; \
          fi; \

but I'm not sure what will happen if FRAMEWORK_LOCALE_PATH_ALT is not defined. 
It would be defined, if needed, in the MAKEFILE for the application, in the 
advanced section:

#
# Alternative location for locale configuration files to allow
# installation of locales where there is no access to the internet
# or to unicode.org.
# 
#FRAMEWORK_LOCALE_PATH_ALT = source/locale

Does this sound reasonable? If so, I can get my Chinese colleague to check it 
tomorrow.
          
Hugh

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to