diff --git a/6002x-faq.html b/6002x-faq.html index 475e0312c8..4a13a532b8 100644 --- a/6002x-faq.html +++ b/6002x-faq.html @@ -26,6 +26,7 @@ someone else already signed up with that username. Try a different, more unique username. For example, try adding a random number to the end.

+

I am interested in a different subject. What other courses do you offer?

@@ -33,6 +34,7 @@ you offer? range of courses in the future, at present, 6.002x is the only course available.

+

How will I know that the course has started?

The course will start on March 5. Check the website @@ -41,17 +43,20 @@ the course website 6.002x.mitx.mit.edu on or slightly before March 5 so you can login, begin to get familiar with the site and start the course.

+

Why is there no log-in button?

You will not be able to log into the course until either the starting date, or shortly before.

+

Does the class have a schedule?

The lectures are on-line videos, and may be watched at your own pace and schedule. The course will have fixed deadlines for homework assignments and exams.

+

I just enrolled for the course. I have not received any form of acknowledgement that I have enrolled.

@@ -69,11 +74,13 @@ most common issues are: to do anything about the old account, if any. If it is not activated through the link in the e-mail, it will disappear later. +

How do I drop the course?

You do not have to do anything. You can simply stop working on the course at any time you choose to do so.

+

What happens if I drop the course?

For the prototype course, learners achieving grades of "A," "B," @@ -85,6 +92,7 @@ will be disclosed outside of MITx. You can also choose to opt for a no record at any time. However, the posts you make while enrolled in the class will remain visible.

+

What is MITx?

@@ -113,6 +121,7 @@ education. The launch of MITx represents a next step forward in that effort.

+

What is 6.002x, and how is it different from the on-campus version of 6.002? @@ -142,6 +151,7 @@ version of 6.002. professors Anant Agarwal and Jeffrey H. Lang for 6.002.

+

How do I enroll in 6.002x?

@@ -150,6 +160,7 @@ To enroll, visit
http://mitx.mit.edu and sign up.

+

When will the course be available online?

@@ -158,6 +169,7 @@ When will the course be available online? 6.002x will become available online on Monday, March 5.

+

Do I need to follow a set timeline in completing 6.002x?

@@ -169,6 +181,7 @@ final exam will be given within a specific range of days. However, faster-paced learners can proceed multiple weeks ahead if they choose.

+

How much time is required to complete the course?

@@ -178,6 +191,7 @@ course. However, the time taken by individual students might vary considerably depending on background and skill.

+

Who are the instructors for 6.002x?

@@ -187,6 +201,7 @@ Gerald Sussman and Piotr Mitros. The team also includes several teaching assistants (TAs).

+

What is the work like in 6.002x?

@@ -208,6 +223,7 @@ videos. Lab and homework exercises will round out the week. Tutorials are also provided as additional reference material.

+

What if I have a question during the course?

@@ -218,6 +234,7 @@ documents, FAQs, tutorials and videos on using the various components of the course will also be provided.

+

Will 6.002x offer any means for collaboration among online learners?

@@ -226,6 +243,7 @@ Yes. 6.002x will offer modest support for collaborative work through a prototype wiki and discussion forum.

+

Are there prerequisites to take the course?

@@ -248,6 +266,7 @@ remedial differential equations component for students with weaker math backgrounds.

+

How much does the course cost?

@@ -255,9 +274,10 @@ How much does the course cost? All of the courses on MITx will be free of charge. Those who have the ability and motivation to demonstrate mastery of content can receive a credential for a modest fee. For this prototype course, the fee for a -credential will be waived. +credential will be waived.

+

What is a credential?

@@ -270,6 +290,7 @@ testing center or otherwise have your identity certified in order to receive this certificate.

+

Who is grading the course?

@@ -278,6 +299,7 @@ Who is grading the course? including practice exercises, homework assignments, labs and exams.

+

What is a passing grade?

@@ -288,6 +310,7 @@ affecting a student’s grade and the grade thresholds will be posted on the course website when the course comes online.

+

Do I need to buy a textbook?

@@ -299,23 +322,28 @@ provided electronically as part of the online course. While the textbook is recommended, it is not required. The electronic text is provided for personal use in connection with this course only. The copyright for the book is owned by Elsevier. The book can be purchased -on Amazon. +on
Amazon.

+

Do I need to have special software to access 6.002x?

No, you do not need special software to access 6.002x, as you will access the online interactive course through your browser. The course -website was developed and tested primarily with Google Chrome. We -support current versions of Mozilla Firefox as well. The video player -is designed to work with Flash. While we provide a partial non-Flash -fallback for the video, as well as partial support for Internet -Explorer, other browsers and tablets, portions of the functionality -will be unavailable. +website was developed and tested primarily with the current version of +Google Chrome. We support current versions of Mozilla Firefox as +well. The video player is based on Youtube, and is designed to work +with Flash. We provide a partial non-Flash fallback for the video, but +this uses Google's experimental HTML5 API, and hence we cannot +guarantee those will continue to function for the duration of the +semester. We provide partial support for Internet Explorer, as well as +other browsers and tablets, but portions of the functionality will be +unavailable.

+

When will the next courses become available and what topics will they be on?

diff --git a/seq_module.js b/seq_module.js index 57b73543c6..9c52dacad2 100644 --- a/seq_module.js +++ b/seq_module.js @@ -2,27 +2,29 @@ var ${ id }contents=["", %for t in items: - ${t[1]['content']} , + ${t['content']} , %endfor "" ]; var ${ id }types=["", %for t in items: - "${t[1]['type']}" , + "${t['type']}" , %endfor "" ]; var ${ id }init_functions=["", %for t in items: - function(){ ${t[1]['init_js']} }, + function(){ ${t['init_js']} }, %endfor ""]; +var ${ id }titles=${titles}; + var ${ id }destroy_functions=["", %for t in items: - function(){ ${t[1]['destroy_js']} }, + function(){ ${t['destroy_js']} }, %endfor ""]; @@ -52,6 +54,7 @@ function ${ id }goto(i) { function ${ id }setup_click(i) { $('#tt_'+i).click(function(eo) { ${ id }goto(i);}); $('#tt_'+i).addClass("seq_"+${ id }types[i]+"_inactive"); + $('#tt_'+i).attr("title", ${ id }titles[i-1]); }