From 396857c93995182aa64ce646d3dbb6ede710d4b0 Mon Sep 17 00:00:00 2001 From: Gianfranco Rossi Date: Thu, 17 Oct 2024 21:49:12 -0500 Subject: [PATCH] feat(lactapp_5): new scraper for Lousiana Court of Appeals Fifth Circuit Part of #1197 - new return value for OpinionSite: "attorneys" - new function in date_utils: `unique_year_months` to generate the backscrape iterable - refactor `oral_args.cadc` and `state.sc` to use new `unique_year_months` function --- juriscraper/OpinionSite.py | 4 + juriscraper/OpinionSiteLinear.py | 5 + juriscraper/lib/date_utils.py | 28 + .../opinions/united_states/state/__init__.py | 1 + .../opinions/united_states/state/lactapp_5.py | 133 + .../opinions/united_states/state/sc.py | 14 +- .../united_states/federal_appellate/cadc.py | 38 +- .../lactapp_5_example.compare.json | 377 ++ .../united_states/lactapp_5_example.html | 3223 +++++++++++ .../lactapp_5_example_2.compare.json | 287 + .../united_states/lactapp_5_example_2.html | 5096 +++++++++++++++++ 11 files changed, 9174 insertions(+), 32 deletions(-) create mode 100644 juriscraper/opinions/united_states/state/lactapp_5.py create mode 100644 tests/examples/opinions/united_states/lactapp_5_example.compare.json create mode 100644 tests/examples/opinions/united_states/lactapp_5_example.html create mode 100644 tests/examples/opinions/united_states/lactapp_5_example_2.compare.json create mode 100644 tests/examples/opinions/united_states/lactapp_5_example_2.html diff --git a/juriscraper/OpinionSite.py b/juriscraper/OpinionSite.py index 1cf7ce10a..975dcbc01 100644 --- a/juriscraper/OpinionSite.py +++ b/juriscraper/OpinionSite.py @@ -38,6 +38,7 @@ def __init__(self, *args, **kwargs): "per_curiam", "types", "other_dates", + "attorneys", ] self._req_attrs = [ "case_dates", @@ -134,6 +135,9 @@ def _get_per_curiam(self): def _get_other_dates(self): return None + def _get_attorneys(self): + return None + def extract_from_text(self, scraped_text): """Pass scraped text into function and return data as a dictionary diff --git a/juriscraper/OpinionSiteLinear.py b/juriscraper/OpinionSiteLinear.py index 15c74c7c8..c556feab9 100644 --- a/juriscraper/OpinionSiteLinear.py +++ b/juriscraper/OpinionSiteLinear.py @@ -40,6 +40,7 @@ class OpinionSiteLinear(OpinionSite): "type", "joined_by", "other_date", + "attorney", } def __init__(self, *args, **kwargs): @@ -153,6 +154,10 @@ def _get_other_dates(self): """Goes into OpinionCluster.other_dates, type: string""" return self._get_optional_field_by_id("other_date") + def _get_attorneys(self): + """Goes into OpinionCluster.attorneys, type: string""" + return self._get_optional_field_by_id("attorney") + def _check_sanity(self): super()._check_sanity() # Check that all returned keys have the proper name to be used diff --git a/juriscraper/lib/date_utils.py b/juriscraper/lib/date_utils.py index 713cbdf76..7e36c0ad3 100644 --- a/juriscraper/lib/date_utils.py +++ b/juriscraper/lib/date_utils.py @@ -4,6 +4,7 @@ from datetime import date from itertools import zip_longest from math import ceil +from typing import Union from dateutil.parser import parser, parserinfo from dateutil.rrule import DAILY, rrule @@ -150,3 +151,30 @@ def make_date_range_tuples(start, end, gap): for d in rrule(DAILY, interval=gap, dtstart=end_start, until=end) ] return list(zip_longest(start_dates, end_dates, fillvalue=end)) + + +def unique_year_month( + date_list: list[Union[date, datetime.datetime, tuple[date]]], +) -> list[Union[date, datetime.datetime]]: + """Takes a list of dates or date tuples, and reduces it + to date objects with unique year-months pairs + + :param date_list: a list containing dates or tuples of dates + default make_backscrape_iterable returns date tuples + :return: a list with date objects of unique year-month pairs + """ + unique_list = [] + seen_year_months = set() + + for obj in date_list: + if isinstance(obj, date) or isinstance(obj, datetime.datetime): + obj = [obj] + + for date_obj in obj: + ym = date_obj.strftime("%Y%m") + if ym in seen_year_months: + continue + seen_year_months.add(ym) + unique_list.append(date_obj) + + return unique_list diff --git a/juriscraper/opinions/united_states/state/__init__.py b/juriscraper/opinions/united_states/state/__init__.py index 933cb01ba..efda973a4 100644 --- a/juriscraper/opinions/united_states/state/__init__.py +++ b/juriscraper/opinions/united_states/state/__init__.py @@ -61,6 +61,7 @@ "kyctapp", "la", "lactapp_1", + "lactapp_5", "mass", "massappct", "massappct_u", diff --git a/juriscraper/opinions/united_states/state/lactapp_5.py b/juriscraper/opinions/united_states/state/lactapp_5.py new file mode 100644 index 000000000..a8c3318c0 --- /dev/null +++ b/juriscraper/opinions/united_states/state/lactapp_5.py @@ -0,0 +1,133 @@ +import re +from datetime import date, datetime + +from juriscraper.AbstractSite import logger +from juriscraper.lib.date_utils import unique_year_month +from juriscraper.lib.string_utils import titlecase +from juriscraper.OpinionSiteLinear import OpinionSiteLinear + + +class Site(OpinionSiteLinear): + id_to_case_mapper = { + "lblCaseTitle": "name", + "lblCaseNum": "docket", + "lblRulingJudge": "judge", + "lblDistrictCourtNo": "lower_court_number", + "lblLowerCourt": "lower_court", + "lblAttorney": "attorney", + } + first_opinion_date = datetime(1992, 1, 1) + days_interval = 28 # ensure a tick for each month + date_regex = re.compile(r"\d{2}/\d{2}/\d{4}") + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.court_id = self.__module__ + self.url = "https://www.fifthcircuit.org/searchopinions.aspx" + self.search_is_configured = False + self.parameters = { + "ctl00$cntBody$ctlOpinionSearch_Toggle$ddlSearchOptions": "2", + } + self.target_date = datetime.today() + self.make_backscrape_iterable(kwargs) + self.status = "Unknown" + + def _process_html(self): + # We need to do a plain GET to get hidden inputs + # Then we can do our filtered request + if not self.test_mode_enabled(): + self.method = "POST" + + # We need to set the proper search filter the first time + if not self.search_is_configured: + self.update_hidden_inputs() + self.parameters["__EVENTTARGET"] = ( + "ctl00$cntBody$ctlOpinionSearch_Toggle$ddlSearchOptions" + ) + self.html = self._download() + self.search_is_configured = True + + # Set the proper filters to get the actual data we want + self.update_date_filters() + self.update_hidden_inputs() + self.html = self._download() + + count_xpath = "//*[@id='cntBody_ctlOpinionSearch_Toggle_lblRecordCnt']" + logger.info(self.html.xpath(count_xpath)[0].text_content().strip()) + + for row in self.html.xpath("//tr[.//a[contains(@id, 'HyperLink_')]]"): + fixed_values = {} + for id_part, key in self.id_to_case_mapper.items(): + element = row.xpath(f".//*[contains(@id, '{id_part}')]") + if element: + fixed_values[key] = element[0].text_content().strip() + + fixed_values["name"] = titlecase(fixed_values["name"]) + if fixed_values.get("judge"): + fixed_values["judge"] = re.sub( + r"Hon\.[\s\n]+", "", fixed_values["judge"] + ) + + # Some cases have more than 1 opinion document (check example 2) + # Some cases have no links, they will be ignored by this loop + for anchor in row.xpath(".//a"): + # The opinion date is sometimes in the disposition text + disposition = "" + case_date = f"{self.target_date.year}/07/01" + date_filed_is_approximate = True + if disp_container := anchor.xpath("following-sibling::text()"): + disposition = disp_container[0].strip() + + if date_match := self.date_regex.search(disposition): + case_date = date_match.group(0) + disposition = disposition.rsplit(" on ", 1)[0].strip( + " '" + ) + date_filed_is_approximate = False + + case = { + "url": anchor.get("href"), + "disposition": disposition, + "date": case_date, + "date_filed_is_approximate": date_filed_is_approximate, + **fixed_values, + } + + self.cases.append(case) + + def update_hidden_inputs(self) -> None: + """Parse form values characteristic of aspx sites, + and put then on self.parameters for POST use + """ + for input in self.html.xpath('//input[@type="hidden"]'): + self.parameters[input.get("name")] = input.get("value", "") + + def update_date_filters(self) -> None: + """Set year and month values from `self.target_date` + into self.parameters for POST use + """ + logger.info( + "Scraping for year: %s - month: %s", + self.target_date.year, + self.target_date.month, + ) + self.parameters = { + "ctl00$cntBody$ctlOpinionSearch_Toggle$ddlOpnMonth": str( + self.target_date.month + ), + "ctl00$cntBody$ctlOpinionSearch_Toggle$ddlOpnYear": str( + self.target_date.year + ), + "ctl00$cntBody$ctlOpinionSearch_Toggle$btnSearch": "Search", + } + + def _download_backwards(self, target_date: date) -> None: + self.target_date = target_date + self.html = self._download() + self._process_html() + + def make_backscrape_iterable(self, kwargs): + super().make_backscrape_iterable(kwargs) + self.back_scrape_iterable = unique_year_month( + self.back_scrape_iterable + ) diff --git a/juriscraper/opinions/united_states/state/sc.py b/juriscraper/opinions/united_states/state/sc.py index 4af90fb76..de78e52a0 100644 --- a/juriscraper/opinions/united_states/state/sc.py +++ b/juriscraper/opinions/united_states/state/sc.py @@ -23,6 +23,7 @@ from typing import Dict, List, Tuple from juriscraper.AbstractSite import logger +from juriscraper.lib.date_utils import unique_year_month from juriscraper.OpinionSiteLinear import OpinionSiteLinear @@ -80,16 +81,9 @@ def make_backscrape_iterable( and replace the self.back_scrape_iterable """ super().make_backscrape_iterable(kwargs) - backscrape_iterable = [] - seen_year_months = set() - for date_obj, _ in self.back_scrape_iterable: - ym = date_obj.strftime("%Y%m") - if ym in seen_year_months: - continue - seen_year_months.add(ym) - backscrape_iterable.append(date_obj) - - self.back_scrape_iterable = backscrape_iterable + self.back_scrape_iterable = unique_year_month( + self.back_scrape_iterable + ) def _download_backwards(self, date_obj: date) -> None: """Downloads an older page, and parses it diff --git a/juriscraper/oral_args/united_states/federal_appellate/cadc.py b/juriscraper/oral_args/united_states/federal_appellate/cadc.py index 69902a445..4eb9067d5 100644 --- a/juriscraper/oral_args/united_states/federal_appellate/cadc.py +++ b/juriscraper/oral_args/united_states/federal_appellate/cadc.py @@ -11,6 +11,7 @@ from urllib.parse import urljoin from juriscraper.AbstractSite import logger +from juriscraper.lib.date_utils import unique_year_month from juriscraper.OralArgumentSiteLinear import OralArgumentSiteLinear @@ -56,16 +57,8 @@ def _process_html(self): } ) - def _download_backwards(self, url: str) -> None: - logger.info("Backscraping URL '%s'", url) - self.url = url - self.html = self._download() - self._process_html() - - def make_backscrape_iterable(self, kwargs: dict) -> None: - """Use base function to generate a range, then pick - unique year-month combinations to build the backscrape - URLS, and save them to the self.back_scrape_iterable + def _download_backwards(self, target_date: date) -> None: + """Download historical data Note that this URL will work: "https://media.cadc.uscourts.gov/recordings/bydate/2007/9" @@ -74,16 +67,17 @@ def make_backscrape_iterable(self, kwargs: dict) -> None: That's why the '%-m' formatter is needed """ - super().make_backscrape_iterable(kwargs) - seen_year_months = set() - urls = [] - - for tupl in self.back_scrape_iterable: - for item in tupl: - ym = item.strftime("%Y/%-m") - if ym in seen_year_months: - continue - seen_year_months.add(ym) - urls.append(self.base_url.format(ym)) + self.url = self.base_url.format(target_date.strftime("%Y/%-m")) + logger.info("Backscraping URL '%s'", self.url) + self.html = self._download() + self._process_html() - self.back_scrape_iterable = urls + def make_backscrape_iterable(self, kwargs: dict) -> None: + """Use base function to generate a range, then pick + unique year-month combinations to build the backscrape + URLS + """ + super().make_backscrape_iterable(kwargs) + self.back_scrape_iterable = unique_year_month( + self.back_scrape_iterable + ) diff --git a/tests/examples/opinions/united_states/lactapp_5_example.compare.json b/tests/examples/opinions/united_states/lactapp_5_example.compare.json new file mode 100644 index 000000000..b7d61f9a7 --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example.compare.json @@ -0,0 +1,377 @@ +[ + { + "case_dates": "2024-10-17", + "case_names": "State of Louisiana Versus Derwin Walker", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/895E4DB7-BE57-4B1C-95C4-AB9CA5917140.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Granted with Instructions", + "docket_numbers": "24-K-421", + "judges": "J. Sterling Snowdy", + "lower_courts": "40th District Court", + "lower_court_numbers": "19,279", + "case_name_shorts": "", + "attorneys": "Honorable Elizabeth B. Murrill, for Plaintiff-Respondant, Stephanie M. Bruno, for Plaintiff-Respondant, J. Bryant Clark, Jr., for Plaintiff-Respondant, Gregory E. Payton, for Defendant-Relator, Daniel J. Smart, for Plaintiff-Respondant, Marcus J. Plaisance, for Defendant-Relator, J. Taylor Gray, for Plaintiff-Respondant, Remy V. Starns, for Defendant-Relator, Mark D. Plaisance, for Defendant-Relator" + }, + { + "case_dates": "2024-10-16", + "case_names": "Succession of Jean Lipps Burke", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/DE618C4C-16E7-42A5-AFC2-209A80AF1272.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "24-CA-141", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "841-161", + "case_name_shorts": "", + "attorneys": "Bianca M. Brindisi, for Defendant-Appellee, Jacqueline F. Maloney, for Defendant-Appellee, Kenneth W. Andrieu, for Plaintiff-Appellant" + }, + { + "case_dates": "2024-10-16", + "case_names": "State of Louisiana Versus Kevin Johnson", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/B7693B7E-FF14-419D-95AA-3E8850EB58E1.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed as Amended", + "docket_numbers": "24-KA-62", + "judges": "M. Lauren Lemmon", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "18,669", + "case_name_shorts": "", + "attorneys": "J. Bryant Clark, Jr., for Plaintiff-Appellee, Honorable Elizabeth B. Murrill, for Plaintiff-Appellee, Kevin Johnson 331020 - 331020, for Defendant-Appellant, Hon. Joel T. Chaisson, II, for Plaintiff-Appellee, J. William Starr, for Plaintiff-Appellee, J. Taylor Gray, for Plaintiff-Appellee, Prentice L. White, for Defendant-Appellant" + }, + { + "case_dates": "2024-10-16", + "case_names": "State of Louisiana Versus Daniel Tenner AKA \"Danny\" AKA \"Lil Danny\"", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/248E3393-2155-49C3-86C8-582DF2DF4440.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Remanded with Instructions", + "docket_numbers": "24-KA-51", + "judges": "Donald L. Foret", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "22-2183", + "case_name_shorts": "", + "attorneys": "Daniel Tenner 782290, for Defendant-Appellant, Thomas J. Butler, for Plaintiff-Appellee, Juliet L. Clark, for Plaintiff-Appellee, Bertha M. Hillman, for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2024-10-16", + "case_names": "Gregory Ovide Versus Erica Rivers", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/B5C63DC3-1F07-4C2B-8E35-5130B6FA5540.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "24-CA-140", + "judges": "E. Adrian Adams", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "847-030", + "case_name_shorts": "", + "attorneys": "J. Craig Diamond, for Defendant-Appellant, Marcus A. Green, for Plaintiff-Appellee" + }, + { + "case_dates": "2024-10-16", + "case_names": "Celius Gray Versus Fifth Circuit Court of Appeal", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/E37527F9-B01C-4F70-BBF6-08463BEB6B02.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-K-461", + "judges": "Donald A. Rowan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "20-5560", + "case_name_shorts": "", + "attorneys": "Celius Gray 1000677028, for Plaintiff-Relator, Thomas J. Butler, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-15", + "case_names": "Davenique Helmstetter Versus U-Haul International, Inc., Allan Bruce Awe, and Allan Bruce Awe D/B/A Aba Rentals", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/4EBB8888-8BD2-4D69-B902-D79AFDFAF28A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-C-344", + "judges": "Vercell Fiffie", + "lower_courts": "40th District Court", + "lower_court_numbers": "C-74869", + "case_name_shorts": "", + "attorneys": "Oscar M. Gwin, IV, for Defendant-Relator, Mary Margaret Keys, for Plaintiff-Respondant, Christopher J. Alfieri, for Defendant-Relator, Fielding Matkins, for Plaintiff-Respondant, Dominick M. Bianca, for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-11", + "case_names": "State of Louisiana Versus Abron J. Mickel", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/80D7E389-4C18-43E0-963C-44139806914F.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-457", + "judges": "Stephen D. Enright", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "03-5247", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Plaintiff-Respondant, Abron J. Mickel 331495, for Defendant-Relator" + }, + { + "case_dates": "2024-10-11", + "case_names": "24th Judicial District Criminal Court Versus Clarence Gibson", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/52C5F4DA-A5E9-46CE-BD18-EF8E878DB6E5.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-471", + "judges": "R. Christopher Cox", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "07-6779", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Plaintiff-Respondant, Clarence Gibson 366576, for Defendant-Relator" + }, + { + "case_dates": "2024-10-10", + "case_names": "State of Louisiana Versus Saleh Omar", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/5126801E-1F44-42B3-9EF1-D3266CDB4E32.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-K-456", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "18-7748", + "case_name_shorts": "", + "attorneys": "Matthew Whitworth, for Plaintiff-Respondant, Ralph S. Whalen, Jr., for Defendant-Relator, Brittany Beckner, for Plaintiff-Respondant, Thomas J. Butler, for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-10", + "case_names": "State of Louisiana Versus Clarence Otis Gibson", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/CD88B04B-0FE9-4E94-A0B3-1CC3DE3CA7DA.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-469", + "judges": "R. Christopher Cox", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "07-6779", + "case_name_shorts": "", + "attorneys": "Clarence O. Gibson 366576, for Defendant-Relator, Thomas J. Butler, for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-10", + "case_names": "Henry Isaacs Versus State of Louisiana", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/46E2D12A-D548-4788-A389-DAC9D38FE106.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-434", + "judges": "June B. Darensburg", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "85-1027", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Defendant-Respondant, Henry Isaacs 93338, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-10", + "case_names": "Donald A. Logan Versus Tim Hooper, Warden, Louisiana State Penitentiary", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/87AFEE20-EE15-48E3-AF3C-FC69461FBD08.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-463", + "judges": "Nancy A. Miller", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "03-4506", + "case_name_shorts": "", + "attorneys": "Donald A. Logan 350072, for Plaintiff-Relator, Thomas J. Butler, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-09", + "case_names": "Syreeta Lidell Versus Michelle Savaski, Bjms Inc. D/B/A \"Coffee &\", and James River Insurance", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/D74F5D4A-56F7-48FE-891A-D2F6C56E128A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "24-CA-5", + "judges": "Michael P. Mentz", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "821-394", + "case_name_shorts": "", + "attorneys": "Wilson H. Barnes, for Plaintiff-Appellant, Joseph J. Valencino, III, for Defendant-Appellee, Andre C. Gaudin, for Defendant-Appellee" + }, + { + "case_dates": "2024-10-09", + "case_names": "Succession of Anthony \"Tony\" Neil Serio", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/2C9860DC-8F0E-4DF4-A95D-534F46CFB79F.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-539", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "844-186", + "case_name_shorts": "", + "attorneys": "M. Elizabeth Bowman, for Intervenor-Appellee, JordanT. Giles, for Intervenor-Appellee, Christy M. Howley, for Intervenor-Appellee, Frank J. D'Amico, Jr., for Plaintiff-Appellant, Charles P. Ciaccio, for Plaintiff-Appellant" + }, + { + "case_dates": "2024-10-09", + "case_names": "Shirley Holder Versus Rachel Hebert, State Farm Insurance Company and Shelter Mutual Insurance Company", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/2D2DE84B-661A-4669-8111-84C60AF90333.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-567", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "789-191", + "case_name_shorts": "", + "attorneys": "Charles V. Giordano, for Defendant-Appellee, David S. Moyer, for Plaintiff-Appellant, Travis J. Beslin, for Defendant-Appellee" + }, + { + "case_dates": "2024-10-09", + "case_names": "Meg Vincent, Wife of and Louis Keith Vincent Versus National General Insurance Company and Dr. Fredrick Dantagnan IV, On Behalf of the Minor, Jacqueline Dantagnan", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/E1CFC2AC-B398-4FC8-A824-1AD0099314F3.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-554", + "judges": "Michael P. Mentz", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "782-360", + "case_name_shorts": "", + "attorneys": "Todd C. Comeaux, for Intervenor-Appellee, Edwin C. Laizer, for Defendant-Appellee, Leigh Ann Tschirn Schell, for Defendant-Appellee, Christopher A. D'Amour, for Defendant-Appellee, Kyle L. Potts, for Defendant-Appellee, Vanessa Motta, for Plaintiff-Appellant" + }, + { + "case_dates": "2024-10-09", + "case_names": "John Daniel Martin, III Versus State of Louisiana", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/DD40670B-DBA9-466C-8A7A-245E3CC91802.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-462", + "judges": "Connie M. Aucoin", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "22,159", + "case_name_shorts": "", + "attorneys": "Hon. Joel T. Chaisson, II, for Defendant-Respondant, John Daniel Martin, III 320411, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-09", + "case_names": "Christoph Patrick Bajewski Versus Christina Botros Bajewski", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2024/F115865C-4848-4C8F-B44F-72E1A7260F7D.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "23-CA-552", + "judges": "Nancy A. Miller", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "735-995", + "case_name_shorts": "", + "attorneys": "Jennifer C. Carter, for Plaintiff-Appellant, Dixon C. Brown, for Plaintiff-Appellant, James E. Moorman, III, for Defendant-Appellee" + }, + { + "case_dates": "2024-10-02", + "case_names": "The Succession of Marian Ethel Petry", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/855C5008-0349-4123-973C-AC39336B1AB3.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-C-459", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "823-478", + "case_name_shorts": "", + "attorneys": "Peter J. Rotolo, III, for Defendant-Respondant, Loren C. Marino, for Defendant-Respondant, Alexandre E. Bonin, for Defendant-Relator, A. Elyce Ieyoub, for Defendant-Respondant, Anne E. Raymond, for Defendant-Respondant, Todd R. Gennardo, for Defendant-Respondant, Darlene Santana - In Proper Person, for Defendant-Respondant, Trevor C. Davies, for Defendant-Respondant, Paul A. Bonin, for Defendant-Relator, Robert E. Tarcza, for Plaintiff-Respondant, Jean-Marc Bonin, for Defendant-Relator, R. Christian Bonin, for Defendant-Relator, Ian P. Gunn, for Defendant-Respondant, Tyler J. Arbour, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-02", + "case_names": "Christina Lambert Versus Christopher Stinson, Warden, Louisiana Transitional Center For Women", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/7032CA8E-7EB2-4A28-8078-208B80A0B973.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-324", + "judges": "Nancy A. Miller", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "19-1900", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Defendant-Respondant, Stanislav L. Moroz, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-01", + "case_names": "Ronika Lloyd Versus Gregory Wilfred", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/4EB7E8DB-FDC0-482C-934F-E0EC9BB03023.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Granted", + "docket_numbers": "24-C-454", + "judges": "Danyelle M. Taylor", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "820-002", + "case_name_shorts": "", + "attorneys": "Theon A. Wilson, for Defendant-Respondant, Danielle Phillips, for Plaintiff-Relator" + }, + { + "case_dates": "2024-10-01", + "case_names": "Mark Warner Versus Honorable Judge, 24th Jdc", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/E8C0DBB0-6ABB-40D3-ABA8-B2DE98F8128B.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-K-385", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "24-1990", + "case_name_shorts": "", + "attorneys": "Mark Warner 1002216494, for Plaintiff-Relator, Thomas J. Butler, for Defendant-Respondant" + }, + { + "case_dates": "2024-10-01", + "case_names": "Gerard J. Bourgeois, Deborah Bourgeois and the Magner Trust Versus Christopher W. Lopez and Northpointe Business Park, LLC", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/B3F6C15D-8AD9-4F76-A913-60601B619907.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Granted", + "docket_numbers": "24-C-374", + "judges": "Michael P. Mentz", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "851-392", + "case_name_shorts": "", + "attorneys": "Jean-Paul Layrisson, for Defendant-Relator, Anne B. Hoskins, for Defendant-Relator, John F. Young, Jr., for Plaintiff-Respondant" + }, + { + "case_dates": "2024-10-01", + "case_names": "Clarence O. Gibson Versus State of Louisiana", + "download_urls": "tests/examples/opinions/dmzdocs/WI/Writ Disposition/2024/0A3CA45B-6EC7-4A74-8CCA-A4C868B600CE.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Writ Denied", + "docket_numbers": "24-KH-436", + "judges": "R. Christopher Cox", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "07-6779", + "case_name_shorts": "", + "attorneys": "Thomas J. Butler, for Defendant-Respondant, Clarence O. Gibson 366576, for Plaintiff-Relator" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example.html b/tests/examples/opinions/united_states/lactapp_5_example.html new file mode 100644 index 000000000..3c06bb5c5 --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example.html @@ -0,0 +1,3223 @@ + + + + + Fifth Circuit Court of Appeal - State of Louisiana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +

+ LOCAL RULES 9-1 AMENDMENT + EFFECTIVE OCTOBER 15, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS + AMENDED LOCAL RULE 9-1. Click COURT for additional + information.                        LOCAL RULE 1 AND 2 AMENDMENT EFFECTIVE + SEPTEMBER 24, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS AMENDED RULE 1 + AND 2 IN REGARDS TO FEES AND COPIES.Click COURT for additional + information.                        *** eCOURT's Newest Feature : eAccess *** + eAccess provides online access to case records and filings for subscription and + non-subscription services. Click here to start today! Click COURT for additional + information.                        **** Judges in the Classroom - Students in the + Courtroom **** Click here to learn + more.                        **** REMINDER!!! **** Registering to sign + up for eCourt Notification is easy and FREE!! Click here to start today! +

+
+
+
+ + + + +
+
+
+ +
+
+ +
+
+
+ + + + + +
+
+
+ + + + +
+ + +
+ + + +
+ + + +
+
+ +

Decisions Issued Search +

+ + +
+
+ +
+
+
+ +

Please Note: Opinions, from 1992 to present, can be searched for by Decisions Month/Year + or Decision Date. Cases with opinion dispositions can be viewed by clicking on the pdf + icon.

+

**If you cannot find your case and believe that it should be included + in the search range, please contact the Clerk's Office at (504) 376-1400**

+ +
+ + +
+
+
+
+ (*) Indicates Required Fields +
+
+
+
+ + + +
+ + + +
+
+ * + + + +
+
+ * + + +
+
+ +
+ +
+ +
+
+ + +
+ +
+ +
+
+
+
+ +

Decisions Issued Search Results

25 record(s) returned.   +
+ +
+ +
+ + + + + + + + +
+
+
+ +
+
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + Case #Case Title
+ 23-CA-539 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 844-186 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + M. + Elizabeth Bowman, for Intervenor-Appellee, JordanT. + Giles, for Intervenor-Appellee, Christy M. Howley, + for Intervenor-Appellee, Frank J. D'Amico, Jr., for + Plaintiff-Appellant, Charles P. Ciaccio, for + Plaintiff-Appellant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/18/2024 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
+
+
+
+ Disposition: 'Affirmed' + on 10/09/2024 +
+
+
+
+ +
+ SUCCESSION + OF ANTHONY "TONY" NEIL SERIO +
+ 23-CA-552 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 735-995 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Jennifer + C. Carter, for Plaintiff-Appellant, Dixon C. Brown, + for Plaintiff-Appellant, James E. Moorman, III, for + Defendant-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/10/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Disposition: 'Affirmed' + on 10/09/2024 +
+
+
+
+ +
+ CHRISTOPH + PATRICK BAJEWSKI + VERSUS + CHRISTINA BOTROS BAJEWSKI +
+ 23-CA-554 + +
+
+
+
+ Ruling Judge: + Hon. + Michael P. Mentz +
+
+
+
+ District Court #: + 782-360 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Todd + C. Comeaux, for Intervenor-Appellee, Edwin C. + Laizer, for Defendant-Appellee, Leigh Ann Tschirn + Schell, for Defendant-Appellee, Christopher A. + D'Amour, for Defendant-Appellee, Kyle L. Potts, for + Defendant-Appellee, Vanessa Motta, for + Plaintiff-Appellant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/18/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + Yes +
+
+
+
+ Disposition: 'Affirmed' + on 10/09/2024 +
+
+
+
+ +
+ MEG + VINCENT, WIFE OF AND LOUIS KEITH VINCENT + VERSUS + NATIONAL GENERAL INSURANCE COMPANY AND DR. FREDRICK DANTAGNAN IV, ON + BEHALF OF THE MINOR, JACQUELINE DANTAGNAN +
+ 23-CA-567 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 789-191 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Charles + V. Giordano, for Defendant-Appellee, David S. Moyer, + for Plaintiff-Appellant, Travis J. Beslin, for + Defendant-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/11/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Disposition: 'Affirmed' + on 10/09/2024 +
+
+
+
+ +
+ SHIRLEY + HOLDER + VERSUS + RACHEL HEBERT, STATE FARM INSURANCE COMPANY AND SHELTER MUTUAL + INSURANCE COMPANY +
+ 24-CA-5 + +
+
+
+
+ Ruling Judge: + Hon. + Michael P. Mentz +
+
+
+
+ District Court #: + 821-394 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Wilson + H. Barnes, for Plaintiff-Appellant, Joseph J. + Valencino, III, for Defendant-Appellee, Andre C. + Gaudin, for Defendant-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/10/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Disposition: 'Affirmed' + on 10/09/2024 +
+
+
+
+ +
+ SYREETA + LIDELL + VERSUS + MICHELLE SAVASKI, BJMS INC. D/B/A "COFFEE &", AND JAMES RIVER + INSURANCE +
+ 24-KA-51 + +
+
+
+
+ Ruling Judge: + Hon. + Donald L. Foret +
+
+
+
+ District Court #: + 22-2183 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Daniel + Tenner #782290, for Defendant-Appellant, Thomas J. + Butler, for Plaintiff-Appellee, Juliet L. Clark, for + Plaintiff-Appellee, Bertha M. Hillman, for + Defendant-Appellant, Honorable Paul D. Connick, Jr., + for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 10/09/2024 + at 01:00 PM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Disposition: 'Affirmed; + Remanded with Instructions' on 10/16/2024 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + DANIEL TENNER AKA "DANNY" AKA "LIL DANNY" +
+ 24-KA-62 + +
+
+
+
+ Ruling Judge: + Hon. + M. Lauren Lemmon +
+
+
+
+ District Court #: + 18,669 +
+
+
+
+ Lower Court: + 29th + Judicial District Court +
+
+
+
+ Attorney(s): + J. + Bryant Clark, Jr., for Plaintiff-Appellee, Honorable + Elizabeth B. Murrill, for Plaintiff-Appellee, Kevin + Johnson #331020 - 331020, for Defendant-Appellant, + Hon. Joel T. Chaisson, II, for Plaintiff-Appellee, + J. William Starr, for Plaintiff-Appellee, J. Taylor + Gray, for Plaintiff-Appellee, Prentice L. White, for + Defendant-Appellant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 10/09/2024 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Disposition: 'Affirmed + as Amended' on 10/16/2024 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + KEVIN JOHNSON +
+ 24-CA-140 + +
+
+
+
+ Ruling Judge: + Hon. + E. Adrian Adams +
+
+
+
+ District Court #: + 847-030 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + J. + Craig Diamond, for Defendant-Appellant, Marcus A. + Green, for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 10/08/2024 + at 10:00 AM in Courtroom 'B' Oral Argument: + No +
+
+
+
+ Disposition: 'Affirmed' + on 10/16/2024 +
+
+
+
+ +
+ GREGORY + OVIDE + VERSUS + ERICA RIVERS +
+ 24-CA-141 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 841-161 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Bianca + M. Brindisi, for Defendant-Appellee, Jacqueline F. + Maloney, for Defendant-Appellee, Kenneth W. Andrieu, + for Plaintiff-Appellant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 10/09/2024 + at 10:00 AM in Courtroom 'B' Oral Argument: + No +
+
+
+
+ Disposition: 'Appeal + Dismissed' on 10/16/2024 +
+
+
+
+ +
+ SUCCESSION + OF JEAN LIPPS BURKE +
+ 24-KH-324 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 19-1900 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Thomas + J. Butler, for Defendant-Respondant, Stanislav L. + Moroz, for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/02/2024 +
+
+
+
+ +
+ CHRISTINA + LAMBERT + VERSUS + CHRISTOPHER STINSON, WARDEN, LOUISIANA TRANSITIONAL CENTER FOR + WOMEN +
+ 24-C-344 + +
+
+
+
+ Ruling Judge: + Hon. + Vercell Fiffie +
+
+
+
+ District Court #: + C-74869 +
+
+
+
+ Lower Court: + 40th + District Court +
+
+
+
+ Attorney(s): + Oscar + M. Gwin, IV, for Defendant-Relator, Mary Margaret + Keys, for Plaintiff-Respondant, Christopher J. + Alfieri, for Defendant-Relator, Fielding Matkins, + for Plaintiff-Respondant, Dominick M. Bianca, for + Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/15/2024 +
+
+
+
+ +
+ DAVENIQUE + HELMSTETTER + VERSUS + U-HAUL INTERNATIONAL, INC., ALLAN BRUCE AWE, AND ALLAN BRUCE AWE + D/B/A ABA RENTALS +
+ 24-C-374 + +
+
+
+
+ Ruling Judge: + Hon. + Michael P. Mentz +
+
+
+
+ District Court #: + 851-392 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Jean-Paul + Layrisson, for Defendant-Relator, Anne B. Hoskins, + for Defendant-Relator, John F. Young, Jr., for + Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Application for Rehearing on + 10/10/2024
Disposition: 'Writ + Granted' on 10/01/2024 +
+
+
+
+ +
+ GERARD + J. BOURGEOIS, DEBORAH BOURGEOIS AND THE MAGNER TRUST + VERSUS + CHRISTOPHER W. LOPEZ AND NORTHPOINTE BUSINESS PARK, LLC +
+ 24-K-385 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen C. Grefer +
+
+
+
+ District Court #: + 24-1990 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Mark + Warner #1002216494, for Plaintiff-Relator, Thomas J. + Butler, for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/01/2024 +
+
+
+
+ +
+ MARK + WARNER + VERSUS + HONORABLE JUDGE, 24TH JDC +
+ 24-K-421 + +
+
+
+
+ Ruling Judge: + Hon. + J. Sterling Snowdy +
+
+
+
+ District Court #: + 19,279 +
+
+
+
+ Lower Court: + 40th + District Court +
+
+
+
+ Attorney(s): + Honorable + Elizabeth B. Murrill, for Plaintiff-Respondant, + Stephanie M. Bruno, for Plaintiff-Respondant, J. + Bryant Clark, Jr., for Plaintiff-Respondant, Gregory + E. Payton, for Defendant-Relator, Daniel J. Smart, + for Plaintiff-Respondant, Marcus J. Plaisance, for + Defendant-Relator, J. Taylor Gray, for + Plaintiff-Respondant, Remy V. Starns, for + Defendant-Relator, Mark D. Plaisance, for + Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Granted with Instructions' on 10/17/2024 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + DERWIN WALKER +
+ 24-KH-434 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 85-1027 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Thomas + J. Butler, for Defendant-Respondant, Henry Isaacs + #93338, for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/10/2024 +
+
+
+
+ +
+ HENRY + ISAACS + VERSUS + STATE OF LOUISIANA +
+ 24-KH-436 + +
+
+
+
+ Ruling Judge: + Hon. + R. Christopher Cox +
+
+
+
+ District Court #: + 07-6779 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Thomas + J. Butler, for Defendant-Respondant, Clarence O. + Gibson #366576, for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/01/2024 +
+
+
+
+ +
+ CLARENCE + O. GIBSON + VERSUS + STATE OF LOUISIANA +
+ 24-C-454 + +
+
+
+
+ Ruling Judge: + Hon. + Danyelle M. Taylor +
+
+
+
+ District Court #: + 820-002 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Theon + A. Wilson, for Defendant-Respondant, Danielle + Phillips, for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Granted' on 10/01/2024 +
+
+
+
+ +
+ RONIKA + LLOYD + VERSUS + GREGORY WILFRED +
+ 24-K-456 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 18-7748 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Matthew + Whitworth, for Plaintiff-Respondant, Ralph S. + Whalen, Jr., for Defendant-Relator, Brittany + Beckner, for Plaintiff-Respondant, Thomas J. Butler, + for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/10/2024 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + SALEH OMAR +
+ 24-KH-457 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen D. Enright +
+
+
+
+ District Court #: + 03-5247 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Thomas + J. Butler, for Plaintiff-Respondant, Abron J. Mickel + #331495, for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/11/2024 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + ABRON J. MICKEL +
+ 24-C-459 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen C. Grefer +
+
+
+
+ District Court #: + 823-478 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Peter + J. Rotolo, III, for Defendant-Respondant, Loren C. + Marino, for Defendant-Respondant, Alexandre E. + Bonin, for Defendant-Relator, A. Elyce Ieyoub, for + Defendant-Respondant, Anne E. Raymond, for + Defendant-Respondant, Todd R. Gennardo, for + Defendant-Respondant, Darlene Santana - In Proper + Person, for Defendant-Respondant, Trevor C. Davies, + for Defendant-Respondant, Paul A. Bonin, for + Defendant-Relator, Robert E. Tarcza, for + Plaintiff-Respondant, Jean-Marc Bonin, for + Defendant-Relator, R. Christian Bonin, for + Defendant-Relator, Ian P. Gunn, for + Defendant-Respondant, Tyler J. Arbour, for + Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/02/2024 +
+
+
+
+ +
+ THE + SUCCESSION OF MARIAN ETHEL PETRY +
+ 24-K-461 + +
+
+
+
+ Ruling Judge: + Hon. + Donald A. Rowan +
+
+
+
+ District Court #: + 20-5560 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Celius + Gray #1000677028, for Plaintiff-Relator, Thomas J. + Butler, for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/16/2024 +
+
+
+
+ +
+ CELIUS + GRAY + VERSUS + FIFTH CIRCUIT COURT OF APPEAL +
+ 24-KH-462 + +
+
+
+
+ Ruling Judge: + Hon. + Connie M. Aucoin +
+
+
+
+ District Court #: + 22,159 +
+
+
+
+ Lower Court: + 29th + Judicial District Court +
+
+
+
+ Attorney(s): + Hon. + Joel T. Chaisson, II, for Defendant-Respondant, John + Daniel Martin, III #320411, for Plaintiff-Relator, + +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/09/2024 +
+
+
+
+ +
+ JOHN + DANIEL MARTIN, III + VERSUS + STATE OF LOUISIANA +
+ 24-KH-463 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 03-4506 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Donald + A. Logan #350072, for Plaintiff-Relator, Thomas J. + Butler, for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/10/2024 +
+
+
+
+ +
+ DONALD + A. LOGAN + VERSUS + TIM HOOPER, WARDEN, LOUISIANA STATE PENITENTIARY +
+ 24-KH-469 + +
+
+
+
+ Ruling Judge: + Hon. + R. Christopher Cox +
+
+
+
+ District Court #: + 07-6779 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Clarence + O. Gibson #366576, for Defendant-Relator, Thomas J. + Butler, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/10/2024 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + CLARENCE OTIS GIBSON +
+ 24-KH-471 + +
+
+
+
+ Ruling Judge: + Hon. + R. Christopher Cox +
+
+
+
+ District Court #: + 07-6779 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Thomas + J. Butler, for Plaintiff-Respondant, Clarence Gibson + #366576, for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ + Denied' on 10/11/2024 +
+
+
+
+ +
+ 24TH + JUDICIAL DISTRICT CRIMINAL COURT + VERSUS + CLARENCE GIBSON +
+ + +
+
+ + + + + + + + + + + + + + + + + + + +
+ + + +
+
+ + + + +
+
+ + + + + + +
+ + + +
+
+
+ Copyrights © 2014 & All Rights Reserved by Fifth Circuit Court of Appeal. +
+ +
+
+
+ +
+ + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example_2.compare.json b/tests/examples/opinions/united_states/lactapp_5_example_2.compare.json new file mode 100644 index 000000000..888f9daa0 --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example_2.compare.json @@ -0,0 +1,287 @@ +[ + { + "case_dates": "2015-02-12", + "case_names": "State of Louisiana Versus Bernal L. Aguilar", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/F669E699-BEE9-464B-8D2E-77149479B6BF.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-KA-714", + "judges": "Ross P. LaDart", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-1592", + "case_name_shorts": "", + "attorneys": "Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Bernal L. Aquilar , for Defendant-Appellant, Jane L. Beebe, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-29", + "case_names": "Jeffrey L. Soudelier, Jr. Versus Pbc Management, Inc., Florida Marine Transporters, and Florida Marine, LLC", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/9B351B61-9557-4201-9D37-9D6846566503.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Granted", + "docket_numbers": "14-C-911", + "judges": "Emile R. St. Pierre", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "76,825", + "case_name_shorts": "", + "attorneys": "Joseph G. Kopfler, for Defendant-Respondant, Jason R. Kenney, for Defendant-Respondant, Lawrence N. Curtis, for Plaintiff-Relator" + }, + { + "case_dates": "2015-01-28", + "case_names": "State of Louisiana Versus Tory Wilson", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/D6A127F8-034B-4863-8C6C-F2025F3347CE.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-KA-551", + "judges": "Stephen D. Enright", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-4590", + "case_name_shorts": "", + "attorneys": "Terry M. Boudreaux, for Plaintiff-Appellee, Juliet L. Clark, for Plaintiff-Appellee, Jane L. Beebe, for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "State of Louisiana Versus Tony A. Russell", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/F1EFDDAA-5078-422B-BB1D-3F250E659503.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Dismissed'", + "docket_numbers": "14-KA-841", + "judges": "Robert M. Murphy, Ad Hoc", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "11-4200", + "case_name_shorts": "", + "attorneys": "Powell W. Miller, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee, Tony Russell , for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "State of Louisiana Versus John Michael Marlbrough", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/62E8B3FA-D72E-4AFD-9F93-BB7BACFF211C.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Appeal Dismissed", + "docket_numbers": "14-KA-936", + "judges": "Stephen D. Enright", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "13-6", + "case_name_shorts": "", + "attorneys": "Terry M. Boudreaux, for Plaintiff-Appellee, Matthew Caplan, for Plaintiff-Appellee, Holli A. Herrle-Castillo, for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "Morgan Palmisano Versus Jennifer Nauman-Anderson", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/4B3EA6D6-5B84-48B7-BCA1-7C2C3838023B.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Reversed and Remanded", + "docket_numbers": "14-CA-652", + "judges": "Lee V. Faulkner", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "716-293", + "case_name_shorts": "", + "attorneys": "N. Kim Nguyen, for Plaintiff-Appellant, Mark E. Morice, for Plaintiff-Appellant, Gerald J. Calogero, for Defendant-Appellee" + }, + { + "case_dates": "2015-01-28", + "case_names": "Cheryl Flanagan, Wife of/and Nicholas J. Rogers Versus Shirley Crocker, Wife of/and Bobby Ray T. Malbrough", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/FB1529CE-B274-4912-BE99-DBE53CF16C44.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-CA-402", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "671-995", + "case_name_shorts": "", + "attorneys": "Robert T. Garrity, Jr., for Defendant-Appellant, R. Ray Orrill, Jr., for Defendant-Appellant, F. Victor Hastings, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-21", + "case_names": "William J. Newton, Nsb Properties, L.L.C. and Nsb IV Properties Versus Tom Brenan, Judy Stevens, Terry Stevens, Sr., Terry Stevens, Jr. And Clyde Ducote", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/0DE05CF4-805A-477E-B554-829BDB645241.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-CA-423", + "judges": "June B. Darensburg", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "700-186", + "case_name_shorts": "", + "attorneys": "Suzanne M. Ganucheau, for Plaintiff-Appellee, Carl A. Butler, for Plaintiff-Appellee, Eric A. Holden, for Defendant-Appellant, John A. Treme - In Proper Person, for Defendant-Appellee, Tiffany M. Fleming, for Plaintiff-Appellee, Jerald L. Album, for Plaintiff-Appellee, David I. Courcelle, for Defendant-Appellee" + }, + { + "case_dates": "2015-01-21", + "case_names": "Union Pacific Railroad Company Versus West Bank Land Company, LLC Consolidated With Union Pacific Railroad Company Versus Virginia Favrot Consolidated With Union Pacific Railroad Company Versus Michael Francis Schexnayder Consolidated With Union Pacific Railroad Company Versus Allen J. Melancon Consolidated With Union Pacific Railroad Company Versus Succession of Beatrice, Labiche Schexnayder Consolidated With Union Pacific Railroad Company Versus Estate of Doris Schexnayder Sigmon Consolidated With Union Pacific Railroad Company Versus Arthur Schexnayder, Jr. Consolidated With Union Pacific Railroad Company Versus Succession of Doris Schexnayder", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/D7D97982-407B-4D2F-9536-1909FEFE7E7A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-C-743", + "judges": "Ralph E. Tureau", + "lower_courts": "23rd Judicial District Court", + "lower_court_numbers": "34,878", + "case_name_shorts": "", + "attorneys": "Michael D. Hunt, for Plaintiff-Respondant, Scott R. Cheatham, for Defendant-Relator, Jeffrey E. Richardson, for Defendant-Relator, Kelly K. Boudreaux, for Plaintiff-Respondant, Philip A. Franco, for Defendant-Relator, Gregory T. Stevens, for Plaintiff-Respondant, Marshall A. Hevron, for Defendant-Relator, H. Alton Johnson, III, for Plaintiff-Respondant, Raymond P. Ward, for Defendant-Relator, R. Ryland Percy, III, for Plaintiff-Respondant, Vincent J. Sotile, Jr., for Defendant-Relator, Gerrie Englade , for Other, Erin Wiley Lanoux, for Plaintiff-Respondant" + }, + { + "case_dates": "2015-01-21", + "case_names": "State of Louisiana Versus Aaron Boston", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/48BA7093-DDE2-4D79-A5C2-52441C5647E2.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-KA-632", + "judges": "Henry G. Sullivan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "11-1005", + "case_name_shorts": "", + "attorneys": "Arron Boston , for Defendant-Appellant, Bruce G. Whittaker, for Defendant-Appellant, Andrea F. Long, for Plaintiff-Appellee, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-15", + "case_names": "Donald M. Ober, III and Lacie Ober, Individually and on Behalf of Their Minor Children Versus Greg Champagne, Sheriff of St. Charles Parish, Deputy Johnny a . Champagne, Abc Insurance Company, Def Insurance Company, Ghi Insurance Company", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2015/5CE9A052-7E35-4A5B-BF63-C16B8857F54A.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Denied", + "docket_numbers": "14-CA-170", + "judges": "M. Lauren Lemmon", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "73,368", + "case_name_shorts": "", + "attorneys": "Trevor M. Cutaiar, for Defendant-Appellant, David W. Ardoin, for Plaintiff-Appellee, Mark E. Hanna, for Defendant-Appellant, Don A. Almerico, for Defendant-Appellant, Matthew D. Ory, for Plaintiff-Appellee, Jerri G. Smitko, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Timmie A. Reed", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/1B92BE69-6411-4FBB-BCB8-9410C51380D4.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Remanded with Instructions", + "docket_numbers": "14-KA-702", + "judges": "Cornelius E. Regan, Pro Tempore", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "13-1050", + "case_name_shorts": "", + "attorneys": "Lieu T. Vo Clark, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Timmie A. Reed , for Defendant-Appellant" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Israel A. Britton", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/98C39082-C819-4F3A-8759-CDEA0E51B868.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-KA-665", + "judges": "Glenn B. Ansardi", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "13-191", + "case_name_shorts": "", + "attorneys": "Gwendolyn K. Brown, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Israel Britton , for Defendant-Appellant" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Cory D. Spencer", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/5B0B9FFC-C6C2-4FFE-8411-03762E0EFEA1.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Sentence Affirmed", + "docket_numbers": "14-KA-319", + "judges": "Henry G. Sullivan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-4971", + "case_name_shorts": "", + "attorneys": "Bertha M. Hillman, for Defendant-Appellant, Cory D. Spencer , for Defendant-Appellant, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Terry M. Boudreaux, for Plaintiff-Appellee" + }, + { + "case_dates": "2015-01-14", + "case_names": "State of Louisiana Versus Bernal L. Aguilar", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2015/3974A9AC-AC32-4495-AC92-FDD058DAB8BD.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed; Remanded with Instructions' on 01/14/2015", + "docket_numbers": "14-KA-714", + "judges": "Ross P. LaDart", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "12-1592", + "case_name_shorts": "", + "attorneys": "Honorable Paul D. Connick, Jr., for Plaintiff-Appellee, Bernal L. Aquilar , for Defendant-Appellant, Jane L. Beebe, for Defendant-Appellant, Terry M. Boudreaux, for Plaintiff-Appellee" + }, + { + "case_dates": "2014-12-16", + "case_names": "William J. Newton, Nsb Properties, L.L.C. and Nsb IV Properties Versus Tom Brenan, Judy Stevens, Terry Stevens, Sr., Terry Stevens, Jr. And Clyde Ducote", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2014/6AFD4EAA-06BD-4885-B030-D8EC665C856B.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-CA-423", + "judges": "June B. Darensburg", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "700-186", + "case_name_shorts": "", + "attorneys": "Suzanne M. Ganucheau, for Plaintiff-Appellee, Carl A. Butler, for Plaintiff-Appellee, Eric A. Holden, for Defendant-Appellant, John A. Treme - In Proper Person, for Defendant-Appellee, Tiffany M. Fleming, for Plaintiff-Appellee, Jerald L. Album, for Plaintiff-Appellee, David I. Courcelle, for Defendant-Appellee" + }, + { + "case_dates": "2014-12-16", + "case_names": "State of Louisiana Versus Aaron Boston", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2014/273B71B9-ED4D-475A-8DBB-28DF243A1430.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed'", + "docket_numbers": "14-KA-632", + "judges": "Henry G. Sullivan", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "11-1005", + "case_name_shorts": "", + "attorneys": "Arron Boston , for Defendant-Appellant, Bruce G. Whittaker, for Defendant-Appellant, Andrea F. Long, for Plaintiff-Appellee, Terry M. Boudreaux, for Plaintiff-Appellee, Honorable Paul D. Connick, Jr., for Plaintiff-Appellee" + }, + { + "case_dates": "2014-12-16", + "case_names": "Donald M. Ober, III and Lacie Ober, Individually and on Behalf of Their Minor Children Versus Greg Champagne, Sheriff of St. Charles Parish, Deputy Johnny a . Champagne, Abc Insurance Company, Def Insurance Company, Ghi Insurance Company", + "download_urls": "tests/examples/opinions/dmzdocs/OI/PO/2014/19A063A0-9CA8-4F40-9B6A-7EC239D16203.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Affirmed in Part, reversed in part and rendered' on 12/16/2014", + "docket_numbers": "14-CA-170", + "judges": "M. Lauren Lemmon", + "lower_courts": "29th Judicial District Court", + "lower_court_numbers": "73,368", + "case_name_shorts": "", + "attorneys": "Trevor M. Cutaiar, for Defendant-Appellant, David W. Ardoin, for Plaintiff-Appellee, Mark E. Hanna, for Defendant-Appellant, Don A. Almerico, for Defendant-Appellant, Matthew D. Ory, for Plaintiff-Appellee, Jerri G. Smitko, for Plaintiff-Appellee" + }, + { + "case_dates": "2014-09-25", + "case_names": "Cheryl Flanagan, Wife of/and Nicholas J. Rogers Versus Shirley Crocker, Wife of/and Bobby Ray T. Malbrough", + "download_urls": "tests/examples/opinions/dmzdocs/RE/2014/73ABAB7A-9516-41B1-8CBA-B63810651AB8.pdf", + "precedential_statuses": "Unknown", + "blocked_statuses": false, + "date_filed_is_approximate": false, + "dispositions": "Rehearing Granted - Appeal Reinstated' on 09/25/2014", + "docket_numbers": "14-CA-402", + "judges": "Stephen C. Grefer", + "lower_courts": "24th Judicial District Court", + "lower_court_numbers": "671-995", + "case_name_shorts": "", + "attorneys": "Robert T. Garrity, Jr., for Defendant-Appellant, R. Ray Orrill, Jr., for Defendant-Appellant, F. Victor Hastings, for Plaintiff-Appellee" + } +] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/lactapp_5_example_2.html b/tests/examples/opinions/united_states/lactapp_5_example_2.html new file mode 100644 index 000000000..8417dfccd --- /dev/null +++ b/tests/examples/opinions/united_states/lactapp_5_example_2.html @@ -0,0 +1,5096 @@ + + + + + Fifth Circuit Court of Appeal - State of Louisiana + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +

+ LOCAL RULES 9-1 AMENDMENT + EFFECTIVE OCTOBER 15, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS + AMENDED LOCAL RULE 9-1. Click COURT for additional + information.                        LOCAL RULE 1 AND 2 AMENDMENT EFFECTIVE + SEPTEMBER 24, 2024 THE LOUISIANA FIFTH CIRCUIT COURT OF APPEAL HAS AMENDED RULE 1 + AND 2 IN REGARDS TO FEES AND COPIES.Click COURT for additional + information.                        *** eCOURT's Newest Feature : eAccess *** + eAccess provides online access to case records and filings for subscription and + non-subscription services. Click here to start today! Click COURT for additional + information.                        **** Judges in the Classroom - Students in the + Courtroom **** Click here to learn + more.                        **** REMINDER!!! **** Registering to sign + up for eCourt Notification is easy and FREE!! Click here to start today! +

+
+
+
+ + + + +
+
+
+ +
+
+ +
+
+
+ + + + + +
+
+
+ + + + +
+
+ + + +
+ + + +
+
+ +

Decisions Issued Search +

+ + +
+
+ +
+
+
+ +

Please Note: Opinions, from 1992 to present, can be searched for by Decisions Month/Year + or Decision Date. Cases with opinion dispositions can be viewed by clicking on the pdf + icon.

+

**If you cannot find your case and believe that it should be included + in the search range, please contact the Clerk's Office at (504) 376-1400**

+ +
+ + + + +
+
+
+
+ (*) Indicates Required Fields +
+
+
+
+ + + +
+ + + +
+
+ * + + + +
+
+ * + + +
+
+ +
+ +
+ +
+
+ + +
+ +
+ +
+
+
+
+ +

Decisions Issued Search Results

50 record(s) returned.   +
+ +
+ +
+ + + + + + + + +
+
+
+ +
+
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + Case #Case Title
+ 14-CA-170 + +
+
+
+
+ Ruling Judge: + Hon. + M. Lauren Lemmon +
+
+
+
+ District Court #: + 73,368 +
+
+
+
+ Lower Court: + 29th + Judicial District Court +
+
+
+
+ Attorney(s): + Trevor + M. Cutaiar, for Defendant-Appellant, David W. + Ardoin, for Plaintiff-Appellee, Mark E. Hanna, for + Defendant-Appellant, Don A. Almerico, for + Defendant-Appellant, Matthew D. Ory, for + Plaintiff-Appellee, Jerri G. Smitko, for + Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/05/2014 + at 10:00 AM in Courtroom 'A' Oral Argument: + Yes +
+
+
+
+ Application for Rehearing on + 12/30/2014
Disposition: 'Affirmed + in Part, reversed in part and rendered' on + 12/16/2014
Rehearing Dispo: + 'Rehearing + Denied' on 01/15/2015 +
+
+
+
+ +
+ DONALD + M. OBER, III AND LACIE OBER, INDIVIDUALLY AND ON BEHALF OF THEIR + MINOR CHILDREN + VERSUS + GREG CHAMPAGNE, SHERIFF OF ST. CHARLES PARISH, DEPUTY JOHNNY A . + CHAMPAGNE, ABC INSURANCE COMPANY, DEF INSURANCE COMPANY, GHI + INSURANCE COMPANY +
+ 14-KA-319 + +
+
+
+
+ Ruling Judge: + Hon. + Henry G. Sullivan +
+
+
+
+ District Court #: + 12-4971 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Bertha + M. Hillman, for Defendant-Appellant, Cory D. Spencer + , for Defendant-Appellant, Honorable Paul D. + Connick, Jr., for Plaintiff-Appellee, Terry M. + Boudreaux, for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 11/03/2014 + at 05:00 PM in Courtroom 'A' Oral Argument: + Yes +
+
+
+
+ Disposition: 'Sentence + Affirmed' on 01/14/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + CORY D. SPENCER +
+ 14-CA-402 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen C. Grefer +
+
+
+
+ District Court #: + 671-995 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Robert + T. Garrity, Jr., for Defendant-Appellant, R. Ray + Orrill, Jr., for Defendant-Appellant, F. Victor + Hastings, for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 01/08/2015 + at 11:30 AM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Application for Rehearing on + 09/22/2014
Disposition: 'Dismiss By Court + Order' on 09/08/2014
Rehearing Dispo: + 'Rehearing + Granted - Appeal Reinstated' on + 09/25/2014
Disposition: 'Affirmed' + on 01/28/2015 +
+
+
+
+ +
+ CHERYL + FLANAGAN, WIFE OF/AND NICHOLAS J. ROGERS + VERSUS + SHIRLEY CROCKER, WIFE OF/AND BOBBY RAY T. MALBROUGH +
+ 14-CA-423 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 700-186 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Suzanne + M. Ganucheau, for Plaintiff-Appellee, Carl A. + Butler, for Plaintiff-Appellee, Eric A. Holden, for + Defendant-Appellant, John A. Treme - In Proper + Person, for Defendant-Appellee, Tiffany M. Fleming, + for Plaintiff-Appellee, Jerald L. Album, for + Plaintiff-Appellee, David I. Courcelle, for + Defendant-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 09/29/2014 + at 01:00 PM in Courtroom 'A' Oral Argument: + Yes +
+
+
+
+ Application for Rehearing on + 12/30/2014
Disposition: 'Affirmed' + on 12/16/2014
Rehearing Dispo: + 'Rehearing + Denied' on 01/21/2015 +
+
+
+
+ +
+ WILLIAM + J. NEWTON, NSB PROPERTIES, L.L.C. AND NSB IV PROPERTIES + VERSUS + TOM BRENAN, JUDY STEVENS, TERRY STEVENS, SR., TERRY STEVENS, JR. AND + CLYDE DUCOTE +
+ 14-KA-551 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen D. Enright +
+
+
+
+ District Court #: + 12-4590 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Appellee, Juliet L. + Clark, for Plaintiff-Appellee, Jane L. Beebe, for + Defendant-Appellant, Honorable Paul D. Connick, Jr., + for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 01/07/2015 + at 10:00 AM in Courtroom 'A' Oral Argument: + Yes +
+
+
+
+ Disposition: 'Affirmed' + on 01/28/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + TORY WILSON +
+ 14-KA-632 + +
+
+
+
+ Ruling Judge: + Hon. + Henry G. Sullivan +
+
+
+
+ District Court #: + 11-1005 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Arron + Boston , for Defendant-Appellant, Bruce G. + Whittaker, for Defendant-Appellant, Andrea F. Long, + for Plaintiff-Appellee, Terry M. Boudreaux, for + Plaintiff-Appellee, Honorable Paul D. Connick, Jr., + for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 12/03/2014 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
+
+
+
+ Application for Rehearing on + 12/29/2014
Disposition: 'Affirmed' + on 12/16/2014
Rehearing Dispo: + 'Rehearing + Denied' on 01/21/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + AARON BOSTON +
+ 14-CA-652 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 716-293 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + N. + Kim Nguyen, for Plaintiff-Appellant, Mark E. Morice, + for Plaintiff-Appellant, Gerald J. Calogero, for + Defendant-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 01/06/2015 + at 10:00 AM in Courtroom 'A' Oral Argument: + No +
+
+
+
+ Disposition: 'Reversed + and Remanded' on 01/28/2015 +
+
+
+
+ +
+ MORGAN + PALMISANO + VERSUS + JENNIFER NAUMAN-ANDERSON +
+ 14-KA-665 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 13-191 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Gwendolyn + K. Brown, for Defendant-Appellant, Terry M. + Boudreaux, for Plaintiff-Appellee, Honorable Paul D. + Connick, Jr., for Plaintiff-Appellee, Israel Britton + , for Defendant-Appellant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 01/06/2015 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
+
+
+
+ Disposition: 'Affirmed' + on 01/14/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + ISRAEL A. BRITTON +
+ 14-KA-702 + +
+
+
+
+ Ruling Judge: + Hon. + Cornelius E. Regan, Pro Tempore +
+
+
+
+ District Court #: + 13-1050 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Lieu + T. Vo Clark, for Defendant-Appellant, Terry M. + Boudreaux, for Plaintiff-Appellee, Honorable Paul D. + Connick, Jr., for Plaintiff-Appellee, Timmie A. Reed + , for Defendant-Appellant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 01/08/2015 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
+
+
+
+ Disposition: 'Affirmed; + Remanded with Instructions' on 01/14/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + TIMMIE A. REED +
+ 14-KA-714 + +
+
+
+
+ Ruling Judge: + Hon. + Ross P. LaDart +
+
+
+
+ District Court #: + 12-1592 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Honorable + Paul D. Connick, Jr., for Plaintiff-Appellee, Bernal + L. Aquilar , for Defendant-Appellant, Jane L. Beebe, + for Defendant-Appellant, Terry M. Boudreaux, for + Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ 01/09/2015 + at 10:00 AM in Courtroom 'B' Oral Argument: + Yes +
+
+
+
+ Application for Rehearing on + 01/23/2015
Disposition: 'Affirmed; + Remanded with Instructions' on + 01/14/2015
Rehearing Dispo: + 'Rehearing + Denied' on 02/12/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + BERNAL L. AGUILAR +
+ 14-C-743 + +
+
+
+
+ Ruling Judge: + Hon. + Ralph E. Tureau +
+
+
+
+ District Court #: + 34,878 +
+
+
+
+ Lower Court: + 23rd + Judicial District Court +
+
+
+
+ Attorney(s): + Michael + D. Hunt, for Plaintiff-Respondant, Scott R. + Cheatham, for Defendant-Relator, Jeffrey E. + Richardson, for Defendant-Relator, Kelly K. + Boudreaux, for Plaintiff-Respondant, Philip A. + Franco, for Defendant-Relator, Gregory T. Stevens, + for Plaintiff-Respondant, Marshall A. Hevron, for + Defendant-Relator, H. Alton Johnson, III, for + Plaintiff-Respondant, Raymond P. Ward, for + Defendant-Relator, R. Ryland Percy, III, for + Plaintiff-Respondant, Vincent J. Sotile, Jr., for + Defendant-Relator, Gerrie Englade , for Other, Erin + Wiley Lanoux, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Application for Rehearing on + 12/30/2014
Disposition: 'Writ Granted' on + 12/17/2014
Rehearing Dispo: + 'Rehearing + Denied' on 01/21/2015 +
+
+
+
+ +
+ UNION + PACIFIC RAILROAD COMPANY VERSUS WEST BANK LAND COMPANY, LLC + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS VIRGINIA FAVROT, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS MICHAEL FRANCIS SCHEXNAYDER, + ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS ALLEN J. MELANCON, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS SUCCESSION OF BEATRICE, + LABICHE SCHEXNAYDER, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS ESTATE OF DORIS SCHEXNAYDER + SIGMON, ET AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS ARTHUR SCHEXNAYDER, JR., ET + AL. + + CONSOLIDATED WITH + + UNION PACIFIC RAILROAD COMPANY VERSUS SUCCESSION OF DORIS + SCHEXNAYDER, ET AL. +
+ 14-KA-841 + +
+
+
+
+ Ruling Judge: + Hon. + Robert M. Murphy, Ad Hoc +
+
+
+
+ District Court #: + 11-4200 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Powell + W. Miller, for Defendant-Appellant, Terry M. + Boudreaux, for Plaintiff-Appellee, Tony Russell , + for Defendant-Appellant, Honorable Paul D. Connick, + Jr., for Plaintiff-Appellee, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Dismissed' + on 01/28/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + TONY A. RUSSELL +
+ 14-KH-852 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen C. Grefer +
+
+
+
+ District Court #: + 13-2934 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Eddie Wilson + , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'DENIED AS MOOT' on 01/26/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + EDDIE WILSON A/K/A EDWARD WILSON +
+ 14-KH-866 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 96-6273 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Eric + Gresham , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/06/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + ERIC GRESHAM +
+ 14-K-884 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 14-5390 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Raul + E. Guerra, Jr., for Defendant-Respondant, Terry M. + Boudreaux, for Plaintiff-Relator, Matthew Caplan, + for Plaintiff-Relator, Honorable Paul D. Connick, + Jr., for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Granted' on 01/05/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + ULYSSES MAXWELL +
+ 14-C-885 + +
+
+
+
+ Ruling Judge: + Hon. + John J. Molaison +
+
+
+
+ District Court #: + 718-077 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Ivan + A. Orihuela, for Plaintiff-Respondant, Kevin C. + O'Bryon, for Defendant-Relator, Sherry A. Watters, + for Defendant-Relator, Marta-Ann Schnabel, for + Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Granted' on 01/21/2015 +
+
+
+
+ +
+ MIRIAM + BLANDINO, ET AL + VERSUS + KENDRA PIERRE, GEICO INDEMNITY COMPANY, ET AL +
+ 14-KH-901 + +
+
+
+
+ Ruling Judge: + Hon. + Raymond S. Steib +
+
+
+
+ District Court #: + 08-5598 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Defendant-Respondant, Terrence + Pollard , for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/26/2015 +
+
+
+
+ +
+ TERRENCE + POLLARD + VERSUS + N. BURL CAIN, WARDEN +
+ 14-KH-909 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 12-3544 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Roland + A. Ditta, for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, Honorable Paul D. Connick, + Jr., for Plaintiff-Respondant, Matthew Caplan, for + Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/13/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + BAMELA KOUSSANTA +
+ 14-C-911 + +
+
+
+
+ Ruling Judge: + Hon. + Emile R. St. Pierre +
+
+
+
+ District Court #: + 76,825 +
+
+
+
+ Lower Court: + 29th + Judicial District Court +
+
+
+
+ Attorney(s): + Joseph + G. Kopfler, for Defendant-Respondant, Jason R. + Kenney, for Defendant-Respondant, Lawrence N. + Curtis, for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Application for Rehearing on + 12/19/2014
Disposition: 'WRIT NOT CONSIDERED' + on 12/11/2014
Rehearing Dispo: + 'Rehearing + Granted' on 01/29/2015 +
+
+
+
+ +
+ JEFFREY + L. SOUDELIER, JR. + VERSUS + PBC MANAGEMENT, INC., FLORIDA MARINE TRANSPORTERS, AND FLORIDA + MARINE, LLC +
+ 14-KH-914 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 08-6357 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Daniel + Ott , for Plaintiff-Relator, Terry M. Boudreaux, for + Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/07/2015 +
+
+
+
+ +
+ DANIEL + OTT + VERSUS + STATE OF LOUISIANA +
+ 14-KH-915 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 95-5434 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Phillip + Smith , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/22/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + PHILLIP SMITH +
+ 14-KH-921 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 09-159 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Carlos + Interiano , for Defendant-Relator, Terry M. + Boudreaux, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/07/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + CARLOS INTERIANO +
+ 14-KH-924 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 11-5979 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Mark Jordan + , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/13/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + MARK JORDAN +
+ 14-KH-928 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 11-2452 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Corey + Stevenson , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/07/2015 +
+
+
+
+ +
+ 24TH + JUDICIAL COURT JEFFERSON PARISH, STATE OF LOUISIANA + VERSUS + COREY STEVENSON +
+ 14-KH-929 + +
+
+
+
+ Ruling Judge: + Hon. + Donald A. Rowan +
+
+
+
+ District Court #: + 03-2973 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Defendant-Respondant, Anthony + Darensbourg , for Plaintiff-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/21/2015 +
+
+
+
+ +
+ ANTHONY + DARENSBOURG + VERSUS + STATE OF LOUISIANA +
+ 14-K-931 + +
+
+
+
+ Ruling Judge: + Hon. + Mary H. Becnel +
+
+
+
+ District Court #: + 14,200 +
+
+
+
+ Lower Court: + 40th + District Court +
+
+
+
+ Attorney(s): + Hon. + Thomas F. Daley, for Plaintiff-Respondant, Orenthal + J. Jasmin, for Plaintiff-Respondant, Kathleen M. + Wilson, for Defendant-Relator, J. Philip Prescott, + Jr., for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/16/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + CLARENCE ANDERSON, JR. +
+ 14-KA-936 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen D. Enright +
+
+
+
+ District Court #: + 13-6 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Appellee, Matthew + Caplan, for Plaintiff-Appellee, Holli A. + Herrle-Castillo, for Defendant-Appellant, Honorable + Paul D. Connick, Jr., for Plaintiff-Appellee, + +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Appeal + Dismissed' on 01/28/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + JOHN MICHAEL MARLBROUGH +
+ 14-C-939 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 678-486 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Juan + C. Labadie, for Plaintiff-Respondant, Rachel S. + Kellogg, for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/22/2015 +
+
+
+
+ +
+ JAN + ARABIE + VERSUS + DAVID CROCKET VOLUNTEER FIRE DEPARTMENT AND THE CITY OF + GRETNA +
+ 14-KH-950 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 80-1980 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Honorable + John T. Olivier, for Other, Terry M. Boudreaux, for + Plaintiff-Respondant, Julie C. Tizzard, for + Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Granted' on + 01/14/2015
Disposition: 'Writ Trans to + Supreme Court' on 01/14/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + JAN PORRETTO +
+ 14-C-951 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 599-351 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Stephen + K. Conroy, for Plaintiff-Respondant, Sara C. Eagan, + for Defendant-Respondant, E. Alexis Bevis, for + Defendant-Respondant, Peter D. Carollo, for + Defendant-Respondant, Emily E. Ross, for + Defendant-Respondant, Amanda D. Hogue, for + Plaintiff-Respondant, Seth A. Schmeeckle, for + Defendant-Respondant, Ashley L. Belleau, for + Defendant-Relator, W. Scarth Clark, for + Defendant-Respondant, James M. Garner, for + Defendant-Respondant, Omar K. Mason, for + Defendant-Relator, Thomas J. Madigan, II, for + Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/21/2015 +
+
+
+
+ +
+ HUBER, + INC. + VERSUS + NEPTUNE SCIENCES, INC. +
+ 14-KH-952 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 12-5230 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Joey Griffin + , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/15/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + JOEY GRIFFIN +
+ 14-KH-955 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 13-4810 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Rydell + Davis , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Granted' on 01/22/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + RYDELL DAVIS +
+ 14-K-956 + +
+
+
+
+ Ruling Judge: + Hon. + John J. Molaison +
+
+
+
+ District Court #: + 14-2884 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Bruce H. + Lizana, for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/08/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + MARCUS RAY +
+ 14-C-957 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen D. Enright +
+
+
+
+ District Court #: + 723-901 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Benjamin + J. Biller, for Defendant-Relator, C. William + Bradley, Jr., for Defendant-Relator, Miles G. + Trapolin, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/16/2015 +
+
+
+
+ +
+ SHARON + CARTER, KRISTAL CARTER WILCOX AND TINA CARTER + VERSUS + LOUISIANA MEDICAL MUTUAL INSURANCE COMPANY AND DR. STEPHEN + LAYNE +
+ 15-K-5 + +
+
+
+
+ Ruling Judge: + Hon. + Ellen Shirer Kovach +
+
+
+
+ District Court #: + 08-361 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Tramaine A. + Harrison , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/13/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + TRAMAINE A. HARRISON +
+ 15-C-6 + +
+
+
+
+ Ruling Judge: + Hon. + Donald A. Rowan +
+
+
+
+ District Court #: + 705-015 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Michael + J. Ecuyer, for Plaintiff-Respondant, Peter E. + Sperling, for Defendant-Relator, John B. Cazale, V, + for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Dismissed' on 01/27/2015 +
+
+
+
+ +
+ MARY + BETH WILLEM, ALBERT J. ZAHN AND THOMAS E. ZAHN, AS REPRESENTATIVES + OF THE ESTATE OF THEIR MOTHER, NEDRA ZAHN + VERSUS + LOUISIANA MEDICAL MUTUAL INSURANCE COMPANY AND MELVIN L. PARNELL, + JR., M.D. +
+ 15-K-8 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 14-0947, + 12-5780 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Jefferson + Faggard , for Plaintiff-Relator, Terry M. Boudreaux, + for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/07/2015 +
+
+
+
+ +
+ JEFFERSON + FAGGARD + VERSUS + STATE OF LOUISIANA +
+ 15-K-11 + +
+
+
+
+ Ruling Judge: + Hon. + Ellen Shirer Kovach +
+
+
+
+ District Court #: + 13-1901 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Michael + F. Somoza, for Defendant-Relator, Terry M. + Boudreaux, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/23/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + BRIAN WILLIAMS +
+ 15-KH-12 + +
+
+
+
+ Ruling Judge: + Hon. + Emile R. St. Pierre +
+
+
+
+ District Court #: + 11-245 +
+
+
+
+ Lower Court: + 29th + Judicial District Court +
+
+
+
+ Attorney(s): + Hon. + Joel T. Chaisson, II, for Plaintiff-Respondant, + Glenn Brooks , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/28/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + GLENN BROOKS +
+ 15-K-15 + +
+
+
+
+ Ruling Judge: + Hon. + Stephen D. Enright +
+
+
+
+ District Court #: + 15-1 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Johnathan + E. Emilien , for Defendant-Relator, Terry M. + Boudreaux, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/09/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + JOHNATHAN E. EMILIEN +
+ 15-K-16 + +
+
+
+
+ Ruling Judge: + Hon. + M. Lauren Lemmon +
+
+
+
+ District Court #: + 14,620 +
+
+
+
+ Lower Court: + 29th + Judicial District Court +
+
+
+
+ Attorney(s): + Julie + E. Cullen, for Plaintiff-Respondant, Maria M. + Chaisson, for Defendant-Relator, Hon. Joel T. + Chaisson, II, for Plaintiff-Respondant, Colin Clark, + for Plaintiff-Respondant, Hon. James D."Buddy" + Caldwell, for Plaintiff-Respondant, James T. + Phillips, for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/27/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + LAURA MADERE +
+ 15-K-23 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 13-4999 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Dwight + Harris , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Granted' on 01/21/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + DWIGHT HARRIS +
+ 15-C-25 + +
+
+
+
+ Ruling Judge: + Hon. + Scott U. Schlegel +
+
+
+
+ District Court #: + 719-999 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Jeffrey + A. Riggs, for Plaintiff-Respondant, Thomas G. Buck, + for Defendant-Relator, A. Scott Tillery, for + Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/21/2015 +
+
+
+
+ +
+ METAIRIE + TOWERS CONDOMINIUM ASSOCIATION, INC. + VERSUS + CHARLES W. CRUTCHER AND STATE FARM FIRE AND CASUALTY COMPANY +
+ 15-KH-29 + +
+
+
+
+ Ruling Judge: + Hon. + Lee V. Faulkner +
+
+
+
+ District Court #: + 96-3245 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Eric + M. Denet , for Plaintiff-Relator, Terry M. + Boudreaux, for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/26/2015 +
+
+
+
+ +
+ STATE + EX REL. ERIC M. DENET + VERSUS + N. BURL CAIN, WARDEN +
+ 15-C-30 + +
+
+
+
+ Ruling Judge: + Hon. + Raymond S. Steib +
+
+
+
+ District Court #: + 734-862 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Daniel + R. Martiny, for Defendant-Respondant, John E. + Spellman , for Plaintiff-Relator, Brad G. Theard, + for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/22/2015 +
+
+
+
+ +
+ JOHN + E. SPELLMAN + VERSUS + SHERIFF NEWELL NORMAND, DR. GREENE, CORRECTED HEALTH CARE, JEFFERSON + PARISH CORRECTIONAL CENTER +
+ 15-K-32 + +
+
+
+
+ Ruling Judge: + Hon. + Donald A. Rowan +
+
+
+
+ District Court #: + 14-3616 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Alfred + Waker , for Defendant-Relator, Terry M. Boudreaux, + for Plaintiff-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/16/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + ALFRED WAKER +
+ 15-K-33 + +
+
+
+
+ Ruling Judge: + Hon. + Glenn B. Ansardi +
+
+
+
+ District Court #: + 14-3761 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Pedro A. + Monterroso Navas , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/29/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + PEDRO A. MONTERROSO NAVAS +
+ 15-KH-35 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 05-2244 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Terry + M. Boudreaux, for Plaintiff-Respondant, Mozine + Johnson , for Defendant-Relator, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/28/2015 +
+
+
+
+ +
+ STATE + OF LOUISIANA + VERSUS + MOZINE JOHNSON +
+ 15-C-42 + +
+
+
+
+ Ruling Judge: + Hon. + June B. Darensburg +
+
+
+
+ District Court #: + 738-687 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Percy + M. Taylor , for Plaintiff-Relator, Steven B. Jones, + for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Granted' on 01/30/2015 +
+
+
+
+ +
+ PERCY + M. TAYLOR + VERSUS + 24th J.D.A.'S, ET. AL., 24TH J.D.-I.D.B.A.'S, ET. AL. +
+ 15-KH-48 + +
+
+
+
+ Ruling Judge: + Hon. + Nancy A. Miller +
+
+
+
+ District Court #: + 98-4938 +
+
+
+
+ Lower Court: + 24th + Judicial District Court +
+
+
+
+ Attorney(s): + Troy + Snavely , for Plaintiff-Relator, Terry M. Boudreaux, + for Defendant-Respondant, +
+
+
+
+
+
+
+
+ Court Hearing Info: +
+ +
+
+
+
+ Disposition: 'Writ Denied' on 01/30/2015 +
+
+
+
+ +
+ TROY + SNAVELY + VERSUS + N. BURL CAIN, STATE OF LOUISIANA +
+ + +
+
+ + + + + + + + + + + + + + + + + + + +
+ + + +
+
+ + + + +
+
+ + + + + + +
+ + + +
+
+
+ Copyrights © 2014 & All Rights Reserved by Fifth Circuit Court of Appeal. +
+ +
+
+
+ + + +
+
+ +
+
+ + + \ No newline at end of file