Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed stale type registrations #1530

Merged
merged 22 commits into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ Changelog

**Removed**

- #1530 Removed ARImport
- #1530 Removed stale type registrations
- #1541 Remove add/edit options of ReferenceWidget
- #1535 Remove `zcatalog` monkey (and `getRequestUID` index)
- #1518 Removed stale indexes from `analysis_catalog`
Expand Down
7 changes: 0 additions & 7 deletions bika/lims/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def initialize(context):
from content.analysisrequestsfolder import AnalysisRequestsFolder # noqa
from content.analysisservice import AnalysisService # noqa
from content.analysisspec import AnalysisSpec # noqa
from content.arimport import ARImport # noqa
from content.arreport import ARReport # noqa
from content.artemplate import ARTemplate # noqa
from content.attachment import Attachment # noqa
Expand All @@ -82,7 +81,6 @@ def initialize(context):
from content.batch import Batch # noqa
from content.batchfolder import BatchFolder # noqa
from content.batchlabel import BatchLabel # noqa
from content.bikacache import BikaCache # noqa
from content.bikaschema import BikaSchema # noqa
from content.bikasetup import BikaSetup # noqa
from content.calculation import Calculation # noqa
Expand All @@ -103,8 +101,6 @@ def initialize(context):
from content.instrumenttype import InstrumentType # noqa
from content.instrumentvalidation import InstrumentValidation # noqa
from content.invoice import Invoice # noqa
from content.invoicebatch import InvoiceBatch # noqa
from content.invoicefolder import InvoiceFolder # noqa
from content.labcontact import LabContact # noqa
from content.laboratory import Laboratory # noqa
from content.labproduct import LabProduct # noqa
Expand All @@ -125,12 +121,9 @@ def initialize(context):
from content.rejectanalysis import RejectAnalysis # noqa
from content.report import Report # noqa
from content.reportfolder import ReportFolder # noqa
from content.sample import Sample # noqa
from content.samplecondition import SampleCondition # noqa
from content.samplematrix import SampleMatrix # noqa
from content.samplepartition import SamplePartition # noqa
from content.samplepoint import SamplePoint # noqa
from content.samplesfolder import SamplesFolder # noqa
from content.sampletype import SampleType # noqa
from content.samplingdeviation import SamplingDeviation # noqa
from content.srtemplate import SRTemplate # noqa
Expand Down
221 changes: 0 additions & 221 deletions bika/lims/browser/arimports.py

This file was deleted.

31 changes: 0 additions & 31 deletions bika/lims/browser/arimports.zcml

This file was deleted.

1 change: 0 additions & 1 deletion bika/lims/browser/configure.zcml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<include file="analysisprofile.zcml"/>
<include file="analysisreport.zcml"/>
<include file="analysisservice.zcml"/>
<include file="arimports.zcml"/>
<include file="artemplate.zcml"/>
<include file="attachment.zcml"/>
<include file="auditlog.zcml"/>
Expand Down
38 changes: 0 additions & 38 deletions bika/lims/browser/templates/arimport_add.pt

This file was deleted.

5 changes: 0 additions & 5 deletions bika/lims/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,6 @@
('r', _('Render in Report')),
('i', _('Ignore in Report')),
))
ARIMPORT_OPTIONS = DisplayList((
('c', _('Classic')),
('p', _('Profiles')),
# ('s', _('Special')),
))
GENDERS = DisplayList((
('male', _('Male')),
('female', _('Female')),
Expand Down
Loading