Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
douban-api-proxy
Commits
e2924777
Commit
e2924777
authored
Sep 12, 2020
by
OzzieIsaacs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfixes for uploading books to GDrive with new worker
parent
b202ca56
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
447 additions
and
202 deletions
+447
-202
editbooks.py
cps/editbooks.py
+2
-5
gdriveutils.py
cps/gdriveutils.py
+2
-2
helper.py
cps/helper.py
+2
-2
Calibre-Web TestSummary_Linux.html
test/Calibre-Web TestSummary_Linux.html
+441
-193
No files found.
cps/editbooks.py
View file @
e2924777
...
@@ -848,7 +848,7 @@ def upload():
...
@@ -848,7 +848,7 @@ def upload():
book_id
=
db_book
.
id
book_id
=
db_book
.
id
title
=
db_book
.
title
title
=
db_book
.
title
error
=
helper
.
update_dir_st
uctur
e
(
book_id
,
error
=
helper
.
update_dir_st
ructure_fil
e
(
book_id
,
config
.
config_calibre_dir
,
config
.
config_calibre_dir
,
input_authors
[
0
],
input_authors
[
0
],
meta
.
file_path
,
meta
.
file_path
,
...
@@ -872,10 +872,7 @@ def upload():
...
@@ -872,10 +872,7 @@ def upload():
# save data to database, reread data
# save data to database, reread data
calibre_db
.
session
.
commit
()
calibre_db
.
session
.
commit
()
#calibre_db.setup_db(config, ub.app_DB_path)
# Reread book. It's important not to filter the result, as it could have language which hide it from
# current users view (tags are not stored/extracted from metadata and could also be limited)
#book = calibre_db.get_book(book_id)
if
config
.
config_use_google_drive
:
if
config
.
config_use_google_drive
:
gdriveutils
.
updateGdriveCalibreFromLocal
()
gdriveutils
.
updateGdriveCalibreFromLocal
()
if
error
:
if
error
:
...
...
cps/gdriveutils.py
View file @
e2924777
...
@@ -213,7 +213,7 @@ def listRootFolders():
...
@@ -213,7 +213,7 @@ def listRootFolders():
def
getEbooksFolder
(
drive
):
def
getEbooksFolder
(
drive
):
return
getFolderInFolder
(
'root'
,
config
.
config_google_drive_folder
,
drive
)
return
getFolderInFolder
(
'root'
,
config
.
config_google_drive_folder
,
drive
)
def
getFolderInFolder
(
parentId
,
folderName
,
drive
):
def
getFolderInFolder
(
parentId
,
folderName
,
drive
):
...
@@ -243,7 +243,7 @@ def getEbooksFolderId(drive=None):
...
@@ -243,7 +243,7 @@ def getEbooksFolderId(drive=None):
gDriveId
.
path
=
'/'
gDriveId
.
path
=
'/'
session
.
merge
(
gDriveId
)
session
.
merge
(
gDriveId
)
session
.
commit
()
session
.
commit
()
return
return
gDriveId
.
gdrive_id
def
getFile
(
pathId
,
fileName
,
drive
):
def
getFile
(
pathId
,
fileName
,
drive
):
...
...
cps/helper.py
View file @
e2924777
...
@@ -414,7 +414,7 @@ def update_dir_structure_file(book_id, calibrepath, first_author, orignal_filepa
...
@@ -414,7 +414,7 @@ def update_dir_structure_file(book_id, calibrepath, first_author, orignal_filepa
src
=
new_path
,
dest
=
new_name
,
error
=
str
(
ex
))
src
=
new_path
,
dest
=
new_name
,
error
=
str
(
ex
))
return
False
return
False
def
update_dir_structure_gdrive
(
book_id
,
first_author
,
original_filepath
):
def
update_dir_structure_gdrive
(
book_id
,
first_author
):
error
=
False
error
=
False
book
=
calibre_db
.
get_book
(
book_id
)
book
=
calibre_db
.
get_book
(
book_id
)
path
=
book
.
path
path
=
book
.
path
...
@@ -518,7 +518,7 @@ def uniq(inpt):
...
@@ -518,7 +518,7 @@ def uniq(inpt):
def
update_dir_stucture
(
book_id
,
calibrepath
,
first_author
=
None
,
orignal_filepath
=
None
,
db_filename
=
None
):
def
update_dir_stucture
(
book_id
,
calibrepath
,
first_author
=
None
,
orignal_filepath
=
None
,
db_filename
=
None
):
if
config
.
config_use_google_drive
:
if
config
.
config_use_google_drive
:
return
update_dir_structure_gdrive
(
book_id
,
first_author
,
orignal_filepath
,
db_filename
)
return
update_dir_structure_gdrive
(
book_id
,
first_author
)
else
:
else
:
return
update_dir_structure_file
(
book_id
,
calibrepath
,
first_author
,
orignal_filepath
,
db_filename
)
return
update_dir_structure_file
(
book_id
,
calibrepath
,
first_author
,
orignal_filepath
,
db_filename
)
...
...
test/Calibre-Web TestSummary_Linux.html
View file @
e2924777
...
@@ -37,20 +37,20 @@
...
@@ -37,20 +37,20 @@
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-xs-6 col-md-6 col-sm-offset-3"
style=
"margin-top:50px;"
>
<div
class=
"col-xs-6 col-md-6 col-sm-offset-3"
style=
"margin-top:50px;"
>
<p
class=
'text-justify attribute'
><strong>
Start Time:
</strong>
2020-09-
08 20:59:08
</p>
<p
class=
'text-justify attribute'
><strong>
Start Time:
</strong>
2020-09-
12 12:12:43
</p>
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-xs-6 col-md-6 col-sm-offset-3"
>
<div
class=
"col-xs-6 col-md-6 col-sm-offset-3"
>
<p
class=
'text-justify attribute'
><strong>
Stop Time:
</strong>
2020-09-
08 22:21:4
9
</p>
<p
class=
'text-justify attribute'
><strong>
Stop Time:
</strong>
2020-09-
12 13:55:0
9
</p>
</div>
</div>
</div>
</div>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-xs-6 col-md-6 col-sm-offset-3"
>
<div
class=
"col-xs-6 col-md-6 col-sm-offset-3"
>
<p
class=
'text-justify attribute'
><strong>
Duration:
</strong>
1h
10
min
</p>
<p
class=
'text-justify attribute'
><strong>
Duration:
</strong>
1h
25
min
</p>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -982,15 +982,15 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -982,15 +982,15 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
"su"
class=
"passClass"
>
<tr
id=
"su"
class=
"failClass"
>
<td>
TestEditBooksGdrive
</td>
<td>
TestEditBooksOnGdrive
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
19
</td>
<td
class=
"text-center"
>
18
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c8', 1)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c8', 1
9
)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
...
@@ -998,12 +998,194 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -998,12 +998,194 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt8.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt8.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestEditBooksGdrive - test_config_gdrive
</div>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_download_book
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.2'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_author
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.3'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_category
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.4'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_comments
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.5'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_bool
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.6'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_categories
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.7'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_float
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.8'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_int
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.9'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_rating
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.10'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_single_select
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.11'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_custom_text
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.12'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_language
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.13'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_publisher
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.14'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_rating
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.15'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_series
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.16'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_edit_title
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.17'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_upload_book_epub
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
'pt8.18'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_upload_book_lit
</div>
</td>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
</tr>
<tr
id=
"ft8.19"
class=
"none bg-danger"
>
<td>
<div
class=
'testcase'
>
TestEditBooksOnGdrive - test_upload_cover_hdd
</div>
</td>
<td
colspan=
'6'
>
<div
class=
"text-center"
>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_ft8.19')"
>
FAIL
</a>
</div>
<!--css div popup start-->
<div
id=
"div_ft8.19"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
class=
'close_button pull-right'
>
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
onclick=
'document.getElementById('
div_ft8
.
19
').
style
.
display=
'none'
"
><span
aria-hidden=
"true"
>
×
</span></button>
</div>
<div
class=
"text-left pull-left"
>
<pre
class=
"text-left"
>
Traceback (most recent call last):
File "/home/matthias/Entwicklung/calibre-web-test/test/test_edit_ebooks_gdrive.py", line 717, in test_upload_cover_hdd
self.assertTrue(False, "Browser-Cache Problem: Old Cover is displayed instead of New Cover")
AssertionError: False is not true : Browser-Cache Problem: Old Cover is displayed instead of New Cover
</pre>
</div>
<div
class=
"clearfix"
></div>
</div>
<!--css div popup end-->
</td>
</tr>
<tr
id=
"su"
class=
"passClass"
>
<tr
id=
"su"
class=
"passClass"
>
...
@@ -1108,6 +1290,30 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1108,6 +1290,30 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
"su"
class=
"passClass"
>
<td>
TestSetupGdrive
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c11', 1)"
>
Detail
</a>
</td>
</tr>
<tr
id=
'pt11.1'
class=
'hiddenRow bg-success'
>
<td>
<div
class=
'testcase'
>
TestSetupGdrive - test_config_gdrive
</div>
</td>
<td
colspan=
'6'
align=
'center'
>
PASS
</td>
</tr>
<tr
id=
"su"
class=
"passClass"
>
<tr
id=
"su"
class=
"passClass"
>
<td>
TestGoodreads
</td>
<td>
TestGoodreads
</td>
<td
class=
"text-center"
>
3
</td>
<td
class=
"text-center"
>
3
</td>
...
@@ -1116,13 +1322,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1116,13 +1322,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
1
', 3)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
2
', 3)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
1
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
2
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestGoodreads - test_author_page
</div>
<div
class=
'testcase'
>
TestGoodreads - test_author_page
</div>
</td>
</td>
...
@@ -1131,7 +1337,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1131,7 +1337,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
1
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
2
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestGoodreads - test_author_page_invalid
</div>
<div
class=
'testcase'
>
TestGoodreads - test_author_page_invalid
</div>
</td>
</td>
...
@@ -1140,7 +1346,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1140,7 +1346,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
1
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
2
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestGoodreads - test_goodreads_about
</div>
<div
class=
'testcase'
>
TestGoodreads - test_goodreads_about
</div>
</td>
</td>
...
@@ -1158,13 +1364,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1158,13 +1364,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
2
', 16)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
3
', 16)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
2
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort
</div>
</td>
</td>
...
@@ -1173,7 +1379,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1173,7 +1379,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_comma
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_comma
</div>
</td>
</td>
...
@@ -1182,7 +1388,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1182,7 +1388,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_junior
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_junior
</div>
</td>
</td>
...
@@ -1191,7 +1397,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1191,7 +1397,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_oneword
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_oneword
</div>
</td>
</td>
...
@@ -1200,7 +1406,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1200,7 +1406,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_roman
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_author_sort_roman
</div>
</td>
</td>
...
@@ -1209,7 +1415,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1209,7 +1415,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_Limit_Length
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_Limit_Length
</div>
</td>
</td>
...
@@ -1218,7 +1424,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1218,7 +1424,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_char_replacement
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_char_replacement
</div>
</td>
</td>
...
@@ -1227,7 +1433,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1227,7 +1433,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_chinese_Characters
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_chinese_Characters
</div>
</td>
</td>
...
@@ -1236,7 +1442,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1236,7 +1442,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_deg_eur_replacement
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_deg_eur_replacement
</div>
</td>
</td>
...
@@ -1245,7 +1451,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1245,7 +1451,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.10'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.10'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_doubleS
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_doubleS
</div>
</td>
</td>
...
@@ -1254,7 +1460,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1254,7 +1460,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.11'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.11'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_finish_Dot
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_finish_Dot
</div>
</td>
</td>
...
@@ -1263,7 +1469,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1263,7 +1469,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.12'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.12'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_high23
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_high23
</div>
</td>
</td>
...
@@ -1272,7 +1478,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1272,7 +1478,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.13'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.13'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_umlauts
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_check_umlauts
</div>
</td>
</td>
...
@@ -1281,7 +1487,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1281,7 +1487,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.14'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.14'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_random_password
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_random_password
</div>
</td>
</td>
...
@@ -1290,7 +1496,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1290,7 +1496,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.15'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.15'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_split_authors
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_split_authors
</div>
</td>
</td>
...
@@ -1299,7 +1505,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1299,7 +1505,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
2
.16'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
3
.16'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreHelper - test_whitespaces
</div>
<div
class=
'testcase'
>
TestCalibreHelper - test_whitespaces
</div>
</td>
</td>
...
@@ -1317,13 +1523,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1317,13 +1523,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
3
', 8)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
4
', 8)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
3
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_kobo_about
</div>
<div
class=
'testcase'
>
TestKoboSync - test_kobo_about
</div>
</td>
</td>
...
@@ -1332,7 +1538,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1332,7 +1538,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_shelves_add_remove_books
</div>
<div
class=
'testcase'
>
TestKoboSync - test_shelves_add_remove_books
</div>
</td>
</td>
...
@@ -1341,7 +1547,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1341,7 +1547,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_sync_changed_book
</div>
<div
class=
'testcase'
>
TestKoboSync - test_sync_changed_book
</div>
</td>
</td>
...
@@ -1350,7 +1556,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1350,7 +1556,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_sync_invalid
</div>
<div
class=
'testcase'
>
TestKoboSync - test_sync_invalid
</div>
</td>
</td>
...
@@ -1359,7 +1565,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1359,7 +1565,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_sync_reading_state
</div>
<div
class=
'testcase'
>
TestKoboSync - test_sync_reading_state
</div>
</td>
</td>
...
@@ -1368,7 +1574,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1368,7 +1574,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_sync_shelf
</div>
<div
class=
'testcase'
>
TestKoboSync - test_sync_shelf
</div>
</td>
</td>
...
@@ -1377,7 +1583,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1377,7 +1583,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_sync_unchanged
</div>
<div
class=
'testcase'
>
TestKoboSync - test_sync_unchanged
</div>
</td>
</td>
...
@@ -1386,7 +1592,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1386,7 +1592,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
3
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
4
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestKoboSync - test_sync_upload
</div>
<div
class=
'testcase'
>
TestKoboSync - test_sync_upload
</div>
</td>
</td>
...
@@ -1404,13 +1610,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1404,13 +1610,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
4
', 10)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
5
', 10)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
4
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_SSL
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_SSL
</div>
</td>
</td>
...
@@ -1419,7 +1625,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1419,7 +1625,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_STARTTLS
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_STARTTLS
</div>
</td>
</td>
...
@@ -1428,7 +1634,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1428,7 +1634,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_fallback_Login
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_fallback_Login
</div>
</td>
</td>
...
@@ -1437,7 +1643,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1437,7 +1643,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_import
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_import
</div>
</td>
</td>
...
@@ -1446,7 +1652,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1446,7 +1652,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_login
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_LDAP_login
</div>
</td>
</td>
...
@@ -1455,7 +1661,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1455,7 +1661,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_invalid_LDAP
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_invalid_LDAP
</div>
</td>
</td>
...
@@ -1464,7 +1670,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1464,7 +1670,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_about
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_about
</div>
</td>
</td>
...
@@ -1473,7 +1679,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1473,7 +1679,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_authentication
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_authentication
</div>
</td>
</td>
...
@@ -1482,7 +1688,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1482,7 +1688,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_kobo_sync
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_kobo_sync
</div>
</td>
</td>
...
@@ -1491,7 +1697,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1491,7 +1697,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
4
.10'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
5
.10'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_opds_download_book
</div>
<div
class=
'testcase'
>
TestLdapLogin - test_ldap_opds_download_book
</div>
</td>
</td>
...
@@ -1509,13 +1715,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1509,13 +1715,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
5
', 7)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
6
', 7)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
5
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
6
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_access_log_recover
</div>
<div
class=
'testcase'
>
TestLogging - test_access_log_recover
</div>
</td>
</td>
...
@@ -1524,7 +1730,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1524,7 +1730,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
5
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
6
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_debug_log
</div>
<div
class=
'testcase'
>
TestLogging - test_debug_log
</div>
</td>
</td>
...
@@ -1533,7 +1739,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1533,7 +1739,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
5
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
6
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_failed_login
</div>
<div
class=
'testcase'
>
TestLogging - test_failed_login
</div>
</td>
</td>
...
@@ -1542,19 +1748,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1542,19 +1748,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
"st1
5
.4"
class=
"none bg-warning"
>
<tr
id=
"st1
6
.4"
class=
"none bg-warning"
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_failed_register
</div>
<div
class=
'testcase'
>
TestLogging - test_failed_register
</div>
</td>
</td>
<td
colspan=
'6'
>
<td
colspan=
'6'
>
<div
class=
"text-center"
>
<div
class=
"text-center"
>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_st1
5
.4')"
>
SKIP
</a>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_st1
6
.4')"
>
SKIP
</a>
</div>
</div>
<!--css div popup start-->
<!--css div popup start-->
<div
id=
"div_st1
5
.4"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
id=
"div_st1
6
.4"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
class=
'close_button pull-right'
>
<div
class=
'close_button pull-right'
>
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
onclick=
'document.getElementById('
div_st1
5
.
4
').
style
.
display=
'none'
"
><span
onclick=
'document.getElementById('
div_st1
6
.
4
').
style
.
display=
'none'
"
><span
aria-hidden=
"true"
>
×
</span></button>
aria-hidden=
"true"
>
×
</span></button>
</div>
</div>
<div
class=
"text-left pull-left"
>
<div
class=
"text-left pull-left"
>
...
@@ -1568,7 +1774,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1568,7 +1774,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
5
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
6
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_logfile_change
</div>
<div
class=
'testcase'
>
TestLogging - test_logfile_change
</div>
</td>
</td>
...
@@ -1577,7 +1783,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1577,7 +1783,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
5
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
6
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_logfile_recover
</div>
<div
class=
'testcase'
>
TestLogging - test_logfile_recover
</div>
</td>
</td>
...
@@ -1586,7 +1792,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1586,7 +1792,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
5
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
6
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogging - test_logviewer
</div>
<div
class=
'testcase'
>
TestLogging - test_logviewer
</div>
</td>
</td>
...
@@ -1604,13 +1810,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1604,13 +1810,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
6
', 12)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
7
', 12)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
6
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_digest_login
</div>
<div
class=
'testcase'
>
TestLogin - test_digest_login
</div>
</td>
</td>
...
@@ -1619,7 +1825,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1619,7 +1825,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_capital_letters_user_unicode_password
</div>
<div
class=
'testcase'
>
TestLogin - test_login_capital_letters_user_unicode_password
</div>
</td>
</td>
...
@@ -1628,7 +1834,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1628,7 +1834,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_delete_admin
</div>
<div
class=
'testcase'
>
TestLogin - test_login_delete_admin
</div>
</td>
</td>
...
@@ -1637,7 +1843,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1637,7 +1843,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_empty_password
</div>
<div
class=
'testcase'
>
TestLogin - test_login_empty_password
</div>
</td>
</td>
...
@@ -1646,7 +1852,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1646,7 +1852,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_locale_select
</div>
<div
class=
'testcase'
>
TestLogin - test_login_locale_select
</div>
</td>
</td>
...
@@ -1655,7 +1861,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1655,7 +1861,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_protected
</div>
<div
class=
'testcase'
>
TestLogin - test_login_protected
</div>
</td>
</td>
...
@@ -1664,7 +1870,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1664,7 +1870,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_remember_me
</div>
<div
class=
'testcase'
>
TestLogin - test_login_remember_me
</div>
</td>
</td>
...
@@ -1673,7 +1879,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1673,7 +1879,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_rename_user
</div>
<div
class=
'testcase'
>
TestLogin - test_login_rename_user
</div>
</td>
</td>
...
@@ -1682,7 +1888,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1682,7 +1888,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_unicode_user_space_end_password
</div>
<div
class=
'testcase'
>
TestLogin - test_login_unicode_user_space_end_password
</div>
</td>
</td>
...
@@ -1691,7 +1897,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1691,7 +1897,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.10'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.10'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_login_user_with_space_password_end_space
</div>
<div
class=
'testcase'
>
TestLogin - test_login_user_with_space_password_end_space
</div>
</td>
</td>
...
@@ -1700,7 +1906,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1700,7 +1906,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.11'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.11'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_next
</div>
<div
class=
'testcase'
>
TestLogin - test_next
</div>
</td>
</td>
...
@@ -1709,7 +1915,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1709,7 +1915,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
6
.12'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
7
.12'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestLogin - test_robots
</div>
<div
class=
'testcase'
>
TestLogin - test_robots
</div>
</td>
</td>
...
@@ -1727,13 +1933,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1727,13 +1933,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
7
', 2)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
8
', 2)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
7
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
8
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOAuthLogin - test_oauth_about
</div>
<div
class=
'testcase'
>
TestOAuthLogin - test_oauth_about
</div>
</td>
</td>
...
@@ -1742,7 +1948,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1742,7 +1948,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
7
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
8
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOAuthLogin - test_visible_oauth
</div>
<div
class=
'testcase'
>
TestOAuthLogin - test_visible_oauth
</div>
</td>
</td>
...
@@ -1760,13 +1966,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1760,13 +1966,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c1
8
', 20)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c1
9
', 20)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt1
8
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds
</div>
</td>
</td>
...
@@ -1775,7 +1981,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1775,7 +1981,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_author
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_author
</div>
</td>
</td>
...
@@ -1784,7 +1990,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1784,7 +1990,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_calibre_companion
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_calibre_companion
</div>
</td>
</td>
...
@@ -1793,7 +1999,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1793,7 +1999,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_cover
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_cover
</div>
</td>
</td>
...
@@ -1802,7 +2008,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1802,7 +2008,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_download_book
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_download_book
</div>
</td>
</td>
...
@@ -1811,7 +2017,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1811,7 +2017,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_formats
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_formats
</div>
</td>
</td>
...
@@ -1820,7 +2026,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1820,7 +2026,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_guest_user
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_guest_user
</div>
</td>
</td>
...
@@ -1829,7 +2035,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1829,7 +2035,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_hot
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_hot
</div>
</td>
</td>
...
@@ -1838,7 +2044,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1838,7 +2044,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_language
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_language
</div>
</td>
</td>
...
@@ -1847,7 +2053,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1847,7 +2053,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.10'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.10'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_non_admin
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_non_admin
</div>
</td>
</td>
...
@@ -1856,7 +2062,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1856,7 +2062,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.11'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.11'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_publisher
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_publisher
</div>
</td>
</td>
...
@@ -1865,7 +2071,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1865,7 +2071,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.12'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.12'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_random
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_random
</div>
</td>
</td>
...
@@ -1874,7 +2080,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1874,7 +2080,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.13'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.13'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_ratings
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_ratings
</div>
</td>
</td>
...
@@ -1883,7 +2089,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1883,7 +2089,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.14'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.14'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_read_unread
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_read_unread
</div>
</td>
</td>
...
@@ -1892,7 +2098,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1892,7 +2098,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.15'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.15'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_search
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_search
</div>
</td>
</td>
...
@@ -1901,7 +2107,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1901,7 +2107,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.16'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.16'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_series
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_series
</div>
</td>
</td>
...
@@ -1910,7 +2116,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1910,7 +2116,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.17'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.17'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_shelf_access
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_shelf_access
</div>
</td>
</td>
...
@@ -1919,7 +2125,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1919,7 +2125,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.18'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.18'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_tags
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_tags
</div>
</td>
</td>
...
@@ -1928,7 +2134,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1928,7 +2134,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.19'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.19'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_top_rated
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_opds_top_rated
</div>
</td>
</td>
...
@@ -1937,7 +2143,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1937,7 +2143,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt1
8
.20'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt1
9
.20'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestOPDSFeed - test_recently_added
</div>
<div
class=
'testcase'
>
TestOPDSFeed - test_recently_added
</div>
</td>
</td>
...
@@ -1955,13 +2161,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1955,13 +2161,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c
19
', 7)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c
20
', 7)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt
19
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_forgot_password
</div>
<div
class=
'testcase'
>
TestRegister - test_forgot_password
</div>
</td>
</td>
...
@@ -1970,7 +2176,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1970,7 +2176,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt
19
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_limit_domain
</div>
<div
class=
'testcase'
>
TestRegister - test_limit_domain
</div>
</td>
</td>
...
@@ -1979,7 +2185,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1979,7 +2185,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt
19
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_register_no_server
</div>
<div
class=
'testcase'
>
TestRegister - test_register_no_server
</div>
</td>
</td>
...
@@ -1988,7 +2194,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1988,7 +2194,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt
19
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_registering_only_email
</div>
<div
class=
'testcase'
>
TestRegister - test_registering_only_email
</div>
</td>
</td>
...
@@ -1997,7 +2203,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -1997,7 +2203,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt
19
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_registering_user
</div>
<div
class=
'testcase'
>
TestRegister - test_registering_user
</div>
</td>
</td>
...
@@ -2006,7 +2212,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2006,7 +2212,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt
19
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_registering_user_fail
</div>
<div
class=
'testcase'
>
TestRegister - test_registering_user_fail
</div>
</td>
</td>
...
@@ -2015,7 +2221,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2015,7 +2221,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt
19
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt
20
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestRegister - test_user_change_password
</div>
<div
class=
'testcase'
>
TestRegister - test_user_change_password
</div>
</td>
</td>
...
@@ -2033,13 +2239,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2033,13 +2239,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c2
0
', 11)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c2
1
', 11)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt2
0
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_add_shelf_from_search
</div>
<div
class=
'testcase'
>
TestShelf - test_add_shelf_from_search
</div>
</td>
</td>
...
@@ -2048,7 +2254,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2048,7 +2254,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_arrange_shelf
</div>
<div
class=
'testcase'
>
TestShelf - test_arrange_shelf
</div>
</td>
</td>
...
@@ -2057,7 +2263,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2057,7 +2263,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_delete_book_of_shelf
</div>
<div
class=
'testcase'
>
TestShelf - test_delete_book_of_shelf
</div>
</td>
</td>
...
@@ -2066,7 +2272,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2066,7 +2272,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_private_shelf
</div>
<div
class=
'testcase'
>
TestShelf - test_private_shelf
</div>
</td>
</td>
...
@@ -2075,7 +2281,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2075,7 +2281,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_public_private_shelf
</div>
<div
class=
'testcase'
>
TestShelf - test_public_private_shelf
</div>
</td>
</td>
...
@@ -2084,7 +2290,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2084,7 +2290,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_public_shelf
</div>
<div
class=
'testcase'
>
TestShelf - test_public_shelf
</div>
</td>
</td>
...
@@ -2093,7 +2299,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2093,7 +2299,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_rename_shelf
</div>
<div
class=
'testcase'
>
TestShelf - test_rename_shelf
</div>
</td>
</td>
...
@@ -2102,7 +2308,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2102,7 +2308,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_shelf_action_non_shelf_edit_role
</div>
<div
class=
'testcase'
>
TestShelf - test_shelf_action_non_shelf_edit_role
</div>
</td>
</td>
...
@@ -2111,7 +2317,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2111,7 +2317,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_shelf_anonymous
</div>
<div
class=
'testcase'
>
TestShelf - test_shelf_anonymous
</div>
</td>
</td>
...
@@ -2120,19 +2326,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2120,19 +2326,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
"st2
0
.10"
class=
"none bg-warning"
>
<tr
id=
"st2
1
.10"
class=
"none bg-warning"
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_shelf_database_change
</div>
<div
class=
'testcase'
>
TestShelf - test_shelf_database_change
</div>
</td>
</td>
<td
colspan=
'6'
>
<td
colspan=
'6'
>
<div
class=
"text-center"
>
<div
class=
"text-center"
>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_st2
0
.10')"
>
SKIP
</a>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_st2
1
.10')"
>
SKIP
</a>
</div>
</div>
<!--css div popup start-->
<!--css div popup start-->
<div
id=
"div_st2
0
.10"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
id=
"div_st2
1
.10"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
class=
'close_button pull-right'
>
<div
class=
'close_button pull-right'
>
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
onclick=
'document.getElementById('
div_st2
0
.
10
').
style
.
display=
'none'
"
><span
onclick=
'document.getElementById('
div_st2
1
.
10
').
style
.
display=
'none'
"
><span
aria-hidden=
"true"
>
×
</span></button>
aria-hidden=
"true"
>
×
</span></button>
</div>
</div>
<div
class=
"text-left pull-left"
>
<div
class=
"text-left pull-left"
>
...
@@ -2146,7 +2352,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2146,7 +2352,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
0
.11'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
1
.11'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestShelf - test_shelf_long_name
</div>
<div
class=
'testcase'
>
TestShelf - test_shelf_long_name
</div>
</td>
</td>
...
@@ -2164,13 +2370,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2164,13 +2370,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
1
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c2
1
', 8)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c2
2
', 8)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt2
1
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_check_update_nightly_errors
</div>
<div
class=
'testcase'
>
TestUpdater - test_check_update_nightly_errors
</div>
</td>
</td>
...
@@ -2179,7 +2385,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2179,7 +2385,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
1
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_check_update_nightly_request_errors
</div>
<div
class=
'testcase'
>
TestUpdater - test_check_update_nightly_request_errors
</div>
</td>
</td>
...
@@ -2188,7 +2394,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2188,7 +2394,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
1
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_check_update_stable_errors
</div>
<div
class=
'testcase'
>
TestUpdater - test_check_update_stable_errors
</div>
</td>
</td>
...
@@ -2197,7 +2403,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2197,7 +2403,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
1
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_check_update_stable_versions
</div>
<div
class=
'testcase'
>
TestUpdater - test_check_update_stable_versions
</div>
</td>
</td>
...
@@ -2206,7 +2412,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2206,7 +2412,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
1
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_perform_update
</div>
<div
class=
'testcase'
>
TestUpdater - test_perform_update
</div>
</td>
</td>
...
@@ -2215,7 +2421,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2215,7 +2421,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
1
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_perform_update_stable_errors
</div>
<div
class=
'testcase'
>
TestUpdater - test_perform_update_stable_errors
</div>
</td>
</td>
...
@@ -2224,19 +2430,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2224,19 +2430,19 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
"st2
1
.7"
class=
"none bg-warning"
>
<tr
id=
"st2
2
.7"
class=
"none bg-warning"
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_perform_update_timeout
</div>
<div
class=
'testcase'
>
TestUpdater - test_perform_update_timeout
</div>
</td>
</td>
<td
colspan=
'6'
>
<td
colspan=
'6'
>
<div
class=
"text-center"
>
<div
class=
"text-center"
>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_st2
1
.7')"
>
SKIP
</a>
<a
class=
"popup_link text-center"
onfocus=
'blur()'
onclick=
"showTestDetail('div_st2
2
.7')"
>
SKIP
</a>
</div>
</div>
<!--css div popup start-->
<!--css div popup start-->
<div
id=
"div_st2
1
.7"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
id=
"div_st2
2
.7"
class=
"popup_window test_output"
style=
"display:none;"
>
<div
class=
'close_button pull-right'
>
<div
class=
'close_button pull-right'
>
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
<button
type=
"button"
class=
"close"
aria-label=
"Close"
onfocus=
'this.blur();'
onclick=
'document.getElementById('
div_st2
1
.
7
').
style
.
display=
'none'
"
><span
onclick=
'document.getElementById('
div_st2
2
.
7
').
style
.
display=
'none'
"
><span
aria-hidden=
"true"
>
×
</span></button>
aria-hidden=
"true"
>
×
</span></button>
</div>
</div>
<div
class=
"text-left pull-left"
>
<div
class=
"text-left pull-left"
>
...
@@ -2250,7 +2456,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2250,7 +2456,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
1
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
2
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUpdater - test_reconnect_database
</div>
<div
class=
'testcase'
>
TestUpdater - test_reconnect_database
</div>
</td>
</td>
...
@@ -2268,13 +2474,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2268,13 +2474,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c2
2
', 19)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c2
3
', 19)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt2
2
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_allow_column_restriction
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_allow_column_restriction
</div>
</td>
</td>
...
@@ -2283,7 +2489,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2283,7 +2489,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_allow_tag_restriction
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_allow_tag_restriction
</div>
</td>
</td>
...
@@ -2292,7 +2498,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2292,7 +2498,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_archived_format_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_archived_format_template
</div>
</td>
</td>
...
@@ -2301,7 +2507,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2301,7 +2507,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_author_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_author_user_template
</div>
</td>
</td>
...
@@ -2310,7 +2516,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2310,7 +2516,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_best_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_best_user_template
</div>
</td>
</td>
...
@@ -2319,7 +2525,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2319,7 +2525,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_category_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_category_user_template
</div>
</td>
</td>
...
@@ -2328,7 +2534,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2328,7 +2534,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_deny_column_restriction
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_deny_column_restriction
</div>
</td>
</td>
...
@@ -2337,7 +2543,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2337,7 +2543,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_deny_tag_restriction
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_deny_tag_restriction
</div>
</td>
</td>
...
@@ -2346,7 +2552,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2346,7 +2552,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_detail_random_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_detail_random_user_template
</div>
</td>
</td>
...
@@ -2355,7 +2561,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2355,7 +2561,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.10'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.10'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_format_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_format_user_template
</div>
</td>
</td>
...
@@ -2364,7 +2570,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2364,7 +2570,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.11'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.11'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_hot_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_hot_user_template
</div>
</td>
</td>
...
@@ -2373,7 +2579,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2373,7 +2579,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.12'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.12'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_language_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_language_user_template
</div>
</td>
</td>
...
@@ -2382,7 +2588,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2382,7 +2588,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.13'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.13'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_limit_book_languages
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_limit_book_languages
</div>
</td>
</td>
...
@@ -2391,7 +2597,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2391,7 +2597,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.14'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.14'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_publisher_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_publisher_user_template
</div>
</td>
</td>
...
@@ -2400,7 +2606,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2400,7 +2606,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.15'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.15'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_random_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_random_user_template
</div>
</td>
</td>
...
@@ -2409,7 +2615,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2409,7 +2615,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.16'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.16'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_read_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_read_user_template
</div>
</td>
</td>
...
@@ -2418,7 +2624,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2418,7 +2624,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.17'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.17'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_recent_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_recent_user_template
</div>
</td>
</td>
...
@@ -2427,7 +2633,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2427,7 +2633,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.18'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.18'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_series_user_template
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_series_user_template
</div>
</td>
</td>
...
@@ -2436,7 +2642,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2436,7 +2642,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
2
.19'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
3
.19'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestUserTemplate - test_ui_language_settings
</div>
<div
class=
'testcase'
>
TestUserTemplate - test_ui_language_settings
</div>
</td>
</td>
...
@@ -2454,13 +2660,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2454,13 +2660,13 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
0
</td>
<td
class=
"text-center"
>
<td
class=
"text-center"
>
<a
onclick=
"showClassDetail('c2
3
', 30)"
>
Detail
</a>
<a
onclick=
"showClassDetail('c2
4
', 30)"
>
Detail
</a>
</td>
</td>
</tr>
</tr>
<tr
id=
'pt2
3
.1'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.1'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_about
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_about
</div>
</td>
</td>
...
@@ -2469,7 +2675,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2469,7 +2675,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.2'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.2'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_SMTP_Settings
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_SMTP_Settings
</div>
</td>
</td>
...
@@ -2478,7 +2684,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2478,7 +2684,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.3'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.3'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_add_user
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_add_user
</div>
</td>
</td>
...
@@ -2487,7 +2693,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2487,7 +2693,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.4'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.4'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_password
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_password
</div>
</td>
</td>
...
@@ -2496,7 +2702,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2496,7 +2702,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.5'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.5'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_archived
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_archived
</div>
</td>
</td>
...
@@ -2505,7 +2711,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2505,7 +2711,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.6'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.6'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_authors
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_authors
</div>
</td>
</td>
...
@@ -2514,7 +2720,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2514,7 +2720,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.7'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.7'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_category
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_category
</div>
</td>
</td>
...
@@ -2523,7 +2729,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2523,7 +2729,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.8'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.8'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_file_formats
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_file_formats
</div>
</td>
</td>
...
@@ -2532,7 +2738,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2532,7 +2738,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.9'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.9'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_hot
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_hot
</div>
</td>
</td>
...
@@ -2541,7 +2747,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2541,7 +2747,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.10'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.10'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_language
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_language
</div>
</td>
</td>
...
@@ -2550,7 +2756,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2550,7 +2756,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.11'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.11'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_publisher
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_publisher
</div>
</td>
</td>
...
@@ -2559,7 +2765,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2559,7 +2765,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.12'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.12'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_random
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_random
</div>
</td>
</td>
...
@@ -2568,7 +2774,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2568,7 +2774,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.13'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.13'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_rated
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_rated
</div>
</td>
</td>
...
@@ -2577,7 +2783,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2577,7 +2783,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.14'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.14'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_rating
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_rating
</div>
</td>
</td>
...
@@ -2586,7 +2792,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2586,7 +2792,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.15'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.15'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_read
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_read
</div>
</td>
</td>
...
@@ -2595,7 +2801,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2595,7 +2801,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.16'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.16'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_series
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_admin_change_visibility_series
</div>
</td>
</td>
...
@@ -2604,7 +2810,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2604,7 +2810,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.17'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.17'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_allow_columns
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_allow_columns
</div>
</td>
</td>
...
@@ -2613,7 +2819,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2613,7 +2819,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.18'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.18'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_allow_tags
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_allow_tags
</div>
</td>
</td>
...
@@ -2622,7 +2828,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2622,7 +2828,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.19'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.19'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_archive_books
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_archive_books
</div>
</td>
</td>
...
@@ -2631,7 +2837,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2631,7 +2837,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.20'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.20'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_authors_max_settings
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_authors_max_settings
</div>
</td>
</td>
...
@@ -2640,7 +2846,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2640,7 +2846,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.21'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.21'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_checked_logged_in
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_checked_logged_in
</div>
</td>
</td>
...
@@ -2649,7 +2855,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2649,7 +2855,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.22'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.22'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_hide_custom_column
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_hide_custom_column
</div>
</td>
</td>
...
@@ -2658,7 +2864,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2658,7 +2864,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.23'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.23'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_link_column_to_read_status
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_link_column_to_read_status
</div>
</td>
</td>
...
@@ -2667,7 +2873,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2667,7 +2873,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.24'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.24'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_random_books_available
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_random_books_available
</div>
</td>
</td>
...
@@ -2676,7 +2882,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2676,7 +2882,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.25'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.25'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_restrict_columns
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_restrict_columns
</div>
</td>
</td>
...
@@ -2685,7 +2891,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2685,7 +2891,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.26'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.26'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_restrict_tags
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_restrict_tags
</div>
</td>
</td>
...
@@ -2694,7 +2900,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2694,7 +2900,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.27'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.27'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_search_functions
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_search_functions
</div>
</td>
</td>
...
@@ -2703,7 +2909,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2703,7 +2909,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.28'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.28'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_search_string
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_search_string
</div>
</td>
</td>
...
@@ -2712,7 +2918,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2712,7 +2918,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.29'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.29'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_user_email_available
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_user_email_available
</div>
</td>
</td>
...
@@ -2721,7 +2927,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2721,7 +2927,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'pt2
3
.30'
class=
'hiddenRow bg-success'
>
<tr
id=
'pt2
4
.30'
class=
'hiddenRow bg-success'
>
<td>
<td>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_user_visibility_sidebar
</div>
<div
class=
'testcase'
>
TestCalibreWebVisibilitys - test_user_visibility_sidebar
</div>
</td>
</td>
...
@@ -2732,9 +2938,9 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2732,9 +2938,9 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr
id=
'total_row'
class=
"text-center bg-grey"
>
<tr
id=
'total_row'
class=
"text-center bg-grey"
>
<td>
Total
</td>
<td>
Total
</td>
<td>
2
38
</td>
<td>
2
57
</td>
<td>
2
30
</td>
<td>
2
48
</td>
<td>
2
</td>
<td>
3
</td>
<td>
0
</td>
<td>
0
</td>
<td>
6
</td>
<td>
6
</td>
<td>
</td>
<td>
</td>
...
@@ -2927,31 +3133,73 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -2927,31 +3133,73 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
<tr>
<tr>
<th>
google-api-python-client
</th>
<th>
google-api-python-client
</th>
<td>
1.11.0
</td>
<td>
1.11.0
</td>
<td>
TestEditBooksGdrive
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
httplib2
</th>
<td>
0.18.1
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
lxml
</th>
<td>
4.5.2
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
oauth2client
</th>
<td>
4.1.3
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
Pillow
</th>
<td>
7.2.0
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
PyDrive
</th>
<td>
1.3.1
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
PyYAML
</th>
<td>
5.3.1
</td>
<td>
TestEditBooksOnGdrive
</td>
</tr>
<tr>
<th>
google-api-python-client
</th>
<td>
1.11.0
</td>
<td>
TestSetupGdrive
</td>
</tr>
</tr>
<tr>
<tr>
<th>
httplib2
</th>
<th>
httplib2
</th>
<td>
0.18.1
</td>
<td>
0.18.1
</td>
<td>
Test
EditBooks
Gdrive
</td>
<td>
Test
Setup
Gdrive
</td>
</tr>
</tr>
<tr>
<tr>
<th>
oauth2client
</th>
<th>
oauth2client
</th>
<td>
4.1.3
</td>
<td>
4.1.3
</td>
<td>
Test
EditBooks
Gdrive
</td>
<td>
Test
Setup
Gdrive
</td>
</tr>
</tr>
<tr>
<tr>
<th>
PyDrive
</th>
<th>
PyDrive
</th>
<td>
1.3.1
</td>
<td>
1.3.1
</td>
<td>
Test
EditBooks
Gdrive
</td>
<td>
Test
Setup
Gdrive
</td>
</tr>
</tr>
<tr>
<tr>
<th>
PyYAML
</th>
<th>
PyYAML
</th>
<td>
5.3.1
</td>
<td>
5.3.1
</td>
<td>
Test
EditBooks
Gdrive
</td>
<td>
Test
Setup
Gdrive
</td>
</tr>
</tr>
<tr>
<tr>
...
@@ -3004,7 +3252,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
...
@@ -3004,7 +3252,7 @@ AssertionError: False is not true : Browser-Cache Problem: Old Cover is displaye
</div>
</div>
<script>
<script>
drawCircle
(
2
30
,
2
,
0
,
6
);
drawCircle
(
2
48
,
3
,
0
,
6
);
</script>
</script>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment