Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ems/web')
-rw-r--r--scripts/ems/web/analysis.php5
-rw-r--r--scripts/ems/web/analysis_diff.php4
-rw-r--r--scripts/ems/web/diff.php5
-rw-r--r--scripts/ems/web/hierarchical-segmentation.js4
-rw-r--r--scripts/ems/web/index.php5
-rw-r--r--scripts/ems/web/lib.php5
-rw-r--r--scripts/ems/web/overview.php4
-rwxr-xr-xscripts/ems/web/progress.perl3
-rw-r--r--scripts/ems/web/sgviz.js4
-rw-r--r--scripts/ems/web/sgviz.php6
10 files changed, 45 insertions, 0 deletions
diff --git a/scripts/ems/web/analysis.php b/scripts/ems/web/analysis.php
index 57776dd22..5e5f707f6 100644
--- a/scripts/ems/web/analysis.php
+++ b/scripts/ems/web/analysis.php
@@ -1,5 +1,10 @@
<?php
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
+
# main page frame, triggers the loading of parts
function show_analysis() {
global $task,$user,$setup,$id,$set;
diff --git a/scripts/ems/web/analysis_diff.php b/scripts/ems/web/analysis_diff.php
index 214ae1592..9840de7c2 100644
--- a/scripts/ems/web/analysis_diff.php
+++ b/scripts/ems/web/analysis_diff.php
@@ -1,5 +1,9 @@
<?php
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
function diff_analysis() {
global $task,$user,$setup,$id,$id2,$set;
global $comment,$dir;
diff --git a/scripts/ems/web/diff.php b/scripts/ems/web/diff.php
index f440d3240..c290e7c02 100644
--- a/scripts/ems/web/diff.php
+++ b/scripts/ems/web/diff.php
@@ -1,5 +1,10 @@
<?php
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
+
function diff() {
global $experiment;
$display = $_GET["run"];
diff --git a/scripts/ems/web/hierarchical-segmentation.js b/scripts/ems/web/hierarchical-segmentation.js
index fad5a16d4..7f0df85ff 100644
--- a/scripts/ems/web/hierarchical-segmentation.js
+++ b/scripts/ems/web/hierarchical-segmentation.js
@@ -1,3 +1,7 @@
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
var nodeIn = [];
var nodeOut = [];
var nodeChildren = [];
diff --git a/scripts/ems/web/index.php b/scripts/ems/web/index.php
index 9c918a96a..757c20d72 100644
--- a/scripts/ems/web/index.php
+++ b/scripts/ems/web/index.php
@@ -1,5 +1,10 @@
<?php
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
+
require("lib.php");
require("overview.php");
require("analysis.php");
diff --git a/scripts/ems/web/lib.php b/scripts/ems/web/lib.php
index 68c58860b..df3286ebb 100644
--- a/scripts/ems/web/lib.php
+++ b/scripts/ems/web/lib.php
@@ -1,5 +1,10 @@
<?php
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
+
function load_experiment_info() {
global $dir,$task,$user,$setup;
global $evalset;
diff --git a/scripts/ems/web/overview.php b/scripts/ems/web/overview.php
index 534c7d8c0..c59970b67 100644
--- a/scripts/ems/web/overview.php
+++ b/scripts/ems/web/overview.php
@@ -1,5 +1,9 @@
<?php
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
function setup() {
$setup = file("setup");
diff --git a/scripts/ems/web/progress.perl b/scripts/ems/web/progress.perl
index fa2ce9e8f..f5acfc64f 100755
--- a/scripts/ems/web/progress.perl
+++ b/scripts/ems/web/progress.perl
@@ -1,4 +1,7 @@
#!/usr/bin/env perl
+#
+# This file is part of moses. Its use is licensed under the GNU Lesser General
+# Public License version 2.1 or, at your option, any later version.
use warnings;
use strict;
diff --git a/scripts/ems/web/sgviz.js b/scripts/ems/web/sgviz.js
index 13d45f8c5..3926f9513 100644
--- a/scripts/ems/web/sgviz.js
+++ b/scripts/ems/web/sgviz.js
@@ -1,3 +1,7 @@
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
var xmlns="http://www.w3.org/2000/svg";
var RECOMBINED = 0;
var FROM = 1;
diff --git a/scripts/ems/web/sgviz.php b/scripts/ems/web/sgviz.php
index 9fccadf60..85778caab 100644
--- a/scripts/ems/web/sgviz.php
+++ b/scripts/ems/web/sgviz.php
@@ -1,4 +1,10 @@
<?php
+
+/*
+This file is part of moses. Its use is licensed under the GNU Lesser General
+Public License version 2.1 or, at your option, any later version.
+*/
+
function sgviz($sentence) {
global $setup,$dir,$id,$set;
?><html><head><title>Search Graph Visualization, Sentence <?php $sentence ?></title>