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
| # -*- coding: utf-8 -*- | |
| # Copyright 2004-2007 Joe Wreschnig, Michael Urman, Iñigo Serna | |
| # 2009-2010 Steven Robertson | |
| # 2012-2013 Nick Boultbee | |
| # 2009-2014 Christoph Reiter | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License version 2 as | |
| # published by the Free Software Foundation |
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
| # | |
| # https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet | |
| # based on the RSnake original http://ha.ckers.org/xss.html | |
| # Retrieved on 2013-11-20 | |
| # Much of this wildly obsolete | |
| # | |
| # XSS Locator 2 | |
| '';!--"<XSS>=&{()} |
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
| #!/bin/bash | |
| # Generation de la date du jour | |
| date=$(date +%Y%m%d) | |
| ### | |
| # Pamrametres du script | |
| ### | |
| # Chemin du repertoire de la sauvegarde |
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
| #!/bin/sh | |
| # generation des dates | |
| date=$(date +%Y%m%d) | |
| old=$(date +%Y%m%d -d '7 days ago') | |
| # parametres | |
| backup="/var/state/"$date | |
| host=ftp.domain.tld | |
| login=login-ftp |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| { | |
| "bounds": [ | |
| -180, | |
| -85.0511, | |
| 180, | |
| 85.0511 | |
| ], | |
| "center": [ | |
| 0, | |
| 0, |
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
| #!/bin/bash | |
| date=$(date +%Y%m%d) | |
| old=$(date +%Y%m%d -d '7 days ago') | |
| ### | |
| # Pamrametres du script | |
| ### | |
| # Chemin du repertoire de la sauvegarde |
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
| From 33fa68e80e0fd55241d0d515023a611dd3410129 Mon Sep 17 00:00:00 2001 | |
| From: brunob <brunobergot@gmail.com> | |
| Date: Mon, 14 Nov 2011 00:04:44 +0100 | |
| Subject: [PATCH 2/3] done : add openBubble and closeBubble to openlayers api | |
| --- | |
| source/mxn.openlayers.core.js | 59 ++++++++++++++++++----------------------- | |
| 1 files changed, 26 insertions(+), 33 deletions(-) | |
| diff --git a/source/mxn.openlayers.core.js b/source/mxn.openlayers.core.js |
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
| { | |
| "cache": | |
| { | |
| "name": "Disk", | |
| "path": "/tmp/stache", | |
| "umask": "0000" | |
| }, | |
| "layers": | |
| { | |
| "osm": |
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
| """ Provider that returns vector representation of features in a data source. | |
| This is a provider that does not return an image, but rather queries | |
| a data source for raw features and replies with a vector representation | |
| such as GeoJSON. For example, it's possible to retrieve data for | |
| locations of OpenStreetMap points of interest or street centerlines | |
| contained within a tile's boundary. | |
| Many Polymaps (http://polymaps.org) examples use GeoJSON vector data tiles, | |
| which can be effectively created using this provider. |
OlderNewer