Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

alert (in alert() and ocnsole) if a PDF has no text elements (i.e. is a scan) #213

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2503523
stuff
Jul 28, 2014
07176ba
putting my workspace on hte internet; this doesn't work yet ;-)
jeremybmerrill Jul 31, 2014
d46c72d
modal *mostly* works, buttons work
jeremybmerrill Aug 7, 2014
68a5110
weird issue where incorrect thumbnail is returned by the change event
jeremybmerrill Aug 8, 2014
cc9fd66
make thumbnails delete when selections are deleted, make deleting pag…
jeremybmerrill Aug 19, 2014
733c68c
repeat lasso button works
jeremybmerrill Aug 20, 2014
91bbcad
extraction method switcher works
jeremybmerrill Aug 20, 2014
6d7cdc4
make directions work
jeremybmerrill Aug 20, 2014
48ac9cb
tweaks
jeremybmerrill Aug 20, 2014
b5332d0
save options to localstorage
jeremybmerrill Aug 20, 2014
44e0f63
Haven't set up table dtection yet. Is doable tho.
jeremybmerrill Aug 20, 2014
3a1845f
notes
jeremybmerrill Aug 20, 2014
872a788
forgot a comma
jeremybmerrill Aug 20, 2014
1804190
predetected tables works
jeremybmerrill Aug 21, 2014
64db588
fix race condition problems with pre-detected tables
jeremybmerrill Aug 21, 2014
8d3384b
fix a few bugs
jeremybmerrill Aug 21, 2014
9c425cc
fix bugs: download formats work, modal events registered only once
jeremybmerrill Aug 26, 2014
b59f2b8
upload page is run by JS
jeremybmerrill Aug 30, 2014
b07f6ec
Fix dates on the index page, fix upload status msg when the page is a…
jeremybmerrill Sep 7, 2014
f4384d9
fix footer
jeremybmerrill Sep 13, 2014
066ee13
fix to allow nested script tags in templates; fix loading spinner on …
jeremybmerrill Sep 13, 2014
81ddb27
adjust notifications message that was apparently unclear
jeremybmerrill Sep 14, 2014
15ed133
Merge branch 'master' into feature/backbone
jeremybmerrill Sep 17, 2014
b450e0c
s/jazzido/tabulapdf/g
jeremybmerrill Sep 17, 2014
00706f2
closes #202; ZeroClipboard copes better now with Flashblock
jeremybmerrill Sep 27, 2014
174e992
alert (in alert() and ocnsole) if a PDF has no text elements (i.e. is…
jeremybmerrill Nov 15, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
342 changes: 342 additions & 0 deletions webapp/index.html

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions webapp/static/css/imgareaselect-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,24 @@
}

.imgareaselect-box{
/* placeholder */
/* these properties moved to imgareaselect-area -JBM 8/16/14
background-color: #000;
filter: alpha(opacity=50);
opacity: 0.3;
*/
}
.imgareaselect-area{
background-color: #000;
filter: alpha(opacity=50);
opacity: 0.3;
overflow: hidden;
}

.imgareaselect-handle {
background-color: #fff;
border: solid 1px #000;
filter: alpha(opacity=50);
opacity: 0.5;
opacity: 0.3;
}

.imgareaselect-outer {
Expand Down
16 changes: 16 additions & 0 deletions webapp/static/css/tabula_web.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,17 @@
display: none;
}

.advanced-options-shown #advanced-options{
display: block;
}

.advanced-options-shown #basic-options .show-advanced-options{
display: none;
}

.toggle-advanced-options{
cursor: select;
color: #666;
}

#data-modal .modal-body {
Expand Down Expand Up @@ -171,6 +180,13 @@
top: 10px !important;
}

/* selections */
.repeat-lassos.btn {
position: absolute;
right: -165px;
bottom: -35px;
}

/* front page */

ul#uploadedfiles {
Expand Down
303 changes: 0 additions & 303 deletions webapp/static/js/ZeroClipboard.js

This file was deleted.

4 changes: 0 additions & 4 deletions webapp/static/js/backbone-min.js

This file was deleted.

Loading