Login
Account
Sign Up
Home
About Us
Catalog
Search
Register RSS
Embed RSS
FAQ
Get Embed Code
Example: Default CSS
Example: Custom CSS
Example: Custom CSS per Embedding
Super RSS
Usage
View Latest
Create
Contact Us
Technical Support
Guest Posts/Articles
Report Violations
Google Warnings
Article Removal Requests
Channel Removal Requests
General Questions
DMCA Takedown Notice
RSSing>>
Collections:
RSSing
EDA
Intel
Mesothelioma
SAP
SEO
Latest
Articles
Channels
Super Channels
Popular
Articles
Pages
Channels
Super Channels
Top Rated
Articles
Pages
Channels
Super Channels
Trending
Articles
Pages
Channels
Super Channels
Switch Editions?
Cancel
Sharing:
Title:
URL:
Copy Share URL
English
RSSing.com
RSSing>>
Latest
Popular
Top Rated
Trending
Channel: My site - RSS feed
NSFW?
Claim
0
X
Mark channel Not-Safe-For-Work?
cancel
confirm
NSFW Votes:
(
0
votes)
X
Are you the publisher?
Claim
or
contact us
about this channel.
X
No ratings yet.
Showing article 10 of 13 in channel 76700867
Channel Details:
Title: My site - RSS feed
Channel Number: 76700867
Language: English
Registered On: November 25, 2023, 11:29 pm
Number of Articles: 13
Latest Snapshot: December 1, 2023, 2:04 pm
RSS URL:
https://askbot.org/en/feeds/question/3264
Publisher:
https://askbot.org/en/questions/
Description: Open source question and answer forum written in Python and Django
Catalog:
//crossbarring77.rssing.com/catalog.php?indx=76700867
Remove ADS
Viewing all articles
First Article
...
Article 8
Article 9
Article 10
Article 11
Article 12
Last Article
Browse latest
Browse all 13
↧
Answer by Evgeny for Hello,I'm preparing some customizations that might go a bit deeper than skin customization. Therefore I'm investigating the tests found in askbot/tests. However, I don't find any obvious way to run them (I see there's a tox specification file in there, though). Are there descriptions somewhere on how to run them? And if I get them running, how much of the test suites are expected to pass?Edit: here's my settings.py:## Django settings for ASKBOT enabled project. import os.path import logging import sys import askbot #this line is added so that we can import pre-packaged askbot dependencies sys.path.append(os.path.join(os.path.dirname(askbot.__file__), 'deps')) DEBUG = False#set to True to enable debugging TEMPLATE_DEBUG = False#keep false when debugging jinja2 templates INTERNAL_IPS = ('127.0.0.1',) ADMINS = ( ('Your Name', 'your_email@domain.com'), ) MANAGERS = ADMINS DATABASE_ENGINE = 'django.db.backends.sqlite3' # only postgres (>8.3) and mysql are supported so far others have not been tested yet DATABASE_NAME = ':memory:' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. #outgoing mail server settings SERVER_EMAIL = '' DEFAULT_FROM_EMAIL = '' EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_SUBJECT_PREFIX = '' EMAIL_HOST='' EMAIL_PORT='' EMAIL_USE_TLS=False EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' #incoming mail settings #after filling out these settings - please #go to the site's live settings and enable the feature #"Email settings" -> "allow asking by email" # # WARNING: command post_emailed_questions DELETES all # emails from the mailbox each time # do not use your personal mail box here!!! # IMAP_HOST = '' IMAP_HOST_USER = '' IMAP_HOST_PASSWORD = '' IMAP_PORT = '' IMAP_USE_TLS = False # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name # although not all choices may be available on all operating systems. # On Unix systems, a value of None will cause Django to use the same # timezone as the operating system. # If running in a Windows environment this must be set to the same as your # system time zone. TIME_ZONE = 'America/Chicago' SITE_ID = 1 # If you set this to False, Django will make some optimizations so as not # to load the internationalization machinery. USE_I18N = True LANGUAGE_CODE = 'en' # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" ASKBOT_FILE_UPLOAD_DIR = os.path.join(os.path.dirname(__file__), 'askbot', 'upfiles') PROJECT_ROOT = os.path.dirname(__file__) # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a # trailing slash. # Examples: "http://foo.com/media/", "/media/". ADMIN_MEDIA_PREFIX = '/admin/media/' # Make up some unique string, and don't share it with anybody. SECRET_KEY = 'sdljdfjkldsflsdjkhsjkldgjlsdgfs s ' # List of callables that know how to import templates from various sources. TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', 'django.template.loaders.app_directories.load_template_source', #below is askbot stuff for this tuple 'askbot.skins.loaders.filesystem_load_template_source', #'django.template.loaders.eggs.load_template_source', ) MIDDLEWARE_CLASSES = ( #'django.middleware.gzip.GZipMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', #'django.middleware.cache.UpdateCacheMiddleware', 'django.middleware.common.CommonMiddleware', #'django ...(more)
December 20, 2011, 6:24 am
≫
Next: Comment by Jacob Oscarson for Hello,I'm preparing some customizations that might go a bit deeper than skin customization. Therefore I'm investigating the tests found in askbot/tests. However, I don't find any obvious way to run them (I see there's a tox specification file in there, though). Are there descriptions somewhere on how to run them? And if I get them running, how much of the test suites are expected to pass?Edit: here's my settings.py:## Django settings for ASKBOT enabled project. import os.path import logging import sys import askbot #this line is added so that we can import pre-packaged askbot dependencies sys.path.append(os.path.join(os.path.dirname(askbot.__file__), 'deps')) DEBUG = False#set to True to enable debugging TEMPLATE_DEBUG = False#keep false when debugging jinja2 templates INTERNAL_IPS = ('127.0.0.1',) ADMINS = ( ('Your Name', 'your_email@domain.com'), ) MANAGERS = ADMINS DATABASE_ENGINE = 'django.db.backends.sqlite3' # only postgres (>8.3) and mysql are supported so far others have not been tested yet DATABASE_NAME = ':memory:' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. #outgoing mail server settings SERVER_EMAIL = '' DEFAULT_FROM_EMAIL = '' EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_SUBJECT_PREFIX = '' EMAIL_HOST='' EMAIL_PORT='' EMAIL_USE_TLS=False EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' #incoming mail settings #after filling out these settings - please #go to the site's live settings and enable the feature #"Email settings" -> "allow asking by email" # # WARNING: command post_emailed_questions DELETES all # emails from the mailbox each time # do not use your personal mail box here!!! # IMAP_HOST = '' IMAP_HOST_USER = '' IMAP_HOST_PASSWORD = '' IMAP_PORT = '' IMAP_USE_TLS = False # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name # although not all choices may be available on all operating systems. # On Unix systems, a value of None will cause Django to use the same # timezone as the operating system. # If running in a Windows environment this must be set to the same as your # system time zone. TIME_ZONE = 'America/Chicago' SITE_ID = 1 # If you set this to False, Django will make some optimizations so as not # to load the internationalization machinery. USE_I18N = True LANGUAGE_CODE = 'en' # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" ASKBOT_FILE_UPLOAD_DIR = os.path.join(os.path.dirname(__file__), 'askbot', 'upfiles') PROJECT_ROOT = os.path.dirname(__file__) # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a # trailing slash. # Examples: "http://foo.com/media/", "/media/". ADMIN_MEDIA_PREFIX = '/admin/media/' # Make up some unique string, and don't share it with anybody. SECRET_KEY = 'sdljdfjkldsflsdjkhsjkldgjlsdgfs s ' # List of callables that know how to import templates from various sources. TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', 'django.template.loaders.app_directories.load_template_source', #below is askbot stuff for this tuple 'askbot.skins.loaders.filesystem_load_template_source', #'django.template.loaders.eggs.load_template_source', ) MIDDLEWARE_CLASSES = ( #'django.middleware.gzip.GZipMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', #'django.middleware.cache.UpdateCacheMiddleware', 'django.middleware.common.CommonMiddleware', #'django ...(more)
≪
Previous: Comment by Joseph for The tests can be run this way:python manage.py test askbot
$
0
0
The tests can be run this way: python manage.py test askbot
↧
Search
RSSing.com
Remove ADS
Viewing all articles
First Article
...
Article 8
Article 9
Article 10
Article 11
Article 12
Last Article
Browse latest
Browse all 13
Trending Articles
Practice Sheet of Right form of verbs for HSC Students
September 22, 2019, 11:40 pm
Download: FK ft Shenky – Nakuyewa ”Prod by: Shenky”
February 16, 2017, 4:24 pm
How to win at Markstrat (Markstrat Tips and Tricks) – Vodites
January 5, 2014, 10:34 pm
Ominde Commission Report and Recommendations – Ominde Report of 1964
March 16, 2015, 5:14 am
Bureau of Internal Revenue: Regional Offices (Directory)
January 9, 2014, 11:06 pm
GO 53 on Enhancement of Ex-gratia upto 5 Lakhs Toddy Tappers in Telangana
March 26, 2017, 11:23 pm
Cakewalk CA-2A Leveling Amplifier v2.0.1.97 WiN, v2.0.1.96 OSX Incl Keygen
October 17, 2016, 7:20 am
Mp3 Download: Mdu - Kunjenjenjena
December 7, 2017, 8:16 am
How the kill the job , when DTP request running for long hours.
July 26, 2013, 2:41 am
Microsoft Intune から展開しているアプリのアップデートについて
October 17, 2016, 4:11 am
18-year-old girl was beaten for half an hour by two Northampton men in 'an...
September 1, 2017, 10:00 pm
Car crash in Dunton Bassett leaves driver in critical condition
October 7, 2014, 7:51 am
Macky 2, Two Others In Road Accident
March 29, 2015, 5:34 am
Application log 00000000000000089514: Could not convert queue DLVST90CLNT
May 14, 2015, 11:27 pm
Detroit mafia: D’Anna Brothers agree to plea deal
April 21, 2016, 6:56 am
Delivery block field greyed out using VA02
January 26, 2016, 2:52 pm
Muloraki Au
June 22, 2016, 1:44 am
【個人撮影】スマホのプライベート映像♪「中に出さないで///」カラオケ屋での生ハメ撮りが流出w【リベンジポルノ】@PornHub
October 12, 2017, 2:23 pm
BREAKING NEWS: Diamond Platnumz Is Reported Dead After Ghastly Car Accident
February 9, 2018, 4:56 am
FIAT 500 B0111 B0112
July 5, 2018, 10:31 am
Search
RSSing.com
© 2025 //www.rssing.com