This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | upstream appserver { | |
| server localhost:8000; | |
| server localhost:8001; | |
| server localhost:8002; | |
| server localhost:8003; | |
| server localhost:8004; | |
| } | |
| server { | |
| listen 80; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function write_ws_xml_datavalidation(validations) { | |
| var o = '<dataValidations>'; | |
| for(var i=0; i < validations.length; i++) { | |
| var validation = validations[i]; | |
| o += '<dataValidation type="list" allowBlank="1" sqref="' + validation.sqref + '">'; | |
| o += '<formula1>"' + validation.values + '"</formula1>'; | |
| o += '</dataValidation>'; | |
| } | |
| o += '</dataValidations>'; | |
| return o; |