[issue14114] 2.7.3rc1 chm gives JS error

2012-03-18 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset b585c33077d2 by Ezio Melotti in branch '3.2': #14114: don't include copybutton.js in the htmlhelp output. http://hg.python.org/cpython/rev/b585c33077d2 -- ___ Python

[issue14114] 2.7.3rc1 chm gives JS error

2012-03-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 11a11e5cac0f by Ezio Melotti in branch '2.7': #14114: don't include copybutton.js in the htmlhelp output. http://hg.python.org/cpython/rev/11a11e5cac0f New changeset 36ec90b6b5e5 by Ezio Melotti in branch '2.7':

[issue14114] 2.7.3rc1 chm gives JS error

2012-03-04 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: It worked fine in the 3.3a1 chm, so I consider it indeed fixed. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14114

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-25 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: For the record: this issue blocks 3.2 as well. -- nosy: +benjamin.peterson, georg.brandl versions: +Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-25 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: 18bbfed9aafa is the changeset that introduced the copy button. Maybe the part in the extrahead (in Doc/tools/sphinxext/layout.html, see also first chunk of the diff) block shouldn't be included in chm? --

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-25 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: JQuery and the other scripts (like sidebar.js) are part of Sphinx, whereas the copy button is something that was added to our instances only, by changing the template. -- ___ Python tracker

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-25 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 64b9ff3c91bb by Ezio Melotti in branch '2.7': #14114: don't include copybutton.js in the htmlhelp output. http://hg.python.org/cpython/rev/64b9ff3c91bb New changeset 7f651187b25c by Ezio Melotti in branch '3.2':

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-25 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Should be fixed now, let me know if it works. (Thanks Georg for the help.) -- stage: - committed/rejected type: - behavior ___ Python tracker rep...@bugs.python.org

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-24 Thread Martin v . Löwis
New submission from Martin v. Löwis mar...@v.loewis.de: The 2.7.3rc1 chm give the following error when opened Line: 1 Char: 1 The Value of the property $ is null or undefined, not a function (translated from German) Code: 0 URL:

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-24 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- assignee: - ezio.melotti nosy: +ezio.melotti priority: normal - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14114 ___

[issue14114] 2.7.3rc1 chm gives JS error

2012-02-24 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: $ refers to JQuery, and should be defined in http://docs.python.org/_static/jquery.js. Maybe you have to import/include that file before http://docs.python.org/_static/copybutton.js? There are also other js scripts there that use JQuery so