all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [ANN] org-tchanges.el
@ 2024-05-12  7:03 James Thomas
  2024-05-13  8:49 ` Eric S Fraga
  0 siblings, 1 reply; 6+ messages in thread
From: James Thomas @ 2024-05-12  7:03 UTC (permalink / raw)
  To: help-gnu-emacs

Hi all,

Just want to let you know of a (small) package I made for org users to
collaborate easily with users of Word Processing (Office) software .docx
files; using its 'track changes' feature.

https://codeberg.org/quotuva/org-tchanges

It works well-enough for my needs, but I think it needs wider testing.
So would love feedback.

Regards,
James



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

* Re: [ANN] org-tchanges.el
  2024-05-12  7:03 [ANN] org-tchanges.el James Thomas
@ 2024-05-13  8:49 ` Eric S Fraga
  2024-05-13 22:37   ` [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes' James Thomas
  0 siblings, 1 reply; 6+ messages in thread
From: Eric S Fraga @ 2024-05-13  8:49 UTC (permalink / raw)
  To: help-gnu-emacs

On Sunday, 12 May 2024 at 12:33, James Thomas wrote:
> Just want to let you know of a (small) package I made for org users to
> collaborate easily with users of Word Processing (Office) software .docx
> files; using its 'track changes' feature.
>
> https://codeberg.org/quotuva/org-tchanges

This looks potentially quite useful.  Couple of questions:

1. Is there an expected route to creating the .docx file from the .org
   file that ensures that the changes are represented accurately?
2. What is a "tooltip" in an org file?

Thank you,
eric

-- 
Eric S Fraga via gnus (Emacs 30.0.50 2024-03-25) on Debian 12.0




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

* Re: [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes'
  2024-05-13  8:49 ` Eric S Fraga
@ 2024-05-13 22:37   ` James Thomas
  2024-05-14  8:07     ` Eric S Fraga
  2024-05-14 20:24     ` tpeplt
  0 siblings, 2 replies; 6+ messages in thread
From: James Thomas @ 2024-05-13 22:37 UTC (permalink / raw)
  To: help-gnu-emacs

Eric S Fraga wrote:

> This looks potentially quite useful.  Couple of questions:
>
> 1. Is there an expected route to creating the .docx file from the .org
>    file that ensures that the changes are represented accurately?

As I see it, you could first export it as barely as possible, but
because changes are made only afterward, to the exported version, it
shouldn't make much difference. Also, as mentioned, the ediff3 method
with the ancestor file could be used to hide common changes ('$$')
brought about by the reverse conversion, for more accuracy.

> 2. What is a "tooltip" in an org file?

I meant the 'help-echo' of the 'highlight'ed regions in the buffer. Also
accessible by C-h . (display-local-help) with point placed there.

Currently 'deletion' comments are removed, but I'm working on an
alternative that preserves that as well.

Regards,
James



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

* Re: [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes'
  2024-05-13 22:37   ` [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes' James Thomas
@ 2024-05-14  8:07     ` Eric S Fraga
  2024-05-14 20:24     ` tpeplt
  1 sibling, 0 replies; 6+ messages in thread
From: Eric S Fraga @ 2024-05-14  8:07 UTC (permalink / raw)
  To: help-gnu-emacs

Thank you.  I'll give this a try next time I have to work with
colleagues that use Word!  (I'll try to play with it earlier, time
permitting.)
-- 
Eric S Fraga via gnus (Emacs 30.0.50 2024-04-18) on Debian 12.5




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

* Re: [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes'
  2024-05-13 22:37   ` [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes' James Thomas
  2024-05-14  8:07     ` Eric S Fraga
@ 2024-05-14 20:24     ` tpeplt
  2024-05-14 21:58       ` James Thomas
  1 sibling, 1 reply; 6+ messages in thread
From: tpeplt @ 2024-05-14 20:24 UTC (permalink / raw)
  To: James Thomas; +Cc: help-gnu-emacs

James Thomas <jimjoe@gmx.net> writes:

> ...

A minor matter, but your source files ‘org-tchanges.el’ and
‘org-tchanges.lua’ contain tab characters in assorted places.

1. Consider replacing those tab characters with space characters so that
your intended indentation is unambiguous.

2. Or, add a file variable to each of these files to set the value of
the Emacs Lisp variable ‘tab-width’ to the value that you expect.  See
the section in the Emacs user manual for a description of file variables
by evaluating the following expression in Emacs:

   (info "(emacs) Specifying File Variables")

-- 
The lyf so short, the craft so long to lerne.
- Geoffrey Chaucer, The Parliament of Birds.



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

* Re: [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes'
  2024-05-14 20:24     ` tpeplt
@ 2024-05-14 21:58       ` James Thomas
  0 siblings, 0 replies; 6+ messages in thread
From: James Thomas @ 2024-05-14 21:58 UTC (permalink / raw)
  To: tpeplt; +Cc: help-gnu-emacs

tpeplt wrote:

> A minor matter, but your source files ‘org-tchanges.el’ and
> ‘org-tchanges.lua’ contain tab characters in assorted places.
>
> 1. Consider replacing those tab characters with space characters so that
> your intended indentation is unambiguous.

Thanks! I'd intended to run 'untabify' but forgot about it. Pushed.

Regards,
James



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

end of thread, other threads:[~2024-05-14 21:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-12  7:03 [ANN] org-tchanges.el James Thomas
2024-05-13  8:49 ` Eric S Fraga
2024-05-13 22:37   ` [ANN] org-tchanges.el: Collaborate with Office (docx) users using 'track changes' James Thomas
2024-05-14  8:07     ` Eric S Fraga
2024-05-14 20:24     ` tpeplt
2024-05-14 21:58       ` James Thomas

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.