Welcome, Registration, and other StartingPoints; TWiki history & Wiki style; All the docs...
View   r13  >  r12  >  r11  >  r10  >  r9  >  r8  ...
TWikiRegistration 13 - 23 Jan 2008 - Main.IanSullivan
Line: 1 to 1
 

Registration

To edit pages on this TWikiSite, you must have a registered user name and password.

Line: 93 to 93
 
(identifies you to others) WikiName: **
Added:
>
>
Course: **
 

Deleted:
<
<
 
Changed:
<
<
>
>
To register as a new user, simply fill out this form:
Fields marked ** are required
 
First Name:
Changed:
<
<
**
>
>
**
 
Last Name:
Changed:
<
<
**
>
>
**
 
(identifies you to others) WikiName:
Changed:
<
<
**
>
>
**
 
E-mail address:
Changed:
<
<
**
>
>
**
 
Your password: **
Retype password: **
Organisation name:
Changed:
<
<
>
>
 
Organisation URL:
Changed:
<
<
>
>
 
Country:
Line: 175 to 181
 
Added:
>
>
 
Line: 195 to 202
 
Added:
>
>
 
Line: 257 to 265
 
Comments:
(optional)
Changed:
<
<
Fields marked ** are required
 
>
>
 
Changed:
<
<
>
>
<-- /twikiFormStep-->
 When TWiki receives the form, it will mail an account activation code to the e-mail address you gave above. Enter that activation code in the following screen, or follow the link in the e-mail, to activate your account. Once your account is activated, TWiki will:
  • Finish creating an account for you, so that you can start editing pages using your WikiName.
  • Create your personal TWiki topic using your WikiName as topic name, and add the data you submitted to the topic.
Line: 280 to 280
 
  • Set LOGIN_METHOD_IN_THIS_SITE = WikiName
--> Once registered you can login using your WikiName and password.
Added:
>
>
<-- /twikiFormStep-->
<-- /twikiFormSteps-->
 
Changed:
<
<
If you have any questions about registration, send an e-mail to webmaster@new.law.columbia.edu.
>
>
 
Note to administrator: The form fields can be customized to the needs of your organization. See also TWikiUserAuthentication. In case you are registering users through other means, replace this topic with a note describing how to get registered in TWiki. In any case, remove this note.

TWikiRegistration 11 - 27 Mar 2005 - Main.TWikiContributor
Line: 1 to 1
 

Registration

To edit pages on this TWikiSite, you must have a registered user name and password.

Line: 98 to 98
 
Your password: **
Retype password: **

TWikiRegistration 10 - 27 Mar 2005 - Main.TWikiContributor
Line: 1 to 1
 

Registration

To edit pages on this TWikiSite, you must have a registered user name and password.

Changed:
<
<
>
>
HELP Note: Registered users can change and reset their passwords.
 To register as a new user, simply fill out this form:
Line: 18 to 18
 var sIn = name; var sOut = ''; var chgUpper = true;
Changed:
<
<
for ( var i = 0; i < sIn.length; i++ ) { var ch = sIn.charAt( i ); var ch2 = ''; if((ch=='à')||(ch=='á')||(ch=='â')||(ch=='ã')||(ch=='å') ) { ch = 'a'; } if( (ch=='è')||(ch=='é')||(ch=='ê') ) { ch = 'e'; } if( ch=='ç') { ch = 'c'; } if( ch=='ñ') { ch = 'n'; } if( (ch=='ò')||(ch=='ó')||(ch=='ô') ) { ch = 'o'; } if( ch=='ä') { ch = 'a'; ch2 = 'e'; } if( ch=='ö') { ch = 'o'; ch2 = 'e'; } if( (ch=='ù')||(ch=='ú')||(ch=='û') ) { ch = 'o'; } if( ch=='ü') { ch = 'u'; ch2 = 'e'; } if( ch=='Ä') { ch = 'A'; ch2 = 'e'; } if( ch=='Ö') { ch = 'O'; ch2 = 'e'; } if( ch=='Ü') { ch = 'U'; ch2 = 'e'; } if( ch=='ß') { ch = 's'; ch2 = 's'; } if( ((ch>='a')&&(ch<='z')) || ((ch>='A')&&(ch<='Z')) ) { if( chgUpper ) { ch = ch.toUpperCase(); chgUpper = false; } sOut+=ch; if( ch2!='') { sOut+=ch2; } } else { if( ch==' ' ) { chgUpper = true; } } }
>
>
for ( var i = 0; i < sIn.length; i++ ) { var ch = sIn.charAt( i ); var chVal = ch.charCodeAt(0); var ch2 = ''; if( (chVal==192) || (chVal==193) || (chVal==194) || (chVal==195) ) { ch = 'A'; } if( chVal==196) { ch = 'A'; ch2 = 'E'; } if( chVal==197) { ch = 'A'; ch2 = 'A'; } if( chVal==198) { ch = 'A'; ch2 = 'E'; } if( chVal==199) { ch = 'C'; } if( (chVal==200) || (chVal==201) || (chVal==202) || (chVal==203) ) { ch = 'E'; } if( (chVal==204) || (chVal==205) || (chVal==206) || (chVal==207) ) { ch = 'I'; } if( chVal==208) { ch = 'd'; } if( chVal==209) { ch = 'N'; } if( (chVal==210) || (chVal==211) || (chVal==212) || (chVal==213) ) { ch = 'O'; } if( chVal==214) { ch = 'O'; ch2 = 'E'; } if( chVal==216) { ch = 'O'; ch2 = 'E'; } if( (chVal==217) || (chVal==218) || (chVal==219) ) { ch = 'U'; } if( chVal==220) { ch = 'U'; ch2 = 'E'; } if( chVal==221) { ch = 'Y'; } if( chVal==222) { ch = 'P'; } if( chVal==223) { ch = 's'; ch2 = 's'; } if( (chVal==224) || (chVal==225) || (chVal==226) || (chVal==227) ) { ch = 'a'; } if( chVal==228) { ch = 'a'; ch2 = 'e'; } if( chVal==229) { ch = 'a'; ch2 = 'a'; } if( chVal==230) { ch = 'a'; ch2 = 'e'; } if( chVal==231) { ch = 'c'; } if( (chVal==232) || (chVal==233) || (chVal==234) || (chVal==235) ) { ch = 'e'; } if( (chVal==236) || (chVal==237) || (chVal==238) || (chVal==239) ) { ch = 'i'; } if( chVal==240) { ch = 'd'; } if( chVal==241) { ch = 'n'; } if( (chVal==242) || (chVal==243) || (chVal==244) || (chVal==245) ) { ch = 'o'; } if( chVal==246) { ch = 'o'; ch2 = 'e'; } if( chVal==248) { ch = 'o'; ch2 = 'e'; } if( (chVal==249) || (chVal==250) || (chVal==251) ) { ch = 'u'; } if( chVal==252) { ch = 'u'; ch2 = 'e'; } if( chVal==253) { ch = 'y'; } if( chVal==254) { ch = 'p'; } if( chVal==255) { ch = 'y'; } if( ch!=' ' ) { if( chgUpper ) { ch = ch.toUpperCase(); chgUpper = false; } sOut+=ch; if( ch2!='') { sOut+=ch2; } } else { chgUpper = true; } }
  return sOut; } //-->
Line: 82 to 130
 
Added:
>
>
 
Line: 215 to 264
 
Fields marked ** are required
Changed:
<
<
 
>
>
 
 

TWikiRegistration 9 - 27 Mar 2005 - Main.TWikiContributor
Line: 1 to 1
Changed:
<
<
To edit pages on this TWiki Collaborative Web, you must have a registered user name in WikiNotation.
>
>

Registration

 
Changed:
<
<
To register as a new user, simply fill out this form:
>
>
To edit pages on this TWikiSite, you must have a registered user name and password.
 
Changed:
<
<
<-- IMPORTANT NOTE if you want to customize this form: You can delete or add new input variables in this form. Use the topic TWikiRegistrationPub?  in case this installation is on a public server (just copy the content over to the TWikiRegistration topic). The name="" parameter of the input tags must start with: "Twk0..." (if this is an optional entry), "Twk1..." (if this is a required entry). This will ensure that the fields are processed correctly. -->
>
>
 
Changed:
<
<
>
>
To register as a new user, simply fill out this form:

Important: the information provided in this form will be stored in a database on the TWiki server. This database is accessible to anyone who can access the server through the web (though passwords will be encrypted, and e-mail addresses will be obfusticated to help prevent spamming). Your country, or the country where the server is hosted, may have Data Protection laws governing the maintenance of such databases. If you are in doubt, you should contact webmaster@new.law.columbia.edu for details of the Data Protection Policy of this TWiki server before registering.

<-- IMPORTANT NOTE if you want to customize this form: You can delete or add new input variables in this form. The name="" parameter of the input tags must start with: "Twk0..." (if this is an optional entry), "Twk1..." (if this is a required entry). This will ensure that the fields are processed correctly. -->

 
Changed:
<
<
First & last name: **
Your WikiName: **
Intranet login name: **
Email address:
>
>
<--
	# optional row for login name, enabled by {Register}{AllowLoginName} option in configure 
  • Set BESPOKE_AUTH =
-->

First Name: **
Last Name: **
(identifies you to others) WikiName: **
(how you log in) LoginName: **
E-mail address:
 
**
Added:
>
>
<--
	# optional rows for password, enabled by {Register}{AllowLoginName} option in configure, we assume that login name means that TWiki does not handle passwords 
  • Set BESPOKE_PASSWORD =
-->
Your password: **
Retype password: **
Your password: **
Retype password: **
Organisation name:
 
Changed:
<
<
Phone:
Department:
>
>
Organisation URL:
 
Changed:
<
<
Office location:
>
>
Country:
 
Changed:
<
<
>
>
 
Changed:
<
<
>
>
 **
Changed:
<
<
Comments :
(optional)  
>
>
Comments:
(optional)
 
Changed:
<
<
     (Fields marked ** are required)
>
>
Fields marked ** are required
 
 
Changed:
<
<
Submitting the form will automatically:

  • Create an account for you, so that you can start editing pages using your WikiName.
  • Create your personal TWiki topic using your WikiName as topic name, and add the data you submitted to the topic.
  • Add your name to the list of users in the TWikiUsers topic in the Main web.
  • Send you a confirmation of your registration by email.

Once registered you can login using your WikiName and password.

If you have any questions about registration, send an email to webmaster@new.law.columbia.edu.

>
>
When TWiki receives the form, it will mail an account activation code to the e-mail address you gave above. Enter that activation code in the following screen, or follow the link in the e-mail, to activate your account. Once your account is activated, TWiki will:
  • Finish creating an account for you, so that you can start editing pages using your WikiName.
  • Create your personal TWiki topic using your WikiName as topic name, and add the data you submitted to the topic.
  • Add your name to the list of users in the TWikiUsers topic in the Main web.
  • Send you a confirmation of your registration by e-mail.
<--
	# login method used by this site: 
  • Set LOGIN_METHOD_IN_THIS_SITE = WikiName
-->
Once registered you can login using your WikiName and password.

If you have any questions about registration, send an e-mail to webmaster@new.law.columbia.edu.

Note to administrator: The form fields can be customized to the needs of your organization. See also TWikiUserAuthentication. In case you are registering users through other means, replace this topic with a note describing how to get registered in TWiki. In any case, remove this note.

Revision 13r13 - 23 Jan 2008 - 23:28:23 - IanSullivan
Revision 12r12 - 01 Jan 2007 - 19:28:59 - TWikiContributor
Revision 11r11 - 27 Mar 2005 - 13:14:15 - TWikiContributor
Revision 10r10 - 27 Mar 2005 - 13:14:15 - TWikiContributor
Revision 9r9 - 27 Mar 2005 - 13:14:15 - TWikiContributor
Revision 8r8 - 30 Jan 2003 - 08:48:03 - PeterThoeny?
This site is powered by the TWiki collaboration platform.
All material on this collaboration platform is the property of the contributing authors.
All material marked as authored by Eben Moglen is available under the license terms CC-BY-SA version 4.
Syndicate this site RSSATOM