search for: list_long

Displaying 6 results from an estimated 6 matches for "list_long".

Did you mean: list_lock
2014 Jan 16
5
[PATCH 0/3] Add JSON output for virt-builder
Hi, This small patch serie adds a JSON output for virt-builder. This way it is possible to parse the list of available templates, with no need to parse the unstructured and possibly changing short and long outputs of virt-builder. Pino Toscano (3): builder: small refactor of the list output builder: add --list-format builder: add a JSON output for --list builder/builder.ml
2013 Dec 04
4
[PATCH] builder: translate more user-visible strings
...in the --long output. --- builder/list_entries.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/list_entries.ml b/builder/list_entries.ml index 8c24fe2..a1d0696 100644 --- a/builder/list_entries.ml +++ b/builder/list_entries.ml @@ -47,7 +47,7 @@ let list_entries ?(list_long = false) ~sources index = printf "\n" ) else ( (* Long *) - printf "%-24s %s\n" "os-version:" name; + printf "%-24s %s\n" (s_"OS version:") name; (match printable_nam...
2013 Dec 06
0
Re: [PATCH] builder: translate more user-visible strings
...list_entries.ml | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/builder/list_entries.ml b/builder/list_entries.ml > index 8c24fe2..a1d0696 100644 > --- a/builder/list_entries.ml > +++ b/builder/list_entries.ml > @@ -47,7 +47,7 @@ let list_entries ?(list_long = false) ~sources index > = printf "\n" > ) > else ( (* Long *) > - printf "%-24s %s\n" "os-version:" name; > + printf "%-24s %s\n" (s_"OS version:") name; Oops, I suck, I...
2013 Dec 06
1
Re: [PATCH] builder: translate more user-visible strings
...1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/builder/list_entries.ml b/builder/list_entries.ml > > index 8c24fe2..a1d0696 100644 > > --- a/builder/list_entries.ml > > +++ b/builder/list_entries.ml > > @@ -47,7 +47,7 @@ let list_entries ?(list_long = false) ~sources index > > = printf "\n" > > ) > > else ( (* Long *) > > - printf "%-24s %s\n" "os-version:" name; > > + printf "%-24s %s\n" (s_"OS version:"...
2012 Oct 03
0
ggplot2 problem
...make_stars function: transpose_stars = function(lat_b, long_b,lat_t,long_t,step){ matrix <- readSO2Data(lat_b, long_b) // read an arbitrary point for calculating matrix size nlat <- (lat_t-lat_b)/step+1 nlong <- (long_t-long_b)/step+1 ntime <- length(matrix$value) list_lat<-list() list_long<-list() list_time<-list() for( m in 1:nlat){ list_lat[m]<-toString(lat_b + step*(m-1)) } for( m in 1:nlong){ list_long[m]<-toString(long_b + step*(m-1)) } for( m in 1:ntime){ list_time[m]<-toString(m) } test<-array(data=NA,dim=c(nlat,nlong,ntime),list(lat = list_lat,long = list_...
2014 Jan 10
3
[PATCH 0/3] Timezone and keyboard layout settings in virt-builder and virt-sysprep.
Setting timezone is easy. It turns out to be almost impossible to set keyboard layout in virt-builder sanely, so I have added some examples instead. Coming up next, setting languages in virt-builder (clue: very very very hard). Rich.