@@ -8,15 +8,15 @@ Torque adds this functionality.
8
8
9
9
The two systems that make up Torque are:
10
10
11
- 1 . torquedata , a Flask app that houses and renders the data
12
- 2 . TorqueDataConnect , a MediaWiki extension that integrates the Torque
11
+ 1 . torque , a django app that houses and renders the data
12
+ 2 . Torque extension , a MediaWiki extension that integrates the Torque
13
13
responses into wiki pages and controls access to said pages.
14
14
15
15
The decision to split the server housing the data from MediaWiki was made
16
16
for several reasons:
17
17
18
18
* Ease of development. MediaWiki is an excellent platform for developing wikis,
19
- but Python and Flask fit Torque's backend needs far better.
19
+ but Python and django fit Torque's backend needs far better.
20
20
* Allowing multiple wikis to access one data set. For instance, having a public
21
21
wiki and a private wiki with different permission sets.
22
22
* Allowing the data to reside on a different server than the wikis themselves.
@@ -39,7 +39,7 @@ Torque is built around having four classes of users:
39
39
update the templates defined in MediaWiki, adjust column and object
40
40
permissions.
41
41
42
- These users belong to the ` torquedataconnect -admin` and can also
42
+ These users belong to the ` torque -admin` and can also
43
43
upload new collections, and overwrite collections.
44
44
45
45
* System Administrators: These users are responsible for setting up the
@@ -51,27 +51,27 @@ Torque is built around having four classes of users:
51
51
52
52
Torque's permissions are defined dynamically in MediaWiki.
53
53
The page linked to by the
54
- [ ` $wgTorqueDataConnectConfigPage ` ] ( TorqueDataConnect /README.md#Parameters)
54
+ [ ` $wgTorqueConfigPage ` ] ( extension /README.md#Parameters)
55
55
variable is read, and the groups listed in the ` Permissions ` section are
56
56
matched with the user groups of the logged in MediaWiki user. The first
57
57
group in the ` Permissions ` table that matches a MediaWiki group the
58
- user is assigned to gets sent to torquedata for validation and rendering.
58
+ user is assigned to gets sent to torque for validation and rendering.
59
59
60
- Then, torquedata will redact the list of documents available to that user,
60
+ Then, torque will redact the list of documents available to that user,
61
61
and the fields available to the template for rendering, based on the
62
62
permissions set up in that table. See
63
- [ the configuration page] (TorqueDataConnect /README.md#WikiPage configuration)
63
+ [ the configuration page] (extension /README.md#WikiPage configuration)
64
64
for details about the format of that page.
65
65
66
66
The fields and documents linked are also used to generate search indices
67
- in torquedata for search results that are correct for the users permissions.
67
+ in torque for search results that are correct for the users permissions.
68
68
69
- ## torquedata Django app
69
+ ## torque Django app
70
70
71
- ` torquedata ` exists to use a backing store, storing json documents in postgres,
71
+ ` torque ` exists to use a backing store, storing json documents in postgres,
72
72
and provide different outputs necessary for the project.
73
73
74
- Because it's largely not user facing, the [ README] ( torquedata /README.md)
74
+ Because it's largely not user facing, the [ README] ( torque /README.md)
75
75
is lightweight and concerned mostly system adminstrator information
76
76
for installation and configuration of the app. How it exposes information to
77
77
MediaWiki is left undocumented and may be changed at any time.
@@ -81,7 +81,7 @@ It provides the following features:
81
81
### Input from JSON files
82
82
83
83
JSON data are uploaded through the
84
- [ TorqueDataConnect extension] ( TorqueDataConnect /README.md#torquedataconnectuploadcollection ) .
84
+ [ extension] ( extension /README.md#torqueuploadcollection ) .
85
85
The data must be an array of objects representing documents, with each one having
86
86
the same fields as the rest. Only the first is looked at to create the data model
87
87
in the database.
@@ -107,7 +107,7 @@ the variable `<collection_name>`.
107
107
### Wiki Markup from Documents
108
108
109
109
Templates are configured as part of the
110
- [ TorqueDataConnect extension] ( TorqueDataConnect /README.md#WikiPage_configuration)
110
+ [ mediawiki extension] ( extension /README.md#WikiPage_configuration)
111
111
112
112
These templates, which are stored on the wiki, are Jinja templates. When a request
113
113
is made to ` api/collections/<collection_name>/documents/<id>.mwiki ` , the desired
@@ -170,7 +170,7 @@ contents items look and feel, and what information is displayed.
170
170
171
171
### JSON output for API
172
172
173
- Torque also allows programmatic access of the data, throught the ` torquedataconnect `
173
+ Torque also allows programmatic access of the data, throught the ` torque `
174
174
API call. Any user with access can call into MediaWiki's API, using HTTP
175
175
or a supporting library, and ask for a path. The response is a JSON document
176
176
with a list of objects, each having a mapping of the header to field data for
@@ -185,58 +185,58 @@ but this provides a more software friendly source of data.
185
185
One large issue with MediaWiki is that there's no way to strongly associate
186
186
attachments (in this case, PDFs) with pages, and then have authorization
187
187
fall through to those. Indeed, the default setting is that attachments
188
- are just handled by the filesystem and webserver. ` torquedata ` handles
188
+ are just handled by the filesystem and webserver. ` torque ` handles
189
189
those attachments, and all the authorizations therein through a SpecialPage.
190
190
191
191
When uploading, one of the arguments to the
192
- [ ` torquedataconnectuploadattachment ` ] ( TorqueDataConnect /README.md#torquedataconnectuploadattachment )
192
+ [ ` torqueuploadattachment ` ] ( extension /README.md#torqueuploadattachment )
193
193
API call is the ` permissions_field ` . The user must have access to that
194
194
column, and access to the proposal, for the file to be returned. If so,
195
195
then the user can download the file.
196
196
197
- See [ the special page] (TorqueDataConnect /README.md#Special page for attachments: Special: TorqueDataConnectAttachment )
197
+ See [ the special page] (extension /README.md#Special page for attachments: Special: TorqueAttachment )
198
198
for details on how to generate the page.
199
199
200
200
### Search results
201
201
202
202
MediaWiki cannot cull search results based on authorization
203
- because it's not a CMS. Instead, that's handled by ` torquedata ` . The search
203
+ because it's not a CMS. Instead, that's handled by ` torque ` . The search
204
204
results come back filtered through the template set up for Search.
205
205
206
206
The search uses [ whoosh] ( https://whoosh.readthedocs.io/en/latest/index.html )
207
207
to build indices for every group of users with unique permissions, so
208
208
the results are tailored to the logged in user.
209
209
210
- ## TorqueDataConnect MediaWiki Extension
210
+ ## Torque MediaWiki Extension
211
211
212
- TorqueDataConnect controls the user facing
213
- aspects of Torque. You can look at the [ README] ( TorqueDataConnect /README.md)
212
+ The MediaWiki extension controls the user facing
213
+ aspects of Torque. You can look at the [ README] ( extension /README.md)
214
214
for the reference of how to configure and use the system.
215
215
216
216
### Torque Configuration
217
217
218
218
The MediaWiki configuration comes in two parts. The first is in ` LocalSettings.php ` ,
219
219
which sets up the page. Those are defined by the
220
- [ parameters] ( TorqueDataConnect /README.md#parameters) . The ones that need to be
220
+ [ parameters] ( extension /README.md#parameters) . The ones that need to be
221
221
set for a correctly running system are:
222
222
223
- * ` $wgTorqueDataConnectConfigPage `
224
- * ` $wgTorqueDataConnectCollectionName `
225
- * ` $wgTorqueDataConnectWikiKey `
223
+ * ` $wgTorqueConfigPage `
224
+ * ` $wgTorqueCollectionName `
225
+ * ` $wgTorqueWikiKey `
226
226
227
- The others have values to default to, or are assigned by TorqueDataConnect based on
227
+ The others have values to default to, or are assigned by Torque based on
228
228
your user. See below for why you might want to override those.
229
229
230
230
### Configuration Page
231
231
232
- The configuration page linked to by ` $wgTorqueDataConnectConfigPage ` is
232
+ The configuration page linked to by ` $wgTorqueConfigPage ` is
233
233
set up to link groups with permissions, and defined templates. See the
234
234
[ above section] (#Permissions Structure) for more information. Every
235
235
Torque instance has to have a built out and configured config Page
236
236
in order to work correctly.
237
237
238
238
When not set up correctly, the plugin will let you know that there's
239
- an error if you're in the ` torquedataconnect -admin` user group.
239
+ an error if you're in the ` torque -admin` user group.
240
240
241
241
### Template Page
242
242
@@ -253,13 +253,13 @@ that allows the user to select which view they want.
253
253
254
254
The selected view template is called with the object being rendered
255
255
set to the name defined when
256
- [ uploading the collection] ( TorqueDataConnect /README.md#torquedataconnectuploadcollection ) .
256
+ [ uploading the collection] ( extension /README.md#torqueuploadcollection ) .
257
257
That object is a dictionary with the column headers of the spreadcollection
258
258
being indices to get the field data for that document. This is an
259
259
instance where demonstration is more informative than information, so see the
260
260
[ example] ( example/INSTALL.md ) for a concrete example.
261
261
262
- The variable ` $wgTorqueDataConnectView ` is set and passed along to torquedata
262
+ The variable ` $wgTorqueView ` is set and passed along to torque
263
263
based on the user selection.
264
264
265
265
#### Search
@@ -295,7 +295,7 @@ more information.
295
295
296
296
### tdcrender Hook
297
297
298
- The ` #tdcrender ` hook is the main way that pages ask torquedata to render
298
+ The ` #tdcrender ` hook is the main way that pages ask torque to render
299
299
objects for them. These can be inserted at any place on any page, and
300
300
the resulting text will be inserted to that location.
301
301
@@ -332,7 +332,7 @@ of restrictions, as even a user not yet logged in can view attachments with the
332
332
correct URL.
333
333
334
334
The way Torque solves this is by creating a
335
- [ special page] (TorqueDataConnect /README.md#Special page for attachments: Special: TorqueDataConnectAttachment ).
335
+ [ special page] (extension /README.md#Special page for attachments: Special: TorqueAttachment ).
336
336
When uploading, the column and proposal are linked to an attachment, and
337
337
then when accessing that file, those are checked against the Torque
338
338
permissions the user has.
@@ -341,9 +341,9 @@ permissions the user has.
341
341
342
342
Torque allows torqueadmin's to upload three kinds of files:
343
343
344
- * [ The full data collection] ( TorqueDataConnect /README.md#torquedataconnectuploadcollection )
345
- * [ A table of contents] ( TorqueDataConnect /README.md#torquedataconnectuploadtoc )
346
- * [ An Attachment] ( TorqueDataConnect /README.md#torquedataconnectuploadattachment )
344
+ * [ The full data collection] ( extension /README.md#torqueuploadcollection )
345
+ * [ A table of contents] ( extension /README.md#torqueuploadtoc )
346
+ * [ An Attachment] ( extension /README.md#torqueuploadattachment )
347
347
348
348
These are done through the MediaWiki API (most likely through a bot account).
349
349
@@ -391,12 +391,12 @@ You can use the published (to pypi) torqueclient if using python.
391
391
392
392
### Conditional override of LocalSettings Parameters
393
393
394
- Some of the [ parameters] ( TorqueDataConnect /README) used by TorqueDataConnect
394
+ Some of the [ parameters] ( Torque /README) used by Torque
395
395
are set by the extension itself based on the user logged in and the
396
396
dynamic configuration of the system.
397
397
398
- * ` $wgTorqueDataConnectView `
399
- * ` $wgTorqueDataConnectGroup `
398
+ * ` $wgTorqueView `
399
+ * ` $wgTorqueGroup `
400
400
401
401
However, it may be useful to override them. When overridden, Torque
402
402
uses the set value rather than assigning one to it. Some use cases
@@ -418,7 +418,7 @@ This is because MediaWiki does not provide ranking information
418
418
with its results, so each search engine must have a complete picture
419
419
of the data in order to correctly rank search results against each other.
420
420
421
- In the future, torquedata will gain a better understanding of the wiki to return
421
+ In the future, torque will gain a better understanding of the wiki to return
422
422
better interleaved results.
423
423
424
424
#### Search Filter
@@ -428,7 +428,7 @@ This allows more powerful filters, as the python language is available.
428
428
Filters are stored as part of the search cache, so when adjusting a filter,
429
429
the cache must be refreshed via a new upload.
430
430
431
- To see how to define filters, see [ config file] ( torquedata /config.py.tmpl) .
431
+ To see how to define filters, see [ config file] ( torque /config.py.tmpl) .
432
432
433
433
To adjust how the filter interface looks, use css, such as in the
434
434
MediaWiki: Common .css page.
0 commit comments