Difference between revisions of "ProceedingsRepository"
(New page: IRIDIA has a proceedings repository that contains digital copies of proceedings. === Access === To get access you need [[Lab_responsibilities#Servers.2C_infrastructures.2C_and_assets|an ...) |
|||
(27 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
+ | <div class="page-warning"> |
||
− | IRIDIA has a proceedings repository that contains digital copies of proceedings. |
||
+ | [[Image:icon_warning.png|40px]] |
||
+ | The proceedings are stored in a subversion repository in the [[Development_Server|Development server]]. To access them, you need to get an account there. |
||
+ | </div> |
||
=== Access === |
=== Access === |
||
+ | They are two ways to get access to the proceedings. |
||
− | To get access you need [[Lab_responsibilities#Servers.2C_infrastructures.2C_and_assets|an account in the backup server]]. |
||
+ | ==== From your browser ==== |
||
− | Then login and go to |
||
+ | Just go to [https://iridia-dev.ulb.ac.be/projects/proceedings/svn https://iridia-dev.ulb.ac.be/projects/proceedings/svn] |
||
+ | |||
+ | ==== Export a copy of the subversion repository ==== |
||
+ | |||
+ | Use svn ls to list the proceedings available on the repository (or check it in the web version). |
||
<pre> |
<pre> |
||
− | + | svn ls https://iridia-dev.ulb.ac.be/projects/proceedings/svn |
|
+ | </pre> |
||
+ | You can export only the ones that you are interested by using for example: |
||
− | ls |
||
+ | |||
+ | <pre> |
||
+ | svn export https://iridia-dev.ulb.ac.be/projects/proceedings/svn/2010-GECCO 2010-GECCO |
||
</pre> |
</pre> |
||
=== Adding new proceedings === |
=== Adding new proceedings === |
||
+ | Adding proceedings to the repository is quite easy, but before you do it you have to ensure your subversion is properly configured. Check your ~/subversion/.config file to see if the options below are properly set: |
||
⚫ | |||
<pre> |
<pre> |
||
+ | enable-auto-props = yes |
||
− | scp -r /media/cdrom user@fallopius:/opt/proceedings/2010-gecco |
||
+ | [auto-props] |
||
− | ssh user@fallopius /opt/proceedings/update_permissions |
||
+ | *.gif = svn:mime-type=image/gif |
||
+ | *.jpg = svn:mime-type=image/jpeg |
||
+ | *.jpeg = svn:mime-type=image/jpeg |
||
+ | *.pdf = svn:mime-type=application/pdf |
||
+ | *.png = svn:mime-type=image/png |
||
+ | *.tif = svn:mime-type=image/tiff |
||
+ | *.tiff = svn:mime-type=image/tiff |
||
+ | *.htm = svn:mime-type=text/html |
||
+ | *.html = svn:mime-type=text/html |
||
+ | *.css = svn:mime-type=text/css |
||
+ | </pre> |
||
+ | |||
⚫ | |||
+ | |||
+ | <pre> |
||
+ | svn import /media/cdrom https://iridia-dev.ulb.ac.be/projects/proceedings/svn/2010-GECCO -m " Add proceedings of GECCO 2010" |
||
</pre> |
</pre> |
Latest revision as of 17:06, 31 October 2014
The proceedings are stored in a subversion repository in the Development server. To access them, you need to get an account there.
Access
They are two ways to get access to the proceedings.
From your browser
Just go to https://iridia-dev.ulb.ac.be/projects/proceedings/svn
Export a copy of the subversion repository
Use svn ls to list the proceedings available on the repository (or check it in the web version).
svn ls https://iridia-dev.ulb.ac.be/projects/proceedings/svn
You can export only the ones that you are interested by using for example:
svn export https://iridia-dev.ulb.ac.be/projects/proceedings/svn/2010-GECCO 2010-GECCO
Adding new proceedings
Adding proceedings to the repository is quite easy, but before you do it you have to ensure your subversion is properly configured. Check your ~/subversion/.config file to see if the options below are properly set:
enable-auto-props = yes [auto-props] *.gif = svn:mime-type=image/gif *.jpg = svn:mime-type=image/jpeg *.jpeg = svn:mime-type=image/jpeg *.pdf = svn:mime-type=application/pdf *.png = svn:mime-type=image/png *.tif = svn:mime-type=image/tiff *.tiff = svn:mime-type=image/tiff *.htm = svn:mime-type=text/html *.html = svn:mime-type=text/html *.css = svn:mime-type=text/css
Once things are set, let's say you want to add the directory /media/cdrom for the conference GECCO 2010. Just use the svn import command:
svn import /media/cdrom https://iridia-dev.ulb.ac.be/projects/proceedings/svn/2010-GECCO -m " Add proceedings of GECCO 2010"