SIFMaker 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +0 -0
- data/LICENSE +0 -0
- data/README +3 -0
- data/lib/sifmaker/us20r1/common/addresslist.rb +53 -0
- data/lib/sifmaker/us20r1/common/contactinfo.rb +19 -0
- data/lib/sifmaker/us20r1/common/countriesof.rb +17 -0
- data/lib/sifmaker/us20r1/common/coursecredits.rb +12 -0
- data/lib/sifmaker/us20r1/common/demographics.rb +29 -0
- data/lib/sifmaker/us20r1/common/dwellingarrangement.rb +12 -0
- data/lib/sifmaker/us20r1/common/earnedstatus.rb +13 -0
- data/lib/sifmaker/us20r1/common/electronicidlist.rb +19 -0
- data/lib/sifmaker/us20r1/common/emaillist.rb +18 -0
- data/lib/sifmaker/us20r1/common/englishproficiency.rb +14 -0
- data/lib/sifmaker/us20r1/common/exceptionalitycategories.rb +20 -0
- data/lib/sifmaker/us20r1/common/gradelevels.rb +21 -0
- data/lib/sifmaker/us20r1/common/identificationinfolist.rb +18 -0
- data/lib/sifmaker/us20r1/common/instructionallevel.rb +13 -0
- data/lib/sifmaker/us20r1/common/languagelist.rb +23 -0
- data/lib/sifmaker/us20r1/common/mealstatus.rb +15 -0
- data/lib/sifmaker/us20r1/common/meetingtime.rb +13 -0
- data/lib/sifmaker/us20r1/common/name.rb +17 -0
- data/lib/sifmaker/us20r1/common/othercodelist.rb +19 -0
- data/lib/sifmaker/us20r1/common/otherid.rb +18 -0
- data/lib/sifmaker/us20r1/common/othernames.rb +12 -0
- data/lib/sifmaker/us20r1/common/phonenumberlist.rb +19 -0
- data/lib/sifmaker/us20r1/common/plannedassessmentparticipation.rb +13 -0
- data/lib/sifmaker/us20r1/common/program.rb +13 -0
- data/lib/sifmaker/us20r1/common/programstatus.rb +13 -0
- data/lib/sifmaker/us20r1/common/programtype.rb +13 -0
- data/lib/sifmaker/us20r1/common/racelist.rb +20 -0
- data/lib/sifmaker/us20r1/common/relationship.rb +13 -0
- data/lib/sifmaker/us20r1/common/scedcode.rb +15 -0
- data/lib/sifmaker/us20r1/common/schoolcontactlist.rb +19 -0
- data/lib/sifmaker/us20r1/common/sif_extendedelements.rb +19 -0
- data/lib/sifmaker/us20r1/common/subjectarealist.rb +19 -0
- data/lib/sifmaker/us20r1/common/termspan.rb +13 -0
- data/lib/sifmaker/us20r1/loader.rb +47 -0
- data/lib/sifmaker/us20r1/sis/attendancecodeinfo.rb +24 -0
- data/lib/sifmaker/us20r1/sis/blank.rb +19 -0
- data/lib/sifmaker/us20r1/sis/calendardate.rb +57 -0
- data/lib/sifmaker/us20r1/sis/calendarsummary.rb +30 -0
- data/lib/sifmaker/us20r1/sis/leainfo.rb +53 -0
- data/lib/sifmaker/us20r1/sis/roominfo.rb +32 -0
- data/lib/sifmaker/us20r1/sis/roomtype.rb +18 -0
- data/lib/sifmaker/us20r1/sis/schoolcourseinfo.rb +30 -0
- data/lib/sifmaker/us20r1/sis/schoolinfo.rb +50 -0
- data/lib/sifmaker/us20r1/sis/staffpersonal.rb +27 -0
- data/lib/sifmaker/us20r1/sis/studentattendancesummary.rb +29 -0
- data/lib/sifmaker/us20r1/sis/studentcontact.rb +42 -0
- data/lib/sifmaker/us20r1/sis/studentdailyattendance.rb +23 -0
- data/lib/sifmaker/us20r1/sis/studentpersonal.rb +78 -0
- data/lib/sifmaker.rb +13 -0
- data/test/studentpersonal.test +93 -0
- metadata +121 -0
data/CHANGELOG
ADDED
File without changes
|
data/LICENSE
ADDED
File without changes
|
data/README
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
|
6
|
+
class Street
|
7
|
+
include ROXML
|
8
|
+
xml_name 'Street'
|
9
|
+
xml_accessor :type, :from => "@Type"
|
10
|
+
xml_accessor :line1, :from => "Line1"
|
11
|
+
xml_accessor :line2, :from => "Line2"
|
12
|
+
xml_accessor :line3, :from => "Line3"
|
13
|
+
xml_accessor :complex, :from => "Complex"
|
14
|
+
xml_accessor :streetnumber, :from => "StreetNumber"
|
15
|
+
xml_accessor :streetprefix, :from => "StreetPrefix"
|
16
|
+
xml_accessor :streetname, :from => "StreetName"
|
17
|
+
xml_accessor :streettype, :from => "StreetType"
|
18
|
+
xml_accessor :streetsuffix, :from => "StreetSuffix"
|
19
|
+
xml_accessor :apartmenttype, :from => "ApartmentType"
|
20
|
+
xml_accessor :apartmentnumberprefix, :from => "ApartmentNumberPrefix"
|
21
|
+
xml_accessor :apartmentnumber, :from => "ApartmentNumber"
|
22
|
+
xml_accessor :apartmentnumbersuffix, :from => "ApartmentNumberSuffix"
|
23
|
+
end
|
24
|
+
|
25
|
+
class GridLocation
|
26
|
+
include ROXML
|
27
|
+
xml_name 'GridLocation'
|
28
|
+
xml_accessor :latitude, :from => "Latitude"
|
29
|
+
xml_accessor :longitude, :from => "Longitude"
|
30
|
+
end
|
31
|
+
|
32
|
+
class Address
|
33
|
+
include ROXML
|
34
|
+
xml_name 'Address'
|
35
|
+
xml_accessor :type, :from => "@Type"
|
36
|
+
xml_accessor :street, :as => [Street]
|
37
|
+
xml_accessor :city, :from => "City"
|
38
|
+
xml_accessor :county, :from => "County"
|
39
|
+
xml_accessor :stateprovince, :from => "StateProvince"
|
40
|
+
xml_accessor :country, :from => "Country"
|
41
|
+
xml_accessor :postalcode, :from => "PostalCode"
|
42
|
+
xml_accessor :gridlocation, :as => [GridLocation]
|
43
|
+
xml_accessor :sif_action, :from => "SIF_Action"
|
44
|
+
end
|
45
|
+
|
46
|
+
class AddressList
|
47
|
+
include ROXML
|
48
|
+
xml_name 'AddressList'
|
49
|
+
xml_accessor :address, :as => [Address]
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
|
4
|
+
module SIFMaker
|
5
|
+
module US20r1
|
6
|
+
|
7
|
+
class ContactInfo
|
8
|
+
include ROXML
|
9
|
+
xml_name 'ContactInfo'
|
10
|
+
xml_accessor :name, :as=>[Name]
|
11
|
+
xml_accessor :positiontitle, :from => 'PostionTitle'
|
12
|
+
xml_accessor :role, :from => 'Role'
|
13
|
+
xml_accessor :address, :as=>[Address]
|
14
|
+
xml_accessor :emaillist, :as=>[EmailList]
|
15
|
+
xml_accessor :phonenumberlist, :as=>[PhoneNumberList]
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class CountriesOfCitizenship
|
6
|
+
include ROXML
|
7
|
+
xml_name 'CountriesOfCitizenship'
|
8
|
+
xml_accessor :countryofcitizenship, :as => [], :from => 'CountryOfCitizenship'
|
9
|
+
end
|
10
|
+
|
11
|
+
class CountriesOfResidency
|
12
|
+
include ROXML
|
13
|
+
xml_name 'CountriesOfResidency'
|
14
|
+
xml_accessor :countryofresidency, :as => [], :from => 'CountryOfResidency'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
|
6
|
+
class Demographics
|
7
|
+
include ROXML
|
8
|
+
xml_name 'Demographics'
|
9
|
+
xml_accessor :racelist, :as => [RaceList]
|
10
|
+
xml_accessor :hispaniclatino, :from => "HispanicLatino"
|
11
|
+
xml_accessor :gender, :from => "Gender"
|
12
|
+
xml_accessor :birthdate, :from => "BirthDate"
|
13
|
+
xml_accessor :birthdateverification, :from => "BirthDateVerification"
|
14
|
+
xml_accessor :placeofbirth, :from => "PlaceOfBirth"
|
15
|
+
xml_accessor :countyofbirth, :from => "CountyOfBirth"
|
16
|
+
xml_accessor :stateofbirth, :from => "StateOfBirth"
|
17
|
+
xml_accessor :countryofbirth, :from => "CountryOfBirth"
|
18
|
+
xml_accessor :countriesofcitizenship, :as => [CountriesOfCitizenship]
|
19
|
+
xml_accessor :countriesofresidency, :as => [CountriesOfResidency]
|
20
|
+
xml_accessor :countryarrivaldate, :from => "CountryArrivalDate"
|
21
|
+
xml_accessor :citizenshipstatus, :from => "CitizenshipStatus"
|
22
|
+
xml_accessor :englishproficiency, :as => [EnglishProficiency]
|
23
|
+
xml_accessor :languagelist, :as => [LanguageList]
|
24
|
+
xml_accessor :dwellingarrangement, :as => [DwellingArrangement]
|
25
|
+
xml_accessor :maritalstatus, :from => "MaritalStatus"
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class EarnedStatus
|
6
|
+
include ROXML
|
7
|
+
xml_name 'EarnedStatus'
|
8
|
+
xml_accessor :type, :from => "@Type"
|
9
|
+
xml_accessor :startdate, :from => "StartDate"
|
10
|
+
xml_accessor :enddate, :from => "EndDate"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class ElectronicId
|
6
|
+
include ROXML
|
7
|
+
xml_name 'ElectronicId'
|
8
|
+
xml_accessor :type, :from => "@Type"
|
9
|
+
xml_accessor :electronicid, :from => :content
|
10
|
+
end
|
11
|
+
|
12
|
+
class ElectronicIdList
|
13
|
+
include ROXML
|
14
|
+
xml_name 'ElectronicIdList'
|
15
|
+
xml_accessor :electronicid, :as => [ElectronicId]
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class Email
|
6
|
+
include ROXML
|
7
|
+
xml_name 'Email'
|
8
|
+
xml_accessor :type, :from => '@Type'
|
9
|
+
xml_accessor :email, :from => :content
|
10
|
+
end
|
11
|
+
|
12
|
+
class EmailList
|
13
|
+
include ROXML
|
14
|
+
xml_name 'EmailList'
|
15
|
+
xml_accessor :email, :as => [Email]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class ExceptionalityCategory
|
6
|
+
include ROXML
|
7
|
+
xml_name 'ExceptionalityCategory'
|
8
|
+
xml_accessor :code, :from => "@Code"
|
9
|
+
xml_accessor :othercodelist, :as => [OtherCode]
|
10
|
+
xml_accessor :exceptionalitypriority, :from => 'ExceptionalityPriority'
|
11
|
+
end
|
12
|
+
|
13
|
+
class ExceptionalityCategories
|
14
|
+
include ROXML
|
15
|
+
xml_name 'ExceptionalityCategories'
|
16
|
+
xml_accessor :exceptionalitycategory, :as => [ExceptionalityCategory]
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
|
6
|
+
|
7
|
+
class GradeLevel
|
8
|
+
include ROXML
|
9
|
+
xml_name 'GradeLevel'
|
10
|
+
xml_accessor :code, :from => 'Code'
|
11
|
+
xml_accessor :othercodelist, :as => [OtherCode]
|
12
|
+
end
|
13
|
+
|
14
|
+
class GradeLevels
|
15
|
+
include ROXML
|
16
|
+
xml_name 'GradeLevels'
|
17
|
+
xml_accessor :gradelevel, :as => [GradeLevel]
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class IdentificationInfo
|
6
|
+
include ROXML
|
7
|
+
xml_name 'IdentificationInfo'
|
8
|
+
xml_accessor :type, :from => '@Code'
|
9
|
+
xml_accessor :identicationinfo, :from => :content
|
10
|
+
end
|
11
|
+
|
12
|
+
class IdentificationInfoList
|
13
|
+
include ROXML
|
14
|
+
xml_name 'IdentificationInfoList'
|
15
|
+
xml_accessor :identicationinfo, :as => [IdentificationInfo]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
|
6
|
+
class Language
|
7
|
+
include ROXML
|
8
|
+
xml_name 'Language'
|
9
|
+
xml_accessor :code, :from => "Code"
|
10
|
+
xml_accessor :othercodelist, :as => [OtherCodeList]
|
11
|
+
xml_accessor :languagetype, :from => "LanguageType"
|
12
|
+
xml_accessor :dialect, :from => "Dialect"
|
13
|
+
end
|
14
|
+
|
15
|
+
class LanguageList
|
16
|
+
include ROXML
|
17
|
+
xml_name 'LanguageList'
|
18
|
+
xml_accessor :language, :as => [Language]
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class MealStatus
|
6
|
+
include ROXML
|
7
|
+
xml_name 'MealStatus'
|
8
|
+
xml_accessor :type, :from => "@Type"
|
9
|
+
xml_accessor :startdate, :from => 'StartDate'
|
10
|
+
xml_accessor :enddate, :from => 'EndDate'
|
11
|
+
xml_accessor :schoolyear, :from => 'SchoolYear'
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class Name
|
6
|
+
include ROXML
|
7
|
+
xml_name 'Name'
|
8
|
+
xml_accessor :type, :from => "@Type"
|
9
|
+
xml_accessor :sif_action, :from => "@SIF_Action"
|
10
|
+
xml_accessor :prefix, :from => "Prefix"
|
11
|
+
xml_accessor :lastname, :from => "LastName"
|
12
|
+
xml_accessor :firstname, :from => "FirstName"
|
13
|
+
xml_accessor :middlename, :from => "MiddleName"
|
14
|
+
xml_accessor :preferredname, :from => "PreferredName"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class OtherCode
|
6
|
+
include ROXML
|
7
|
+
xml_name 'OtherCode'
|
8
|
+
xml_accessor :codeset, :from => "@Codeset"
|
9
|
+
xml_accessor :othercode, :from => :content
|
10
|
+
end
|
11
|
+
|
12
|
+
class OtherCodeList
|
13
|
+
include ROXML
|
14
|
+
xml_name 'OtherCodeList'
|
15
|
+
xml_accessor :othercode, :as => [OtherCode]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class OtherId
|
6
|
+
include ROXML
|
7
|
+
xml_name 'OtherId'
|
8
|
+
xml_accessor :otherid, :from => :content
|
9
|
+
end
|
10
|
+
|
11
|
+
class OtherIdList
|
12
|
+
include ROXML
|
13
|
+
xml_name 'OtherIdList'
|
14
|
+
xml_accessor :otherid, :as => [OtherId]
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class PhoneNumber
|
6
|
+
include ROXML
|
7
|
+
xml_name 'PhoneNumber'
|
8
|
+
xml_accessor :type, :from => '@Type'
|
9
|
+
xml_accessor :number, :from => 'Number'
|
10
|
+
xml_accessor :listedstatus, :from => 'ListedStatus'
|
11
|
+
end
|
12
|
+
|
13
|
+
class PhoneNumberList
|
14
|
+
include ROXML
|
15
|
+
xml_name 'PhoneNumberList'
|
16
|
+
xml_accessor :phonenumber, :as => [PhoneNumber]
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class PlannedAssessmentParticipation
|
6
|
+
include ROXML
|
7
|
+
xml_name 'PlannedAssessmentParticipation'
|
8
|
+
xml_accessor :codeset, :from => "@Codeset"
|
9
|
+
xml_accessor :plannedassessmentparticipation, :from => :content
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class Race
|
6
|
+
include ROXML
|
7
|
+
xml_name 'Race'
|
8
|
+
xml_accessor :code, :from => "Code"
|
9
|
+
xml_accessor :othercodelist, :as => [OtherCode]
|
10
|
+
xml_accessor :proportion, :from => "Proportion"
|
11
|
+
end
|
12
|
+
|
13
|
+
class RaceList
|
14
|
+
include ROXML
|
15
|
+
xml_name 'RaceList'
|
16
|
+
xml_accessor :race, :as => [Race]
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class SCEDCode
|
6
|
+
include ROXML
|
7
|
+
xml_name 'SCEDCode'
|
8
|
+
xml_accessor :coursedescription, :from => "CourseDescription"
|
9
|
+
xml_accessor :courselevel, :from => 'CourseLevel'
|
10
|
+
xml_accessor :availablecredit, :from => 'AvailableCredit'
|
11
|
+
xml_accessor :sequencenumber, :from => 'SequenceNumber'
|
12
|
+
xml_accessor :sequencelimit, :from => 'SequenceLimit'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class SchoolContact
|
6
|
+
include ROXML
|
7
|
+
xml_name 'SchoolContact'
|
8
|
+
xml_accessor :publishindirectory, :from => "PublishInDirectory"
|
9
|
+
xml_accessor :contactinfo, :as => [ContactInfo]
|
10
|
+
end
|
11
|
+
|
12
|
+
class SchoolContactList
|
13
|
+
include ROXML
|
14
|
+
xml_name 'SchoolContactList'
|
15
|
+
xml_accessor :schoolcontact, :as => [SchoolContact]
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class SIF_ExtendedElement
|
6
|
+
include ROXML
|
7
|
+
xml_name 'SIF_ExtendedElement'
|
8
|
+
xml_accessor :name, :from => "@Name"
|
9
|
+
xml_accessor :SIF_ExtendedElement, :from => :content
|
10
|
+
end
|
11
|
+
|
12
|
+
class SIF_ExtendedElements
|
13
|
+
include ROXML
|
14
|
+
xml_name 'SIF_ExtendedElements'
|
15
|
+
xml_accessor :SIF_ExtendedElement, :as => [SIF_ExtendedElement]
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'roxml'
|
2
|
+
|
3
|
+
module SIFMaker
|
4
|
+
module US20r1
|
5
|
+
class SubjectArea
|
6
|
+
include ROXML
|
7
|
+
xml_name 'SubjectArea'
|
8
|
+
xml_accessor :code, :from => "Code"
|
9
|
+
xml_accessor :othercodelist, :as => [OtherCodeList]
|
10
|
+
end
|
11
|
+
|
12
|
+
class SubjectAreaList
|
13
|
+
include ROXML
|
14
|
+
xml_name 'SubjectAreaList'
|
15
|
+
xml_accessor :subjectarea, :as => [SubjectArea]
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|