antoniop
committed
on 26 Aug 22
tmpfile page contract filter reform:

do not allow acs-subsite TmpDir parameter to define where the tmpfolder is located anymore. This MUST … Show more
tmpfile page contract filter reform:

do not allow acs-subsite TmpDir parameter to define where the tmpfolder is located anymore. This MUST be the one configured in the server-wide configuration. Tmpfiles cannot be in a subfolder of the tmpfolder, they MUST be direct children instead. A tmpfile MUST exist beforehand and be owned, be readable and writable by the user running the nsd process. This complies with the definition of a tmpfile by AolServer/NaviServer when they are created to store content coming from a file upload.

Show less

/tcl/lang-message-procs.tcl (+6 -2)
746 746         locale
747 747         key
748 748     } {
749 749         Return 1 if message exists in given locale, 0 otherwise.
750 750
751 751         @param varname when specified, return value in this variable
752 752         @author Gustaf Neumann
753 753     } {
754 754         #
755 755         # Make sure messages are loaded into the cache.
756 756         #
757 757         acs::per_thread_cache eval -key acs-lang.message_cache_loaded {
758 758             lang::message::cache
759 759         }
760 760         #
761 761         # Provide linkage to the output variable and perform lookup
762 762         #
763 763         if {[info exists varname]} {
764 764             upvar 1 $varname var
765 765         }
  766         try {
766 767             return [nsv_get lang_message_$locale $key var]
  768         } on error {errmsg} {
  769             return 0
767 770         }
  771     }
768 772 } else {
769 773     #
770 774     # AOLserver compatible version
771 775     #
772 776     ad_proc -public lang::message::message_exists_p {
773 777         -varname
774 778         locale
775 779         key
776 780     } {
777 781         Return 1 if message exists in given locale, 0 otherwise.
778 782
779 783         @param varname when specified, return value in this variable
780 784         @author Gustaf Neumann
781 785     } {
782 786         #
783 787         # Make sure messages are loaded into the cache.
784 788         #
785 789         acs::per_thread_cache eval -key acs-lang.message_cache_loaded {
786 790             lang::message::cache
787 791         }