|
16 | 16 |
|
17 | 17 | intro_text = "This script is meant to assist in the detection of PII (personally identifiable information) and subsequent removal from a dataset."
|
18 | 18 | intro_text_p2 = "Ensuring the dataset is devoid of PII is ultimately still your responsibility."
|
19 |
| -intro_text_p3 = "This is an alpha program. Please help improve it by filling out the survey on your experience using it (Help -> Provide Feedback)." |
| 19 | +intro_text_p3 = "This is an alpha program, built without access to datasets containing PII on which to test or train it. Please help improve the program by filling out the survey on your experience using it (Help -> Provide Feedback)." |
20 | 20 | app_title = "IPA's PII Detector - Windows"
|
21 | 21 |
|
22 | 22 |
|
@@ -157,11 +157,11 @@ def about():
|
157 | 157 | def contact():
|
158 | 158 | webbrowser.open('https://github.com/PovertyAction/PII_detection/issues')
|
159 | 159 |
|
160 |
| -def methods(): |
161 |
| - webbrowser.open('https://github.com/PovertyAction/PII_detection/blob/master/README.md#pii_detection') |
| 160 | +def article(): |
| 161 | + webbrowser.open('https://povertyaction.force.com/support/s/article/IPAs-Personally-Identifiable-Information-Application') |
162 | 162 |
|
163 | 163 | def comparison():
|
164 |
| - webbrowser.open('https://github.com/PovertyAction/PII_detection/blob/master/README.md#pii_detection') |
| 164 | + webbrowser.open('https://ipastorage.box.com/s/35jbvflnt6e4ev868290c3hygubofz2r') |
165 | 165 |
|
166 | 166 | def PII_field_names():
|
167 | 167 | webbrowser.open('https://github.com/PovertyAction/PII_detection/blob/fa1325094ecdd085864a58374d9f687181ac09fd/PII_data_processor.py#L115')
|
@@ -219,9 +219,9 @@ def restart_program():
|
219 | 219 |
|
220 | 220 | # create more pulldown menus
|
221 | 221 | helpmenu = Menu(menubar, tearoff=0)
|
222 |
| - helpmenu.add_command(label="About (v0.1.1)", command=about) |
223 |
| - #helpmenu.add_command(label="- Detection Methods", command=methods) |
224 |
| - #helpmenu.add_command(label="- Comparison with Other Scripts", command=comparison) |
| 222 | + helpmenu.add_command(label="About (v0.1.2)", command=about) |
| 223 | + helpmenu.add_command(label="- Knowledge Article", command=article) |
| 224 | + helpmenu.add_command(label="- Comparison with Other Scripts", command=comparison) |
225 | 225 | #helpmenu.add_command(label="- PII Field Names", command=PII_field_names)
|
226 | 226 | #helpmenu.add_command(label="- Data Security", command=PII_field_names)
|
227 | 227 | helpmenu.add_separator()
|
|
0 commit comments