This file contains 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
# SOME DESCRIPTIVE TITLE. | |
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | |
# This file is distributed under the same license as the PACKAGE package. | |
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | |
# | |
#, fuzzy | |
msgid "" | |
msgstr "" | |
"Project-Id-Version: PACKAGE VERSION\n" | |
"Report-Msgid-Bugs-To: \n" |
This file contains 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
/* | |
* Zone module (nord-ovest, nord-est, centre, sud, islands) | |
*/ | |
// import { REQUEST_SENT, RESPONSE_RECEIVED, REQUEST_SUCCESS, REQUEST_ERROR } from "@/store/types/core/commons"; | |
import * as types from "@/store/types/core/zone"; | |
import { ZoneService } from "@/services"; | |
const state = { |
This file contains 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
import sys | |
from django.core.management import BaseCommand | |
from django.conf.urls import RegexURLPattern, RegexURLResolver | |
from django.core import urlresolvers | |
def collect_urls(urls=None, namespace=None, prefix=None): | |
if urls is None: | |
urls = urlresolvers.get_resolver() | |
prefix = prefix or [] |
This file contains 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
# This is an example resource file for rTorrent. Copy to | |
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
# uncomment the options you wish to enable. | |
# Maximum and minimum number of peers to connect to per torrent. | |
#min_peers = 40 | |
#max_peers = 100 | |
# Same as above but for seeding completed torrents (-1 = same as downloading) | |
#min_peers_seed = 10 |