Skip to content

Commit 9ad034d

Browse files
committed
Working uploads
Does not have a pretty gui, but allows for uploading files using ajax and therefore not have to refresh the page.
0 parents  commit 9ad034d

35 files changed

+5165
-0
lines changed

manage.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python
2+
import os
3+
import sys
4+
5+
if __name__ == "__main__":
6+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mobileworks.settings")
7+
8+
from django.core.management import execute_from_command_line
9+
10+
execute_from_command_line(sys.argv)

mobileworks/.forms.py.swp

12 KB
Binary file not shown.

mobileworks/.views.py.swp

12 KB
Binary file not shown.

mobileworks/__init__.py

Whitespace-only changes.

mobileworks/__init__.pyc

143 Bytes
Binary file not shown.

mobileworks/forms.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from django import forms
2+
3+
class FileUploadForm(forms.Form):
4+
qqfile = forms.FileField()

mobileworks/forms.pyc

451 Bytes
Binary file not shown.

mobileworks/settings.py

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
# Django settings for mobileworks project.
2+
import os
3+
4+
DEBUG = True
5+
TEMPLATE_DEBUG = DEBUG
6+
7+
ADMINS = (
8+
# ('Your Name', '[email protected]'),
9+
)
10+
11+
MANAGERS = ADMINS
12+
13+
DATABASES = {
14+
'default': {
15+
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
16+
'NAME': '', # Or path to database file if using sqlite3.
17+
'USER': '', # Not used with sqlite3.
18+
'PASSWORD': '', # Not used with sqlite3.
19+
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
20+
'PORT': '', # Set to empty string for default. Not used with sqlite3.
21+
}
22+
}
23+
24+
# Local time zone for this installation. Choices can be found here:
25+
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
26+
# although not all choices may be available on all operating systems.
27+
# On Unix systems, a value of None will cause Django to use the same
28+
# timezone as the operating system.
29+
# If running in a Windows environment this must be set to the same as your
30+
# system time zone.
31+
TIME_ZONE = 'America/Chicago'
32+
33+
# Language code for this installation. All choices can be found here:
34+
# http://www.i18nguy.com/unicode/language-identifiers.html
35+
LANGUAGE_CODE = 'en-us'
36+
37+
SITE_ID = 1
38+
39+
# If you set this to False, Django will make some optimizations so as not
40+
# to load the internationalization machinery.
41+
USE_I18N = True
42+
43+
# If you set this to False, Django will not format dates, numbers and
44+
# calendars according to the current locale.
45+
USE_L10N = True
46+
47+
# If you set this to False, Django will not use timezone-aware datetimes.
48+
USE_TZ = True
49+
50+
# Absolute filesystem path to the directory that will hold user-uploaded files.
51+
# Example: "/home/media/media.lawrence.com/media/"
52+
MEDIA_ROOT = ''
53+
54+
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
55+
# trailing slash.
56+
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
57+
MEDIA_URL = ''
58+
59+
# Absolute path to the directory static files should be collected to.
60+
# Don't put anything in this directory yourself; store your static files
61+
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
62+
# Example: "/home/media/media.lawrence.com/static/"
63+
STATIC_ROOT = ""
64+
65+
# URL prefix for static files.
66+
# Example: "http://media.lawrence.com/static/"
67+
STATIC_URL = '/static/'
68+
69+
# Additional locations of static files
70+
STATICFILES_DIRS = (
71+
# Put strings here, like "/home/html/static" or "C:/www/django/static".
72+
# Always use forward slashes, even on Windows.
73+
# Don't forget to use absolute paths, not relative paths.
74+
os.path.join(os.path.dirname(__file__), 'static'),
75+
)
76+
77+
# List of finder classes that know how to find static files in
78+
# various locations.
79+
STATICFILES_FINDERS = (
80+
'django.contrib.staticfiles.finders.FileSystemFinder',
81+
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
82+
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
83+
)
84+
85+
# Make this unique, and don't share it with anybody.
86+
SECRET_KEY = '6cp(hb_vfflmzkgknd+g80rrmyg+hg*ob#21f$ee49q)%*wae2'
87+
88+
# List of callables that know how to import templates from various sources.
89+
TEMPLATE_LOADERS = (
90+
'django.template.loaders.filesystem.Loader',
91+
'django.template.loaders.app_directories.Loader',
92+
# 'django.template.loaders.eggs.Loader',
93+
)
94+
95+
MIDDLEWARE_CLASSES = (
96+
'django.middleware.common.CommonMiddleware',
97+
'django.contrib.sessions.middleware.SessionMiddleware',
98+
'django.middleware.csrf.CsrfViewMiddleware',
99+
'django.contrib.auth.middleware.AuthenticationMiddleware',
100+
'django.contrib.messages.middleware.MessageMiddleware',
101+
# Uncomment the next line for simple clickjacking protection:
102+
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
103+
)
104+
105+
ROOT_URLCONF = 'mobileworks.urls'
106+
107+
# Python dotted path to the WSGI application used by Django's runserver.
108+
WSGI_APPLICATION = 'mobileworks.wsgi.application'
109+
110+
TEMPLATE_DIRS = (
111+
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
112+
# Always use forward slashes, even on Windows.
113+
# Don't forget to use absolute paths, not relative paths.
114+
os.path.join(os.path.dirname(__file__), 'templates'),
115+
)
116+
117+
INSTALLED_APPS = (
118+
'django.contrib.auth',
119+
'django.contrib.contenttypes',
120+
'django.contrib.sessions',
121+
'django.contrib.sites',
122+
'django.contrib.messages',
123+
'django.contrib.staticfiles',
124+
# Uncomment the next line to enable the admin:
125+
# 'django.contrib.admin',
126+
# Uncomment the next line to enable admin documentation:
127+
# 'django.contrib.admindocs',
128+
)
129+
130+
# Location for storing files
131+
UPLOADS = os.path.join(os.path.dirname(__file__), 'uploads')
132+
133+
# A sample logging configuration. The only tangible logging
134+
# performed by this configuration is to send an email to
135+
# the site admins on every HTTP 500 error when DEBUG=False.
136+
# See http://docs.djangoproject.com/en/dev/topics/logging for
137+
# more details on how to customize your logging configuration.
138+
LOGGING = {
139+
'version': 1,
140+
'disable_existing_loggers': False,
141+
'filters': {
142+
'require_debug_false': {
143+
'()': 'django.utils.log.RequireDebugFalse'
144+
}
145+
},
146+
'handlers': {
147+
'mail_admins': {
148+
'level': 'ERROR',
149+
'filters': ['require_debug_false'],
150+
'class': 'django.utils.log.AdminEmailHandler'
151+
}
152+
},
153+
'loggers': {
154+
'django.request': {
155+
'handlers': ['mail_admins'],
156+
'level': 'ERROR',
157+
'propagate': True,
158+
},
159+
}
160+
}

mobileworks/settings.pyc

2.97 KB
Binary file not shown.
+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
/*
2+
* Copyright 2013, Widen Enterprises [email protected]
3+
*
4+
* Licensed under GNU GPL v3, see license.txt.
5+
*/
6+
.qq-uploader {
7+
position: relative;
8+
width: 100%;
9+
}
10+
.qq-upload-button {
11+
display: block;
12+
width: 105px;
13+
padding: 7px 0;
14+
text-align: center;
15+
background: #880000;
16+
border-bottom: 1px solid #DDD;
17+
color: #FFF;
18+
}
19+
.qq-upload-button-hover {
20+
background: #CC0000;
21+
}
22+
.qq-upload-button-focus {
23+
outline: 1px dotted #000000;
24+
}
25+
.qq-upload-drop-area, .qq-upload-extra-drop-area {
26+
position: absolute;
27+
top: 0;
28+
left: 0;
29+
width: 100%;
30+
height: 100%;
31+
min-height: 30px;
32+
z-index: 2;
33+
background: #FF9797;
34+
text-align: center;
35+
}
36+
.qq-upload-drop-area span {
37+
display: block;
38+
position: absolute;
39+
top: 50%;
40+
width: 100%;
41+
margin-top: -8px;
42+
font-size: 16px;
43+
}
44+
.qq-upload-extra-drop-area {
45+
position: relative;
46+
margin-top: 50px;
47+
font-size: 16px;
48+
padding-top: 30px;
49+
height: 20px;
50+
min-height: 40px;
51+
}
52+
.qq-upload-drop-area-active {
53+
background: #FF7171;
54+
}
55+
.qq-upload-list {
56+
margin: 0;
57+
padding: 0;
58+
list-style: none;
59+
}
60+
.qq-upload-list li {
61+
margin: 0;
62+
padding: 9px;
63+
line-height: 15px;
64+
font-size: 16px;
65+
background-color: #FFF0BD;
66+
}
67+
.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-retry, .qq-upload-failed-text, .qq-upload-finished, .qq-upload-delete {
68+
margin-right: 12px;
69+
}
70+
.qq-upload-file {
71+
}
72+
.qq-upload-spinner {
73+
display: inline-block;
74+
background: url("loading.gif");
75+
width: 15px;
76+
height: 15px;
77+
vertical-align: text-bottom;
78+
}
79+
.qq-drop-processing {
80+
display: none;
81+
}
82+
.qq-drop-processing-spinner {
83+
display: inline-block;
84+
background: url("processing.gif");
85+
width: 24px;
86+
height: 24px;
87+
vertical-align: text-bottom;
88+
}
89+
.qq-upload-finished {
90+
display:none;
91+
width:15px;
92+
height:15px;
93+
vertical-align:text-bottom;
94+
}
95+
.qq-upload-retry, .qq-upload-delete {
96+
display: none;
97+
color: #000000;
98+
}
99+
.qq-upload-cancel, .qq-upload-delete {
100+
color: #000000;
101+
}
102+
.qq-upload-retryable .qq-upload-retry {
103+
display: inline;
104+
}
105+
.qq-upload-size, .qq-upload-cancel, .qq-upload-retry, .qq-upload-delete {
106+
font-size: 12px;
107+
font-weight: normal;
108+
}
109+
.qq-upload-failed-text {
110+
display: none;
111+
font-style: italic;
112+
font-weight: bold;
113+
}
114+
.qq-upload-failed-icon {
115+
display:none;
116+
width:15px;
117+
height:15px;
118+
vertical-align:text-bottom;
119+
}
120+
.qq-upload-fail .qq-upload-failed-text {
121+
display: inline;
122+
}
123+
.qq-upload-retrying .qq-upload-failed-text {
124+
display: inline;
125+
color: #D60000;
126+
}
127+
.qq-upload-list li.qq-upload-success {
128+
background-color: #5DA30C;
129+
color: #FFFFFF;
130+
}
131+
.qq-upload-list li.qq-upload-fail {
132+
background-color: #D60000;
133+
color: #FFFFFF;
134+
}
135+
.qq-progress-bar {
136+
background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(41,137,216,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6+ */
137+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(50%,rgba(41,137,216,1)), color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */
138+
background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */
139+
background: -o-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */
140+
background: -ms-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* IE10+ */
141+
background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C */
142+
width: 0%;
143+
height: 15px;
144+
border-radius: 6px;
145+
margin-bottom: 3px;
146+
display: none;
147+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
(function() {
2+
var match = /(\{.+\}).+/.exec(document.body.innerHTML);
3+
if (match) {
4+
parent.postMessage(match[1], '*');
5+
}
6+
}());

0 commit comments

Comments
 (0)