##// END OF EJS Templates
Merge pull request #2389 from takluyver/catch-histdb-errors...
Merge pull request #2389 from takluyver/catch-histdb-errors Catch sqlite DatabaseErrors in more places when reading the history database It seems sqlite can encounter corruption and throw an error when reading the database, although it has connected successfully. This borrows the move-and-recreate machinery we already had on connecting to the database. If such an error occurs, the corrupted file is moved and the user get warned of the name of the corrupted file.

File last commit:

r8053:58574fbf
r8503:7904325b merge
Show More
codemirror.css
169 lines | 4.6 KiB | text/css | CssLexer
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 .CodeMirror {
line-height: 1em;
font-family: monospace;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053
/* Necessary so the scrollbar can be absolutely positioned within the wrapper on Lion. */
position: relative;
/* This prevents unwanted scrollbars from showing up on the body and wrapper in IE. */
overflow: hidden;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
.CodeMirror-scroll {
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 overflow-x: auto;
overflow-y: hidden;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 height: 300px;
/* This is needed to prevent an IE[67] bug where the scrolled content
is visible outside of the scrolling box. */
position: relative;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 outline: none;
}
/* Vertical scrollbar */
.CodeMirror-scrollbar {
float: right;
overflow-x: hidden;
overflow-y: scroll;
/* This corrects for the 1px gap introduced to the left of the scrollbar
by the rule for .CodeMirror-scrollbar-inner. */
margin-left: -1px;
}
.CodeMirror-scrollbar-inner {
/* This needs to have a nonzero width in order for the scrollbar to appear
in Firefox and IE9. */
width: 1px;
}
.CodeMirror-scrollbar.cm-sb-overlap {
/* Ensure that the scrollbar appears in Lion, and that it overlaps the content
rather than sitting to the right of it. */
position: absolute;
z-index: 1;
float: none;
right: 0;
min-width: 12px;
}
.CodeMirror-scrollbar.cm-sb-nonoverlap {
min-width: 12px;
}
.CodeMirror-scrollbar.cm-sb-ie7 {
min-width: 18px;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
.CodeMirror-gutter {
position: absolute; left: 0; top: 0;
Fernando Perez
Update CodeMirror code to v2.15
r4933 z-index: 10;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 background-color: #f7f7f7;
border-right: 1px solid #eee;
min-width: 2em;
height: 100%;
}
.CodeMirror-gutter-text {
color: #aaa;
text-align: right;
padding: .4em .2em .4em .4em;
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 white-space: pre !important;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 cursor: default;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
.CodeMirror-lines {
padding: .4em;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 white-space: pre;
cursor: text;
}
.CodeMirror-lines * {
/* Necessary for throw-scrolling to decelerate properly on Safari. */
pointer-events: none;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
.CodeMirror pre {
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
border-width: 0; margin: 0; padding: 0; background: transparent;
font-family: inherit;
font-size: inherit;
padding: 0; margin: 0;
white-space: pre;
word-wrap: normal;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 line-height: inherit;
color: inherit;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 .CodeMirror-wrap pre {
word-wrap: break-word;
white-space: pre-wrap;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 word-break: normal;
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 }
.CodeMirror-wrap .CodeMirror-scroll {
overflow-x: hidden;
}
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 .CodeMirror textarea {
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 outline: none !important;
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 .CodeMirror pre.CodeMirror-cursor {
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 z-index: 10;
position: absolute;
visibility: hidden;
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 border-left: 1px solid black;
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 border-right: none;
width: 0;
}
.cm-keymap-fat-cursor pre.CodeMirror-cursor {
width: auto;
border: 0;
background: transparent;
background: rgba(0, 200, 0, .4);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6600c800, endColorstr=#4c00c800);
}
/* Kludge to turn off filter in ie9+, which also accepts rgba */
.cm-keymap-fat-cursor pre.CodeMirror-cursor:not(#nonsense_id) {
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 }
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 .CodeMirror pre.CodeMirror-cursor.CodeMirror-overwrite {}
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 .CodeMirror-focused pre.CodeMirror-cursor {
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504 visibility: visible;
}
Brian Granger
Updating CodeMirror to latest to incorporate bug fixes.
r5970 div.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused div.CodeMirror-selected { background: #d7d4f0; }
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941
Brian Granger
Updating CodeMirror to latest to incorporate bug fixes.
r5970 .CodeMirror-searching {
background: #ffa;
background: rgba(255, 255, 0, .4);
}
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941
/* Default theme */
.cm-s-default span.cm-keyword {color: #708;}
.cm-s-default span.cm-atom {color: #219;}
.cm-s-default span.cm-number {color: #164;}
.cm-s-default span.cm-def {color: #00f;}
.cm-s-default span.cm-variable {color: black;}
.cm-s-default span.cm-variable-2 {color: #05a;}
.cm-s-default span.cm-variable-3 {color: #085;}
.cm-s-default span.cm-property {color: black;}
.cm-s-default span.cm-operator {color: black;}
.cm-s-default span.cm-comment {color: #a50;}
.cm-s-default span.cm-string {color: #a11;}
.cm-s-default span.cm-string-2 {color: #f50;}
.cm-s-default span.cm-meta {color: #555;}
.cm-s-default span.cm-error {color: #f00;}
.cm-s-default span.cm-qualifier {color: #555;}
.cm-s-default span.cm-builtin {color: #30a;}
.cm-s-default span.cm-bracket {color: #cc7;}
.cm-s-default span.cm-tag {color: #170;}
.cm-s-default span.cm-attribute {color: #00c;}
Matthias BUSSONNIER
update CodeMirror2 to 2.32
r8053 .cm-s-default span.cm-header {color: blue;}
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 .cm-s-default span.cm-quote {color: #090;}
.cm-s-default span.cm-hr {color: #999;}
.cm-s-default span.cm-link {color: #00c;}
span.cm-header, span.cm-strong {font-weight: bold;}
span.cm-em {font-style: italic;}
span.cm-emstrong {font-style: italic; font-weight: bold;}
span.cm-link {text-decoration: underline;}
Brian E. Granger
Updating CodeMirror to v 2.12....
r4504
Brian Granger
Updating to CodeMirror 2.2, latest stable release.
r5941 div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}