forked from sdc/xerte_2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4311 lines (2530 loc) · 110 KB
/
ChangeLog
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2013-07-21 19:16 [email protected]
* [r1057] FIX: Need to check for the existence of
x_currentPageXML.getAttribute("imgSize") before using indexOf on
it
2013-07-18 14:44 [email protected]
* [r1055] option for introducing an image to quiz main textHolder
(the same way that a video can be added)
2013-07-18 10:17 [email protected]
* [r1053] FIX: MCQ - Only show feedback from options selected,
rather than all.
2013-07-18 09:07 [email protected]
* [r1051] tweak for swf player and flv having full screen button
active in thumbnails
2013-07-15 10:16 [email protected]
* [r1049] John's fix for SHIFT-Preview (thanks)
2013-07-14 12:13 [email protected]
* [r1048] Change to page linking to allow
asfunction:_level0.engine.rootIcon.pageLink,2 as well as the more
acceptable
asfunction:_level0.engine.rootIcon.pageLink,PG1373800497357
Reason: backward compatibility with LOs already out there in the
wild...
2013-07-12 21:13 [email protected]
* [r1045] readme.txt file added to
\modules\xerte\templates\Nottingham\media at Tom's request to
attempt to fix some of the media upload issues.
2013-07-12 13:54 [email protected]
* [r1043] FIX last thumbnail that wasn't resized...
2013-07-11 23:38 [email protected]
* [r1042] FIX: MCQ model was only checking if checked boxes were
correct, and ignoring unchecked ones. Thus ticking a single
"correct" box in multiple mode gave a correct message...
2013-07-11 14:33 [email protected]
* [r1039] two tweaks for thumbnails in multiple perspectives (auto
played thumbnails and badly refreshed mp4 thumbnails on returning
from full screen)
2013-07-09 14:14 [email protected]
* [r1037] That's it for all HTML5 models
2013-07-09 14:08 [email protected]
* [r1035] more...
2013-07-09 13:51 [email protected]
* [r1033] Most of the HTML5 screenshots
2013-07-09 10:18 [email protected]
* [r1031] JS conditional traps for 'undefined'
2013-07-09 08:00 [email protected]
* [r1029] R1018 change pushed into v2 branch
2013-07-08 20:56 [email protected]
* [r1028] Fix to allow IE9 and IE10 to correctly use HTML5 when
required. Also have changed rloObject.htm significantly, adding
lots of IE conditionals and moving scripts to end to more follow
standards.
IE conditionals block adds lots of classes to <html> based on IE
version to allow further tweaking...
PLEASE TEST!!
2013-07-08 13:24 [email protected]
* [r1027] We missed the check for window.opener != null out of
branch v2
2013-07-05 14:08 [email protected]
* [r1024] Change to message produced in IE8 when it can't render
the textDrawing page
correctly...
2013-07-03 13:51 [email protected]
* [r1020] Fix for YouTube's dropping of the protocol from embed
codes (http)
2013-07-02 06:56 [email protected]
* [r1017] Enable MathJax in feedback of quiz answers
2013-06-30 11:05 [email protected]
* [r1014] Fix for NULL number_of_uses in v2.0 branch
2013-06-29 18:52 [email protected]
* [r1010] Fix for 'number of uses' not displaying or being
incremented...
2013-06-27 15:58 [email protected]
* [r1007] Push Safari Flash Cookie Bug fix into v2.0 branch
2013-06-26 09:21 [email protected]
* [r1005] Fixed mathjax rendering in quiz when restarted
2013-06-26 08:33 [email protected]
* [r1002] Fixed the mathjax problem when typesetting not done on
revisiting a page
2013-06-21 14:12 [email protected]
* [r995] HTML5 - tidied up code for bleedingImage page
2013-06-20 14:06 [email protected]
* [r993] HTML5 - Changed the way custom HTML files uploaded to
navigators etc. works so that more than one can be added per page
2013-06-20 08:17 [email protected]
* [r991] HTML5 - template & examples for creating new page models
2013-06-20 08:12 [email protected]
* [r989] Background colour css added to embedDiv.html iframe so
background images don't show through it
2013-06-19 14:54 [email protected]
* [r987] Fix typo in the create db command
2013-06-14 10:09 [email protected]
* [r984] HTML5 - change so if there's only 1 page in the LO the
navigation buttons don't show
2013-06-14 09:40 [email protected]
* [r981]
2013-06-14 09:13 [email protected]
* [r980] HTML5 - Changes to modelAnswer & modelAnswerResults pages
to give copy / paste instructions (not possible to automate this
in same way as in Flash version). Includes changes to xwd to add
extra language strings and change to xenith.js to add new global
function x_selectText.
2013-06-12 10:38 [email protected]
* [r978] Changes to gapFill.html:
- In fill in blank the hint can now be turned off using optional
property
- In drag and drop if there is more than one label with the same
word on it they match correctly to any matching target
2013-06-06 09:29 [email protected]
* [r974] links in navigators
2013-06-06 09:09 [email protected]
* [r971] Allows links to be added to panes
2013-06-02 09:45 [email protected]
* [r968] Enable LaTeX and MathJax in option (quiz answers)
2013-05-30 09:29 [email protected]
* [r959] Fix double peer.php (a file was required twice)
2013-05-30 09:28 [email protected]
* [r958] Only use stripslashes if magig_quotes_gpc is enabled!
-- This fixes the inadvertent removel of '\' characters in LaTeX.
2013-05-29 14:49 [email protected]
* [r955] HTML5 - added windowWidth & align optional properties to
embedDiv page
2013-05-29 14:11 [email protected]
* [r953] HTML5 - changed style of close button used in dialog
windows so it's more obvious. mediaViewer.swf in new window can
now be opened via link in text and not just from button on footer
2013-05-29 12:58 [email protected]
* [r951] HTML5 - videoSynch & transciptReader models updated so
they now accept uploaded timed transcript files to create
captions & so captions on screen can be clicked to skip to synch
point
2013-05-24 14:53 [email protected]
* [r949] Added timedText optional property to transcriptReader &
videoSynch pages in xwd so timed text files created with media
viewer chunker can be used to set synch points
2013-05-24 12:43 [email protected]
* [r947] Updated MediaViewer.swf so you can now click on captions
to jump to that part of audio/video
2013-05-23 13:54 [email protected]
* [r945] Changed MediaViewer.swf so it now accepts info about the
appearance of captions from xwd as well as the timed transcript
file.
Added 6 new optional attributes to xwd to control media caption
timing/positioning/appearance etc.
2013-05-23 10:34 [email protected]
* [r943] added a 'link' that can be added to a section and
controlled via the window.open options.
2013-05-23 09:56 [email protected]
* [r941] HTML5 - Changes to a number of page types so custom html
can be uploaded instead of swfs
2013-05-23 09:29 [email protected]
* [r939] Fix missing space between language string and size.
2013-05-23 09:25 [email protected]
* [r937] John's changes for linking
2013-05-22 15:42 [email protected]
* [r935] Fix for space missing in RSS feed before "was developed
by"
2013-05-22 09:25 [email protected]
* [r933] Added a new type to the wizard, html, to make a better job
of editing html nodes; added a new HTML type node to the wizard
for the bootstrap tempalte's HTML nodes.
2013-05-21 13:26 [email protected]
* [r931] Adds a markup item to distinquish bettwen text and HTML
code in the site template, and a canvas icon, which will show on
'Show Advanced'
2013-05-21 13:24 [email protected]
* [r929] Allows for advanced newNodes as well as advanced options
2013-05-20 12:30 [email protected]
* [r927]
2013-05-20 10:50 [email protected]
* [r926] non-full MathJax configuration seems to be incomapatible
with how we feed text to MathJax
2013-05-20 08:58 [email protected]
* [r924] changed the mathjax config
2013-05-17 18:22 [email protected]
* [r922] Math support broken on Windows 8 with latest firefox
2013-05-17 12:43 [email protected]
* [r919]
2013-05-17 11:56 [email protected]
* [r918]
2013-05-17 10:05 [email protected]
* [r916]
2013-05-16 17:32 [email protected]
* [r914] Fix table creation statement to allow adding users in DB
auth mode
2013-05-16 15:05 [email protected]
* [r912] Create user table by calling check() in
management/users.php
2013-05-16 14:51 [email protected]
* [r910] Fix duplicate template (extra_flags was not copied)
2013-05-15 14:07 [email protected]
* [r907] left over from testing the flipping no-browse issue
2013-05-15 14:04 [email protected]
* [r905]
2013-05-15 13:31 [email protected]
* [r904] Bug fix in flickr page - There's now a fall back if imgTxt
is undefined (for old projects where this isn't in xwd)
2013-05-15 13:11 [email protected]
* [r902] Bug fix to quiz.rlm - main feedback now only shows at the
end of the quiz
2013-05-15 11:52 [email protected]
* [r900] HTML5 CHANGES / BUG FIXES:
- Added ARIA landmark roles (banner / main / navigation) to
interface
xenith.js:
- bug fix where narration bar width wasn't always updating on
change of LO size,
- bug fix where if page was skipped quickly past it wouldn't
always show
correctly when returned to,
- changed order things are done in when page changed to fix some
css problems
(e.g. not calculating available size correctly if narration bar
is visible)
- tidied up code,
- removed unneccessary x_sortInitObject function
textSWF/xerteModel.htm:
- removed call to unneccessary x_sortInitObject function
connectorHotspotImage.htm:
- bug fix where audio continued to play when dialog closed
flickr.htm:
- bug fix where panel jumped to left after image loaded in Chrome
- MCQ page, if there's no correct answer in options then the 'You
answer is
correct/incorrect' text won't show
- Quiz page, the main feedback text now only shows when quiz is
complete
Other page models:
- changed calls to sizeChanged() from init() to fit in with
changes made in
xenith.js
- changed the way image load events are used as they sometimes
missed cached
images being reloaded
2013-05-14 12:19 [email protected]
* [r899] Fixed bug when loading style sheet blanks first page in
toolkits template project.
2013-05-14 09:30 [email protected]
* [r897] Fixed thing with editor window growing after Tom's fix for
the browse dialog (this one runs and runs)
2013-05-13 16:54 [email protected]
* [r895] Fix for browsing in the wizard not working FF after
preview
2013-05-13 14:40 [email protected]
* [r894] Fix for bootstrap tempalte browse dialog thing in firefox
2013-05-10 12:27 [email protected]
* [r887] Should point to xerte module files
2013-05-09 22:00 [email protected]
* [r884] MySQL syntax error in newer MySQL server when creating the
user table
2013-05-09 09:43 [email protected]
* [r882] Get MathJax to update after ajax calls. Unsure if this is
a problem where mathjax is used in the toolkit template?
2013-05-04 16:25 [email protected]
* [r880] Fix buttons in list_specific_templates
2013-05-04 12:44 [email protected]
* [r878] Fixed errors in library/Xerte/Authentication/Db.php
2013-05-04 11:02 [email protected]
* [r876] Allow more then 255 characters in tutorial block
2013-05-03 17:45 [email protected]
* [r874] Make install more robust by NOT modifying
setup/database.txt but using session variables. It is more robust
against partly succeeded and restarted setup attempts.
2013-05-03 11:56 [email protected]
* [r872] - Make the fact that 'upload_tmp_dir' is not set a warning
in stead of an error during setup
2013-05-03 08:57 [email protected]
* [r870] Bug fix: buttonSequence now works correctly when full size
2013-05-02 14:08 [email protected]
* [r868] - Enable logo's from site_details instead of fixed names
2013-05-02 13:59 [email protected]
* [r866] - Typo in list of user specific templates
2013-05-02 13:20 [email protected]
* [r864] - Enable logo's from site_details instead of fixed names
2013-05-02 11:49 [email protected]
* [r862] - Enable logo's from site_details instead of fixed names
2013-05-02 11:47 [email protected]
* [r860] - Enable tutorial text again on frontpage.
2013-05-02 09:45 [email protected]
* [r858] changed dates to order the template Xerte Online Toolkit,
then Bootstrap, then RSS.
2013-05-01 09:27 [email protected]
* [r856] Removed call to windowResized() from
player_html5/rloObject.htm as function doesn't exist
2013-04-30 14:50 [email protected]
* [r854] added mathjax support to the bootstrap template, using
Tom's method
2013-04-30 11:09 [email protected]
* [r852] - Fix for languages
- Fix for typo in error reporting in setup
2013-04-27 11:30 [email protected]
* [r846] - Updated installation manual, this still needs some work
2013-04-25 20:20 [email protected]
* [r845] - Fix for HTML5 only export
2013-04-25 12:49 [email protected]
* [r843]
2013-04-25 12:33 [email protected]
* [r842] - Make 'Launch Video' translatable
2013-04-25 12:31 [email protected]
* [r841] HTML5 - improved flickr page model
2013-04-25 11:30 [email protected]
* [r840] Fixed issue in FF with media browser not showing
2013-04-25 10:51 [email protected]
* [r839] - suppress error message of 1.2 scorm
2013-04-25 10:33 [email protected]
* [r838]
2013-04-25 09:32 [email protected]
* [r837] HTML5 - Changed memory page so you can now have images on
all cards
2013-04-25 09:30 [email protected]
* [r836] Deferred loading of the facebook API
2013-04-25 09:18 [email protected]
* [r835] - fixed publishproperties for site templates
2013-04-25 09:17 [email protected]
* [r834] defer added to addthis script
2013-04-25 09:11 [email protected]
* [r833] so the preview from workspace opens with scrollbars
2013-04-25 08:34 [email protected]
* [r832] Added this html5shiv to the application rather than
loading from google code
2013-04-24 16:19 [email protected]
* [r831] HTML5 - fixed bug with adding new css file in xenith.js
2013-04-24 13:52 [email protected]
* [r830] HTML5:
- new stylesheet with styles you can use to easily change look of
LOs
- added link to mediaViewer.html if media/transcript added to LO
- fixed accessibility bug in mcq page
- changed what happens in customHotspots page if canvas tag not
supported
- fixed iframe size bug in wiki page
2013-04-24 13:12 [email protected]
* [r829] Making sure the wizard files are the same in both modules
(they are) but there is specific code in the wizard for
previewing the site template (left over from before the recent
modularisation update)
2013-04-24 13:00 [email protected]
* [r828] Makes the preview functionality consistent between the
site template and the toolkits template: new windows always, and
scrollbars for the site template.
2013-04-24 12:51 [email protected]
* [r827] makes the preview from the wizard for site open in a new
window, and scrollbars work
2013-04-24 09:42 [email protected]
* [r826] Turned off RSS export
2013-04-24 09:40 [email protected]
* [r825] Ackowledging you wonderful people in the credits / setup
stuff!
2013-04-24 09:35 [email protected]
* [r824] Web toolkits changed to online toolkits
2013-04-24 09:34 [email protected]
* [r823]
2013-04-23 20:11 [email protected]
* [r822] HTML5 - tidied up code in several page models and css
files
2013-04-22 21:39 [email protected]
* [r821] HTML5 - changed xwds to add movieSize optional property to
several pages
2013-04-22 21:38 [email protected]
* [r820] HTML5 - tidied up code in several pages and added
movieSize attribute
2013-04-22 20:49 [email protected]
* [r819] - Choose engine in publishproperties.php
- Remove javascript/html5 from the links in properties
2013-04-22 15:26 [email protected]
* [r818] - Fix for media_and_quota: complete link, and download
button functioning again.
2013-04-22 14:42 [email protected]
* [r817] - Simplified full install (a bit)
2013-04-22 14:41 [email protected]
* [r816] - Adding support for MathJax, see http://www.mathjax.org
2013-04-21 21:19 [email protected]
* [r815] Sorted the install a little
2013-04-21 19:26 [email protected]
* [r814] Guide to upgrading an existing installation. Decided to
describe two options: Easy option and Clean upgrade. Probably
needs someone to review.
2013-04-20 08:05 [email protected]
* [r813] - Test
2013-04-19 22:38 [email protected]
* [r812] -Typos?
2013-04-19 22:37 [email protected]
* [r811] - Several bugfixes for the cases where the SCORM player is
in a popup window. onunload is not called in that case but
onbeforeunload is.
- Wrong manifest in case of rich scorm 1.2 manifest with more
than 2 authors.
- Enables mcq for tracking
- changed button handling for quiz in flash and html5
- Added scorm tracking option to main LO (no tracking, minimal
tracking and full tracking)
- Added optional weight parameter to enabled interactivities
2013-04-19 21:45 [email protected]
* [r810] - Fixed INDEX_BUTTON_CREATE_PROJECT
2013-04-19 14:59 [email protected]
* [r809] HTML5 - fixed hotspot highlight appearance bug in IE on
several page types
2013-04-19 13:52 [email protected]
* [r808]
2013-04-19 12:10 [email protected]
* [r807] HTML5 - Change to annotatedDiagram (incl xwd) to allow
swfs to be used instead of image
2013-04-19 09:57 [email protected]
* [r806] HTML5 - moved the code that looks for alternative file for
videos to mediaPlayer.js so it's not duplicated in page models
2013-04-19 08:01 [email protected]
* [r805] - Wrong title (again)
2013-04-18 17:28 [email protected]
* [r804]
2013-04-18 17:24 [email protected]
* [r803]
2013-04-18 17:24 [email protected]
* [r802]
2013-04-18 17:21 [email protected]
* [r801]
2013-04-18 17:21 [email protected]
* [r800] Added JS
2013-04-18 16:57 [email protected]
* [r799] - Missing files in the site template
2013-04-18 15:21 [email protected]
* [r798]
2013-04-18 15:19 [email protected]
* [r797] turning the bootstrap template on
2013-04-18 15:12 [email protected]
* [r796] connectorHotspotImage - max window width/height increased
in xwds
2013-04-18 15:06 [email protected]
* [r795] Fixed up the sidebar to work when tabs on the page and
checking it in before the weird errors start cropping up again.
2013-04-18 14:39 [email protected]
* [r794] HTML5 - added support for optional images to videoSynch
page
2013-04-18 13:40 [email protected]
* [r793]
2013-04-18 13:22 [email protected]
* [r792]
2013-04-18 10:51 [email protected]
* [r791] -Hmm when closing a popup the onunload is NOT called,
whereas onbeforeunload is. This chaneg is needed for LMS's that
use popup windows for the Scorm player.
2013-04-18 10:12 [email protected]
* [r790] HTML5 - change to gapFill so upper/lower case is ignored
when checking answers
2013-04-18 09:55 [email protected]
* [r789] HTML5 - new gapFill page type & minor change to styles for
tooltips in mainStyles.css and xenith.js
2013-04-18 09:34 [email protected]
* [r788] - Fix for HTML5 export (xtrracking_noop.js was referred to
in wrong folder)
2013-04-18 08:07 [email protected]
* [r787] - Revert some of the changes of revision 785
2013-04-17 16:03 [email protected]
* [r786] fixed a bug when multiple accordions on the same page.
2013-04-17 15:41 [email protected]
* [r785] Header styles sorted, Copyright statement and license info
removed from the footer.
2013-04-17 11:02 [email protected]
* [r784] You can now configure the header colour and header text
colour. Enter two header colours, comma separated, for a
gradient. I might change this to use colorPickers,
2013-04-16 22:56 [email protected]
* [r783] Added site language files
2013-04-16 22:55 [email protected]
* [r782] Fixed workspace bugs
2013-04-16 22:55 [email protected]
* [r781] fixed bug with disply query
2013-04-16 22:54 [email protected]
* [r780] Fixed button bug for delete button
2013-04-16 22:54 [email protected]
* [r779] Finished Site module
2013-04-16 21:57 [email protected]
* [r778] HTML5 - Change to chart page so graph size isn't fixed any
more
2013-04-16 19:57 [email protected]
* [r777] UPLOAD.PHP patch to try and solve the flash cookie
issue...
2013-04-16 19:33 [email protected]
* [r776] - Oops, type in basic.sql in commit 758
2013-04-16 14:54 [email protected]
* [r775] The template that is not called site now does pills, tabs,
accordions and carousel navigators. Few things to iron out.
2013-04-15 23:51 [email protected]
* [r774] Fixed CSS and JS bug
2013-04-15 23:50 [email protected]
* [r773] moved a line or two around
2013-04-15 23:46 [email protected]
* [r772] Removed files no longer in use
2013-04-15 23:44 [email protected]
* [r771] Removed example url code (now uses play instead)
2013-04-15 23:41 [email protected]
* [r770] Neatened up
2013-04-15 23:37 [email protected]
* [r769] Added call to display links
2013-04-15 23:34 [email protected]
* [r768] Added display link options to both module functions files
2013-04-15 23:29 [email protected]
* [r767] Added header redirect to the setup path if index ran
before setup is complete
2013-04-15 16:01 [email protected]
* [r766] started on the navigators
2013-04-15 14:44 [email protected]
* [r765] - Fix $template_path_string: should point to
modules/site/parent_templates
2013-04-15 14:00 [email protected]
* [r764] - Somehow missed to include
modules/site/module_functions.php
2013-04-15 09:05 [email protected]
* [r763] - Changed framework for the 'site' template
2013-04-15 08:30 [email protected]
* [r762] - Oops, extraflags should be extraparams
2013-04-14 11:17 [email protected]
* [r761] - Oops deleted css attributes of body
2013-04-13 16:50 [email protected]
* [r760] - Another small issue with site
2013-04-13 12:23 [email protected]
* [r759] Small bug fix for site/preview.php
2013-04-12 21:28 [email protected]
* [r758] - Changed play.php (root) and modules/xerte/play.php and
preview
- Make play_html5.php (root) and preview_html5.php (root)
redirect to new play
- Make use of the same template files as export does for the play
and preview
- Get rid of difference between rloObject.js used for play and
used for export
- Only one location for MainPreloader.swf and xmlEngine.swf (for
play and export, export used to copy it from a different
location)
- Modified wizard to call preview.php with 'engine=other' when
Ctr+Play is clicked
- Make peer.php use the same templates as play and preview and
implement for javascript engine as well
- Move site to its own module dir
- Changed basic.sql
- updates upgrade.php
2013-04-12 14:26 [email protected]
* [r757] - Fix INDEX_WORKSPACE
2013-04-12 14:25 [email protected]
* [r756] - Fix Create Folder
2013-04-12 13:48 [email protected]
* [r755] HTML5 - new page templates (perspectives and
thumbnailViewer)
2013-04-11 21:26 [email protected]
* [r754] HTML5 - fixed bug where swfs weren't working in
modelAnswer page
2013-04-11 15:42 [email protected]
* [r753] HTML5
- added two new optional properties to xwd (description for
geocommons and movieSize for perspectives)
- added next & prev button images for use on perspectives and
thumbnailViewer pages and default sound image for perspectives
page
2013-04-09 22:00 [email protected]
* [r752] HTML5 -
jmol page: added error message for if Java not enabled /
installed,
table page: added init function
pages with swfs (x12): error messages made consistent for if
flash not installed
2013-04-09 08:37 [email protected]
* [r751]
2013-04-09 08:29 [email protected]
* [r750] small bug in sound events in chrome fixed (thanks Dave)
2013-04-08 11:01 [email protected]
* [r749]
2013-04-05 14:33 [email protected]
* [r748] HTML5 - added/styled error message on multiple pages for
if browser does not fully support it (pages that use canvas tag)
2013-04-05 13:30 [email protected]
* [r747] - Fixed issues with scorm tracking
- Simplified export a bit (only 2 template htm needed i.s.o. 6)
- Added language support to scorm tracking
- Enhanced tracking
- Enabled quiz tracking again, BUT differently - not finished
yet!
2013-04-05 12:54 [email protected]
* [r746] HTML5 - new inventory page incl. change to xwd to add
image tooltip otion
2013-04-04 15:40 [email protected]
* [r745] HTML5 - fixed bug in title page that meant bg image wasn't
always loading
2013-04-04 08:58 [email protected]
* [r744] HTML5 - fixed window size bug in connectorHotspotImage
page
2013-04-04 08:11 [email protected]
* [r743] HTML5 - change to image scaling in connectorHotspotImage
page
2013-04-03 15:48 [email protected]
* [r742] HTML5 - removed connectorPlainText page as it's not
working properly and is no longer used anyway
2013-04-03 15:46 [email protected]
* [r741] HTML5 - connectorHotspotImage page type completed. Minor
changes to xenith.js re. openDialog function
2013-04-03 10:53 [email protected]
* [r740] - Fix selection of HTML5 and Flash
2013-04-02 07:00 [email protected]
* [r739] - Cleaned up export pages and javascript helper functions
for xmlEngine.xml