##// END OF EJS Templates
Backport PR #8126: TEST: Add test for handling of last_modified....
Backport PR #8126: TEST: Add test for handling of last_modified. Saving should increment last_modified. Renaming should not. Noticed because incrementing last_modified on rename results in a scary error message from the frontend.

File last commit:

r20554:5f9d376a
r20882:88c24d7b
Show More
namespace.js
10 lines | 265 B | application/javascript | JavascriptLexer
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
Jonathan Frederic
Fixed global IPython namespace.
r17191 var IPython = IPython || {};
Jonathan Frederic
Make page.html require.js friendly.
r17188 define([], function(){
Matthias Bussonnier
Some cleanup unused code and missig use-strict
r18991 "use strict";
Thomas Kluyver
back to development
r20554 IPython.version = "3.1.0-dev";
Min RK
ensure IPython._target is defined
r20326 IPython._target = '_blank';
Jonathan Frederic
Make page.html require.js friendly.
r17188 return IPython;
});