-
Notifications
You must be signed in to change notification settings - Fork 0
/
postproc.sh
executable file
·81 lines (74 loc) · 2.08 KB
/
postproc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env bash
cd module
string="
<select1 ref=\"Entity_Types\">
<label>{Entity_Types}<\/label>
<item>
<label>Options not loaded<\/label>
<value>Options not loaded<\/value>
<\/item>
<\/select1>"
replacement="
<group ref=\"Colgroup_1\" faims_style=\"orientation\">
<label\/>
<group ref=\"Col_0\" faims_style=\"even\">
<label\/>
<select1 ref=\"Entity_Types\">
<label>{Entity_Types}<\/label>
<item>
<label>Options not loaded<\/label>
<value>Options not loaded<\/value>
<\/item>
<\/select1>
<\/group>
<group ref=\"Col_1\" faims_style=\"even\">
<label\/>
<select1 ref=\"Select_User\">
<label>{Select_User}<\/label>
<item>
<label>Options not loaded<\/label>
<value>Options not loaded<\/value>
<\/item>
<\/select1>
<\/group>
<\/group>"
perl -0777 -i.original -pe "s/$string/$replacement/igs" ui_schema.xml
string="
<Entity_Types\/>"
replacement="
<Colgroup_1>
<Col_0>
<Entity_Types\/>
<\/Col_0>
<Col_1>
<Select_User\/>
<\/Col_1>
<\/Colgroup_1>
<Select_User\/>"
perl -0777 -i.original -pe "s/$string/$replacement/igs" ui_schema.xml
cat << EOF >> ui_styling.css
.readonly {
color: #B2B2B2;
}
EOF
cat << EOF >> english.0.properties
All=All
Create_Record=Create Record
No_Duplicates_Found=No Duplicates Found
Select_User=Select User
Valid_Starting_Sample_ID=Valid Starting Sample ID
Eh=Eh
pH=pH
Add_New_Eh=Add New Eh
Add_New_pH=Add New pH
Please_Fill_In_PH=Please fill in an pH value
Please_Fill_In_EH=Please fill in an Eh value
Duplicate_IDs_Found=Duplicate IDs found
Press_To_Delete=Press OK to Delete this
EOF
cat << EOF >> ui_styling.css
.fixedheightfive {
height: 250px;
}
EOF
rm ui_schema.xml.original