Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion database/inforex-v1.0-changelog.sql
Original file line number Diff line number Diff line change
Expand Up @@ -653,4 +653,9 @@ ALTER TABLE `reports` ADD `deleted` BOOLEAN NOT NULL DEFAULT FALSE AFTER `parent

--changeset czuk:15

UPDATE `report_perspectives` SET `id` = 'annotator_wsd' WHERE `report_perspectives`.`id` = 'annotatorwsd';
UPDATE `report_perspectives` SET `id` = 'annotator_wsd' WHERE `report_perspectives`.`id` = 'annotatorwsd';

--changeset czuk:16

DROP VIEW IF EXISTS `reports_annotations`;
CREATE VIEW `reports_annotations` AS select `ra`.`id` AS `id`,`ra`.`report_id` AS `report_id`,`ra`.`type_id` AS `type_id`,`at`.`name` AS `type`,`at`.`group_id` AS `group`,`ra`.`from` AS `from`,`ra`.`to` AS `to`,`ra`.`text` AS `text`,`ra`.`user_id` AS `user_id`,`ra`.`creation_time` AS `creation_time`,`ra`.`stage` AS `stage`,`ra`.`source` AS `source` from (`inforex`.`reports_annotations_optimized` `ra` left join `inforex`.`annotation_types` `at` on((`at`.`annotation_type_id` = `ra`.`type_id`)));
4 changes: 3 additions & 1 deletion engine/templates/page_corpus_settings.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
</nav>

<div style="margin: 4px">
{include file="$subpage_file"}
{if isset($subpage_file) }
{include file="$subpage_file"}
{/if}
</div>

</div>
Expand Down