1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render_to_response, get_object_or_404
from django.core.context_processors import csrf
from django.views.decorators.csrf import csrf_exempt
from django.contrib.auth.decorators import login_required
from website.models import Question, Reply, TutorialDetails, TutorialResources
from website.forms import NewQuestionForm
from website.helpers import get_video_info
categories = [
'Advanced-C++', 'BASH', 'Blender',
'C-and-C++', 'CellDesigner', 'Digital-Divide',
'Drupal', 'Firefox', 'GChemPaint', 'Geogebra',
'GeoGebra-for-Engineering-drawing', 'GIMP', 'GNS3',
'GSchem', 'Java', 'Java-Business-Application',
'KiCad', 'KTouch', 'KTurtle', 'LaTeX',
'LibreOffice-Suite-Base', 'LibreOffice-Suite-Calc',
'LibreOffice-Suite-Draw', 'LibreOffice-Suite-Impress',
'LibreOffice-Suite-Math', 'LibreOffice-Suite-Writer',
'Linux', 'Netbeans', 'Ngspice', 'OpenFOAM', 'Orca',
'PERL', 'PHP-and-MySQL', 'Python', 'Python-Old-Version',
'QCad', 'R', 'Ruby', 'Scilab', 'Selenium',
'Single-Board-Heater-System', 'Spoken-Tutorial-Technology',
'Step', 'Thunderbird', 'Tux-Typing', 'What-is-Spoken-Tutorial', 'Xfig'
]
def home(request):
context = {
'categories': categories
}
return render_to_response('website/templates/index.html', context)
def fetch_tutorials(request, category=None):
tutorials = TutorialDetails.objects.using('spoken').filter(foss_category=category)
context = {
'category': category,
'tutorials': tutorials
}
return render_to_response('website/templates/fetch_tutorials.html', context)
def fetch_questions(request, category=None, tutorial=None):
questions = Question.objects.filter(category=category).filter(tutorial=tutorial)
context = {
'category': category,
'tutorial': tutorial,
'questions': questions
}
return render_to_response('website/templates/fetch_questions.html', context)
def get_question(request, question_id=None):
question = get_object_or_404(Question, id=question_id)
replies = question.reply_set.all()
context = {
'question': question,
'replies': replies
}
return render_to_response('website/templates/get_question.html', context)
@login_required
def new_question(request):
if request.method == 'POST':
form = NewQuestionForm(request.POST)
if form.is_valid():
return HttpResponse("valid")
else:
form = NewQuestionForm()
context = {
'form': form
}
context.update(csrf(request))
return render_to_response('website/templates/new-question.html', context)
@csrf_exempt
def ajax_tutorials(request):
if request.method == 'POST':
category = request.POST.get('category')
tutorials = TutorialDetails.objects.using('spoken').filter(foss_category=category)
context = {
'tutorials': tutorials
}
return render_to_response('website/templates/ajax-tutorials.html', context)
@csrf_exempt
def ajax_duration(request):
if request.method == 'POST':
category = request.POST['category']
tutorial =request.POST['tutorial']
video_info = get_video_info('/home/cheese/test-video.ogv')
# convert minutes to 1 if less than 0
# convert seconds to nearest upper 10th number eg(23->30)
minutes = video_info['minutes']
seconds = video_info['seconds']
if minutes < 0:
minutes = 1
seconds = int(seconds - (seconds % 10 - 10))
print minutes, seconds
context = {
'minutes': minutes,
'seconds':seconds,
}
return render_to_response('website/templates/ajax-duration.html', context)
|