-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilePath.js
385 lines (382 loc) · 15.1 KB
/
filePath.js
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
376
377
378
379
380
381
382
383
384
385
module.exports.fileNamesBefore = [
'app/views/accountant.html',
'app/views/admin-company-info.html',
'app/views/admin-general-info.html',
'app/views/admin-index.html',
'app/views/admin-rates.html',
'app/views/admin-structure.html',
'app/views/admin-users.html',
'app/views/admin.html',
'app/views/billables.html',
'app/views/changePassword.html',
'app/views/clients.html',
'app/views/clients_create.html',
'app/views/contracts.html',
'app/views/contracts_create.html',
'app/views/contracts_create_build.html',
'app/views/contracts_create_setup.html',
'app/views/contracts_manage.html',
'app/views/dashboard.html',
'app/views/department-create-modal.html',
'app/views/department-delete-modal.html',
'app/views/department-update-modal.html',
'app/views/departments-detail.html',
'app/views/departments-index.html',
'app/views/departments-manage.html',
'app/views/guide-me.html',
'app/views/indexing.html',
'app/views/landing.html',
'app/views/login.html',
'app/views/main.html',
'app/views/menu-panel.html',
'app/views/more-nav-items.html',
'app/views/newTenant.html',
'app/views/payable-detail.html',
'app/views/payable-manage.html',
'app/views/payments-manage.html',
'app/views/projects.html',
'app/views/projects_create.html',
'app/views/projects_edit.html',
'app/views/purchase-request-all-items-modal.html',
'app/views/purchase-request-client-add-new-modal.html',
'app/views/purchase-request-comments-modal.html',
'app/views/purchase-request-create-popover.html',
'app/views/purchase-request-create.html',
'app/views/purchase-request-decline-purchase-modal.html',
'app/views/purchase-request-document-preview-modal.html',
'app/views/purchase-request-manage.html',
'app/views/purchase-request-pass-expenses-modal.html',
'app/views/purchase-request-projects-all-modal.html',
'app/views/purchase-request-request-info-modal.html',
'app/views/purchase-request-review-alert-modal.html',
'app/views/purchase-request-review-alert-time-modal.html',
'app/views/purchase-request-review-detail.html',
'app/views/purchase-request-review-forward-confirmation-modal.html',
'app/views/purchase-request-review-forward-modal.html',
'app/views/purchase-request-review-more-info-modal.html',
'app/views/purchase-request-review.html',
'app/views/purchase-request-vendor-add-new-modal.html',
'app/views/purchase-request-vendor-select-modal.html',
'app/views/receivables-create.html',
'app/views/receivables-manage.html',
'app/views/resource-schedule.html',
'app/views/schedules.html',
'app/views/setup-begin.html',
'app/views/setup-company-configurebyday-popover.html',
'app/views/setup-company.html',
'app/views/setup-complete.html',
'app/views/setup-designated.html',
'app/views/setup-general.html',
'app/views/setup-index.html',
'app/views/setup-nav.html',
'app/views/setup-quickbooks.html',
'app/views/setup-structure-time.html',
'app/views/setup-structure.html',
'app/views/setup-users.html',
'app/views/setup.html',
'app/views/sidebar-first.html',
'app/views/sidebar-second.html',
'app/views/sockets.html',
'app/views/system_company-info.html',
'app/views/system_departments.html',
'app/views/system_general-info.html',
'app/views/system_index.html',
'app/views/system_users.html',
'app/views/timetracker.html',
'app/views/timetracker_entry.html',
'app/views/timetracker_review.html',
'app/views/utilities_index.html',
'app/views/utilities_labels.html',
'app/views/utilities_local-storage-cache.html',
'app/views/utilities_user-select.html',
'app/views/vendors.html',
'app/views/vendors_create.html',
'app/views/vendors_edit.html'
)];
module.exports.fileNamesAfter = [
'app/views/modules/accountant/accountant.html',
'app/views/modules/admin/company-info.html',
'app/views/modules/admin/general-info.html',
'app/views/modules/admin/index.html',
'app/views/modules/admin/rates.html',
'app/views/modules/admin/structure.html',
'app/views/modules/admin/users.html',
'app/views/modules/admin/admin.html',
'app/views/modules/invoices/billables-manage.html',
'app/views/system/authentication/change-password.html',
'app/views/modules/clients/index.html',
'app/views/modules/clients/create.html',
'app/views/modules/contracts/index.html',
'app/views/modules/contracts/create.html',
'app/views/modules/contracts/create-build.html',
'app/views/modules/contracts/create-setup.html',
'app/views/modules/contracts/manage.html',
'app/views/modules/dashboard/index.html',
'app/views/templates/modals/department-create-modal.html',
'app/views/templates/modals/department-delete-modal.html',
'app/views/templates/modals/department-update-modal.html',
'app/views/modules/departments/detail.html',
'app/views/modules/departments/index.html',
'app/views/modules/departments/manage.html',
'app/views/appframe/footer/guide-me.html',
'app/views/system/indexing/indexing.html',
'app/views/system/authentication/landing.html',
'app/views/system/authentication/login.html',
'app/views/appframe/content/main.html',
'app/views/appframe/menu/menu-panel.html',
'app/views/appframe/navigation/more-nav-items.html',
'app/views/debug/newTenant.html',
'app/views/modules/bills/detail.html',
'app/views/modules/bills/manage.html',
'app/views/modules/payments/manage.html',
'app/views/modules/projects/index.html',
'app/views/modules/projects/create.html',
'app/views/modules/projects/edit.html',
'app/views/templates/modals/request-all-items-modal.html',
'app/views/templates/modals/request-client-add-new-modal.html',
'app/views/templates/modals/request-comments-modal.html',
'app/views/modules/requests/create-popover.html',
'app/views/modules/requests/create.html',
'app/views/templates/modals/request-decline-purchase-modal.html',
'app/views/templates/modals/request-document-preview-modal.html',
'app/views/modules/requests/manage.html',
'app/views/templates/modals/request-pass-expenses-modal.html',
'app/views/templates/modals/request-projects-all-modal.html',
'app/views/templates/modals/request-request-info-modal.html',
'app/views/templates/modals/request-review-alert-modal.html',
'app/views/templates/modals/request-review-alert-time-modal.html',
'app/views/modules/requests/review-detail.html',
'app/views/templates/modals/request-review-forward-confirmation-modal.html',
'app/views/templates/modals/request-review-forward-modal.html',
'app/views/templates/modals/request-review-more-info-modal.html',
'app/views/modules/requests/review.html',
'app/views/templates/modals/request-vendor-add-new-modal.html',
'app/views/templates/modals/request-vendor-select-modal.html',
'app/views/modules/invoices/create.html',
'app/views/modules/invoices/manage.html',
'app/views/modules/resources/schedule-day.html',
'app/views/modules/resources/schedules-week.html',
'app/views/modules/setup/begin.html',
'app/views/modules/setup/company-configurebyday-popover.html',
'app/views/modules/setup/company.html',
'app/views/modules/setup/complete.html',
'app/views/modules/setup/designated.html',
'app/views/modules/setup/general.html',
'app/views/modules/setup/index.html',
'app/views/modules/setup/nav.html',
'app/views/modules/setup/quickbooks.html',
'app/views/modules/setup/structure-time.html',
'app/views/modules/setup/structure.html',
'app/views/modules/setup/users.html',
'app/views/modules/setup/setup.html',
'app/views/appframe/navigation/index.html',
'app/views/appframe/notifications/index.html',
'app/views/debug/sockets.html',
'app/views/system_company-info.html',
'app/views/system_departments.html',
'app/views/system_general-info.html',
'app/views/system_index.html',
'app/views/system_users.html',
'app/views/modules/timesheets/index.html',
'app/views/modules/timesheets/entry.html',
'app/views/modules/timesheets/review.html',
'app/views/utilities_index.html',
'app/views/utilities_labels.html',
'app/views/utilities_local-storage-cache.html',
'app/views/utilities_user-select.html',
'app/views/modules/vendors/index.html',
'app/views/modules/vendors/create.html',
'app/views/modules/vendors/edit.html'
)];
// current paths
module.exports.viewPathsBefore = [
'views/accountant.html',
'views/admin-company-info.html',
'views/admin-general-info.html',
'views/admin-index.html',
'views/admin-rates.html',
'views/admin-structure.html',
'views/admin-users.html',
'views/admin.html',
'views/billables.html',
'views/changePassword.html',
'views/clients.html',
'views/clients_create.html',
'views/contracts.html',
'views/contracts_create.html',
'views/contracts_create_build.html',
'views/contracts_create_setup.html',
'views/contracts_manage.html',
'views/dashboard.html',
'views/department-create-modal.html',
'views/department-delete-modal.html',
'views/department-update-modal.html',
'views/departments-detail.html',
'views/departments-index.html',
'views/departments-manage.html',
'views/guide-me.html',
'views/indexing.html',
'views/landing.html',
'views/login.html',
'views/main.html',
'views/menu-panel.html',
'views/more-nav-items.html',
'views/newTenant.html',
'views/payable-detail.html',
'views/payable-manage.html',
'views/payments-manage.html',
'views/projects.html',
'views/projects_create.html',
'views/projects_edit.html',
'views/purchase-request-all-items-modal.html',
'views/purchase-request-client-add-new-modal.html',
'views/purchase-request-comments-modal.html',
'views/purchase-request-create-popover.html',
'views/purchase-request-create.html',
'views/purchase-request-decline-purchase-modal.html',
'views/purchase-request-document-preview-modal.html',
'views/purchase-request-manage.html',
'views/purchase-request-pass-expenses-modal.html',
'views/purchase-request-projects-all-modal.html',
'views/purchase-request-request-info-modal.html',
'views/purchase-request-review-alert-modal.html',
'views/purchase-request-review-alert-time-modal.html',
'views/purchase-request-review-detail.html',
'views/purchase-request-review-forward-confirmation-modal.html',
'views/purchase-request-review-forward-modal.html',
'views/purchase-request-review-more-info-modal.html',
'views/purchase-request-review.html',
'views/purchase-request-vendor-add-new-modal.html',
'views/purchase-request-vendor-select-modal.html',
'views/receivables-create.html',
'views/receivables-manage.html',
'views/resource-schedule.html',
'views/schedules.html',
'views/setup-begin.html',
'views/setup-company-configurebyday-popover.html',
'views/setup-company.html',
'views/setup-complete.html',
'views/setup-designated.html',
'views/setup-general.html',
'views/setup-index.html',
'views/setup-nav.html',
'views/setup-quickbooks.html',
'views/setup-structure-time.html',
'views/setup-structure.html',
'views/setup-users.html',
'views/setup.html',
'views/sidebar-first.html',
'views/sidebar-second.html',
'views/sockets.html',
'views/system_company-info.html',
'views/system_departments.html',
'views/system_general-info.html',
'views/system_index.html',
'views/system_users.html',
'views/timetracker.html',
'views/timetracker_entry.html',
'views/timetracker_review.html',
'views/utilities_index.html',
'views/utilities_labels.html',
'views/utilities_local-storage-cache.html',
'views/utilities_user-select.html',
'views/vendors.html',
'views/vendors_create.html',
'views/vendors_edit.html'
)];
// link change for views
module.exports.viewPathsAfter = [
'views/modules/accountant/accountant.html',
'views/modules/admin/company-info.html',
'views/modules/admin/general-info.html',
'views/modules/admin/index.html',
'views/modules/admin/rates.html',
'views/modules/admin/structure.html',
'views/modules/admin/users.html',
'views/modules/admin/admin.html',
'views/modules/invoices/billables-manage.html',
'views/system/authentication/change-password.html',
'views/modules/clients/index.html',
'views/modules/clients/create.html',
'views/modules/contracts/index.html',
'views/modules/contracts/create.html',
'views/modules/contracts/create-build.html',
'views/modules/contracts/create-setup.html',
'views/modules/contracts/manage.html',
'views/modules/dashboard/index.html',
'views/templates/modals/department-create-modal.html',
'views/templates/modals/department-delete-modal.html',
'views/templates/modals/department-update-modal.html',
'views/modules/departments/detail.html',
'views/modules/departments/index.html',
'views/modules/departments/manage.html',
'views/appframe/footer/guide-me.html',
'views/system/indexing/indexing.html',
'views/system/authentication/landing.html',
'views/system/authentication/login.html',
'views/appframe/content/main.html',
'views/appframe/menu/menu-panel.html',
'views/appframe/navigation/more-nav-items.html',
'views/debug/newTenant.html',
'views/modules/bills/detail.html',
'views/modules/bills/manage.html',
'views/modules/payments/manage.html',
'views/modules/projects/index.html',
'views/modules/projects/create.html',
'views/modules/projects/edit.html',
'views/templates/modals/request-all-items-modal.html',
'views/templates/modals/request-client-add-new-modal.html',
'views/templates/modals/request-comments-modal.html',
'views/modules/requests/create-popover.html',
'views/modules/requests/create.html',
'views/templates/modals/request-decline-purchase-modal.html',
'views/templates/modals/request-document-preview-modal.html',
'views/modules/requests/manage.html',
'views/templates/modals/request-pass-expenses-modal.html',
'views/templates/modals/request-projects-all-modal.html',
'views/templates/modals/request-request-info-modal.html',
'views/templates/modals/request-review-alert-modal.html',
'views/templates/modals/request-review-alert-time-modal.html',
'views/modules/requests/review-detail.html',
'views/templates/modals/request-review-forward-confirmation-modal.html',
'views/templates/modals/request-review-forward-modal.html',
'views/templates/modals/request-review-more-info-modal.html',
'views/modules/requests/review.html',
'views/templates/modals/request-vendor-add-new-modal.html',
'views/templates/modals/request-vendor-select-modal.html',
'views/modules/invoices/create.html',
'views/modules/invoices/manage.html',
'views/modules/resources/schedule-day.html',
'views/modules/resources/schedules-week.html',
'views/modules/setup/begin.html',
'views/modules/setup/company-configurebyday-popover.html',
'views/modules/setup/company.html',
'views/modules/setup/complete.html',
'views/modules/setup/designated.html',
'views/modules/setup/general.html',
'views/modules/setup/index.html',
'views/modules/setup/nav.html',
'views/modules/setup/quickbooks.html',
'views/modules/setup/structure-time.html',
'views/modules/setup/structure.html',
'views/modules/setup/users.html',
'views/modules/setup/setup.html',
'views/appframe/navigation/index.html',
'views/appframe/notifications/index.html',
'views/debug/sockets.html',
'views/system_company-info.html',
'views/system_departments.html',
'views/system_general-info.html',
'views/system_index.html',
'views/system_users.html',
'views/modules/timesheets/index.html',
'views/modules/timesheets/entry.html',
'views/modules/timesheets/review.html',
'views/utilities_index.html',
'views/utilities_labels.html',
'views/utilities_local-storage-cache.html',
'views/utilities_user-select.html',
'views/modules/vendors/index.html',
'views/modules/vendors/create.html',
'views/modules/vendors/edit.html'
)];