-
Notifications
You must be signed in to change notification settings - Fork 103
/
MiscChanges.txt
377 lines (328 loc) · 16.6 KB
/
MiscChanges.txt
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
2019.10.9 Revised UrlRewrite rules for react development(proxying node.js npm start) in global(site, c:\inetpub\wwwroot) web.config
<rule name="RO_react_proxy_localhost" enabled="true" stopProcessing="true">
<match url="reactproxy/?(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://localhost:3000/{R:1}" />
</rule>
<rule name="RO_react_bundle_port_localhost" enabled="true" stopProcessing="true">
<match url="^(static|runtime|img|helper)/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="reactport/([0-9]+)/?" />
</conditions>
<action type="Rewrite" url="http://localhost:{C:1}/{R:1}/{R:2}" appendQueryString="false" />
</rule>
<rule name="RO_react_basefile_port_localhost" enabled="true" stopProcessing="true">
<match url="^(manifest.json|service-worker.js|favicon.png|[^/]+\.png|[^/]+\.gif|[^/]+\.pdf)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="reactport/([0-9]+)/?" />
</conditions>
<action type="Rewrite" url="http://localhost:{C:1}/{R:1}" appendQueryString="false" />
</rule>
<rule name="RO_react_bundle_localhost" enabled="true" stopProcessing="true">
<match url="^(static|runtime|img|helper)/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="reactproxy/?" />
</conditions>
<action type="Rewrite" url="http://localhost:3000/{R:1}/{R:2}" appendQueryString="false" />
</rule>
<rule name="RO_react_basefile_localhost" enabled="true" stopProcessing="true">
<match url="^(manifest.json|service-worker.js|favicon.png|[^/]+\.png|[^/]+\.gif|[^/]+\.pdf)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="reactproxy/?" />
</conditions>
<action type="Rewrite" url="http://localhost:3000/{R:1}" appendQueryString="false" />
</rule>
<rule name="RO_react_bundle_port_extdev" enabled="true" stopProcessing="true">
<match url="^(static|runtime|img|helper)/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="nikita/([0-9]+)/?" />
</conditions>
<action type="Rewrite" url="http://172.16.0.72:{C:1}/{R:1}/{R:2}" appendQueryString="false" />
</rule>
<rule name="RO_react_basefile_port_extdev" enabled="true" stopProcessing="true">
<match url="^(manifest.json|service-worker.js|favicon.png|[^/]+\.png|[^/]+\.gif|[^/]+\.pdf)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="nikita/([0-9]+)/?" />
</conditions>
<action type="Rewrite" url="http://172.16.0.72:{C:1}/{R:1}" appendQueryString="false" />
</rule>
<rule name="RO_react_bundle_extdev" enabled="true" stopProcessing="true">
<match url="^(static|runtime|img|helper)/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="nikita/?" />
</conditions>
<action type="Rewrite" url="http://172.16.0.72:3000/{R:1}/{R:2}" appendQueryString="false" />
</rule>
<rule name="RO_react_basefile_extdev" enabled="true" stopProcessing="true">
<match url="^(manifest.json|service-worker.js|favicon.png|[^/]+\.png|[^/]+\.gif|[^/]+\.pdf)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="true">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern=".*" />
<add input="{HTTP_REFERER}" pattern="nikita/?" />
</conditions>
<action type="Rewrite" url="http://172.16.0.72:3000/{R:1}" appendQueryString="false" />
</rule>
2019.10.9 Revised UrlRewrite rules for react development(proxying node.js npm start) in application's web.config
<rule name="React_bundle_proxy" stopProcessing="true">
<match url="(static|runtime|img)/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="http://localhost:3000/{R:1}/{R:2}" />
</rule>
<rule name="React_loadcss_proxy" enabled="true" stopProcessing="true">
<match url="^(.+\.css|.+\.png|.+\.gif|.+\.jpg)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{HTTP_REFERER}" pattern="reactproxy/?(.*)" />
</conditions>
<action type="Rewrite" url="http://localhost:3000/{R:1}" appendQueryString="false" logRewrittenUrl="true" />
</rule>
<rule name="React_loadcss_extdev" enabled="true" stopProcessing="true">
<match url="^(.+\.css|.+\.png|.+\.gif|.+\.jpg)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{HTTP_REFERER}" pattern="extdev/?(.*)" />
</conditions>
<action type="Rewrite" url="http://172.16.0.72:3000/{R:1}" appendQueryString="false" logRewrittenUrl="true" />
</rule>
<rule name="RO_reactport_proxy" stopProcessing="true">
<match url="reactport(/([0-9]+))(/?.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://localhost:{R:2}{R:3}" />
</rule>
<rule name="RO_reactproxy" stopProcessing="true">
<match url="reactproxy/?(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://localhost:3000/{R:1}" />
</rule>
<rule name="react_ending_slash" enabled="false" stopProcessing="true">
<match url="react/([^/#]*)(#?[^/]*)$" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Redirect" url="react/{R:1}/{R:2}" />
</rule>
<rule name="react_static_production" enabled="false" stopProcessing="true">
<match url="react/([^/]*/?)(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="react/{R:1}/default.aspx" />
</rule>
<rule name="RO_extdev_port_proxy" stopProcessing="true">
<match url="extdev(/([0-9]+))(/?.*)" />
<action type="Rewrite" url="http://172.16.0.72:{R:2}{R:3}" logRewrittenUrl="true" />
</rule>
<rule name="RO_extdev_proxy" stopProcessing="true">
<match url="extdev/?(.*)" />
<action type="Rewrite" url="http://172.16.0.72:3000/{R:1}" logRewrittenUrl="true" />
</rule>
Summary of changes from 8/2017 to 9/2019
System: Administration
Version: R10.84.90913
Prerequisite:
1. Add " |rintagi.js" to Objects Exempted in Configure Installer's PDT;
2. Install https://www.iis.net/downloads/microsoft/url-rewrite;
3. Add the following line to <DefaultDocument>:
<add value="index.html"/>
4. Add the following lines to after <DefaultDocument>:
<!-- this is for custom mime type, for fontawesome in this case -->
<staticContent>
<remove fileExtension=".woff2"/>
<mimeMap fileExtension=".woff2" mimeType="font/woff2"/>
</staticContent>
<httpProtocol>
<customHeaders>
<remove name="X-Powered-By"/>
<add name="X-Frame-Options" value="SAMEORIGIN"/>
<add name="Access-Control-Allow-Credentials" value="true"/>
<add name="Access-Control-Allow-Methods" value="GET, HEAD, POST, OPTIONS"/>
<add name="Access-Control-Allow-Origin" value="*"/>
<add name="Access-Control-Allow-Credential" value="true"/>
<add name="Access-Control-Allow-Headers" value="Origin, Access-Control-Allow-Origin, Content-Type,Accept-Encoding, Accept,Authorization,X-RintagiScope,X-Authorization"/>
<add name="Access-Control-Max-Age" value="86400"/>
</customHeaders>
</httpProtocol>
<httpCompression>
<dynamicTypes>
<!-- on IIS 8.5, system32\inetsrv\config\applicationhost.config needs to be changed manually to handle this, IIS 10 onward is fine overriding here -->
<add mimeType="application/json" enabled="true"/>
<add mimeType="application/json; charset=UTF-8" enabled="true"/>
</dynamicTypes>
</httpCompression>
<rewrite>
<rules>
<clear/>
<rule name="React_bundle_proxy" stopProcessing="true">
<match url="(static|runtime|img)/(.*)"/>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="http://localhost:3000/{R:1}/{R:2}"/>
</rule>
<rule name="React_loadcss_proxy" enabled="true" stopProcessing="true">
<match url="^load.css"/>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
</conditions>
<action type="Rewrite" url="http://localhost:3000/{R:0}" appendQueryString="false" logRewrittenUrl="true"/>
</rule>
<rule name="FT_dev_reactproxy" stopProcessing="true">
<match url="reactproxy/?(.*)"/>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false"/>
<action type="Rewrite" url="http://localhost:3000/{R:1}"/>
</rule>
<rule name="react_ending_slash" enabled="false" stopProcessing="true">
<match url="react/([^/#]*)(#?[^/]*)$"/>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
</conditions>
<action type="Redirect" url="react/{R:1}/{R:2}"/>
</rule>
<rule name="react_static_production" enabled="false" stopProcessing="true">
<match url="react/([^/]*/?)(.*)"/>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
</conditions>
<action type="Rewrite" url="react/{R:1}/index.html"/>
</rule>
</rules>
</rewrite>
Readme:
System: Administration
Version: R10.83.90829
Prerequisite:
Readme:
1. Expand Webrule screen to capture 4 more rules for mobile-first.
System: Administration
Version: R10.82.90820
Prerequisite:
Readme:
1. Preparation for React code gen;
System: Administration
Version: R10.81.90709
Prerequisite:
Readme:
1. Miscellaneous changes on image related code;
System: Administration
Version: R10.80.90627
Prerequisite:
Readme:
Miscellaneous enhancements including FX rates from NewtonSoft;
System: Administration
Version: R10.79.90531
Prerequisite:
Readme:
1. Add column length and data type to GetScreenLabel SP;
2. Add LenderId, BorrowerId & GuarantorId to VwPermKey view table and GetCallParam function call;
3. Allow uploading all doc types to grid;
4. Multiple Image/Document uploads to grid;
5. New Adm Screens (ReactRule & AsmxRule);
System: Administration
Version: R10.78.90513
Prerequisite:
Readme:
1. Add preliminary reactJS code generation resources;
System: Administration
Version: R10.77.90308
Prerequisite:
Readme:
1. Improved performance on grid images.
System: Administration
Version: R10.76.90115
Prerequisite:
Readme:
1. Add Borrowers, Guarantors and Lenders to GetCallParam in AdminAccess.
System: Administration
Version: R10.75.81024
Prerequisite:
Need to regenerate all screens and all reports.
Readme:
1. Add three permission fields: Borrower, Guarantor, Lender to Usr and UsrPref.
System: Administration
Version: R10.74.81022
Prerequisite:
Readme:
1. Resize applied to UploadModule.ascx.cs and generated code;
System: Administration
Version: R10.73.81018
Prerequisite:
Readme:
1. Add more global custom labels;
System: Administration
Version: R10.72.81017
Prerequisite:
Readme:
1. Minor bug fixes;
System: Administration
Version: R10.71.81014
Prerequisite:
Readme:
1. Move six fields (NoMasterMsg, NoDetailMsg, AddMasterMsg, AddDetailMsg, MasterFoundMsg, DetailFoundMsg) from custom labels to ScreenHlp; also changed GetScreenHlp;
2. Add ResizeWidth and ResizeHeight to GetScreenColumns;
System: Administration
Version: R10.70.81013
Prerequisite:
Readme:
1. Add buttons for Mobile first design; generic custom labels, columns for Screen Object, etc.
System: Administration
Version: R10.69.81011
Prerequisite:
Readme:
Add columns SearchIdR and SearchDtlIdR to table Screen.
System: Administration
Version: R10.68.81002
Prerequisite:
Readme:
1. Make total count more efficient by changing GetScreenLisI1ById, and GetScreenLisI2ById.
2. Fix an error on WrInsButtonHlp;
System: Administration
Version: R10.67.80921
Prerequisite:
Readme:
1. Add mobile first button positioning and styles.
System: Administration
Version: R10.66.80704
Prerequisite:
Readme:
1. Image upload should be independent of where is it being called;
System: Administration
Version: R10.65.80501
Prerequisite:
Readme:
1. Enhance image button UX on grid for both grid-only and tab-folder plus grid;
System: Administration
Version: R10.64.80328
Prerequisite:
Readme:
1. Add error notification on upload of filename over 100 characters;
System: Administration
Version: R10.63.80312
Prerequisite:
Readme:
1. Enable regeneration of section objects regardless whether there are changes;