Commit 12c1c8be by Kyle Fiedler

Merged with default

--HG--
branch : templates-ky-new-nav
parents 44a5c695 d0cd1f5e
...@@ -18,6 +18,64 @@ This set of questions and answers accompanies MIT’s February 13, ...@@ -18,6 +18,64 @@ This set of questions and answers accompanies MIT’s February 13,
6.002x: Circuits and Electronics. 6.002x: Circuits and Electronics.
</p> </p>
<h2> I tried to register for the course, but it says the username
is already taken.</h2>
<p> The system only allows each username to be used once. Probably,
someone else already signed up with that username. Try a different,
more unique username. For example, try adding a random number to the
end.</p>
<h2> I am interested in a different subject. What other courses do
you offer? </h2>
<p> 6.002x is the pilot course for MITx. While we plan to offer a
range of courses in the future, at present, 6.002x is the only course
available.</p>
<h2>How will I know that the course has started?</h2>
<p> The course will start on March 5. Check the website
mitx.mit.edu as the date approaches. A login button will appear on
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.</p>
<h2> Why is there no log-in button?</h2>
<p> You will not be able to log into the course until either the
starting date, or shortly before.</p>
<h2> Does the class have a schedule?</h2>
<p> 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. </p>
<h2> I just enrolled for the course. I have not received any form
of acknowledgement that I have enrolled.</h2>
<p> You should receive a single activation e-mail. If you did not,
check your spam folder, or try to register again with your correct
e-mail address and a new username (most errors are from typos in
e-mail addresses).</p>
<h2> How do I drop the course?</h2>
<p> You do not have to do anything. You can simply stop working on the
course at any time you choose to do so.</p>
<h2>What happens if I drop the course?</h2>
<p> For the prototype course, learners achieving grades of "A," "B,"
or "C" will receive an electronic Certificate of completion with the
learner's name and grade on it. If you receive a grade below a "C" or
do not complete the course, you will not receive a Certificate and no
grade record attaching your name to your participation in the class
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. </p>
<h2> <h2>
What is <i>MITx</i>?</h2> What is <i>MITx</i>?</h2>
......
...@@ -6,4 +6,5 @@ into your web browser's address bar: ...@@ -6,4 +6,5 @@ into your web browser's address bar:
http://${ site }/activate/${ key } http://${ site }/activate/${ key }
If you didn't request this, you don't need to do anything; you won't If you didn't request this, you don't need to do anything; you won't
receive any more email from us. receive any more email from us. Please do not reply to this e-mail; if
you require assistance, check the help section of the MITx web site.
...@@ -5,7 +5,10 @@ ...@@ -5,7 +5,10 @@
<section class="help-email"> <section class="help-email">
<h2>Help &amp; Feedback</h2> <h2>Help &amp; Feedback</h2>
<p> If run into problems signing up for the web site which you <p> If run into problems signing up for the web site which you
cannot resolve on your own, you can reach us at:</p> cannot resolve on your own, please check
the <a href="http://mitx.mit.edu/6002x-faq.html">Frequently
Asked Questions</a>. If you find a bug or other issues, you can
reach us at:</p>
<dl> <dl>
<dt>System-related questions</dt> <dt>System-related questions</dt>
<dd><a href="mailto:technical@mitx.mit.edu">technical@mitx.mit.edu</a></dd> <dd><a href="mailto:technical@mitx.mit.edu">technical@mitx.mit.edu</a></dd>
......
...@@ -91,49 +91,45 @@ $(function() { ...@@ -91,49 +91,45 @@ $(function() {
<div id="grade-detail-graph" style="width:650px;height:200px;"></div> <div id="grade-detail-graph" style="width:650px;height:200px;"></div>
<ol> <ol class="chapters">
<% %for chapter in chapters:
lastChapter = None %if not chapter['chapter'] == "hidden":
%>
% for hw in homeworks:
<li> <li>
%if hw['chapter'] != lastChapter: <h2><a href="${reverse('courseware_chapter', args=format_url_params([chapter['course'], chapter['chapter']])) }">
<h2><a href="${reverse('courseware_chapter', args=format_url_params([hw['course'], hw['chapter']])) }"> ${ chapter['chapter'] }</a></h2>
${ hw['chapter'] }</a></h2>
<% lastChapter = hw['chapter'] %> <ol class="sections">
%else: %for section in chapter['sections']:
<h2>-</h2> <li>
%endif <%
earned = section['section_total'][0]
<div class="scores"> total = section['section_total'][1]
<h3><a href="${reverse('courseware_section', args=format_url_params([hw['course'], hw['chapter'], hw['section']])) }"> percentageString = "{0:.0%}".format( float(earned)/total) if earned > 0 else ""
<% %>
earned = hw['section_total'][0]
total = hw['section_total'][1] <h3><a href="${reverse('courseware_section', args=format_url_params([chapter['course'], chapter['chapter'], section['section']])) }">
percentageString = "{0:.0%}".format( float(earned)/total) if earned > 0 else "" ${ section['section'] }</a> ${"({0}/{1}) {2}".format( earned, total, percentageString )}</h3>
%> ${section['subtitle']}
${ hw['section'] }</a> ${"({0}/{1}) {2}".format( earned, total, percentageString )}</h3> %if 'due' in section and section['due']!="":
${hw['subtitle']} due ${section['due']}
% if 'due' in hw and hw['due']!="":
due ${hw['due']}
% endif
<ul>
%if len(hw['scores']) > 0:
%if hw['graded']:
Problem Scores:
%else:
Practice Scores:
%endif
% for score in hw['scores']:
<li>${ score[0] }/${ score[1] }</li>
% endfor
%endif %endif
</ul>
</div> %if len(section['scores']) > 0:
</li> <ol class="scores">
% endfor ${ "Problem Scores: " if section['graded'] else "Practice Scores: "}
</ol> %for score in section['scores']:
<li class="score">${ score[0] }/${ score[1] }</li>
%endfor
</ol>
%endif
</li> <!--End section-->
%endfor
</ol> <!--End sections-->
</li> <!--End chapter-->
%endif
%endfor
</ol> <!--End chapters-->
</section> </section>
<section class="user-info"> <section class="user-info">
......
...@@ -57,31 +57,50 @@ div.profile-wrapper { ...@@ -57,31 +57,50 @@ div.profile-wrapper {
@extend .top-header; @extend .top-header;
} }
ol { > ol {
list-style: none; list-style: none;
border-top: 1px solid #e3e3e3;
margin-top: lh();
> li { > li {
border-bottom: 1px solid #e3e3e3; border-bottom: 1px solid #e3e3e3;
padding: lh() 0; padding: lh() 0;
width: 100%;
display: table;
@extend .clearfix; @extend .clearfix;
h2 { h2 {
float: left; display: table-cell;
padding: 0; padding: 0;
margin: 0; margin: 0;
width: flex-grid(2, 9); width: flex-grid(2, 9);
margin-right: flex-gutter(9); padding-right: flex-gutter(9);
border-right: 1px dotted #ccc;
@include box-sizing(border-box);
} }
div.scores { ol.sections {
float: left; padding-left: flex-gutter(9);
display: table-cell;
list-style: none;
width: flex-grid(7, 9); width: flex-grid(7, 9);
> li {
padding:0 0 lh() 0;
&:first-child {
padding-top: 0;
}
&:last-child {
border-bottom: 0;
}
h3 { h3 {
color: #666; color: #666;
} }
ul { ol {
list-style: none; list-style: none;
li { li {
...@@ -89,6 +108,7 @@ div.profile-wrapper { ...@@ -89,6 +108,7 @@ div.profile-wrapper {
padding-right: 1em; padding-right: 1em;
} }
} }
}
} }
} }
} }
......
...@@ -36,6 +36,8 @@ h1.top-header { ...@@ -36,6 +36,8 @@ h1.top-header {
font: bold $body-font-size $body-font-family; font: bold $body-font-size $body-font-family;
cursor: pointer; cursor: pointer;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
text-shadow: none;
text-decoration: none;
&:hover, &:focus { &:hover, &:focus {
@include box-shadow(inset 0 1px 0 lighten(#888, 20%), 0 0 3px #ccc); @include box-shadow(inset 0 1px 0 lighten(#888, 20%), 0 0 3px #ccc);
...@@ -107,6 +109,10 @@ h1.top-header { ...@@ -107,6 +109,10 @@ h1.top-header {
} }
} }
} }
a.button {
text-decoration: none;
}
} }
.topbar { .topbar {
......
section.course-index { section.course-index {
@extend .sidebar; @extend .sidebar;
position: relative;
@extend .tran; @extend .tran;
div#open_close_accordion { div#open_close_accordion {
@include box-shadow(0 1px 0 #eee); @include box-shadow(0 1px 0 #eee);
border-bottom: 1px solid #d3d3d3; border-bottom: 1px solid #d3d3d3;
padding: 0 lh(); padding: 0 lh();
position: relative;
h2 { h2 {
padding-right: 20px; padding-right: 20px;
...@@ -18,7 +18,7 @@ section.course-index { ...@@ -18,7 +18,7 @@ section.course-index {
height: 16px; height: 16px;
position: absolute; position: absolute;
padding: 8px; padding: 8px;
top: 12px; top: -12px;
right: -1px; right: -1px;
border: 1px solid #D3D3D3; border: 1px solid #D3D3D3;
background: #eee url('/static/images/slide-left-icon.png') center center no-repeat; background: #eee url('/static/images/slide-left-icon.png') center center no-repeat;
......
...@@ -72,30 +72,6 @@ div.question-list-header { ...@@ -72,30 +72,6 @@ div.question-list-header {
div.tags-list { div.tags-list {
ul.tags {
display: inline;
li {
span.delete-icon, div.delete-icon {
@include border-radius(0 4px 4px 0);
background: #555;
color: #eee;
cursor: pointer;
float: none;
display: inline;
clear: none;
left: 10px;
padding: 3px 6px;
position: relative;
top: 1px;
opacity: 0.5;
&:hover {
opacity: 1;
}
}
}
}
} }
} }
} }
......
div.discussion-wrapper aside { div.discussion-wrapper aside {
@extend .sidebar; @extend .sidebar;
@include box-shadow(inset 1px 0 0 #f6f6f6); @include box-shadow(inset 1px 0 0 #f6f6f6);
...@@ -7,8 +8,13 @@ div.discussion-wrapper aside { ...@@ -7,8 +8,13 @@ div.discussion-wrapper aside {
padding: lh(); padding: lh();
width: flex-grid(3); width: flex-grid(3);
h2 { h2 {
font-size: 16px; color: #4D4D4D;
&.first {
margin-top: 0px;
}
} }
h3 { h3 {
...@@ -20,14 +26,60 @@ div.discussion-wrapper aside { ...@@ -20,14 +26,60 @@ div.discussion-wrapper aside {
width: 76%; width: 76%;
} }
div.box {
@include box-shadow(0 1px 0 #eee);
border-bottom: 1px solid #d3d3d3;
display: block;
padding-bottom: 20px;
overflow: hidden;
&:last-child {
@include box-shadow(none);
border: 0;
}
&.contributors {
a {
@include border-radius(3px);
border: 1px solid #888;
cursor: pointer;
display: inline-block;
margin-right: 6px;
position: relative;
&:before {
@include border-radius(3px);
@include box-shadow(inset 0 0 1px 1px rgba(255,255,255,.4));
top: 1px; left: 1px; bottom: 1px; right: 1px;
content: '';
position: absolute;
}
}
img.gravatar {
@include border-radius(3px);
}
}
&.tag-selector {
ul {
margin-bottom: 10px;
display: block;
}
}
}
#displayTagFilterControl { #displayTagFilterControl {
margin-top: 10px; margin-top: 10px;
} }
div.search-box { div.search-box {
input { input {
@include box-sizing(border-box);
display: inline; display: inline;
} }
input[type='submit'] { input[type='submit'] {
@include box-shadow(none); @include box-shadow(none);
opacity: 0.5; opacity: 0.5;
...@@ -49,7 +101,37 @@ div.discussion-wrapper aside { ...@@ -49,7 +101,37 @@ div.discussion-wrapper aside {
input#keywords { input#keywords {
padding-left: 30px; padding-left: 30px;
padding-right: 30px;
width: 100%;
}
input#clear {
@include box-shadow(none);
@include border-radius(5px);
border: none;
background: $mit-red;
color: #fff;
display: inline;
font-size: 10px;
margin-left: -25px;
padding: 2px 5px;
}
}
// Question view sopecific
div.follow-buttons {
margin: 20px 0;
display: block;
a.button {
@include box-sizing(border-box);
display: block;
text-align: center;
width: 100%;
} }
} }
} }
ul.tags { ul.tags {
list-style: none; list-style: none;
display: inline;
li, a { li, a {
position: relative; position: relative;
} }
...@@ -7,21 +8,56 @@ ul.tags { ...@@ -7,21 +8,56 @@ ul.tags {
@include border-radius(4px); @include border-radius(4px);
background: #eee; background: #eee;
color: #555; color: #555;
display: inline; display: inline-block;
font-size: 12px; font-size: 12px;
margin-left: 15px; margin-left: 15px;
padding: 3px 10px 5px 5px; padding: 3px 10px 5px 5px;
margin-bottom: 5px;
&:before { &:before {
border-color:transparent #eee transparent transparent;
border-style:solid;
border-width:12px 12px 12px 0;
content:""; content:"";
height:0;
left:-11px;
position:absolute; position:absolute;
top:0; top:0;
left:-11px;
width:0; width:0;
height:0; }
border-color:transparent #eee transparent transparent;
border-style:solid; span.delete-icon, div.delete-icon {
border-width:12px 12px 12px 0; @include border-radius(0 4px 4px 0);
background: #555;
clear: none;
color: #eee;
cursor: pointer;
display: inline;
float: none;
left: 10px;
opacity: 0.5;
padding: 3px 6px;
position: relative;
top: 1px;
&:hover {
opacity: 1;
}
}
a {
color: #555;
text-decoration: none;
} }
} }
} }
span.tag-number {
@include border-radius(3px);
background: #555;
font-size: 10px;
margin: 0 3px;
padding: 2px 5px;
color: #eee;
opacity: 0.5;
}
...@@ -78,9 +78,7 @@ intent of misleading others. ...@@ -78,9 +78,7 @@ intent of misleading others.
<li>You, furthermore, agree not to scrape, or otherwise download in <li>You, furthermore, agree not to scrape, or otherwise download in
bulk, user-contributed content, a list or directory of users on the bulk, user-contributed content, a list or directory of users on the
system, or other material including but not limited to on-line system, or other material including but not limited to on-line
textbooks, User Postings, or user information. You agree not to store textbooks, User Postings, or user information.
more than 5 pages of the electronic textbook or 5 forum posts in any
permanent medium (hard drive, optical disk, etc., flash drive, etc.).
<lu>You agree to not misrepresent or attempt to misrepresent your <lu>You agree to not misrepresent or attempt to misrepresent your
identity while using the Sites (although you are welcome and identity while using the Sites (although you are welcome and
encouraged to use an anonymous username in the forums). encouraged to use an anonymous username in the forums).
...@@ -302,6 +300,6 @@ consent to the personal jurisdiction of and exclusive venue in the ...@@ -302,6 +300,6 @@ consent to the personal jurisdiction of and exclusive venue in the
federal and state courts located in and serving Boston, Massachusetts federal and state courts located in and serving Boston, Massachusetts
as the legal forum for any such dispute.</p> as the legal forum for any such dispute.</p>
<p><strong>Effective Date:</strong> February 10, 2012</p><div> <p><strong>Effective Date:</strong> February 20, 2012</p><div>
</div> </div>
</section> </section>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment