Re: [edx-code] Xblocks course export version support

2019-06-17 Thread Peter Pinch
Unfortunately, there is no documentation on OLX version compatibility. There 
was some discussion at the last open EdX conference about creating some better 
tooling around versioning, but we didn’t get very far. 

If you have a concern about moving between specific versions, please share the 
details here or on the open edX slack channel. There are likely folks there who 
have tried it before. 

Peter Pinch
MIT Open Learning 


> On Jun 17, 2019, at 4:51 AM, Георги Мирчев  wrote:
> 
> Hey all, I have a problem:
> 
> when open edx exports a course it is in xblocks format, my question is where 
> to find what version of open edx supports what version of xblocks exported 
> course for importing?
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to edx-code+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/e47a54e1-e20a-48bc-8410-973cb496bbcd%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to edx-code+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/BC6A67F3-B273-43B3-BED4-C83D2898C0C0%40gmail.com.


Re: [edx-code] Open edX Video Management Survey

2019-06-15 Thread Peter Pinch
I’m finding myself frustrated by the form because I can choose only one option 
for each answer. Can you change those to checkboxes? Or should I just cram 
everything into “other”

Thanks,
Peter






I am mobile.
On Jun 14, 2019, at 9:35 AM, fshe...@edx.org wrote:

[Google Forms]
Having trouble viewing or submitting this form?

Fill out in Google 
Forms



Hello!

My name is Farhanah Sheets & I am part of the Engineering team at edX. I am 
curious as to how our Open Source Community manages videos within their Open 
edX instances. I am trying to get a better understanding of our current 
internal and external video systems to better view system requirements and 
workflows. All questions are optional and if you would be willing to speak more 
on video management within your instance please let me know.

Thank you for your participation!

Open edX Video Management 
Survey

Hello!

My name is Farhanah Sheets & I am part of the Engineering team at edX. I am 
curious as to how our Open Source Community manages videos within their Open 
edX instances. I am trying to get a better understanding of our current 
internal and external video systems to better view system requirements and 
workflows. All questions are optional and if you would be willing to speak more 
on video management within your instance please let me know.

Thank you for your participation!

How do you host videos within Open edX
 *edX Video Pipeline code (VEDA)
 *YouTube
 *A different hosting site
 *Other:
Provide more details on hosting

How do you include videos in your courses
 *Built in Video Component with a VideoId
 *Built in Video Component with an external URL
 *Custom XBlock
 *Other:
Provide more details on including video content

Would you be willing to answer questions regarding your video management 
processes?
 *Yes
 *No
 *Maybe
Any Additional Feedback

Name

Email

Organization

Role

Slack Handle



Never submit passwords through Google Forms.


Powered by 

[Google Forms]
This form was created inside of edX.
Report 
Abuse
 - Terms of Service - Additional 
Terms


Create your own Google Form

--
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
edx-code+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/c8ee09058b48b7dd%40google.com.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to edx-code+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/E182A105-A24E-4632-B673-23D243493B63%40mit.edu.


Re: [edx-code] When importing course with manage.py in Hawthorne, the "run" part of the course id is wrong

2019-02-11 Thread Peter Pinch
HI Rebecca. This was a change that we were struggling with at MIT for a long 
time. 

When you import a course in studio, the course run is already established. But 
when you import using the management command, it has to determine the course 
run from the course data (OLX). 

Unfortunately, the OLX format has varied slightly over edX releases. In 
particular, in birch, the course run was set in a few locations. But in 
subsequent releases, it was omitted from the OLX*. We (MIT Open Learning) 
submitted a PR to revert to the old export behavior, which will be part of 
Ironwood. 

In the meantime, it’s not too difficult to patch up your OLX export:

1. In the course.xml file at the root of your course data, set the value of the 
`url_name` on the root course node to the name of your run.
2. In the policies directory, change the name of the “course” directory to the 
name of your run. 
3. In the policy.json file, change the root key from “course/course” to 
“course/”

We had to do this enough times that we wrote a post-commit hook for git. If 
that’s helpful, I can see if we can share that. 

Good luck, and let us know if this helps. 

Peter Pinch
Associate Director of Engineering
MIT Open Learning
pdpi...@mit.edu
http://engineering.odl.mit.edu/

* - technically, this didn’t change in a particular named release. It changed 
with the upgrade in modulestore from mongomodulestore to splitmodulestore. At 
MIT, we had delayed the change of modulestore for several releases, so it 
wasn’t until ginkgo that we realized this was an issue. 

> On Feb 7, 2019, at 9:32 PM, Rebecca Buchheit Clayton  
> wrote:
> 
> Hi,
> 
> I'm trying to import a course using this command:
> sudo -u www-data /edx/bin/python.edxapp 
> /edx/app/edxapp/edx-platform/manage.py cms --settings=aws import 
> /edx/var/edxapp/data /tmp/course
> 
> /tmp/course contains the usual subdirectories (static, vertical, sequential, 
> etc.) and course.xml, which looks like this:
> 
> The /tmp/course directory was created by expanding a tarball, which was 
> created from the Tools > Export menu in Studio, from a Hawthorne version 
> installation (server is named edx-dev). The course id is:
> course-v1:MyCompany+AB301+Y2018_1
> 
> The original course was created in a pre-release before Birch. It has been 
> imported into Cypress, Ginkgo, and now Hawthorne through the Tools > Import 
> menu in Studio. I've never had any issues exporting/importing from Studio.
> 
> The import succeeds (this is also into a Hawthorne installation, server is 
> named edx-staging), but instead of importing with the correct course id:
> course-v1:MyCompany+AB301+Y2018_1
> it creates a new course on edx-staging with this course id:
> course-v1:MyCompany+AB301+course
> That is, the run should be "Y2018_1", but instead it is "course". 
> 
> I took a look at 
> /edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/modulestore/xml_importer.py,
>  but my python skills aren't good enough to figure out where it is getting 
> the run value from.
> 
> Any help would be greatly appreciated!
> 
> Thank you,
> Rebecca
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/6f743ca9-5f09-4696-b882-0b06786facc8%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/edx-code/6f743ca9-5f09-4696-b882-0b06786facc8%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/F3F9B0FF-302F-478D-9534-F45E78BC92D8%40gmail.com.


Re: [edx-code] Deprecation/Removal: External Auth Django App (DEPR-6)

2018-10-24 Thread Peter Pinch
The JIRA ticket isn’t open. I was hoping to get a better idea of the scope of 
the deprecation. 

Also, is a 2019-02-15 removal expected to be a change in Ironwood, or in 
Ironwood's successor?



Thanks,
Peter

Peter Pinch
Associate Director of Engineering
MIT Open Learning
pdpi...@mit.edu
http://engineering.odl.mit.edu/

> On Oct 24, 2018, at 12:29 PM, Nimisha Asthagiri  wrote:
> 
> Hi there,
> 
> We plan to deprecate and remove from edx-platform the external_auth Django 
> app 
> <https://github.com/edx/edx-platform/tree/master/openedx/core/djangoapps/external_auth>
>  in favor of the third_party_auth Django app 
> <https://github.com/edx/edx-platform/tree/master/common/djangoapps/third_party_auth>
>  (an extension of python-social-auth 
> <https://python-social-auth.readthedocs.io/en/latest/>).  We are targeting 
> removal by 2019-02-15.
> 
> Please read https://openedx.atlassian.net/browse/DEPR-6 
> <https://openedx.atlassian.net/browse/DEPR-6> for more information and to 
> post any questions/comments. The proposed deadline for comments before 
> acceptance is 2018-11-25.
> 
> Thanks,
> Nimisha
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/CACSOLjdsxLwLAfbcHbi1dNnwQ83iHaY4Q3u6A%3DqUdhCvcPCYTw%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/edx-code/CACSOLjdsxLwLAfbcHbi1dNnwQ83iHaY4Q3u6A%3DqUdhCvcPCYTw%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/6E2B9D7F-16EC-4AE8-A870-4086C48ED653%40gmail.com.


Re: [edx-code] cannot connect to "latex2edx" server

2018-09-21 Thread Peter Pinch
As it says in the docs 
<https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/problem_in_latex.html#problem-written-in-latex>,
 this is a prototype feature and not supported by edX. In particular, it relies 
on a web services run by a faculty-member at MIT. The service was down, but 
should be up again now. If isn’t working for you please let us know if a) you 
can reach https://studio-input-filter.mitx.mit.edu/latex2edx?raw=1 and b) what 
errors you are getting from the server. 

The server code is open source and is available from 
https://github.com/mitodl/latex2edx_xserver . If you rely on the server being 
available, you may want to try running it yourself. 

If you’re working with small snippets of Latex, you might find it easier to 
work with MathJax, which is supported by edX. See 
https://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/mathjax.html
 for details. 

Some course teams at MIT like to maintain their entire course (or chapters of 
it) in Latex. Most of them use the code at https://github.com/mitocw/latex2edx 
which lets you compile Latex into OLX offline for importing into edX. 

Sorry I can’t be of more help, 
Peter Pinch
MIT Open Learning

> On Sep 21, 2018, at 5:15 AM, Debashish Ghosh  
> wrote:
> 
> Sorry to repost on this question. Is anybody in this group using Latex? We 
> are still having issues with connecting to the latex2edx server. Should we 
> contact the developers directly. I can still include Latex using Advance 
> settings so I am thinking edx still supports Latex? If not should we use any 
> other Maths compiler to display the symbols correctly.
> Thanks
> Debashish
> 
> On Thu, Sep 13, 2018 at 7:30 PM Debashish Ghosh  <mailto:debashish.gh...@entuze.com>> wrote:
> Hi,
> We run openedx Eucalyptus and have been using Latex for math compliations for 
> the last couple of years. Suddenly the latex compiler has stopped working. We 
> are getting "cannot connect to latex2edx server" whenever we are adding a new 
> Problem and hitting "Save and Compile to edx XML" inside the Latex compiler. 
> Anybody facing this issue? I have enabled the "Enable Latex Compiler" to True 
> before creating the new Problem. Any help would be greatly appreciated
> Thanks
> Debashish
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/bd933d57-5acf-4b66-826b-92aa5e2ed5a4%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/edx-code/bd933d57-5acf-4b66-826b-92aa5e2ed5a4%40googlegroups.com?utm_medium=email&utm_source=footer>.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/CAN15aH4E%3DNgHsCtcnsGgVp5eOBJD-GYa24Oy%3DfUzqr3GzaXXuw%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/edx-code/CAN15aH4E%3DNgHsCtcnsGgVp5eOBJD-GYa24Oy%3DfUzqr3GzaXXuw%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/DBA7AA46-0035-4103-8551-5704AB0C338A%40gmail.com.


Re: [edx-code] limit or cap on the number of students enrollments

2018-05-08 Thread Peter Pinch
There's an advanced setting on courses called "Course Maximum Student 
Enrollment"

If I recall correctly, admin and staff are omitted from that count. I think 
it's limited to learners. 

Peter Pinch
MIT Open Learning

> On May 8, 2018, at 4:24 AM, mohamad salloum  wrote:
> 
> Is there a way to put a limit or cap on the number of students enrollments in 
> a course?
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/d28f5b87-ad24-4e0e-921c-1dc34345cfc8%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/1F203108-452A-4312-B1F2-F5C96325C23A%40gmail.com.


Re: [edx-code] Hand-written XML not appearing

2017-12-08 Thread Peter Pinch
Hi Colin. 

Error reporting on course imports is definitely lacking. If you're up for it, 
I'd recommending running a devstack locally and doing a test import. You can 
watch the logs while the course is imported and you might see some helpful 
hints. 

If you have an installation of open edX set up with the sysadmin feature turned 
on, you can see more logging by importing via git. This is equivalent to using 
the import management command, but the log output is stored in mongo and 
there's a "git logs" page in the sysadmin panel for viewing them. 

Even then, some errors don't show up in the logs and I've sometimes had to 
resort to a bisect and import strategy to identify the part of the course 
causing issues. 

- Peter




> On Dec 7, 2017, at 9:16 PM, Colin Fredericks  
> wrote:
> 
> If you write your course via directly handling XML instead of in Studio, I've 
> got a question that you might be able to help with.
> 
> Recently I wrote a script to create some extra course structure. (We have 
> thousands of problems and I'm making places for them to sit.) I copied the 
> resulting XML files into the course's folders in the appropriate places, 
> rezipped and uploaded, and it doesn't quite show up right.
> 
> All the "structural" items show up fine. The chapter file appears 
> appropriately as a section in Studio. I have subsections (sequentials) within 
> it, and units (verticals) within those. However, at the component level, 
> something fails. Neither Studio nor the live view of the course show the 
> problems that should be sitting in those units. Studio loads for a few 
> seconds and then shows an empty unit.
> 
> I've compared the XML output from my script to the XML generated and exported 
> by Studio, and they look equivalent to me. I know the problem files are there 
> and working properly, because I can get to them via XBlock URL. At this point 
> I'm wondering if Studio has some secret list of which problems it has ok'd 
> and which ones it hasn't. I'm stumped.
> 
> If anyone from edX is reading and wants to see this in action, the course in 
> question is QMBio:
> https://studio.edx.org/course/course-v1:HarvardX+QMB1+2T2017
> Check out the bottom section on the list, named "Adaptive Problems".
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/fc209309-006a-4675-9441-f4ea96704471%40googlegroups.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/C26DA522-A951-4B05-8460-6A42BBF1A507%40gmail.com.


Re: [edx-code] How can i add a button after a section only for submitting a submission to a local folder on edx?

2017-03-19 Thread Peter Pinch
I’d recommend you start by looking at the “Staff Assessment” option of open 
response assessments: 
http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/exercises_tools/open_response_assessments/OpenResponseAssessments.html#staff-assessment-step

If that doesn’t meet your needs, you may want to try the SGA (Staff-Graded 
Assignments) XBlock. It comes packaged with open edX but you will need to 
enable it. There’s more documentation at 
https://github.com/mitodl/edx-sga/blob/master/README.rst

Peter Pinch
MIT Office of Digital Learning

> On Mar 18, 2017, at 12:02 PM, Yong Han  wrote:
> 
> Hi,
>   I want to add a button after a section, it can help students submit their 
> submissions to a folder, then I can down the submissions for teacher to 
> assess. Can anyone help me, please?
>   Thank you very much.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/56fcb55e-1ef2-4d68-bb7c-a99ebbffe972%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/edx-code/56fcb55e-1ef2-4d68-bb7c-a99ebbffe972%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/95141460-B08F-49B0-AB5B-E8FF6415711C%40gmail.com.


Re: [edx-code] OpenEDX custom courses

2017-02-27 Thread Peter Pinch
CCX is a lightweight way to re-use course content. Authorized "coaches" can run 
a "custom course" that allows them to change the enrollment and schedule, but 
not the content of the original course.

It doesn't have any impact (that I'm aware of) on the course catalog search. 
Neither does it allow changes to the about or info pages (although that's been 
in the backlog).

- Peter

On Feb 26, 2017, at 2:22 AM, Mahyar Damavand 
mailto:mahyar.d@gmail.com>> wrote:

Hi masters,
Can you help me understand what is openedx custom courses 
(CCX)?
and does it enhance me to add a field to every course and have it in search 
results and about_info page of them?



--
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/CABCzmJ%2B5EbuTPjy8dOniamF8YGDdYBBzwtqmxTK44GAuDy29Fg%40mail.gmail.com.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/D3F9EBC8-C461-416D-BE29-6AF4AE32C59C%40mit.edu.


Re: [edx-code] Multi-lingual capabilities for courses

2017-02-16 Thread Peter Pinch
Please keep in mind the OLX impact of these options. We still want to be able 
to export and import multilingual courses (and maybe be able to facilitate the 
translation process outside of studio)

> On Feb 16, 2017, at 9:57 AM, Andy Armstrong  wrote:
> 
> Hi Ignacio,
> 
> Thanks for this excellent post. As you say, Open edX doesn't provide great 
> support in this area as yet, and it is a very important area. We are creating 
> a new team here at edX to work on i18n issues (lead by Bill DeRusha) so now 
> is a great time to agree as a community on how to move forward.
> 
> I think your suggestion of starting with XBlocks is a good one, and would be 
> a simple place to start. However, as you say, the blocks need to be moved out 
> of the platform which complicates matters. It also seems problematic that 
> every single block needs to become locale aware. I have a couple of ways to 
> approach this that are more general in nature, but which are obviously bigger 
> in scope.
> 
> My first idea to consider is to provide a new container block that 
> conditionally renders different children based upon the user's locale. We 
> already have a container block that hasn't been made available on edx.org 
> , but which allows child blocks to be shown conditionally 
> based upon certain criteria (mostly successful completion of problems at this 
> point). We could either extend that block, or provide a new i18n-specific 
> block that is better suited to that purpose (IMO the latter is the better 
> option).
> 
> My second idea is to use cohorted courseware which already provides a great 
> way to handle conditional content. The challenge with this is that you'd have 
> to put users into cohorts based upon their locale, which seems complicated. 
> However, the UI for cohorted content is much cleaner than the conditional 
> block, in that you can click on the "eye" icon on any block and change who it 
> is displayed to. Maybe this could be extended to work both for cohorts and 
> for locales. You could then imagine that the block could be shown with a flag 
> indicating that it is only shown for a particular locale. A variant of this 
> would be to have the units themselves be conditional, so you would add a copy 
> of each unit per supported language. I don't know how well this would work 
> because it would be hard to see that the various copies were correctly 
> synchronized.
> 
> Thinking this through some more, in both cases it would be very hard to 
> manage a large course. Essentially every block would need to have multiple 
> variants, and at that point maybe you are going through as much work as 
> building the course multiple times. Would there ever be any shared content 
> across these courses, or would every block have to be rebuilt for each 
> language? Maybe the key point is that the core settings of the block is the 
> same, and it is just any text settings that have to change. If there are more 
> of the former than the latter, then your suggestion would scale better.
> 
> I hope this is helpful. I think this is a very exciting area to be improving 
> as we try to make Open edX available to the whole world.
> 
> Thanks,
> 
>  - Andy
> 
> On Thu, Feb 16, 2017 at 8:57 AM, Ignacio Lozano  > wrote:
> Motivation
> Open edX has a large an heterogenuous student community. It is normal to 
> search a course in their language, sometimes even users preffer to take the 
> adventure of doing courses in foreign languages - then it is useful to see 
> the two versions of the course: in their language and in the foreign language.
> 
> The student option of swapping the course from one language to another could 
> be known as "Multi-lingual courses"
> 
> Problem
> Open edX hasn't a built-in multi-lingual courses capability. Therefore, you 
> have some workaround alternatives:
> Design a course per language (if you have 2 languages, you will design 2 
> courses)
> Confusing for the student
> Difficult to manage
> ...
> Add HTML blocks with JavaScript code in order to hide one content based on a 
> language selector)
> Difficult to manage in the CMS for designers
> Only for HTML components
> Static language and designer needs to have HTML + JS skills
> Courses use several components, in a MOOC the basics are: HTML, Videos and P2P
> 
> Approaches
> Because XBlocks are pieces that can be included in Open edX when you want. I 
> think it could be interesting to design some multi-lingual XBlock version 
> based on the native XBlocks.
> 
> HTML and Video are inside the edx-platform and i think we need first to the 
> XBlocks from the core. Benefits: modular design, easy to extend, community, 
> etc.
> 
> Some notes in the Slack for the HTMLModule:
>   CMS: change the "data" to a dictionary, add a select on the setting form 
> and deal with a dictionary (language => content) instead of straight content
>   LMS: Adding the flag feature and getting the content of that dictionary 
> 

[edx-code] Re: Timeline for OEP-7 (Python 3 migration)

2017-01-20 Thread Peter Pinch
That's a good point Colin. I added a comment on the PR:

https://github.com/edx/open-edx-proposals/pull/21#issuecomment-274111039

On Thursday, January 19, 2017 at 11:34:37 AM UTC-5, Colin Fredericks wrote:
>
> Awesome!
>
> Question from those of us who use a lot of custom assessments: how will 
> this impact the Python used for write-your-own-grader problems and custom 
> javascript problems? I know most of the syntax will match just fine, but I 
> also know that things like division, string checking, and rounding have 
> some differences in Python 3 that could change grading in specific cases.
>
> If we should start writing Python 3 versions of our assessments, it's 
> better for us to know as early as possible.
>
>
> On Wednesday, January 18, 2017 at 2:36:18 PM UTC-5, J. Cliff Dyer wrote:
>>
>> Hello all, we're going to leave the comment period open for OEP-7: 
>> Migrating to Python 3 until Friday afternoon.  Barring any issues, we will 
>> move to resolve the OEP on Monday morning.  If you would like to offer 
>> input on proposal, please do so at 
>> https://github.com/edx/open-edx-proposals/pull/21
>>
>> Cheers,
>> Cliff
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/1702252f-ab26-4b1c-b904-36ec0d6d1d71%40googlegroups.com.


Re: [edx-code] How do I import class content onto a local server?

2016-09-20 Thread Peter Pinch
You just need to create a new course in studio and then import your .tar.gz 
file through the tools menu. 

See 
http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/releasing_course/export_import_course.html#import-a-course
 
<http://edx.readthedocs.io/projects/edx-partner-course-staff/en/latest/releasing_course/export_import_course.html#import-a-course>

There's also a django management command for importing courses. And if you 
enable the sysadmin panel you can import courses from a git repository. Those 
options aren't well documented but we use them regularly at MIT. 

- Peter



Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu | T 617-253-6256 | C 617-652-0183






> On Sep 20, 2016, at 12:25 AM, Alex Borgerding  wrote:
> 
> Hi All,
> 
> I’m a little frustrated with figuring how to import a class content on my 
> local server (beyond just running the demo class)
> 
> Here are the steps I did. I used studio online, I exported the class, now I 
> don’t know how to get this into my local system
> 
> DETAILS:
> 
> 1. I have created content in Studio online at:
> 
>  
> 
> 2. I exported *.tar doing this and inside it has these contents:
> 
>  a.
> 
> 
>  b. These are the contents in it:
> 
> 
> 
> 
> 3. The goal is to get the local server. The files of the server directories 
> look like this.  Do we either put the content in directly or is there an 
> import feature?
> 
> 
> 
> How do I bring in new content onto the page?
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/fedc2492-bca1-4038-90e8-5c1bc7c57580%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/edx-code/fedc2492-bca1-4038-90e8-5c1bc7c57580%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/0C8839A9-4C99-4BB1-9FEB-D81C42A79582%40gmail.com.


[edx-code] Re: Eucalyptus 1 RC2 Prerelease

2016-08-25 Thread Peter Pinch
Ned, what channel(s) would you like us to use for questions and feedback 
(during this pre-release phase)?

On Monday, August 22, 2016 at 3:30:47 PM UTC-4, Ned Batchelder wrote:
>
> Hello Open edXers,
>
> The Eucalyptus release of the Open edX platform is almost ready!  The 
> second release candidate is now available: *open-release/eucalyptus.1rc2*.
>
> Installations are available as fullstack, devstack, and native 
> installations.  For fullstack and devstack, a new install script 
> automatically logs the entire process, to help with trouble-shooting.
>
>- An overview of the installation options is here: 
>
> https://openedx.atlassian.net/wiki/display/OpenOPS/Open+edX+Installation+Options.
>  
> 
>- Upgrading from Dogwood is also supported: 
>
> http://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/latest/platform_releases/eucalyptus.html#upgrading-from-dogwood-to-eucalyptus
>- Details of what's new are in the release notes: 
>
> http://edx.readthedocs.io/projects/open-edx-release-notes/en/latest/eucalyptus.html
>
> I expect to have a final Eucalyptus release later this week.  Your testing 
> of this release candidate will help avoid more fixes in the future. I 
> really appreciate everyone trying it out.
>
> Thanks,
>
> --Ned.
>

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/4cc33038-4892-412a-b1a6-9e0d2fe58d3d%40googlegroups.com.


Re: [edx-code] Linking multiple courses' content to 'master' course through CMS

2016-08-23 Thread Peter Pinch
Hi Ethan. You may want to take a look at the Custom Courses on edX feature 
(CCX).

http://edx.readthedocs.io/projects/open-edx-ca/en/named-release-dogwood.rc/set_up_course/custom_courses.html

> You can create a custom course in the edX platform (CCX) to reuse course 
> content. By using a CCX, you can run some or all of an existing course for a 
> group of students on a new schedule.




> On Aug 23, 2016, at 12:28 AM, Ethan Barden  wrote:
> 
> Apologies if this is the incorrect place for this question!
> 
> Currently we have multiple high schools using our installation of Open edX to 
> access content that we have developed.  As it stands, we've created separate 
> courses for each school, filled with the same content.  We've done this to 
> segregate student data between schools, so that educators at one school 
> cannot see the email address or marks of students at another school.
> 
> As it stands, when we want to modify the content we provide to schools, we 
> need to separately make identical changes to many different courses.  Is 
> there a better way to do this?  In essence, I'd like a way to link separate 
> cohorts back to the same 'master' content, where staff and students from 
> different cohorts cannot access each other's information.  The existing 
> 'Cohorts' functionality is unsuitable, for example, because I cannot find a 
> way to restrict staff to access information about particular cohorts.
> 
> Thanks very much for your help.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/84c6495a-ee13-4b82-96b9-7b05d0dcb018%40googlegroups.com.



Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu | T 617-253-6256 | C 617-652-0183






-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/75B218C9-7E9D-40D3-9686-88156AAA7EE6%40gmail.com.


Re: [edx-code] help to up to date CAS integration

2016-08-05 Thread Peter Pinch
Hi Mahyar. I didn't realize you were using django_cas_ng. If it's working for 
you, then there's probably not much point for you testing our fork of 
django-cas. 

We have not been using django_cas_ng because it doesn't support django 1.4 (!) 
which the prior version of edX used (Cypress). Perhaps we should have switched 
to it when we upgraded to dogwood, instead of forking django-cas. 

What bugs have you run into with CAS and dogwood? There is an issue with 
profiles that we fixed with commit 9220c4d. You might want to cherry pick that. 

- Peter





Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu | T 617-253-6256 | C 617-652-0183






> On Aug 5, 2016, at 5:35 AM, Mahyar Damavand  wrote:
> 
> Hi Peter,
> It's my pleasure to help you for this. 
> I should tell you that this is my first contribute on such a greate project 
> and I don't know how a pull request helps for developing but I'll google it 
> tomorrow.
> By now I have 2 questions:
> 1. Why you don't use django_cas_ng which is a live replacement for dead 
> django_cas project and supports python v3 and soon django 1.10.
> I did so with some small changes and I succeed to activate cas login
> 
> 2. What should I do exactly. Should I play an end-user role. If so first I 
> need some documents for Installation, configuration, testing and etc.
> 
> and another small question,
> Is your own django-cas at v2.1.1 and still not included in the main open Edx? 
> Is this a continuation for the major django-cas?
> 
> Thanks for your attention.
> 
> Regards,
> Mahyar
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/CABCzmJLmJ9qEU-9gKTYTMaU2OsH%2B9etuLnvR-7LVYC2ADpkM5w%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/edx-code/CABCzmJLmJ9qEU-9gKTYTMaU2OsH%2B9etuLnvR-7LVYC2ADpkM5w%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/89887886-BEE9-4793-AE2E-A4EBB63D43C5%40gmail.com.


Re: [edx-code] help to up to date CAS integration

2016-08-04 Thread Peter Pinch
Hi Mahyar. We're in the process of deploying Dogwood and CAS on campus at MIT 
right now and we've updated the django-cas library that open edX depends on.

Our latest version is at 
https://github.com/mitodl/django-cas/releases/tag/v2.1.1 
<https://github.com/mitodl/django-cas/releases/tag/v2.1.1> 

And we've submitted a pull request to edX to update edx-platform accordingly: 
https://github.com/edx/edx-platform/pull/12998 
<https://github.com/edx/edx-platform/pull/12998>

It would actually be super helpful if you could try this out and give some 
feedback on the pull request. 

- Peter



Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu | T 617-253-6256 | C 617-652-0183






> On Aug 4, 2016, at 9:36 AM, Mahyar Damavand  wrote:
> 
> Hi,
> 
> after about 1 week hard working on CAS login activation for my open Edx 
> instance
> now I learn many things about python and django ( Basically I'm a php 
> programmer )
> Also I understood that this feature has a lot of bugs and does not work 
> properly ( at least on dogwood ) because of no maintenance over the time
> now I want to help to make this useful feature usable again
> 
> Regards,
> Mahyar
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/b3fb9256-60f5-434e-a407-063d21910eca%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/edx-code/b3fb9256-60f5-434e-a407-063d21910eca%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/34E429C3-B767-4B1B-BA46-1D8ADA3AC8BF%40gmail.com.


Re: [edx-code] Improving our support for the Open edX community

2016-08-03 Thread Peter Pinch
Thanks for asking Shauna. 

I'd add a couple of requirements:

- not only should it be easy to search, it should also be indexed by Google. 
Any new, authoritative information needs to crowd out old, non-official links 
in Google search results. 
- all threads (and ideally, all comments) should be addressable by unique URL. 
This makes it a lot easier to point people to specific answers and conversations

- Peter







Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu | T 617-253-6256 | C 617-652-0183






> On Aug 2, 2016, at 3:43 PM, Shauna Gordon-McKeon  
> wrote:
> 
> Hello Open edX community!
> 
> The open source team here at edX has been talking a lot recently about how we 
> can do a better job of making sure community members have access to the 
> resources you need to troubleshoot problems and get your questions answered.  
> Right now the most common avenues for getting support are our mailing lists 
> and Slack channels, but these tools don’t allow us to easily track frequently 
> asked questions or see how often questions are going unanswered.
> 
> We want to find a better tool so we can better help the community.  We’ve 
> brainstormed a list of requirements here: 
> https://docs.google.com/document/d/1J0P2hNXH7hdyxbqi8OCndNrUoxrOXDAbvIGalG6v7qU/
>  
> <https://docs.google.com/document/d/1J0P2hNXH7hdyxbqi8OCndNrUoxrOXDAbvIGalG6v7qU/>
> 
> Here’s where you come in: we can only see one side of the support experience. 
>  We don’t know what, from your perspective, the biggest problems are and the 
> most appealing solutions might be.  So please, feel free to suggest 
> additional requirements, and to let us know which of our existing 
> requirements are most important to you.  You can do so by adding to this 
> thread in the edx-code mailing list.
> 
> If you’ve got tool suggestions as well, we’d be happy to hear them!  Once 
> we’ve got our requirements list set, we’re going to evaluate the most 
> promising options.
> 
> Looking forward to seeing your feedback!
> 
> Best,
> Shauna
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/CAHZjGXuoR29%3DW6NnWsCBhTT33P8Yd6bUMtC6%3DvX3275R4tcExw%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/edx-code/CAHZjGXuoR29%3DW6NnWsCBhTT33P8Yd6bUMtC6%3DvX3275R4tcExw%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/CDC90B80-AFFD-45A3-A444-9B06451BA153%40gmail.com.


Re: [edx-code] Re: Moodle to edX

2016-07-28 Thread Peter Pinch
The documentation for moodle2edx is at 
https://github.com/mitocw/moodle2edx/blob/master/README.txt#L35

The code is unsupported and hasn’t been updated in some time. 

- Peter Pinch

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/7264FE26-B1CC-4D39-9729-5D5675EE7EE2%40gmail.com.


Re: [edx-code] Unable to import edX.org course into Dogwood.3

2016-06-30 Thread Peter Pinch
It’s pretty easy to edit the exported course. You just need to untar/unzip it, 
edit the policy.json file, and then tar/gzip it again. 

In the policy.json you just need to change the order of the tabs so that 
courseware is first. 

If you need more details, let me know (you can also try to find me on Slack).

Can I confirm that you encountered this problem when you exported a course from 
edx.org and then imported it into a dogwood devstack? 

Thanks,
Peter

> On Jun 30, 2016, at 6:30 AM, Aparna P  wrote:
> 
> Hi,
> 
> Here is the error seen in /edx/var/log/cms/edx.log
> -
> Traceback (most recent call last):
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/modulestore/xml.py", 
> line 402, in try_load_course
> course_descriptor = self.load_course(course_dir, course_ids, 
> errorlog.tracker, target_course_id)
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/modulestore/xml.py", 
> line 576, in load_course
> course_descriptor = system.process_xml(etree.tostring(course_data, 
> encoding='unicode'))
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/modulestore/xml.py", 
> line 196, in process_xml
> id_manager,
>   File "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/x_module.py", 
> line 1508, in xblock_from_node
> block = block_class.parse_xml(node, self, keys, id_generator)
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/xml_module.py", line 
> 516, in parse_xml
> return super(XmlParserMixin, cls).parse_xml(node, runtime, keys, 
> id_generator)  # pylint: disable=bad-super-call
>   File "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/x_module.py", 
> line 1027, in parse_xml
> block = cls.from_xml(xml, runtime, id_generator)
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/course_module.py", 
> line 1019, in from_xml
> instance = super(CourseDescriptor, cls).from_xml(xml_data, system, 
> id_generator)
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/xml_module.py", line 
> 505, in from_xml
> id_generator,
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/xml_module.py", line 
> 389, in parse_xml
> field_data,
>   File "/edx/app/edxapp/venvs/edxapp/src/xblock/xblock/runtime.py", line 635, 
> in construct_xblock_from_class
> *args, **kwargs
>   File 
> "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/course_module.py", 
> line 968, in __init__
> if not getattr(self, "tabs", []):
>   File "/edx/app/edxapp/venvs/edxapp/src/xblock/xblock/fields.py", line 474, 
> in __get__
> value = self.from_json(field_data.get(xblock, self.name))
>   File "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/tabs.py", 
> line 459, in from_json
> self.validate_tabs(values)
>   File "/edx/app/edxapp/edx-platform/common/lib/xmodule/xmodule/tabs.py", 
> line 412, in validate_tabs
> "Expected first tab to have type 'courseware'.  tabs: '{0}'".format(tabs))
> ---
> It does look the tab of type "courseware" is expected before "course_info". 
> However, on edx.org <http://edx.org/>(and edge.edx.org 
> <http://edge.edx.org/>), the default order is "course_info" followed by 
> "courseware" and there is no way to reorder these two tabs(other tabs such as 
> Wiki and user-added pages can be reordered). So there seems to be no way to 
> resolve this except to make a code change. On Dogwood.3 as well as Cypress, 
> the order is "courseware" followed by "course_info".
> 
> Is there a way to avoid the code fix?
> Thanks!
> Aparna
> 
> 
> On Thursday, June 30, 2016 at 1:46:41 AM UTC+5:30, Peter Pinch wrote:
> I suspect this is the same issue as described in 
> https://openedx.atlassian.net/browse/ECOM-4409 
> <https://openedx.atlassian.net/browse/ECOM-4409>
> 
> If it is, you would see a message about an `InvalidTabsException` in your 
> servers logs. 
> 
> It would be super helpful if you could add some steps to reproduce in on the 
> JIRA ticket, because the original case that I reported doesn't exhibit error 
> any more. 
> 
> - Peter
> 
> 
> 
>> On Jun 29, 2016, at 1:54 PM, cdodg...@ <>gmail.com <http://gmail.com/> wrote:
>> 
>> Hi Aparna,
>> 
>> Could you look in your console/logs inside your local development and see if 
>> you can find the full stack trace around this error? That would be helpful 
>> in

Re: [edx-code] Unable to import edX.org course into Dogwood.3

2016-06-29 Thread Peter Pinch
I suspect this is the same issue as described in 
https://openedx.atlassian.net/browse/ECOM-4409 


If it is, you would see a message about an `InvalidTabsException` in your 
servers logs. 

It would be super helpful if you could add some steps to reproduce in on the 
JIRA ticket, because the original case that I reported doesn't exhibit error 
any more. 

- Peter



> On Jun 29, 2016, at 1:54 PM, cdodge2...@gmail.com wrote:
> 
> Hi Aparna,
> 
> Could you look in your console/logs inside your local development and see if 
> you can find the full stack trace around this error? That would be helpful in 
> debuging this for you.
> 
> - Chris
> 
> On Wednesday, June 29, 2016 at 6:42:16 AM UTC-4, Aparna P wrote:
> Hi,
> On importing my course from edx.org  onto a local 
> development Dogwood.3 server, at the "Updating Course" stage, I am getting 
> the following error:
> 
> Updating Course
> 
> There was an error while importing the new course to our database. 'NoneType' 
> object has no attribute 'data_dir'
> 
> 
> Has anyone encountered this?
> Thanks,
> Aparna
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/8fa119dd-6fe1-4c00-9cd6-d48c5ccd594b%40googlegroups.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/D5400C8A-5B6C-47D2-8C18-F81DD325FFBE%40gmail.com.


Re: [edx-code] OEP Suggestion: Display XBlocks as Course Tab

2016-06-28 Thread Peter Pinch
How would this affect course import and export?

I believe unrecognized blocks are ignored on import, but that may be harder to 
do with tabs, since they are specified in policy.json.

I'd also want to make sure that there is some meaningful logging and error 
messaging to the user when a course is imported and the proper XBlockTab hasn't 
been installed. 

> On Jun 28, 2016, at 9:06 AM, eug...@opencraft.com wrote:
> 
> Hello world!
> 
> Background: OEP is a new (suggested) format for proposing changes to Open edX 
> platform. More details: 
> https://github.com/edx/open-edx-proposals/blob/master/oeps/oep-0001.rst
> 
> Idea: Allow XBlocks to be displayed in a course tab (like Progress, 
> Discussion, etc.)
> 
> Motivation: 
> In order to completely pull out discussions from edx-platform. discussion 
> XModule is (almost) converted to an XBlock 
> . The next step would be to 
> replace course discussion tab with discussion XBlock-based solution.
> This might be useful for building instructor tools (example of a tool that 
> could benefit from this 
> ).
>  This is related to other thread on mailing list 
>  - kind of 
> alternative implementation.
> Tentative implementation details: 
> 
> tl;dr: XBlockTab (working name) will be similar to existing StaticTab (powers 
> "Custom Page" feature) and use nested XBlocks concept to allow using any 
> XBlock (component?) in a Tab.
> 
> Overall, it would work like that:
> "Pages" page in Studio will have "Add XBlock Page" button added; this button 
> will cause XBlockTab to be added to a course
> In studio XBlockTab will expose UI for adding XBlocks and (most likely) other 
> components (problems, video, etc.), similar to one found in course Outline 
> editor (Unit page). At a glance it looks like it could be exact same UI, but 
> it is not 100% clear yet.
> Components added to an XBlockTab will be persisted to the modulestore using 
> the same mechanism to allow nested XBlocks.
> In LMS, XBlockTab will render its children (nested) components sequentially - 
> much like "Unit" (aka vertical module).
> 
> I'm about writing an OEP this week, so feedback and ideas are very welcome.
> 
> Regards,
> Eugeny
> @Opencraft 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/ad852782-b1e2-46ba-85bc-8d93db72048a%40googlegroups.com
>  
> .

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/CFAAC85C-CE8E-4A56-819C-F1610A0C730A%40gmail.com.


Re: [edx-code] Re: Search engine for course content

2016-06-23 Thread Peter Pinch
Unfortunately, there's no documented process for upgrading it.

If you don't need the student data to be migrated, I would recommend exporting 
the courses and importing them into a new (dogwood) instance of edX. The export 
OLX has been relatively stable and any compatibility issues can be addressed by 
editing the XML and JSON.

- Peter


On Jun 23, 2016, at 9:17 AM, apollinaire samiey 
mailto:apoosam...@gmail.com>> wrote:

I didn't know that we could update this VM. How can i update it??


2016-06-23 13:11 GMT+00:00 Peter Pinch 
mailto:pdpi...@gmail.com>>:
Apollinaire, that VM is quite old -- it predates edX's first named release.

The current search feature won't work with it. Have you considered upgrading?



Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu<mailto:pdpi...@mit.edu> | T 617-253-6256 | C 617-652-0183






On Jun 23, 2016, at 9:07 AM, apollinaire samiey 
mailto:apoosam...@gmail.com>> wrote:

i already tried it using this documentation but in my cms common.py file i 
don't have the settings as "ENABLE_COURSEWARE_INDEX" or "ENABLE_LIBRARY_INDEX" 
and i don't have "SEARCH_ENGINE" too. The same with the lms common.py file, i 
don't have settings for edx-search configuration.
I'm using beta-release of open edx
this is the box vm i used to install my open edx 
mitxvm-edx-platform-02sep13a.box<http://mitxvm-edx-platform-02sep13a.box/>
and the link of the official page is http://people.csail.mit.edu/ichuang/edx/


2016-06-23 10:36 GMT+00:00 Mahyar Damavand 
mailto:mahyar.d@gmail.com>>:

Try this documentation:
http://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/latest/configuration/edx_search.html

By default edx search will be installed automatically when you install the Open 
edX Platform. And you should just enable course indexing...

On Thu, Jun 23, 2016, 6:48 AM apollinaire samiey 
mailto:apoosam...@gmail.com>> wrote:
i need help to enable edx-search on mitxvm (beta-release of open edx)

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/24BC9BFC-653A-4D4A-9B18-0AEFB9B17D45%40mit.edu.


Re: [edx-code] Re: Search engine for course content

2016-06-23 Thread Peter Pinch
Apollinaire, that VM is quite old -- it predates edX's first named release. 

The current search feature won't work with it. Have you considered upgrading?



Peter Pinch |  Associate Director of Engineering, Office of Digital Learning
Massachusetts Institute of Technology
One Main Street  |  Cambridge MA 02142
E pdpi...@mit.edu | T 617-253-6256 | C 617-652-0183






> On Jun 23, 2016, at 9:07 AM, apollinaire samiey  wrote:
> 
> i already tried it using this documentation but in my cms common.py file i 
> don't have the settings as "ENABLE_COURSEWARE_INDEX" or 
> "ENABLE_LIBRARY_INDEX" and i don't have "SEARCH_ENGINE" too. The same with 
> the lms common.py file, i don't have settings for edx-search configuration.
> I'm using beta-release of open edx 
> this is the box vm i used to install my open edx 
> mitxvm-edx-platform-02sep13a.box <http://mitxvm-edx-platform-02sep13a.box/>
> and the link of the official page is http://people.csail.mit.edu/ichuang/edx/ 
> <http://people.csail.mit.edu/ichuang/edx/>
> 
> 
> 2016-06-23 10:36 GMT+00:00 Mahyar Damavand  <mailto:mahyar.d@gmail.com>>:
> Try this documentation:
> http://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/latest/configuration/edx_search.html
>  
> <http://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/latest/configuration/edx_search.html>
> By default edx search will be installed automatically when you install the 
> Open edX Platform. And you should just enable course indexing...
> 
> 
> On Thu, Jun 23, 2016, 6:48 AM apollinaire samiey  <mailto:apoosam...@gmail.com>> wrote:
> i need help to enable edx-search on mitxvm (beta-release of open edx)
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/3c224a7a-7ce4-4211-8373-04a7669b8fb8%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/edx-code/3c224a7a-7ce4-4211-8373-04a7669b8fb8%40googlegroups.com?utm_medium=email&utm_source=footer>.
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/CABCzmJKLa6_KyWXBDA-ktoz25aXr2On%2BprwmSO-A4NA-%3DzSyJw%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/edx-code/CABCzmJKLa6_KyWXBDA-ktoz25aXr2On%2BprwmSO-A4NA-%3DzSyJw%40mail.gmail.com?utm_medium=email&utm_source=footer>.
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "General Open edX discussion" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/edx-code/CAA6wd2%3D07VFS6ggnL_AwUpqJ9rCexZKgxOcr7esrD3tg8Q5_CQ%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/edx-code/CAA6wd2%3D07VFS6ggnL_AwUpqJ9rCexZKgxOcr7esrD3tg8Q5_CQ%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
You received this message because you are subscribed to the Google Groups 
"General Open edX discussion" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/edx-code/CA9BBDF9-33DB-40AE-9A6C-1CA4EE3A87A0%40gmail.com.