-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi

I solved the problem by using the following script in org:


#+begin_src sh :exports results :results output replace
  svn info ./spreadSim.org > spreadSim.version
  cat spreadSim.version
  echo " \"Value\"" > spreadSim.version.R
  gawk -F": " '{
    gsub(" ", "", $1);
    gsub(/^\ +/,$2);
    print  "\"" $1 "\" \"" $2 "\""
  }' spreadSim.version >> spreadSim.version.R
  svn status ./spreadSim.org >> spreadSim.version
#+end_src

This inserts the svn info while exporting into the document and into a
file called spreadSim.version.R. In R, I load that file with

#+begin_src R
  svnInfo <- read.table("spreadSim.version.R", header=TRUE, as.is=TRUE)
  ...
#+end_src

and can there as well use the version info.

Just one caveat: I have to export before I tangle to get the actual
version info.

Therefore I still have my question, if there is an (emacs?) variable /
function which gives me the svn revision of the buffer?

Cheers,

Rainer



On 01/09/10 09:58, Rainer M Krug wrote:
> On 31/08/10 19:50, Achim Gratz wrote:
>> Rainer M Krug <r.m.k...@gmail.com> writes:
> 
>>> I could use a code block with a bash script to extract that information
>>> from svn info, but that seems to be awkward for me - there must be an
>>> easier way.
> 
>> Provided your vc setup works correctly, then (vc-working-revision FILE) will
>> deliver just this information.
> 
> Hm - I can't find that command (I assume it is a function)? And if how
> can I get the file name of the buffer?
> 
> Rainer
> 
> 
> 
>> Achim.
> 
> 
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> 
> 

- -- 
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Tel:        +33 - (0)9 53 10 27 44
Cell:       +27 - (0)8 39 47 90 42
Fax (SA):   +27 - (0)8 65 16 27 82
Fax (D) :   +49 - (0)3 21 21 25 22 44
Fax (FR):   +33 - (0)9 58 10 27 44
email:      rai...@krugs.de

Skype:      RMkrug
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkx+YAUACgkQoYgNqgF2egpcsgCeOZi82GTVYWhJqidUr/s5tvdb
HVUAnjgkxBwcPtRltzQzxMjRLdGVrdxU
=REru
-----END PGP SIGNATURE-----

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to