several bug fixes
This commit is contained in:
parent
22d3df0749
commit
decab22c2f
9 changed files with 352 additions and 24 deletions
|
|
@ -967,7 +967,7 @@ while (my ($id, $template, $namespace) = $sth->array) {
|
||||||
} elsif ($namespace eq "USS/Submission") {
|
} elsif ($namespace eq "USS/Submission") {
|
||||||
$newNamespace = "Collaboration/Thread";
|
$newNamespace = "Collaboration/Thread";
|
||||||
if ($template =~ /attachment\.box/ixsg) {
|
if ($template =~ /attachment\.box/ixsg) {
|
||||||
my $box = '<div><a href="<tmpl_var attachment.url>"><img src="<tmpl_var attachment.icon>" border="0"> <tmpl_var attachment.name></a></div>';
|
my $box = '<div><a href="<tmpl_var attachment.url>"><img src="<tmpl_var attachment.icon>" border="0" alt="<tmpl_var attachment.name>"> <tmpl_var attachment.name></a></div>';
|
||||||
$template =~ s/\<tmpl_var\s+attachment\.box\>/$box/ixsg;
|
$template =~ s/\<tmpl_var\s+attachment\.box\>/$box/ixsg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1013,10 +1013,326 @@ while (my ($id, $template, $namespace) = $sth->array) {
|
||||||
$template =~ s/back\.url/collaboration.url/ixsg;
|
$template =~ s/back\.url/collaboration.url/ixsg;
|
||||||
$template =~ s/submissions_loop/post_loop/ixsg;
|
$template =~ s/submissions_loop/post_loop/ixsg;
|
||||||
$template = '<a name="<tmpl_var assetId>"></a> <tmpl_if session.var.adminOn> <p><tmpl_var controls></p> </tmpl_if>'.$template;
|
$template = '<a name="<tmpl_var assetId>"></a> <tmpl_if session.var.adminOn> <p><tmpl_var controls></p> </tmpl_if>'.$template;
|
||||||
|
my $replies = '<a name="<tmpl_var assetId>"></a>
|
||||||
|
<tmpl_if session.var.adminOn>
|
||||||
|
<p><tmpl_var controls></p>
|
||||||
|
</tmpl_if>
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.postBorder {
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.postBorderCurrent {
|
||||||
|
border: 3px dotted black;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.postSubject {
|
||||||
|
border-bottom: 1px solid #cccccc;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.postData {
|
||||||
|
border-bottom: 1px solid #cccccc;
|
||||||
|
font-size: 11px;
|
||||||
|
background-color: #eeeeee;
|
||||||
|
color: black;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.postControls {
|
||||||
|
border-top: 1px solid #cccccc;
|
||||||
|
background-color: #eeeeee;
|
||||||
|
color: black;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.postMessage {
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.currentThread {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
.threadHead {
|
||||||
|
font-weight: bold;
|
||||||
|
border-bottom: 1px solid #cccccc;
|
||||||
|
font-size: 11px;
|
||||||
|
background-color: #eeeeee;
|
||||||
|
color: black;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.threadData {
|
||||||
|
font-size: 11px;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div style="float: left; width: 70%">
|
||||||
|
<h1><tmpl_var replies.label></h1>
|
||||||
|
</div>
|
||||||
|
<div style="width: 30%; float: left; text-align: right;">
|
||||||
|
<script language="JavaScript" type="text/javascript"> <!--
|
||||||
|
function goLayout(){
|
||||||
|
location = document.discussionlayout.layoutSelect.options[document.discussionlayout.layoutSelect.selectedIndex].value
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
<form name="discussionlayout">
|
||||||
|
<select name="layoutSelect" size="1" onChange="goLayout()">
|
||||||
|
<option value="<tmpl_var layout.flat.url>" <tmpl_if layout.isFlat>selected="1"</tmpl_if>><tmpl_var layout.flat.label></option>
|
||||||
|
<option value="<tmpl_var layout.nested.url>" <tmpl_if layout.isNested>selected="1"</tmpl_if>><tmpl_var layout.nested.label></option>
|
||||||
|
<option value="<tmpl_var layout.threaded.url>" <tmpl_if layout.isThreaded>selected="1"</tmpl_if>><tmpl_var layout.threaded.label></option>
|
||||||
|
</select>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div style="clear: both;"></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<tmpl_if layout.isThreaded>
|
||||||
|
<!-- begin threaded layout -->
|
||||||
|
<tmpl_loop post_loop>
|
||||||
|
<tmpl_unless isThreadRoot>
|
||||||
|
<tmpl_if isCurrent>
|
||||||
|
<div class="postBorder">
|
||||||
|
<a name="<tmpl_var assetId>"></a>
|
||||||
|
<div class="postSubject">
|
||||||
|
<tmpl_var title>
|
||||||
|
</div>
|
||||||
|
<div class="postData">
|
||||||
|
<div style="float: left; width: 50%;">
|
||||||
|
<b><tmpl_var user.label>:</b>
|
||||||
|
<tmpl_if user.isVisitor>
|
||||||
|
<tmpl_var username>
|
||||||
|
<tmpl_else>
|
||||||
|
<a href="<tmpl_var userProfile.url>"><tmpl_var username></a>
|
||||||
|
</tmpl_if>
|
||||||
|
<br />
|
||||||
|
<b><tmpl_var date.label>:</b> <tmpl_var dateSubmitted.human><br />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<b><tmpl_var views.label>:</b> <tmpl_var views><br />
|
||||||
|
<b><tmpl_var rating.label>:</b> <tmpl_var rating>
|
||||||
|
<tmpl_unless hasRated>
|
||||||
|
<tmpl_var rate.label> [ <a href="<tmpl_var rate.url.1>">1</a>, <a href="<tmpl_var rate.url.2>">2</a>, <a href="<tmpl_var rate.url.3>">3</a>, <a href="<tmpl_var rate.url.4>">4</a>, <a href="<tmpl_var rate.url.5>">5</a> ]
|
||||||
|
</tmpl_unless>
|
||||||
|
<br />
|
||||||
|
<tmpl_if user.isModerator>
|
||||||
|
<b><tmpl_var status.label>:</b> <tmpl_var status> [ <a href="<tmpl_var approve.url>"><tmpl_var approve.label></a> | <a href="<tmpl_var deny.url>"><tmpl_var deny.label></a> ]<br />
|
||||||
|
<tmpl_else>
|
||||||
|
<tmpl_if user.isPoster>
|
||||||
|
<b><tmpl_var status.label>:</b> <tmpl_var status><br />
|
||||||
|
</tmpl_if>
|
||||||
|
</tmpl_if>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="postMessage">
|
||||||
|
<tmpl_var content>
|
||||||
|
</div>
|
||||||
|
<tmpl_unless isLocked>
|
||||||
|
<div class="postControls">
|
||||||
|
<tmpl_if user.canReply>
|
||||||
|
<a href="<tmpl_var reply.url>">[<tmpl_var reply.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
<tmpl_if user.canEdit>
|
||||||
|
<a href="<tmpl_var edit.url>">[<tmpl_var edit.label>]</a>
|
||||||
|
<a href="<tmpl_var delete.url>">[<tmpl_var delete.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
</div>
|
||||||
|
</tmpl_unless>
|
||||||
|
</div>
|
||||||
|
</tmpl_if>
|
||||||
|
</tmpl_unless>
|
||||||
|
</tmpl_loop>
|
||||||
|
<table style="width: 100%">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td class="threadHead"><tmpl_var subject.label></td>
|
||||||
|
<td class="threadHead"><tmpl_var user.label></td>
|
||||||
|
<td class="threadHead"><tmpl_var date.label></td>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tmpl_loop post_loop>
|
||||||
|
<tmpl_unless isThreadRoot>
|
||||||
|
<tr <tmpl_if isCurrent>class="currentThread"</tmpl_if>>
|
||||||
|
<td class="threadData"><tmpl_loop indent_loop> </tmpl_loop><a href="<tmpl_var url>"><tmpl_var title.short></a></td>
|
||||||
|
<td class="threadData"><tmpl_var username></td>
|
||||||
|
<td class="threadData"><tmpl_var dateSubmitted.human></td>
|
||||||
|
</tr>
|
||||||
|
</tmpl_unless>
|
||||||
|
</tmpl_loop>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!-- end threaded layout -->
|
||||||
|
</tmpl_if>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<tmpl_if layout.isFlat>
|
||||||
|
<!-- begin flat layout -->
|
||||||
|
<tmpl_loop post_loop>
|
||||||
|
<tmpl_unless isThreadRoot>
|
||||||
|
<div class="postBorder<tmpl_if isCurrent>Current</tmpl_if>">
|
||||||
|
<a name="<tmpl_var assetId>"></a>
|
||||||
|
<div class="postSubject">
|
||||||
|
<tmpl_var title>
|
||||||
|
</div>
|
||||||
|
<div class="postData">
|
||||||
|
<div style="float: left; width: 50%">
|
||||||
|
<b><tmpl_var user.label>:</b>
|
||||||
|
<tmpl_if user.isVisitor>
|
||||||
|
<tmpl_var username>
|
||||||
|
<tmpl_else>
|
||||||
|
<a href="<tmpl_var userProfile.url>"><tmpl_var username></a>
|
||||||
|
</tmpl_if>
|
||||||
|
<br />
|
||||||
|
<b><tmpl_var date.label>:</b> <tmpl_var dateSubmitted.human><br />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<b><tmpl_var views.label>:</b> <tmpl_var views><br />
|
||||||
|
<b><tmpl_var rating.label>:</b> <tmpl_var rating>
|
||||||
|
<tmpl_unless hasRated>
|
||||||
|
<tmpl_var rate.label> [ <a href="<tmpl_var rate.url.1>">1</a>, <a href="<tmpl_var rate.url.2>">2</a>, <a href="<tmpl_var rate.url.3>">3</a>, <a href="<tmpl_var rate.url.4>">4</a>, <a href="<tmpl_var rate.url.5>">5</a> ]
|
||||||
|
</tmpl_unless>
|
||||||
|
<br />
|
||||||
|
<tmpl_if user.isModerator>
|
||||||
|
<b><tmpl_var status.label>:</b> <tmpl_var status> [ <a href="<tmpl_var approve.url>"><tmpl_var approve.label></a> | <a href="<tmpl_var deny.url>"><tmpl_var deny.label></a> ]<br />
|
||||||
|
<tmpl_else>
|
||||||
|
<tmpl_if user.isPoster>
|
||||||
|
<b><tmpl_var status.label>:</b> <tmpl_var status><br />
|
||||||
|
</tmpl_if>
|
||||||
|
</tmpl_if>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="postMessage">
|
||||||
|
<tmpl_var content>
|
||||||
|
</div>
|
||||||
|
<tmpl_unless isLocked>
|
||||||
|
<div class="postControls">
|
||||||
|
<tmpl_if user.canReply>
|
||||||
|
<a href="<tmpl_var reply.url>">[<tmpl_var reply.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
<tmpl_if user.canEdit>
|
||||||
|
<a href="<tmpl_var edit.url>">[<tmpl_var edit.label>]</a>
|
||||||
|
<a href="<tmpl_var delete.url>">[<tmpl_var delete.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
</div>
|
||||||
|
</tmpl_unless>
|
||||||
|
</div>
|
||||||
|
</tmpl_unless>
|
||||||
|
</tmpl_loop>
|
||||||
|
<!-- end flat layout -->
|
||||||
|
</tmpl_if>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<tmpl_if layout.isNested>
|
||||||
|
<!-- begin nested layout -->
|
||||||
|
<tmpl_loop post_loop>
|
||||||
|
<tmpl_unless isThreadRoot>
|
||||||
|
<div style="margin-left: <tmpl_var depthX10>px;">
|
||||||
|
<div class="postBorder<tmpl_if isCurrent>Current</tmpl_if>">
|
||||||
|
<a name="<tmpl_var assetId>"></a>
|
||||||
|
<div class="postSubject">
|
||||||
|
<tmpl_var title>
|
||||||
|
</div>
|
||||||
|
<div class="postData">
|
||||||
|
<div style="float: left; width: 50%">
|
||||||
|
<b><tmpl_var user.label>:</b>
|
||||||
|
<tmpl_if user.isVisitor>
|
||||||
|
<tmpl_var username>
|
||||||
|
<tmpl_else>
|
||||||
|
<a href="<tmpl_var userProfile.url>"><tmpl_var username></a>
|
||||||
|
</tmpl_if>
|
||||||
|
<br />
|
||||||
|
<b><tmpl_var date.label>:</b> <tmpl_var dateSubmitted.human><br />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<b><tmpl_var views.label>:</b> <tmpl_var views><br />
|
||||||
|
<b><tmpl_var rating.label>:</b> <tmpl_var rating>
|
||||||
|
<tmpl_unless hasRated>
|
||||||
|
<tmpl_var rate.label> [ <a href="<tmpl_var rate.url.1>">1</a>, <a href="<tmpl_var rate.url.2>">2</a>, <a href="<tmpl_var rate.url.3>">3</a>, <a href="<tmpl_var rate.url.4>">4</a>, <a href="<tmpl_var rate.url.5>">5</a> ]
|
||||||
|
</tmpl_unless>
|
||||||
|
<br />
|
||||||
|
<tmpl_if user.isModerator>
|
||||||
|
<b><tmpl_var status.label>:</b> <tmpl_var status> [ <a href="<tmpl_var approve.url>"><tmpl_var approve.label></a> | <a href="<tmpl_var deny.url>"><tmpl_var deny.label></a> ]<br />
|
||||||
|
<tmpl_else>
|
||||||
|
<tmpl_if user.isPoster>
|
||||||
|
<b><tmpl_var status.label>:</b> <tmpl_var status><br />
|
||||||
|
</tmpl_if>
|
||||||
|
</tmpl_if>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="postMessage">
|
||||||
|
<tmpl_var content>
|
||||||
|
</div>
|
||||||
|
<tmpl_unless isLocked>
|
||||||
|
<div class="postControls">
|
||||||
|
<tmpl_if user.canReply>
|
||||||
|
<a href="<tmpl_var reply.url>">[<tmpl_var reply.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
<tmpl_if user.canEdit>
|
||||||
|
<a href="<tmpl_var edit.url>">[<tmpl_var edit.label>]</a>
|
||||||
|
<a href="<tmpl_var delete.url>">[<tmpl_var delete.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
</div>
|
||||||
|
</tmpl_unless>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</tmpl_unless>
|
||||||
|
</tmpl_loop>
|
||||||
|
<!-- end nested layout -->
|
||||||
|
</tmpl_if>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<tmpl_if pagination.pageCount.isMultiple>
|
||||||
|
<div class="pagination" style="margin-top: 20px;">
|
||||||
|
[ <tmpl_var pagination.previousPage> | <tmpl_var pagination.pageList.upTo10> | <tmpl_var pagination.nextPage> ]
|
||||||
|
</div>
|
||||||
|
</tmpl_if>
|
||||||
|
|
||||||
|
|
||||||
|
<div style="margin-top: 20px;">
|
||||||
|
<tmpl_if user.isModerator>
|
||||||
|
<tmpl_if isSticky>
|
||||||
|
<a href="<tmpl_var unstick.url>">[<tmpl_var unstick.label>]</a>
|
||||||
|
<tmpl_else>
|
||||||
|
<a href="<tmpl_var stick.url>">[<tmpl_var stick.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
<tmpl_if isLocked>
|
||||||
|
<a href="<tmpl_var unlock.url>">[<tmpl_var unlock.label>]</a>
|
||||||
|
<tmpl_else>
|
||||||
|
<a href="<tmpl_var lock.url>">[<tmpl_var lock.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
</tmpl_if>
|
||||||
|
<tmpl_unless user.isVisitor>
|
||||||
|
<tmpl_if user.isSubscribed>
|
||||||
|
<a href="<tmpl_var unsubscribe.url>">[<tmpl_var unsubscribe.label>]</a>
|
||||||
|
<tmpl_else>
|
||||||
|
<a href="<tmpl_var subscribe.url>">[<tmpl_var subscribe.label>]</a>
|
||||||
|
</tmpl_if>
|
||||||
|
</tmpl_unless>
|
||||||
|
</div>';
|
||||||
|
$template =~ s/<tmpl_var\s+replies>/$replies/ixsg;
|
||||||
WebGUI::SQL->write("update template set template=".quote($template).", namespace=".quote($newNamespace)." where templateId=".quote($id)." and namespace=".quote($namespace));
|
WebGUI::SQL->write("update template set template=".quote($template).", namespace=".quote($newNamespace)." where templateId=".quote($id)." and namespace=".quote($namespace));
|
||||||
}
|
}
|
||||||
$sth->finish;
|
$sth->finish;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
print "\tMigrating EventsCalendar templates\n" unless ($quiet);
|
print "\tMigrating EventsCalendar templates\n" unless ($quiet);
|
||||||
my $sth = WebGUI::SQL->read("select templateId,template from template where namespace = 'EventsCalendar'");
|
my $sth = WebGUI::SQL->read("select templateId,template from template where namespace = 'EventsCalendar'");
|
||||||
while (my ($id, $template) = $sth->array) {
|
while (my ($id, $template) = $sth->array) {
|
||||||
|
|
@ -1030,6 +1346,8 @@ while (my ($id, $template) = $sth->array) {
|
||||||
$sth->finish;
|
$sth->finish;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
print "\tConverting template system to asset tree\n" unless ($quiet);
|
print "\tConverting template system to asset tree\n" unless ($quiet);
|
||||||
WebGUI::SQL->write("update template set namespace='Layout' where namespace='page'");
|
WebGUI::SQL->write("update template set namespace='Layout' where namespace='page'");
|
||||||
WebGUI::SQL->write("alter table template add column assetId varchar(22) not null");
|
WebGUI::SQL->write("alter table template add column assetId varchar(22) not null");
|
||||||
|
|
@ -1089,7 +1407,7 @@ WebGUI::SQL->write("alter table template drop column name");
|
||||||
WebGUI::SQL->write("delete from template where assetId is null or assetId = ''"); # protect ourselves from crap
|
WebGUI::SQL->write("delete from template where assetId is null or assetId = ''"); # protect ourselves from crap
|
||||||
WebGUI::SQL->write("alter table template add primary key (assetId)");
|
WebGUI::SQL->write("alter table template add primary key (assetId)");
|
||||||
my @wobjectTypes = qw(Article Poll Survey WSClient DataForm Layout EventsCalendar Navigation HttpProxy IndexedSearch MessageBoard Product SQLReport SyndicatedContent Shortcut);
|
my @wobjectTypes = qw(Article Poll Survey WSClient DataForm Layout EventsCalendar Navigation HttpProxy IndexedSearch MessageBoard Product SQLReport SyndicatedContent Shortcut);
|
||||||
my @allWobjectTypes = (@wobjectTypes,@otherWobjects);
|
my @allWobjectTypes = (@wobjectTypes,@otherWobjects,'Folder');
|
||||||
print "\t\tMigrating wobject templates to new IDs\n" unless ($quiet);
|
print "\t\tMigrating wobject templates to new IDs\n" unless ($quiet);
|
||||||
foreach my $type (@allWobjectTypes) {
|
foreach my $type (@allWobjectTypes) {
|
||||||
print "\t\t\t$type\n" unless ($quiet);
|
print "\t\t\t$type\n" unless ($quiet);
|
||||||
|
|
@ -1532,11 +1850,11 @@ sub walkTree {
|
||||||
WebGUI::SQL->write("update wobject set namespace='Navigation' where assetId=".quote($wobjectId));
|
WebGUI::SQL->write("update wobject set namespace='Navigation' where assetId=".quote($wobjectId));
|
||||||
} elsif ($wobject->{namespace} eq "FileManager") {
|
} elsif ($wobject->{namespace} eq "FileManager") {
|
||||||
print "\t\t\tConverting File Manager ".$wobject->{wobjectId}." into File Folder\n" unless ($quiet);
|
print "\t\t\tConverting File Manager ".$wobject->{wobjectId}." into File Folder\n" unless ($quiet);
|
||||||
WebGUI::SQL->write("update asset set className='WebGUI::Asset::Folder' where assetId=".quote($wobjectId));
|
WebGUI::SQL->write("update asset set className='WebGUI::Asset::Wobject::Folder' where assetId=".quote($wobjectId));
|
||||||
WebGUI::SQL->write("insert into Folder (assetId,templateId) values (".quote($wobjectId).", '15')");
|
WebGUI::SQL->write("insert into Folder (assetId,templateId) values (".quote($wobjectId).", '15')");
|
||||||
WebGUI::SQL->write("update wobject set namespace='Folder' where wobjectId=".quote($wobject->{wobjectId}));
|
WebGUI::SQL->write("update wobject set namespace='Folder' where wobjectId=".quote($wobject->{wobjectId}));
|
||||||
print "\t\t\tMigrating attachments for File Manager ".$wobject->{wobjectId}."\n" unless ($quiet);
|
print "\t\t\tMigrating attachments for File Manager ".$wobject->{wobjectId}."\n" unless ($quiet);
|
||||||
my $sth = WebGUI::SQL->read("select * from FileManager_file where wobjectId=".quote($wobjectId)." order by sequenceNumber");
|
my $sth = WebGUI::SQL->read("select * from FileManager_file where wobjectId=".quote($wobject->{wobjectId})." order by sequenceNumber");
|
||||||
my $rank = 1;
|
my $rank = 1;
|
||||||
while (my $data = $sth->hashRef) {
|
while (my $data = $sth->hashRef) {
|
||||||
foreach my $field ("downloadFile","alternateVersion1","alternateVersion2") {
|
foreach my $field ("downloadFile","alternateVersion1","alternateVersion2") {
|
||||||
|
|
@ -1559,7 +1877,7 @@ sub walkTree {
|
||||||
WebGUI::SQL->write("insert into asset (assetId, parentId, lineage, className, state, title, menuTitle,
|
WebGUI::SQL->write("insert into asset (assetId, parentId, lineage, className, state, title, menuTitle,
|
||||||
url, startDate, endDate, isHidden, ownerUserId, groupIdView, groupIdEdit, synopsis, assetSize
|
url, startDate, endDate, isHidden, ownerUserId, groupIdView, groupIdEdit, synopsis, assetSize
|
||||||
) values (".
|
) values (".
|
||||||
quote($newId).", ".quote($wobjectId).", ".quote($wobjectLineage.sprintf("%06d",1)).",
|
quote($newId).", ".quote($wobjectId).", ".quote($wobjectLineage.sprintf("%06d",$rank)).",
|
||||||
'".$class."','published',".quote($data->{fileTitle}).", ".
|
'".$class."','published',".quote($data->{fileTitle}).", ".
|
||||||
quote($data->{fileTitle}).", ".quote(fixUrl($newId,$wobjectUrl.'/'.$data->{$field})).",
|
quote($data->{fileTitle}).", ".quote(fixUrl($newId,$wobjectUrl.'/'.$data->{$field})).",
|
||||||
".quote($wobject->{startDate}).", ".quote($wobject->{endDate}).", 1, ".quote($ownerId).",
|
".quote($wobject->{startDate}).", ".quote($wobject->{endDate}).", 1, ".quote($ownerId).",
|
||||||
|
|
@ -1669,6 +1987,14 @@ sub walkTree {
|
||||||
lineage=>$threadLineage,
|
lineage=>$threadLineage,
|
||||||
isHidden => 1
|
isHidden => 1
|
||||||
});
|
});
|
||||||
|
my $storageId;
|
||||||
|
if ($submission->{image}) {
|
||||||
|
$storageId = copyFile($submission->{image},$wobject->{wobjectId}.$session{os}{slash}.$submission->{USS_submissionId});
|
||||||
|
copyFile('thumb-'.$submission->{image},$wobject->{wobjectId}.$session{os}{slash}.$submission->{USS_submissionId},$storageId);
|
||||||
|
}
|
||||||
|
if ($submission->{attachment}) {
|
||||||
|
$storageId = copyFile($submission->{attachment},$wobject->{wobjectId}.$session{os}{slash}.$submission->{USS_submissionId},$storageId);
|
||||||
|
}
|
||||||
WebGUI::SQL->setRow("Post","assetId",{
|
WebGUI::SQL->setRow("Post","assetId",{
|
||||||
assetId=>$id,
|
assetId=>$id,
|
||||||
threadId=>$id,
|
threadId=>$id,
|
||||||
|
|
@ -1684,6 +2010,7 @@ sub walkTree {
|
||||||
userDefined3=>$submission->{userDefined3},
|
userDefined3=>$submission->{userDefined3},
|
||||||
userDefined4=>$submission->{userDefined4},
|
userDefined4=>$submission->{userDefined4},
|
||||||
userDefined5=>$submission->{userDefined5},
|
userDefined5=>$submission->{userDefined5},
|
||||||
|
storageId=>$storageId,
|
||||||
rating=>0
|
rating=>0
|
||||||
},undef,$id);
|
},undef,$id);
|
||||||
my $threadSubscriptionGroup = WebGUI::Group->new("new");
|
my $threadSubscriptionGroup = WebGUI::Group->new("new");
|
||||||
|
|
@ -1740,13 +2067,6 @@ sub walkTree {
|
||||||
rating=>$post->{rating}
|
rating=>$post->{rating}
|
||||||
},undef,$postId);
|
},undef,$postId);
|
||||||
$postRank++;
|
$postRank++;
|
||||||
if ($submission->{image}) {
|
|
||||||
my $storageId = copyFile($submission->{image},$wobject->{wobjectId}.$session{os}{slash}.$submission->{USS_submissionId});
|
|
||||||
copyFile('thumb-'.$submission->{image},$wobject->{wobjectId}.$session{os}{slash}.$submission->{USS_submissionId},$storageId);
|
|
||||||
}
|
|
||||||
if ($submission->{attachment}) {
|
|
||||||
my $storageId = copyFile($submission->{attachment},$wobject->{wobjectId}.$session{os}{slash}.$submission->{USS_submissionId});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
$posts->finish;
|
$posts->finish;
|
||||||
WebGUI::SQL->setRow("Thread","assetId",{
|
WebGUI::SQL->setRow("Thread","assetId",{
|
||||||
|
|
|
||||||
|
|
@ -444,7 +444,9 @@ Completely remove an asset from existence.
|
||||||
|
|
||||||
sub DESTROY {
|
sub DESTROY {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
$self->{_parent}->DESTROY if (exists $self->{_parent});
|
# something bad happens when the following is enabled, not sure why
|
||||||
|
# must check this out later
|
||||||
|
#$self->{_parent}->DESTROY if (exists $self->{_parent});
|
||||||
$self->{_firstChild}->DESTROY if (exists $self->{_firstChild});
|
$self->{_firstChild}->DESTROY if (exists $self->{_firstChild});
|
||||||
$self->{_lastChild}->DESTROY if (exists $self->{_lastChild});
|
$self->{_lastChild}->DESTROY if (exists $self->{_lastChild});
|
||||||
$self = undef;
|
$self = undef;
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ sub definition {
|
||||||
my $class = shift;
|
my $class = shift;
|
||||||
my $definition = shift;
|
my $definition = shift;
|
||||||
push(@{$definition}, {
|
push(@{$definition}, {
|
||||||
tableName=>'EventsCalendar_Event',
|
tableName=>'EventsCalendar_event',
|
||||||
className=>'WebGUI::Asset::Event',
|
className=>'WebGUI::Asset::Event',
|
||||||
properties=>{
|
properties=>{
|
||||||
description => {
|
description => {
|
||||||
|
|
@ -392,7 +392,7 @@ sub www_deleteEventConfirm {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
return WebGUI::Privilege::insufficient() unless ($self->canEdit);
|
return WebGUI::Privilege::insufficient() unless ($self->canEdit);
|
||||||
if ($session{form}{rid} ne "") {
|
if ($session{form}{rid} ne "") {
|
||||||
my $where = "EventsCalendar_Event.EventsCalendar_recurringId=".quote($session{form}{rid});
|
my $where = "EventsCalendar_event.EventsCalendar_recurringId=".quote($session{form}{rid});
|
||||||
my $series = $self->getParent->getLineage(["descendants"],{returnObjects=>1,
|
my $series = $self->getParent->getLineage(["descendants"],{returnObjects=>1,
|
||||||
joinClass=>"WebGUI::Asset::Event",whereClause=>$where});
|
joinClass=>"WebGUI::Asset::Event",whereClause=>$where});
|
||||||
foreach my $trashedEvent (@{$series}) {
|
foreach my $trashedEvent (@{$series}) {
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,6 @@ sub definition {
|
||||||
sub DESTROY {
|
sub DESTROY {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
$self->{_thread}->DESTROY if (exists $self->{_thread});
|
$self->{_thread}->DESTROY if (exists $self->{_thread});
|
||||||
$self->{_storageLocation}->DESTROY if (exists $self->{_storageLocation});
|
|
||||||
$self->SUPER::DESTROY;
|
$self->SUPER::DESTROY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -186,6 +186,7 @@ sub getNextThread {
|
||||||
order by ".$self->getParent->getValue("sortBy")." asc
|
order by ".$self->getParent->getValue("sortBy")." asc
|
||||||
",WebGUI::SQL->getSlave)
|
",WebGUI::SQL->getSlave)
|
||||||
);
|
);
|
||||||
|
delete $self->{_next} unless ($self->{_next}->{_properties}{className} =~ /Thread/);
|
||||||
};
|
};
|
||||||
return $self->{_next};
|
return $self->{_next};
|
||||||
}
|
}
|
||||||
|
|
@ -218,6 +219,7 @@ sub getPreviousThread {
|
||||||
)
|
)
|
||||||
order by ".$self->getParent->getValue("sortBy")." desc ",WebGUI::SQL->getSlave)
|
order by ".$self->getParent->getValue("sortBy")." desc ",WebGUI::SQL->getSlave)
|
||||||
);
|
);
|
||||||
|
delete $self->{_previous} unless ($self->{_previous}->{_properties}{className} =~ /Thread/);
|
||||||
};
|
};
|
||||||
return $self->{_previous};
|
return $self->{_previous};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -217,7 +217,6 @@ sub view {
|
||||||
|
|
||||||
|
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
return WebGUI::Privilege::noAccess() unless $self->canView;
|
|
||||||
#define default view month range. Note that this could be different from
|
#define default view month range. Note that this could be different from
|
||||||
#the range a user is allowed to view - set by the events calendar limitations.
|
#the range a user is allowed to view - set by the events calendar limitations.
|
||||||
my $monthRangeLength = int($self->getValue("paginateAfter"));
|
my $monthRangeLength = int($self->getValue("paginateAfter"));
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,7 @@ sub view {
|
||||||
push(@{$vars{"position".$i."_loop"}},{
|
push(@{$vars{"position".$i."_loop"}},{
|
||||||
id=>$child->getId,
|
id=>$child->getId,
|
||||||
content=>$child->view
|
content=>$child->view
|
||||||
});
|
}) if $child->canView;
|
||||||
push(@found, $child->getId);
|
push(@found, $child->getId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -169,7 +169,7 @@ sub view {
|
||||||
push(@{$vars{"position1_loop"}},{
|
push(@{$vars{"position1_loop"}},{
|
||||||
id=>$child->getId,
|
id=>$child->getId,
|
||||||
content=>$child->view
|
content=>$child->view
|
||||||
});
|
}) if $child->canView;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$vars{showAdmin} = ($session{var}{adminOn} && $self->canEdit);
|
$vars{showAdmin} = ($session{var}{adminOn} && $self->canEdit);
|
||||||
|
|
|
||||||
|
|
@ -272,19 +272,19 @@ sub view {
|
||||||
my $skip = 0;
|
my $skip = 0;
|
||||||
my $pageLineage = $asset->get("lineage");
|
my $pageLineage = $asset->get("lineage");
|
||||||
foreach my $lineage (@linesToSkip) {
|
foreach my $lineage (@linesToSkip) {
|
||||||
$skip = 1 if ($lineage =~ m/^$pageLineage/);
|
$skip = 1 if ($pageLineage =~ m/^$lineage/);
|
||||||
}
|
}
|
||||||
next if ($skip);
|
next if ($skip);
|
||||||
if ($asset->get("isHidden") && !$self->get("showHiddenPages")) {
|
if ($asset->get("isHidden") && !$self->get("showHiddenPages")) {
|
||||||
push (@linesToSkip,$asset->getId);
|
push (@linesToSkip,$asset->get("lineage")) unless ($asset->get("lineage") eq "000001");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
if ($asset->get("isSystem") && !$self->get("showSystemPages")) {
|
if ($asset->get("isSystem") && !$self->get("showSystemPages")) {
|
||||||
push (@linesToSkip,$asset->getId);
|
push (@linesToSkip,$asset->get("lineage")) unless ($asset->get("lineage") eq "000001");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
unless ($self->get("showUnprivilegedPages") || $asset->canView) {
|
unless ($self->get("showUnprivilegedPages") || $asset->canView) {
|
||||||
push (@linesToSkip,$asset->getId);
|
push (@linesToSkip,$asset->get("lineage")) unless ($asset->get("lineage") eq "000001");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
my $pageData = {};
|
my $pageData = {};
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,13 @@ sub process {
|
||||||
}
|
}
|
||||||
$var{'head.tags'} .= generateAdditionalHeadTags();
|
$var{'head.tags'} .= generateAdditionalHeadTags();
|
||||||
$var{'head.tags'} .= "\n<!-- macro head tags -->\n";
|
$var{'head.tags'} .= "\n<!-- macro head tags -->\n";
|
||||||
my $output = WebGUI::Asset::Template->new($templateId)->process(\%var);
|
my $style = WebGUI::Asset::Template->new($templateId);
|
||||||
|
my $output;
|
||||||
|
if (defined $style) {
|
||||||
|
$output = $style->process(\%var);
|
||||||
|
} else {
|
||||||
|
$output = "WebGUI was unable to instanciate your style template.".$var{'body.content'};
|
||||||
|
}
|
||||||
$output = WebGUI::Macro::process($output);
|
$output = WebGUI::Macro::process($output);
|
||||||
my $macroHeadTags = generateAdditionalHeadTags();
|
my $macroHeadTags = generateAdditionalHeadTags();
|
||||||
$macroHeadTags = WebGUI::Macro::process($macroHeadTags);
|
$macroHeadTags = WebGUI::Macro::process($macroHeadTags);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue