Android App zur Berechnung einer HDR Belichtungsreihe.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

proxy.pac 633B

12345678910111213141516171819202122232425
  1. var NO_PROXY = "";
  2. function FindProxyForURL(url, host) {
  3. if( url.substring(0,5) == "http:" ) {
  4. if( NO_PROXY.length > 0 && url.indexOf("?") == -1 ) {
  5. var extPos = url.lastIndexOf(".");
  6. if( extPos != -1 ) {
  7. if( NO_PROXY.indexOf("|"+url.substring(extPos+1).toLowerCase()+"|") != -1 ) {
  8. return "DIRECT";
  9. }
  10. }
  11. }
  12. return "PROXY localhost:2267; DIRECT";
  13. }
  14. if( url.substring(0,6) == "https:" ) {
  15. return "DIRECT";
  16. }
  17. if( url.substring(0,4) == "ftp:" ) {
  18. return "DIRECT";
  19. }
  20. if( url.substring(0,7) == "gopher:" ) {
  21. return "DIRECT";
  22. }
  23. return "DIRECT";
  24. }