ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* feature request for \getspr{}
@ 2012-06-08  7:38 Peter Münster
  2012-06-08  8:02 ` Hans Hagen
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Münster @ 2012-06-08  7:38 UTC (permalink / raw)
  To: ConTeXt users

Hi,

It would be nice, if \getspr{} of the m-spreadsheet module could print a
comma instead of a dot as decimal-point.

For now, I use this workaround:

--8<---------------cut here---------------start------------->8---
function spreadsheets.get(name,r,c,str)
    if name == "" then name = current if name == "" then name = "default" end end
    if not str or str == "" then
        context(data[name][c][r] or 0)
    else
        local result = execute(name,r,c,str)
        if result then
            if type(result) == "number" then
                data[name][c][r] = result
            end
            if userdata and userdata.spreadsheet_use_comma then
                result = tostring(result)
                result = result:gsub("%.", ",")
            end
            context(result)
        end
    end
end
--8<---------------cut here---------------end--------------->8---

-- 
           Peter
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-09  8:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-08  7:38 feature request for \getspr{} Peter Münster
2012-06-08  8:02 ` Hans Hagen
2012-06-08 10:21   ` Peter Münster
2012-06-08 19:58     ` Hans Hagen
2012-06-09  8:16       ` Peter Münster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).