location: Diff for "Homepage"

Institute of Mathematics - PublicMathWiki:

Differences between revisions 3 and 20 (spanning 17 versions)
Revision 3 as of 2017-06-19 09:25:19
Size: 989
Editor: dmorci
Comment:
Revision 20 as of 2019-05-14 08:12:55
Size: 2454
Editor: crose
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
<<TableOfContents>>
Line 3: Line 5:
Professors, Assistents and Staff do have a homepage with office and phone number, picture and a free editable list of links. Professors and Assistents can setup a page with publications and research interests. All of these pages are located under the staff menu. Additionally lectures and seminars will be listed under each persons homepage (including excercises, scripts, ....). All institutes members are automatically listed (http://www.math.uzh.ch/index.php?id=personal) on the institutes page (as long as they are employed), including a detailed '''personal page''' with subpages for Research, CV and Publications. The data shown are either automatically generated and (optional) manually extended by the User via 'Local Info' (see below).
Line 5: Line 7:
== Working group, project and private homepages == The other possibility are a directory where the user can create HTML files directly.
Line 7: Line 9:
All institutes members and students have the possibilitie to setup a private homepage. This page can be independet or contain parts of the institutes database. It's necessary to have knowledge in HTML!
Please contact the Support Group for more details.
Line 10: Line 10:
 1. To create a personal homepage, please contact your System Administrator. It is necessary to set a link to your homepage directory. --> [[http://www.math.uzh.ch/index.php?support]]
 1. The entry page has to be called 'index.html'
 1. Set up your Personal Hompage
== Personal Homepage (Local Info) ==

 1. Go to Local Info [[https://www.math.uzh.ch/li/]] > Login > Personal homepage
 1. For every page (Main, Research, ...) a list of records can be created. Each record might contain text, links, pictures or PDFs for download. To style the output, use HTML.

== Personal homepage (HTML) ==

 * It's necessary to have knowledge in HTML! The support group won't help you fixing HTML / CSS or other problems. If you don't know HTML, use the offer above.
 * Please contact [[http://www.math.uzh.ch/support]] and ask to setup the necessary 'public_html' directory and coressponding URL.
 * In your home directory a new directory called 'public_html' will appear. Please save all of your homepage files there.
 * The entry page has to be called 'index.html' (the filename has to be lowercase).
 * After creating new files: open a terminal and type and press return: {{{
setwww
}}}
 * The URL are typically: http://user.math.uzh.ch/<lastname>

=== Password protection ===

 * Create the file `.htaccess` in the access restricted directory, e.g.: `~/public_html/private/.htaccess`.
 * Content:
{{{
AuthName "private stuff login"
AuthType Basic
AuthUserFile /userpages/<surname>/.htaccessusers
require valid-user
}}}
 * Create or modify your user database:
{{{
# Create .htaccessusers
$ htpasswd -c ~/public_html/.htaccessusers <username>

# If there is a .htaccessusers file and you would like to add or alter a user/password:
$ htpasswd ~/public_html/.htaccessusers <username>
}}}
 * Do not forget to call `setwww` if you create new files.



== HTML Math Symbols ==

Math Symbols can be typed as HTML codes in modern browsers:

https://www.w3schools.com/charsets/ref_utf_math.asp

== Redirect ==

 * https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections

{{{
<head>
  <meta http-equiv="refresh" content="0; URL=http://www.example.com/" />
</head>
}}}

Personal Homepage

All institutes members are automatically listed (http://www.math.uzh.ch/index.php?id=personal) on the institutes page (as long as they are employed), including a detailed personal page with subpages for Research, CV and Publications. The data shown are either automatically generated and (optional) manually extended by the User via 'Local Info' (see below).

The other possibility are a directory where the user can create HTML files directly.

Personal Homepage (Local Info)

  1. Go to Local Info https://www.math.uzh.ch/li/ > Login > Personal homepage

  2. For every page (Main, Research, ...) a list of records can be created. Each record might contain text, links, pictures or PDFs for download. To style the output, use HTML.

Personal homepage (HTML)

  • It's necessary to have knowledge in HTML! The support group won't help you fixing HTML / CSS or other problems. If you don't know HTML, use the offer above.
  • Please contact http://www.math.uzh.ch/support and ask to setup the necessary 'public_html' directory and coressponding URL.

  • In your home directory a new directory called 'public_html' will appear. Please save all of your homepage files there.
  • The entry page has to be called 'index.html' (the filename has to be lowercase).
  • After creating new files: open a terminal and type and press return:

    setwww
  • The URL are typically: http://user.math.uzh.ch/<lastname>

Password protection

  • Create the file .htaccess in the access restricted directory, e.g.: ~/public_html/private/.htaccess.

  • Content:

AuthName "private stuff login"
AuthType Basic
AuthUserFile /userpages/<surname>/.htaccessusers
require valid-user
  • Create or modify your user database:

# Create .htaccessusers
$ htpasswd -c ~/public_html/.htaccessusers <username>

# If there is a .htaccessusers file and you would like to add or alter a user/password:
$ htpasswd ~/public_html/.htaccessusers <username>
  • Do not forget to call setwww if you create new files.

HTML Math Symbols

Math Symbols can be typed as HTML codes in modern browsers:

https://www.w3schools.com/charsets/ref_utf_math.asp

Redirect

<head> 
  <meta http-equiv="refresh" content="0; URL=http://www.example.com/" />
</head>

PublicMathWiki: Homepage (last edited 2023-07-15 10:11:02 by crose)