fixed a search indexer problem and a tabs.css conflict with tinymce
This commit is contained in:
parent
8045055d12
commit
518d820a5e
5 changed files with 18 additions and 12 deletions
|
|
@ -36,6 +36,8 @@
|
|||
- fix: JavaScript race condition in dashlet prefs form
|
||||
- fix: caching problem with overrides in dashlets
|
||||
- fix: CS pagination does not work for visitors
|
||||
- fixed a problem in the search indexer and made the tabform css compatible
|
||||
with tinymce. (Martin Kamerbeek / Procolix)
|
||||
|
||||
7.0.6
|
||||
- fix: Error in DateTime.pm
|
||||
|
|
|
|||
|
|
@ -21,16 +21,18 @@ my $quiet; # this line required
|
|||
my $session = start(); # this line required
|
||||
|
||||
# upgrade functions go here
|
||||
dropLineageInAssetIndex($session);
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
||||
##-------------------------------------------------
|
||||
#sub exampleFunction {
|
||||
# my $session = shift;
|
||||
# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet);
|
||||
# # and here's our code
|
||||
#}
|
||||
#-------------------------------------------------
|
||||
sub dropLineageInAssetIndex {
|
||||
my $session = shift;
|
||||
print "\tDropping lineage column in assetIndex table.\n" unless ($quiet);
|
||||
|
||||
$session->db->write('alter table assetIndex drop column lineage');
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -144,12 +144,14 @@ Returns a WebGUI::SQL::ResultSet object containing the search results with colum
|
|||
|
||||
sub getResultSet {
|
||||
my $self = shift;
|
||||
my $query = "select assetId, title, url, synopsis, ownerUserId, groupIdView, groupIdEdit, creationDate, revisionDate, className ";
|
||||
my $query = "select t1.assetId, t1.title, t1.url, t1.synopsis, t1.ownerUserId, t1.groupIdView, t1.groupIdEdit, t1.creationDate, t1.revisionDate, t1.className ";
|
||||
$query .= " , ".$self->{_score} if ($self->{_score});
|
||||
$query .= " from assetIndex where ";
|
||||
$query .= " from assetIndex as t1, asset as t2 where ";
|
||||
$query .= " t1.assetId=t2.assetId and ";
|
||||
$query .= "isPublic=1 and " if ($self->{_isPublic});
|
||||
$query .= "(".$self->{_where}.")";
|
||||
$query .= " order by score desc " if ($self->{_score});
|
||||
|
||||
my $rs = $self->session->db->prepare($query);
|
||||
$rs->execute($self->{_params});
|
||||
return $rs;
|
||||
|
|
@ -298,7 +300,7 @@ sub search {
|
|||
foreach my $lineage (@{$rules->{lineage}}) {
|
||||
next unless defined $lineage;
|
||||
push(@params, $lineage."%");
|
||||
push(@phrases, "lineage like ?");
|
||||
push(@phrases, "t2.lineage like ?");
|
||||
}
|
||||
push(@clauses, join(" or ", @phrases)) if (scalar(@phrases));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -131,10 +131,10 @@ sub create {
|
|||
#-------------------- added by zxp end
|
||||
|
||||
my $add = $self->session->db->prepare("insert into assetIndex (assetId, title, url, creationDate, revisionDate,
|
||||
ownerUserId, groupIdView, groupIdEdit, lineage, className, synopsis, keywords) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )");
|
||||
ownerUserId, groupIdView, groupIdEdit, className, synopsis, keywords) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
|
||||
$add->execute([$asset->getId, $asset->get("title"), $asset->get("url"), $asset->get("creationDate"),
|
||||
$asset->get("revisionDate"), $asset->get("ownerUserId"), $asset->get("groupIdView"), $asset->get("groupIdEdit"),
|
||||
$asset->get("lineage"), $asset->get("className"), $synopsis, $keywords]);
|
||||
$asset->get("className"), $synopsis, $keywords]);
|
||||
return $self;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
.tabBody {
|
||||
width: auto;
|
||||
padding: 8px 12px 12px 12px;
|
||||
z-index: 500;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
div.tabs {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue