Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/11 16:58:15 (14 years ago)
Author:
dhohl
Message:

#1499
Remove unused code in the filter classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/FilterController.cs

    r6303 r6305  
    2727            FilterModel fm = new FilterModel();
    2828            fm.Content = (CombinedFilter)Session["Content"];
    29 
    3029            QueryServiceClient client = Query.GetClientFactory();
    31 
    32 
     30           
    3331            long[] ids = client.GetRunIds(fm.Content);
    3432
     
    3836            return View("Results", qm); // name of usercontrol
    3937        }
    40 
    41 
     38       
    4239
    4340        public ActionResult Filters(CombinedFilter f)
     
    6663            if ("add".Equals(submitAction))
    6764            {
    68                // string stringid = submitButton.Substring(2);
    6965                string stringid = collection.Get("selectedFilter");
    7066                AddNewFilter(collection, fm, stringid);
     
    7369            {
    7470               string stringid= collection.Get("selectedFilter");
    75                // string stringid = submitButton.Substring(2);
    76                 DeleteFilter(new Guid(stringid));
     71               DeleteFilter(new Guid(stringid));
    7772            }
    7873            else if ("runs".Equals(submitAction))
     
    8782            // Set Content
    8883            Session["Content"] = fm.Content;
    89 
    9084            return View("Index", fm);
    9185                       
    9286        }
    9387
     88
    9489        private void AddNewFilter(FormCollection collection, FilterModel fm, String idKey)
    95         {
    96             // Add Filter
    97             //String idKey = null;
     90        {           
    9891            String parentIdKey = idKey;
    99 
    100             //foreach (string key in collection.AllKeys)
    101             //{
    102             //    //if (key.StartsWith(FilterModel.ComboboxName))
    103             //    //{
    104             //    //    idKey = key;
    105             //    //}
    106             //    if (key.StartsWith(FilterModel.ParentIdName))
    107             //    {
    108             //        parentIdKey = key;
    109             //    }
    110             //}
    11192
    11293            Guid parentId = new Guid(parentIdKey);
    11394            string filterTypeName = collection.Get(FilterModel.ComboboxName+ "." + idKey);
    114             fm.AddFilter(filterTypeName, parentId);
    115 
    116             //UpdateModel(collection, fm);
    117 
    118             //// Set Content
    119             //Session["Content"] = fm.Content;
    120 
    121             //return View("Index", fm);
     95            fm.AddFilter(filterTypeName, parentId);           
    12296        }
    12397
     
    145119            foreach (string key in collection.AllKeys)
    146120            {
    147 
    148121                if (!key.StartsWith(FilterModel.ComboboxName) && !key.StartsWith(FilterModel.ParentIdName))
    149122                {
     
    174147
    175148
    176 
    177 
    178149        /// <summary>
    179150        /// Delete a filter with given id.
     
    186157            FilterModel fm = new FilterModel((CombinedFilter)Session["Content"]);
    187158
    188             //throw new Exception();
    189 
    190159            // Remove Filter
    191             bool filterRemoved = fm.RemoveFilter(id);
    192 
    193 
    194             //UpdateModel(collection, fm);
    195             // TODO Model muss auch beim löschen upgeadatet werden UpdateModel(collection, fm);
    196 
    197             // Set Content
    198             //Session["Content"] = fm.Content;
    199 
    200             //return View("Index", fm);
    201         }
    202 
    203 
    204 
     160            bool filterRemoved = fm.RemoveFilter(id);         
     161        }
     162       
    205163
    206164        /// <summary>
     
    209167        /// <returns></returns>
    210168        public void AddFilterOr(FilterModel fm)
    211         {
    212            
     169        {           
    213170            List<Filter> orFilters = fm.Content.Filters.ToList<Filter>(); ;
    214171
     
    216173            orFilters.Add(andFilter);
    217174            fm.Content.Filters = orFilters.ToArray<Filter>();
    218 
    219             // TODO Model muss auch beim löschen upgeadatet werden UpdateModel(collection, fm);
    220 
    221             Session["Content"] = fm.Content;
    222 
    223             //return View("Index", fm);
    224         }
    225 
    226 
     175                     
     176            Session["Content"] = fm.Content;           
     177        }
    227178
    228179
     
    236187        public ActionResult Index()
    237188        {
    238 
    239189            // Set submenu
    240190            Session["SelectedSubMenu"] = "Filter";
    241191            FilterModel fm = new FilterModel();
    242 
    243192
    244193            // Init session variable for selected filters
     
    257206            fm.Content = f;
    258207
    259 
    260208            return View(fm);
    261209        }
    262 
    263 
    264210    }
    265211}
Note: See TracChangeset for help on using the changeset viewer.