Difference between revisions of "Site logo"

From ICA-AtoM
Jump to navigation Jump to search
(Created page with 'Main Page > User manual > Administer > Site logo Changes to the site logo will have to be done by a system administrator who has access to the the ICA-AtoM applicati...')
 
m (Linkage for PNG)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
[[Main Page]] > [[User manual]] > [[Administer]] > Site logo
 
[[Main Page]] > [[User manual]] > [[Administer]] > Site logo
  
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.
+
Changing the [[Glossary#Site logo|site logo]] must be done by a system administrator who has access to the the ICA-AtoM application files on your web server. Replace the file <code>image/logo.png</code> in the AtoM root directory with the logo for you site. The logo file must be in [http://en.wikipedia.org/wiki/Portable_Network_Graphics "Portable Network Graphics" (PNG)] format and it must be called "logo.png".
 
 
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>
 
 
 
<ol>
 
 
 
<li>Put the master logo in the deployment root
 
 
 
<li>Add the master logo to the Subversion working copy,
 
 
 
<pre>
 
$ svn add <master logo file name, e.g. foo.jpg>
 
</pre>
 
 
 
<li>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.
 
 
 
<pre>
 
$ svn rm trunk/images/logo.png
 
$ svn cp <master logo file name, e.g. foo.jpg> trunk/images/logo.png
 
</pre>
 
 
 
<li>Modify the deployment logo, to make it suitable for the web,
 
 
 
<pre>
 
$ convert <master logo file name, e.g. foo.jpg> trunk/images/logo.png
 
</pre>
 
 
 
<li>Unless the logo is exactly the right size for display on the web, you'll need to resize the deployment logo using the [http://imagemagick.org/script/command-line-options.php#resize -resize] option,
 
 
 
<pre>
 
$ convert <master logo file name, e.g. foo.jpg> -resize x100 trunk/images/logo.png
 
</pre>
 
 
 
</ol>
 

Latest revision as of 19:13, 7 November 2012

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.

Main Page > User manual > Administer > Site logo

Changing the site logo must be done by a system administrator who has access to the the ICA-AtoM application files on your web server. Replace the file image/logo.png in the AtoM root directory with the logo for you site. The logo file must be in "Portable Network Graphics" (PNG) format and it must be called "logo.png".