You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/sphinx-guides/source/index.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@
3
3
You can adapt this file completely to your liking, but it should at least
4
4
contain the root `toctree` directive.
5
5
6
-
Dataverse 4.7 Guides
7
-
====================
6
+
Dataverse 4.7.1 Guides
7
+
======================
8
8
9
-
These guides are for the most recent version of Dataverse. For the guides for **version 4.6.2** please go `here <http://guides.dataverse.org/en/4.6.2/>`_.
9
+
These guides are for the most recent version of Dataverse. For the guides for **version 4.7** please go `here <http://guides.dataverse.org/en/4.7/>`_.
ALTERTABLE authenticateduser DROP COLUMN modificationtime;
7
+
ALTERTABLE authenticateduser DROP COLUMN modificationtime;
8
+
9
+
-- Removing authenticated builtin users who do not exist in the builtin table because they were created through faulty validation
10
+
-- creates view containing authentication ids that you will be deleting
11
+
CREATE TEMP VIEW useridstodelete AS (SELECT DISTINCTa.idFROM authenticateduserlookup al, authenticateduser a WHEREal.authenticateduser_id=a.idANDal.authenticationproviderid='builtin'ANDa.useridentifier NOT IN (SELECT username FROM builtinuser));
12
+
-- commands to remove the users from the appropriate tables
13
+
DELETEFROM confirmemaildata WHERE authenticateduser_id IN (SELECT*FROM useridstodelete);
14
+
DELETEFROM usernotification WHERE user_id IN (SELECT*FROM useridstodelete);
15
+
DELETEFROM guestbookresponse WHERE authenticateduser_id IN (SELECT*FROM useridstodelete);
16
+
DELETEFROM authenticateduserlookup WHERE authenticateduser_id IN (SELECT*FROM useridstodelete);
17
+
DELETEFROM authenticateduser WHERE id NOT IN (SELECT authenticateduser_id FROM authenticateduserlookup);
18
+
19
+
/*
20
+
Add validationFormat to DatasetFieldType to
21
+
*/
22
+
ALTERTABLE datasetfieldtype
23
+
ADD COLUMN validationFormat character varying(255);
24
+
25
+
/*
26
+
for testing display format
27
+
This adds a display format that links out to an outside site. The format of the #VALUE is
28
+
four characters alpha numeric (3fki works)
29
+
30
+
update datasetfieldtype
31
+
set displayformat = '<a target="_blank" href="http://www.rcsb.org/pdb/explore/explore.do?structureId=#VALUE">PDB (RCSB) #VALUE</a>',
Copy file name to clipboardExpand all lines: src/main/java/Bundle.properties
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -184,6 +184,8 @@ user.signup.otherLogInOptions.tip= <a href="/loginpage.xhtml" title="Dataverse L
184
184
user.username.illegal.tip=Between 2-60 characters, and can use "a-z", "0-9", "_" for your username.
185
185
user.username=Username
186
186
user.username.taken=This username is already taken.
187
+
user.username.invalid=This username contains an invalid character or is outside the length requirement (2-60 characters).
188
+
user.username.valid=Create a valid username of 2 to 60 characters in length containing letters (a-Z), numbers (0-9), dashes (-), underscores (_), and periods (.).
187
189
user.noPasswd=No Password
188
190
user.currentPasswd=Current Password
189
191
user.currentPasswd.tip=Please enter the current password for this account.
@@ -206,7 +208,7 @@ user.acccountterms.iagree=I have read and accept the Dataverse General Terms of
206
208
user.createBtn=Create Account
207
209
user.updatePassword.welcome=Welcome to Dataverse {0}, {1}
208
210
user.updatePassword.warning=With the release of our new Dataverse 4.0 upgrade, the password requirements and General Terms of Use have updated. As this is the first time you are using Dataverse since the update, you need to create a new password and agree to the new General Terms of Use.
209
-
user.updatePassword.password=Create a password that is minimum six characters long and uses at least one letter or number.
211
+
user.updatePassword.password=Create a password that is minimum six characters long and uses at least one letter and number.
210
212
authenticationProvidersAvailable.tip={0}There are no active authentication providers{1}If you are a system administrator, please enable one using the API.{2}If you are not a system administrator, please contact the one for your institution.
0 commit comments