@ -66,8 +66,8 @@ public class index {
final int display = ( ( post = = null ) | | ( ! authenticated ) ) ? 0 : post . getInt ( "display" , 0 ) ;
final int display = ( ( post = = null ) | | ( ! authenticated ) ) ? 0 : post . getInt ( "display" , 0 ) ;
final int searchoptions = ( post = = null ) ? 0 : post . getInt ( "searchoptions" , 0 ) ;
final int searchoptions = ( post = = null ) ? 0 : post . getInt ( "searchoptions" , 0 ) ;
final String former = ( post = = null ) ? "" : post . get ( "former" , "" ) ;
final String former = ( post = = null ) ? "" : post . get ( "former" , "" ) ;
final int count = ( post = = null ) ? 10 : post . getInt ( "count" , 10 ) ;
final int count = Math . min ( 100 , ( post = = null ) ? 10 : post . getInt ( "count" , 10 ) ) ;
final int time = ( post = = null ) ? 10 : post . getInt ( "time" , 6 ) ;
final int time = Math . min ( 60 , ( post = = null ) ? 4 : post . getInt ( "time" , 4 ) ) ;
final String urlmaskfilter = ( post = = null ) ? ".*" : post . get ( "urlmaskfilter" , ".*" ) ;
final String urlmaskfilter = ( post = = null ) ? ".*" : post . get ( "urlmaskfilter" , ".*" ) ;
final String prefermaskfilter = ( post = = null ) ? "" : post . get ( "prefermaskfilter" , "" ) ;
final String prefermaskfilter = ( post = = null ) ? "" : post . get ( "prefermaskfilter" , "" ) ;
final String constraint = ( post = = null ) ? plasmaSearchQuery . catchall_constraint . exportB64 ( ) : post . get ( "constraint" , "______" ) ;
final String constraint = ( post = = null ) ? plasmaSearchQuery . catchall_constraint . exportB64 ( ) : post . get ( "constraint" , "______" ) ;
@ -127,17 +127,16 @@ public class index {
prop . put ( "searchoptions_count-10" , ( count = = 10 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_count-10" , ( count = = 10 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_count-50" , ( count = = 50 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_count-50" , ( count = = 50 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_count-100" , ( count = = 100 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_count-100" , ( count = = 100 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_count-1000" , ( count = = 1000 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_resource-global" , ( ( global ) ? 1 : 0 ) ) ;
prop . put ( "searchoptions_resource-global" , ( ( global ) ? 1 : 0 ) ) ;
prop . put ( "searchoptions_resource-global-disabled" , ( global | | clustersearch ) ? 0 : 1 ) ;
prop . put ( "searchoptions_resource-global-disabled" , ( global | | clustersearch ) ? 0 : 1 ) ;
prop . put ( "searchoptions_resource-global-disabled_reason" , ( indexReceiveGranted ) ? 0 : ( indexDistributeGranted ) ? 1 : 2 ) ;
prop . put ( "searchoptions_resource-global-disabled_reason" , ( indexReceiveGranted ) ? 0 : ( indexDistributeGranted ) ? 1 : 2 ) ;
prop . put ( "searchoptions_resource-local" , ( ( global ) ? 0 : 1 ) ) ;
prop . put ( "searchoptions_resource-local" , ( ( global ) ? 0 : 1 ) ) ;
prop . put ( "searchoptions_time-1" , ( time = = 1 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-1" , ( time = = 1 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-3" , ( time = = 3 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-2" , ( time = = 2 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-4" , ( time = = 4 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-6" , ( time = = 6 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-6" , ( time = = 6 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-8" , ( time = = 8 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-10" , ( time = = 10 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-10" , ( time = = 10 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-30" , ( time = = 30 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_time-60" , ( time = = 60 ) ? 1 : 0 ) ;
prop . put ( "searchoptions_urlmaskoptions" , 0 ) ;
prop . put ( "searchoptions_urlmaskoptions" , 0 ) ;
prop . put ( "searchoptions_urlmaskoptions_urlmaskfilter" , urlmaskfilter ) ;
prop . put ( "searchoptions_urlmaskoptions_urlmaskfilter" , urlmaskfilter ) ;
prop . put ( "searchoptions_prefermaskoptions" , 0 ) ;
prop . put ( "searchoptions_prefermaskoptions" , 0 ) ;