/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to databas.sql

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-28 14:28:55 UTC
  • mfrom: (85.1.23 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130528142855-6efv9cy0tm5v90zj
Merged Ohlson:s changes:
added information to the XML API course to be able to test with the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
VALUES ('Vektorgrafik','DA525G', 1),
313
313
('Shading','DA525G', 2),
314
314
('3D','DA525G', 3),
315
 
('Tidigt 90-tal','DV313G', 1),
 
315
('SAX Examples','DV313G', 2),
 
316
('DOM Examples 1','DV313G', 3),
 
317
('DOM Examples 2 - Validation','DV313G', 4),
 
318
('DOM Examples 3 - XPATH','DV313G', 5),
 
319
('XSLT Examples 1 - Navigation','DV313G', 6),
 
320
('XSLT 2 - Apply Template and Grouping','DV313G', 7),
 
321
('PHP Introduction','DV313G', 1),
316
322
('Categorie i nånting','DA330G', 1),
317
323
('Categorie i någontingen mer','DA330G', 2);
318
324
 
324
330
('Globalshading','Shading','DA525G', 2),
325
331
('Bra 3d' , '3D','DA525G', 1),
326
332
('Dålig 3d' , '3D','DA525G', 2),
327
 
('Smurfhits','Tidigt 90-tal','DV313G', 1),
328
 
('NES','Tidigt 90-tal','DV313G', 2),
329
 
('Sovmorgon','Tidigt 90-tal','DV313G', 3),
 
333
('Introduction','PHP Introduction','DV313G', 1),
 
334
('SAX Parsing','SAX Examples','DV313G', 1),
 
335
('Validation','DOM Examples 1','DV313G', 1),
 
336
('XPATH 1','DOM Examples 3 - XPATH','DV313G', 1),
 
337
('XPATH 2','DOM Examples 3 - XPATH','DV313G', 2),
330
338
('Subcategorie i nånting' ,'Categorie i nånting','DA330G', 1),
331
339
('Subcategorie2 i nånting' ,'Categorie i nånting','DA330G', 2),
332
340
('Subcategorie i nåntingen mer', 'Categorie i någontingen mer','DA330G', 1),
333
341
('Subcategorie2 i nåntingen mer', 'Categorie i någontingen mer','DA330G', 2);
334
342
 
335
343
 
336
 
 
337
344
INSERT INTO Quizzes(`quizNr`, `subCategoryName`, `categoryName`, `courseID`, `quizData`, `allowMultipleReplies`,`autoCorrected`, `openingDate`,`closingDate` ) 
338
345
VALUES(1,'punkt' ,'Vektorgrafik','DA525G','Svara så gott du kan, lycka till',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00'),
339
346
(2,'punkt' ,'Vektorgrafik','DA525G','Lol glhf',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00'),
340
347
(3,'punkt' ,'Vektorgrafik','DA525G','ajaja detta kommer nu gå bra *NAWHT*',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00'),
341
 
(1,'linjer' ,'Vektorgrafik','DA525G','happ happ lycka till',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00');
342
 
  
 
348
(1,'linjer' ,'Vektorgrafik','DA525G','happ happ lycka till',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00'),
 
349
(5,'Validation' ,'DOM Examples 1','DV313G','Validation with DOM',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00'),
 
350
(5,'SAX Parsing' ,'SAX Examples','DV313G','parsing with SAX',1,1, '2013-05-20 08:00:00','2013-05-25 23:59:00');  
 
351
 
343
352
 INSERT INTO QuizQuestions(`questionID`, `quizNr`, `subCategoryName`, `categoryName`, `courseID`, `questionData`, `correctAnswer`) 
344
353
 VALUES(1,1,'punkt' ,'Vektorgrafik','DA525G','vad är roten av pi plus solens massa?','inte vet jag lol'),
345
354
(2,1,'punkt' ,'Vektorgrafik','DA525G','hur mår du?','Bra som bara den');
348
357
VALUES('punkt example 1','punkt' ,'Vektorgrafik','DA525G',1,'nån sorts förklaring om punkter'),
349
358
('punkt example 2','punkt' ,'Vektorgrafik','DA525G',2,'nån sorts förklaring om punkter i example 2'),
350
359
('ett till exempel','punkt' ,'Vektorgrafik','DA525G',3,'nån sorts förklaring om punkter igen'),
 
360
('XPATH 1a','XPATH 2' ,'DOM Examples 3 - XPATH','DV313G',1,'XPATH intro'),
 
361
('SAX Example 1b','SAX Parsing' ,'SAX Examples','DV313G',2,'Printing of SAX parsing'),
 
362
('SAX Example 1a','SAX Parsing' ,'SAX Examples','DV313G',1,'Handling of SAX parsing'),
351
363
('linjer example 1','linjer' ,'Vektorgrafik','DA525G',1,'nån sorts förklaring om linjer');
352
364
 
353
365
INSERT INTO Files(`fileName`,`fileType`,`codeLanguage`, `dataBlob`)