Logo du site

From ICA-AtoM
< Site logo
Revision as of 02:06, 28 October 2011 by Sibille (talk | contribs) (Created page with '{{DISPLAYTITLE:Logo du site}} Page principale > Manuel utilisateur > Administrer > Logo du site Changes to the [[Glossary#...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Please note that ICA-AtoM is no longer actively supported by Artefactual Systems.
Visit https://www.accesstomemory.org for information about AtoM, the currently supported version.


Page principale > Manuel utilisateur > Administrer > Logo du site

Changes to the site logo will have to be done by a system administrator who has access to the the ICA-AtoM application files on your web server.

Customizing the logo will require editing two files, the master logo and the deployment logo. The master logo is the original file from the institution, with no modifications. The deployment logo is possibly a modification of the master logo, to make it suitable for the web (as per step 5, below).

The deployment root is the directory in the working copy which contains all the deployment's files, e.g. ~/public_html/<name of site>

  1. Put the master logo in the deployment root
  2. Add the master logo to the Subversion working copy,
    $ svn add <master logo file name, e.g. foo.jpg>
    
  3. Make an ancestral relation between the master logo and the deployment logo using the Subversion copy command. After this command is run, the deployment logo may contain JPEG or GIF or etc. data, though it has a .png file name extension. We'll fix this in the next step.
    $ svn rm trunk/images/logo.png
    $ svn cp <master logo file name, e.g. foo.jpg> trunk/images/logo.png
    
  4. Modify the deployment logo, to make it suitable for the web,
    $ convert <master logo file name, e.g. foo.jpg> trunk/images/logo.png
    
  5. Unless the logo is exactly the right size for display on the web, you'll need to resize the deployment logo using the -resize option,
    $ convert <master logo file name, e.g. foo.jpg> -resize x100 trunk/images/logo.png