$kiriwrite_presmodule->addlinebreak();
$kiriwrite_presmodule->addsubmit($kiriwrite_lang->{pages}->{editpagebutton});
$kiriwrite_presmodule->addtext(" | ");
- $kiriwrite_presmodule->addsubmit($kiriwrite_lang->{common}->{clearvalues});
+ $kiriwrite_presmodule->addreset($kiriwrite_lang->{common}->{restorecurrent});
$kiriwrite_presmodule->addtext(" | ");
$kiriwrite_presmodule->addlink($kiriwrite_env{"script_filename"} . "?mode=page&action=view&database=" . $database, { Text => kiriwrite_language($kiriwrite_lang->{pages}->{returnpagelist}, $database_name) } );
$kiriwrite_presmodule->addlinebreak();
$kiriwrite_presmodule->addlinebreak();
- # If the filters database exists then get the list of filters,
- # otherwise write a message saying that the filters database
+ # If the filter database exists then get the list of filters,
+ # otherwise write a message saying that the filter database
# does not exist and will be created when a filter is added.
if ($filtersdb_notexist eq 0){
if ($kiriwrite_dbmodule->geterror eq "FilterDatabaseError"){
- # A database error has occured with the filters database.
+ # A database error has occured with the filter database.
kiriwrite_error("filtersdbdatabaseerror", $kiriwrite_dbmodule->geterror(1));
}
- # Check if there are filters in the filters database and
+ # Check if there are filters in the filter database and
# write a message if there isn't.
if ($filter_count eq 0){
- # There are no filters in the filters database.
+ # There are no filters in the filter database.
$filterswarning = $kiriwrite_lang->{filter}->{nofiltersavailable};
if ($filtersdb_notexist eq 1){
- # The filters database doesn't exist so write
+ # The filter database doesn't exist so write
# a message.
$filterswarning = $kiriwrite_lang->{filter}->{filterdatabasedoesnotexist};
} else {
- # The filters database exists so write out the
+ # The filter database exists so write out the
# list of filters.
if ($blankfindfilter eq 1){
}
- # Connect to the filters database.
+ # Connect to the filter database.
$kiriwrite_dbmodule->connectfilter(1);
$kiriwrite_dbmodule->disconnect();
# Write out a message saying that the filter was added to the
- # filters database.
+ # filter database.
$kiriwrite_presmodule->addtext($kiriwrite_lang->{filter}->{filteradded}, { Style => "pageheader" });
$kiriwrite_presmodule->addlinebreak();
# newfilterpriority, newfilternotes, confirm); #
# #
# filterid Specifies the filter number (line number) in the #
-# filters database. #
+# filter database. #
# newfilterfind Specifies the new word to find. #
# newfilterreplace Specifies the new word to replace. #
# newfilterpriority Specifies the new filter priority. #
}
- # Connect to the filters database.
+ # Connect to the filter database.
$kiriwrite_dbmodule->connectfilter();
} elsif ($kiriwrite_dbmodule->geterror eq "FilterDatabaseError"){
- # A database error has occured while using the filters database
+ # A database error has occured while using the filter database
# so return an error.
kiriwrite_error("filtersdbdatabaseerror", $kiriwrite_dbmodule->geterror(1));
}
- # Connect to the filters database.
+ # Connect to the filter database.
$kiriwrite_dbmodule->connectfilter();
$kiriwrite_dbmodule->disconnect();
# Write a message saying that the filter was deleted
- # from the filters database.
+ # from the filter database.
$kiriwrite_presmodule->addtext($kiriwrite_lang->{filter}->{deletedfilter}, { Style => "pageheader" });
$kiriwrite_presmodule->addlinebreak();
}
- # Load the filters database (if the filters skip
+ # Load the filter database (if the filters skip
# value isn't set to 1).
if ($filters_skip eq 0){
if ($kiriwrite_dbmodule->geterror eq "FilterDatabaseError"){
- # A database error has occured with the filters database.
+ # A database error has occured with the filter database.
$kiriwrite_presmodule->addtext($error_prefix . kiriwrite_language($kiriwrite_lang->{compile}->{filterdatabaseerror}, $kiriwrite_dbmodule->geterror(1)));
$kiriwrite_presmodule->addlinebreak();
# Place each template file into the hash.
- $templatefiles{$template_info{"TemplateFilename"}}{template} = $template_info{"TemplateFilename"};
+ $templatefiles{$template_info{"TemplateFilename"}}{template} = $template_info{"TemplateLayout"};
$templatefiles{$template_info{"TemplateFilename"}}{valid} = 1;
}
} else {
- if ($page_content){
-
- $page_final = $templatefiles{$page_template}{template};
-
- if (!$page_final){
- $page_final = "";
- }
-
- $page_final =~ s/<kiriwrite:pagecontent>/$page_content/g;
+ $page_final = $templatefiles{$page_template}{template};
+ if (!$page_final){
+ $page_final = "";
}
+ $page_final =~ s/<kiriwrite:pagecontent>/$page_content/g;
+
}
# Create the combined page title (if needed).
if ($http_query_action eq "add"){
# The action the user requested is to add a filter to the
- # filters database.
+ # filter database.
# Check if there is a value in confirm and if there is
# then pass it on to the new find and replace words
# There is a value in http_query_confirm, so pass on the
# new find and replace words so that they can be added
- # to the filters database.
+ # to the filter database.
my $http_query_findwords = $query->param('findword');
my $http_query_replacewords = $query->param('replaceword');
} elsif ($http_query_action eq "edit"){
# The action the user requested is to edit an filter from
- # the filters database.
+ # the filter database.
my $http_query_number = $query->param('filter');
my $http_query_confirm = $query->param('confirm');
if ($http_query_confirm){
# There is a value in http_query_confirm, so pass on the
- # new find and replace words so that the filters database
+ # new find and replace words so that the filter database
# can be edited.
my $http_query_findwords = $query->param('filterfind');
} elsif ($http_query_action eq "delete"){
# The action the user requested is to delete an filter
- # from the filters database.
+ # from the filter database.
my $http_query_number = $query->param('filter');
my $http_query_confirm = $query->param('confirm');
<returnfilterlist>Return to the filter list.</returnfilterlist>
<viewfilters>View Filters</viewfilters>
- <nofiltersavailable>There are no filters available in the filters database. To add a filter, click on the Add Filter link.</nofiltersavailable>
- <filterdatabasedoesnotexist>The filters database does not exist and will be created when a filter is added.</filterdatabasedoesnotexist>
+ <nofiltersavailable>There are no filters available in the filter database. To add a filter, click on the Add Filter link.</nofiltersavailable>
+ <filterdatabasedoesnotexist>The filter database does not exist and will be created when a filter is added.</filterdatabasedoesnotexist>
<warningtitle>Warning: </warningtitle>
<blankfindfilters>One (or more) of your filters has a blank find filter and needs to be fixed.</blankfindfilters>
<blankfindsetting>Blank Find Setting</blankfindsetting>
<warningprefix>[Warning] </warningprefix>
<compiledatabases>Compile Databases</compiledatabases>
- <filterdatabasemissing>The filters database does not exist. No filters will be used.</filterdatabasemissing>
- <filterdatabasepermissions>The filters database has invalid permissions set. No filters will be used.</filterdatabasepermissions>
+ <filterdatabasemissing>The filter database does not exist. No filters will be used.</filterdatabasemissing>
+ <filterdatabasepermissions>The filter database has invalid permissions set. No filters will be used.</filterdatabasepermissions>
<filterdatabaseerror>A filter database error has occurred: %s. No filters will be used.</filterdatabaseerror>
- <findfilterblank>One (or more) of the find filters from the filters database is blank.</findfilterblank>
- <finishfilterdatabase>Finished processing the filters database.</finishfilterdatabase>
- <templatedatabasemissing>The templates database does not exist. Pages will be compiled without templates being used.</templatedatabasemissing>
- <templatedatabasepermissions>The templates database has invalid permissions set. Pages will be compiled without templates being used.</templatedatabasepermissions>
+ <findfilterblank>One (or more) of the find filters from the filter database is blank.</findfilterblank>
+ <finishfilterdatabase>Finished processing the filter database.</finishfilterdatabase>
+ <templatedatabasemissing>The template database does not exist. Pages will be compiled without templates being used.</templatedatabasemissing>
+ <templatedatabasepermissions>The template database has invalid permissions set. Pages will be compiled without templates being used.</templatedatabasepermissions>
<templatedatabaseerror>A database error occurred while trying to get the list of templates: %s</templatedatabaseerror>
- <finishtemplatedatabase>Finished processing the templates database.</finishtemplatedatabase>
+ <finishtemplatedatabase>Finished processing the template database.</finishtemplatedatabase>
<databasefilenameinvalidcharacters>The database with the filename '%s' has invalid characters. Skipping this database...</databasefilenameinvalidcharacters>
<databasefilenametoolong>The database with the filename '%s' is too long. Skipping this database...</databasefilenametoolong>
<databasemissing>The database with the filename '%s' does not exist. Skipping this database...</databasemissing>
<dbdirectoryblank>The database directory name given was blank.</dbdirectoryblank>
<dbdirectoryinvalid>The database directory name given was invalid.</dbdirectoryinvalid>
<dbmodulemissing>The database module with the filename given is missing.</dbmodulemissing>
- <filtersdatabasenotcreated>The filters database was not created because of the invalid permissions set.</filtersdatabasenotcreated>
- <filtersdbdatabaseerror>A database error has occurred while using the filters database.</filtersdbdatabaseerror>
- <filtersdbpermissions>The filters database has invalid permission settings.</filtersdbpermissions>
- <filtersdbmissing>The filters database is missing.</filtersdbmissing>
+ <filtersdatabasenotcreated>The filter database was not created because of the invalid permissions set.</filtersdatabasenotcreated>
+ <filtersdbdatabaseerror>A database error has occurred while using the filter database.</filtersdbdatabaseerror>
+ <filtersdbpermissions>The filter database has invalid permission settings.</filtersdbpermissions>
+ <filtersdbmissing>The filter database is missing.</filtersdbmissing>
<filteridblank>The filter identification number given is blank.</filteridblank>
<filterdoesnotexist>The filter with the identification number given does not exist.</filterdoesnotexist>
<filteridinvalid>The filter identification number given is invalid.</filteridinvalid>
<templatenametoolong>The template name given is too long</templatenametoolong>
<templatedescriptiontoolong>The template description given is too long</templatedescriptiontoolong>
<templatedatabasemissing>The template database is missing.</templatedatabasemissing>
- <templatedoesnotexist>The template filename given does not exist in the templates database.</templatedoesnotexist>
+ <templatedoesnotexist>The template filename given does not exist in the template database.</templatedoesnotexist>
<templatefilenameblank>The template filename given was blank.</templatefilenameblank>
</error>