Skip to content
Snippets Groups Projects
F_openannis_wide.php 17.74 KiB
<div id="main">
<!--MAIN PART-->
<div id="mainpartwrapper3">
  <div id="mainpart4">
	<div id="content-menu" style="overflow:auto;">				

<?php 

function process_post(){
	$lefeat = array('all_gr' => 'EA_category=/G_.*/','grammar1' => 'G_Wo_type="womaincl"','grammar2' => 'G_Wo_type="wosubcl"','grammar3' => 'G_Neg_g_neg_type="neggen"','grammar4' => 'G_Neg_g_neg_type="negdoub"','grammar5' => 'EA_category=/G_Valency/','grammar6' => 'EA_category=/G_Agr/','grammar7' => 'G_Refl_type="pronrefl"','grammar8' => 'G_Refl_type="pronreflposs"','grammar9' => 'EA_category=/G_Inflect_Inexist/','grammar10' => 'G_Inflect_Inexist_type="adj"','grammar11' => 'G_Inflect_Inexist_type="noun"','grammar12' => 'G_Inflect_Inexist_type="verb"','grammar13' => 'EA_category=/G_Morphol_Wrong/','grammar14' => 'G_Morphol_Wrong_type="case"','grammar15' => 'G_Morphol_Wrong_type="numb"','grammar16' => 'G_Morphol_Wrong_type="gend"','grammar17' => 'G_Morphol_Wrong_type="ambig"','grammar18' => 'EA_category=/G_Verb/','grammar19' => 'G_Verb_type="tns"','grammar20' => 'G_Verb_type="vc"','grammar21' => 'G_Verb_type="md"','grammar22' => 'G_Verb_type="asp"','grammar23' => 'EA_category=/G_Verb_compl/','grammar24' => 'EA_category=/G_Verb_main/','grammar25' => 'EA_category=/G_Prep/','grammar26' => 'EA_category=/G_Art/','grammar27' => 'EA_category=/G_Conj/','grammar28' => 'EA_category=/G_Clit/','grammar29' => 'EA_category=/G_Pos/','all_or' => 'EA_category=/O_.*/','orthog1' => 'O_Graph_type="graphgen"','orthog2' => 'O_Graph_type="trans"','orthog3' => 'O_Graph_type="act"','orthog4' => 'EA_category=/O_Capit/','orthog5' => 'EA_category=/O_Wordbd/','orthog6' => 'EA_category=/O_Abbrev/','orthog7' => 'EA_category=/O_Punct/','orthog8' => 'EA_category=/O_Apostr/','all_ge' => 'EA_category=/H_.*/','general1' => 'EA_category=/H_Intelltxt/','general2' => 'EA_category=/H_Intellts/','all_vo' => 'EA_category=/V_.*/','voc1' => 'V_FS_type="colloc"','voc2' => 'V_FS_type="colloc_compeq"','voc3' => 'V_FS_type="idiom"','voc4' => 'V_FS_type="commphras"','voc5' => 'EA_category=/V_Sequence_lexgrammer_inc/','voc6' => 'EA_category=/V_form_word_fs_nonexist/','voc7' => 'EA_category=/V_form_FS_incompr/','voc8' => 'EA_category=/V_semdenot_word_fs/','voc9' => 'EA_category=/V_semconn_at_word_fs/','voc10' => 'EA_category=/V_semimprec/','voc11' => 'V_Wordform_type="deriv"','voc12' => 'V_Wordform_type="comp"','voc13' => 'EA_category=/V_FS_form/','all_co' => 'EA_category=/C_.*/','coherence1' => 'EA_category=/C_Con_accur/','coherence2' => 'EA_category=/C_Coh_jump/','coherence3' => 'EA_category=/C_Coh_ref/','coherence4' => 'EA_category=/C_Coh_txtstruct/','all_so' => 'EA_category=/S_.*/','socioling1' => 'S_Txt_type="grfw"','socioling2' => 'S_Txt_type="opcl"','socioling3' => 'S_Form_type="gen"','socioling4' => 'S_Form_type="addr"','socioling5' => 'S_Var_type="clit"','socioling6' => 's_var_type="duppron"','socioling7' => 'S_Var_type="synstr"','socioling8' => 'S_Var_type="che"','socioling9' => 'S_Var_type="woweil"','socioling10' => 'S_Var_type="partik"','all_pr' => 'EA_category=/P_.*/','pragmatics1' => 'EA_category=/P_Pol_dir/','pragmatics2' => 'EA_category=/P_Request/','pragmatics3' => 'EA_category=/P_Request/');

	if(isset($_POST)){
		$count=1;  		// sequencing counter to refer to search entity (e.g. word or lemma or pos)
		$elements;		// query part defining the search units
		$combination; 		// query part defining the combination of search units of the first position (e.g. regarding word1)
		$combination2=0;	// query part defining the combination of search units of the second position (e.g. regarding word2)
		$previous=0;		// indicates how many elements are already part of the query (e.g. if we arrive to POS, did we already record a word?
		$snd_prev=0;		// like '$previous' but for the second position
		$second_el=0;		// sequencing counter for units of the second position (e.g. word2, lemma2, etc)
		$wd='.';			// word distance between position 1 and 2
		if($_POST['word_dist']!='0'){
			if($_POST['word_dist'] == '1'){
				$wd = '.2,2';
			}
			else if($_POST['word_dist'] == '2'){
				$wd = '.3,3';
			}
			else if($_POST['word_dist'] == '3'){
				$wd = '.1,4';
			}
			else if($_POST['word_dist'] == '4'){
				$wd = '.3,6';
			}
			else if($_POST['word_dist'] == '5'){
				$wd = '.7,50';
			}
		}		
		if(! empty($_POST['word_lemma_value1'])){
			if($_POST['word_lemma_cat1'] == 'word'){
				$elements = $_POST['searchin'].'="'.$_POST['word_lemma_value1'].'"';
				$count++;
				$previous=1;
			}
			else if($_POST['word_lemma_cat1'] == 'lemma'){
				$elements = 'tok_lemma="'.$_POST['word_lemma_value1'].'"';
				$previous++;
				$count++;
			}
		}
		if(! empty($_POST['tok_pos1'])){
			if($_POST['tok_pos1'] != "all"){
			if($previous > 1){
				if($_POST['lang']=="Czech"){
					$elements .= ' & tok_pos=/'.$_POST['tok_pos1'].'.*/';
				}
				else{
					$elements .= ' & tok_pos="'.$_POST['tok_pos1'].'"';
				}
				$combination .= ' _=_ #'.$count; 
			}
			else if($previous){
				if($_POST['lang']=="Czech"){
					$elements .= ' & tok_pos=/'.$_POST['tok_pos1'].'.*/';
				}
				else{
					$elements .= ' & tok_pos="'.$_POST['tok_pos1'].'"';
				}
				$combination = ' & #'.($count-1).' _=_ #'.$count; 
				$previous++;
			}