Re: The Website Revamp: The final stretch

2020-09-23 Thread Takaaki Ishikawa
Dear Timothy,

I can provide Japanese translated webpages.
Currently, I have a permission to push translated pages in Japanese to
orgmode.org but I don't understand where you are working on for the
new website.
Could you provide me further information to help you? Email to me is welcome :)

Best regards,
Takaaki


Takaaki ISHIKAWA 

2020年9月23日(水) 0:01 TEC :
>
> Hello everyone,
>
> I'm pleased to announce that after chatting with Bastien, my
> little
> revamp project seems to be nearing the point where it may replace
> the
> current site.
>
> Two things that would be good to get sorted:
>  1. Translation of the index page to French/Japanese ::
> I'm english only, and Bastien is busy, so volunteers would be
> much appreciated!
>  2. Picking the best 'Hero banner' on the home page ::
> Concerns were raised over the lack of contrast between the
> logo and
> the current banner background. I've chatted to someone else
> with
> some ideas and we've produced a few concepts which we'd like
> to get
> your feedback on.
> See the file attached, and if you could give say your top
> three
> picks (ordered), and any relevant
> reasoning/considerations/comments
> that would be great!
>
> All the best,
>
> Timothy.
>
> p.s. I haven't had much luck with attachments in the past, if this
> fails
> I'll reply with the attachment.
>



Re: Quit and Error in org-export--dispatch-action

2019-12-09 Thread Takaaki Ishikawa
Dear Kyle,

Confirmed. Thanks!

Best,
Takaaki

2019年12月9日(月) 19:39 Kyle Meyer :

>
> Takaaki Ishikawa  writes:
>
> [...]
>
> > I created a patch for this issue. Please find an attached patch.
>
> Thanks!  Applied in c7ad3f884 (with minor cosmetic tweaks to the commit
> message).
>
> > It is a really tiny patch. But I have already signed the copyright
> > assignment with FSF.
>
> Great, I've added you to the list at
> https://orgmode.org/worg/org-contribute.html



Re: Quit and Error in org-export--dispatch-action

2019-12-08 Thread Takaaki Ishikawa
Dear Kyle and all,

Thank you for your kind feedback.

> Thanks for providing more context.  So if I'm understanding correctly,
> the point here is that for your use case/setup you'd like to call
> delete-window even when you select 'q' within the org-export-dispatch
> call. Signaling a user-error doesn't make this much more difficult: you
> can wrap the `(apply f ...)' call within a condition-case.

Yes. But I found out `C-g' also exits `org-export-dispatch’ and
it is difficult for me to catch `C-g' signal in the original advice function.

So I’ve tried again and produced the following code to support calling any 
additional functions before and after `org-export-dispatch’ even if user types 
`q` or `C-g`.
In this case, using user-error is OK for me :)

#+begin_src emacs-lisp
(with-eval-after-load "ox"
  (defvar my-org-export-before-hook nil)
  (add-hook 'my-org-export-before-hook #'split-window-horizontally)

  (defvar my-org-export-after-hook nil)
  (add-hook 'my-org-export-after-hook #'delete-window)

  (defun my-org-export--post-processing ()
(when (eq this-command 'org-export-dispatch)
  (run-hooks 'my-org-export-after-hook))
(remove-hook 'post-command-hook #'my-org-export--post-processing))

  (defun my-org-export-dispatch (f ARG)
(cond (org-export-dispatch-use-expert-ui
   (apply f ARG))
  ((> (frame-width) 160)
   (when my-org-export-after-hook
 (add-hook 'post-command-hook #'my-org-export--post-processing))
   (run-hooks 'my-org-export-before-hook)
   (apply f ARG))
  (t
   (apply f ARG
  (advice-add 'org-export-dispatch :around #'my-org-export-dispatch))
#+end_src

I created a patch for this issue. Please find an attached patch.
It is a really tiny patch. But I have already signed the copyright
assignment with FSF.


> I see two related advantages of sticking to signaling an error here:
> 
> * It stays close to what the current code does.  Continuing to signal
>   an error but replacing `error' with `user-error' reduces the risk of
>   bugs or unintended changes in behavior while avoiding showing a
>   backtrace when the caller aborts and debug-on-error is true (the
>   initial issue reported in this thread).
> 
> * 'q' is described as aborting, so I think it's confusing to make 'q'
>   instead execute a no-op function and continue with the remaining code
>   in the outer functions, which at the moment boils down to code in
>   org-export-dispatch.  For example, with your suggested change,
>   issuing 'q' will result in `ignore' being saved as the last export
>   action, and it's hard to imagine that's an action the user would
>   expect or want to repeat when calling org-export-dispatch with a
>   prefix argument.

I partially agree with you because the dispatcher shows it
as “[q] Exit”. This is actually different from “[q] Aborting”.
Typing `q` is completely intended by user to exit the procedure.
If something is happened accidentally in the procedure,
then, IMO, we should say it as “aborting” and update the code appropriately.

Anyway, replacing with `user-error` is OK.

Best,
Takaaki




0001-ox.el-Replace-error-with-user-error-to-exit-org-expo.patch
Description: Binary data






Re: Quit and Error in org-export--dispatch-action

2019-12-05 Thread Takaaki Ishikawa
Dear Kyle and all,

Using user-error is another way, but it does not work for me
because user-error stops the org-export-dispatch.
I would like to keep the session to do an action after
the completing org-export-dispatch something like this:

  (defun my-org-export-dispatch (f ARG)
(interactive "P")
(if (< (frame-width) 160)
(apply f ARG)
  (split-window-right)
  (apply f ARG)
  (delete-window)))
  (advice-add 'org-export-dispatch :around #'my-org-export-dispatch)

So I still prefer to replace the error function with a simple message function.
If you agree with this idea, I'll produce an appropriate patch for this
as you kindly instructed.

Best,
Takaaki


--
Takaaki ISHIKAWA 

2019年12月5日(木) 19:27 Kyle Meyer :
>
> Hi Takaaki,
>
> Takaaki Ishikawa  writes:
>
> > The org-export provides a quitting option for user by typing `q`.
> > This is nice feature but it is implemented with an error function.
> > For me, it is not actually an error, it is one of the user actions,
> > and when `debug-on-error` is `t`, the Backtrace buffer will be
> > popped up every time. It is annoying.
>
> True, that shouldn't be treated as a plain error.
>
> > Please find a patch to replace error function with a simple message.
> > What do you think?
> >
> >[...]
> >
> > --- a/lisp/ox.el
> > +++ b/lisp/ox.el
> > @@ -6929,8 +6929,8 @@ options as CDR."
> >(org-export--dispatch-ui options first-key expertp))
> >   ;; q key at first level aborts export.  At second level, cancel
> >   ;; first key instead.
> > - ((eq key ?q) (if (not first-key) (error "Export aborted")
> > - (org-export--dispatch-ui options nil expertp)))
> > + ((eq key ?q) (if first-key (org-export--dispatch-ui options nil 
> > expertp)
> > + (message "Export aborted") '(ignore)))
>
> Hmm, what about instead replacing the call to `error' with a call to
> `user-error'?  If that works for you, could you send an updated patch
> with a commit message?  (Org's commit message conventions are described
> at <https://orgmode.org/worg/org-contribute.html#commit-messages>.)



Quit and Error in org-export--dispatch-action

2019-12-04 Thread Takaaki Ishikawa
Dear Nicolas and all,

The org-export provides a quitting option for user by typing `q`.
This is nice feature but it is implemented with an error function.
For me, it is not actually an error, it is one of the user actions,
and when `debug-on-error` is `t`, the Backtrace buffer will be
popped up every time. It is annoying.

Please find a patch to replace error function with a simple message.
What do you think?

Best regards,
Takaaki

--
Takaaki ISHIKAWA 


ox.patch
Description: Binary data


Re: [O] PPTX link: Open with PowerPoint on Mac

2019-09-28 Thread Takaaki Ishikawa
Just for your information, org-lint says:

  3892 high  Deprecated "file+sys" link type

in my private org file. I don’t know what is the replacement.

Best,
Takaaki

> On Sep 27, 2019, at 19:57, Nathan Neff  wrote:
> 
> Here it is: https://orgmode.org/manual/External-Links.html#External-Links
> 
> I was looking here:
> https://orgmode.org/manual/External-links.html - but wait, what's the 
> difference?  Whoa, the
> "l" is lower case on the second link - looks like a doc / publishing bug - 
> one page has 4.3 and the
> other says 4.4.
> 
> What do I need to do to report this doc / publishing bug?
> 
> Thanks,
> --Nate
> 
> 
> 
> On Fri, Sep 27, 2019 at 5:50 AM Nathan Neff  wrote:
> 
> 
> On Fri, Sep 27, 2019 at 4:45 AM Takaaki Ishikawa  wrote:
> I think you may have to put “file+sys:/“ before your path.
> 
> For example: file+sys://Users/nate/some_pptx.pptx
> 
> Thank you Takaaki very much! This worked great!
> 
> 
> Best,
> Takaaki
> 
> > On Sep 27, 2019, at 18:42, Nathan Neff  wrote:
> >
> > Hello all,
> >
> > I have a simple path in org-mode
> >
> > /Users/nate/some_pptx.pptx
> >
> > When I press C-c C-o it opens the file in binary mode in Emacs.
> >
> > A path to a PDF will actually open the file with the associated program:
> > /Users/nate/some_png.png -> Opens in Preview when I press C-c C-o
> >
> > How can I get emacs / org to open pptx files in the same fashion as if I had
> > double-clicked using Finder on Mac?
> >
> > Thanks,
> > --Nate
> 



signature.asc
Description: Message signed with OpenPGP


Re: [O] PPTX link: Open with PowerPoint on Mac

2019-09-27 Thread Takaaki Ishikawa
I think you may have to put “file+sys:/“ before your path.

For example: file+sys://Users/nate/some_pptx.pptx

Best,
Takaaki

> On Sep 27, 2019, at 18:42, Nathan Neff  wrote:
> 
> Hello all,
> 
> I have a simple path in org-mode
> 
> /Users/nate/some_pptx.pptx
> 
> When I press C-c C-o it opens the file in binary mode in Emacs.
> 
> A path to a PDF will actually open the file with the associated program:
> /Users/nate/some_png.png -> Opens in Preview when I press C-c C-o
> 
> How can I get emacs / org to open pptx files in the same fashion as if I had
> double-clicked using Finder on Mac?
> 
> Thanks,
> --Nate



signature.asc
Description: Message signed with OpenPGP


Re: [O] org-eldoc error on shell src blocks

2019-04-04 Thread Takaaki Ishikawa
Hi folks,

I just verified the proposed patch to org-eldoc.el in contrib dir, works well.
But the problem is we lost an appropriate contact point because
https://bitbucket.org/ukaszg/org-eldoc was removed.
Who can amend org-eldoc.el in contribution directory?

Best regards,
Takaaki

> On Mar 31, 2019, at 17:53, 甲斐常伸  wrote:
> 
> Hello,
> 
> I encounted the same error and I found it happens because "org-eldoc.el" 
> doesn't reflect a value of "org-src-lang-modes". When I redefine 
> "org-eldoc-get-mode-local-documentation-function" to reflect a value of 
> "org-src-lang-modes" as below, the error disappeared.
> 
> (defun org-eldoc-get-mode-local-documentation-function (lang)
>   "Check if LANG-mode sets eldoc-documentation-function and return its 
> value."
>   (let ((cached-func (gethash lang org-eldoc-local-functions-cache 
> 'empty))
> (mode-func (org-src--get-lang-mode lang))
> doc-func)
> (if (eq 'empty cached-func)
> (when (fboundp mode-func)
>   (with-temp-buffer
> (funcall mode-func)
> (setq doc-func (and eldoc-documentation-function
> (symbol-value 
> 'eldoc-documentation-function)))
> (puthash lang doc-func org-eldoc-local-functions-cache))
>   doc-func)
>   cached-func)))
> 
> The practical change is a one line.
> 
> diff --git a/contrib/lisp/org-eldoc.el b/contrib/lisp/org-eldoc.el
> index 556b945..fca13c3 100644
> --- a/contrib/lisp/org-eldoc.el
> +++ b/contrib/lisp/org-eldoc.el
> @@ -110,7 +110,7 @@
>  (defun org-eldoc-get-mode-local-documentation-function (lang)
>"Check if LANG-mode sets eldoc-documentation-function and return its 
> value."
>(let ((cached-func (gethash lang org-eldoc-local-functions-cache 
> 'empty))
> -(mode-func (intern-soft (format "%s-mode" lang)))
> +(mode-func (org-src--get-lang-mode lang))
>  doc-func)
>  (if (eq 'empty cached-func)
>  (when (fboundp mode-func)
> 
> 
> I confirmed this change works good on the following two environments.
> 
> - Emacs 26.1 on Windows 10
>   - (emacs-version) ; GNU Emacs 26.1 (build 2, x86_64-pc-linux-gnu, GTK+ 
> Version 3.22.30) of 2018-05-29
>   - (org-version) ; Org mode version 9.2.2 (9.2.2-13-g0007df-elpaplus @ 
> /home/kai2nenobu/.emacs.d/elpa/org-plus-contrib-20190318/)
> 
> - Emacs 26.1 on Ubuntu 18.04 on WSL (on above Windows 10)
>   - (emacs-version) ; GNU Emacs 26.1 (build 1, x86_64-w64-mingw32) of 
> 2018-05-31
>   - (org-version) ; Org mode version 9.2.1 (9.2.1-8-g1b1797-elpaplus @ 
> c:/Users/kai2nenobu/.emacs.d/elpa/org-plus-contrib-20190211/)
> 
> 
> I'm ready to contribute this patch, but I don't know how to contribute to 
> "org-eldoc.el". Please tell me how to do it.
> 
> 
> Best Regards,
> 
> 
> 2018年2月4日(日) 16:56 Nicolas Goaziou :
> Hello,
> 
> "numbch...@gmail.com"  writes:
> 
> > After some dive in deeper
> >
> > - [X] emacs minimal init test, confirmed issue in org-mode.
> > - [X] from the error log, seems `org-eldoc` try to call `(progn (funcall
> > mode-func) ...`. This caused `shell-mode()`.
> > - [ ] check out `org-eldoc.el` source code, have not found any solution or
> > options.
> 
> > Hope some org-mode hacker can help to fix this issue?
> 
> I'm Cc'ing Org Eldoc author about it.
> 
> > And this might be a unit test in Org-mode testing?
> 
> We don't test contrib packages. However, they can provide their own
> tests.
> 
> Regards,
> 
> --
> Nicolas Goaziou
> 



signature.asc
Description: Message signed with OpenPGP


[O] bug#34684: bug#34684: 26.1; Strange characters when inserting date

2019-03-11 Thread Takaaki Ishikawa
Hi folks,

Have you tried to use `set-local-environment'?
I usually use the command to change the date formatting in my init.el as
follows:

(set-locale-environment "en_US.UTF-8") ;; "ja_JP.UTF-8"

Best  regards,
Takaaki Ishikawa


2019年3月12日(火) 3:34 Wong, Philip :

> Does the same thing
>
>
>
>
>
>
>
>
>
> -Original Message-
> From: Robert Pluim 
> Sent: Monday, March 11, 2019 10:43 AM
> To: Wong, Philip 
> Cc: Eli Zaretskii ; 34...@debbugs.gnu.org
> Subject: Re: bug#34684: 26.1; Strange characters when inserting date
>
>
>
> >>>>> On Mon, 11 Mar 2019 09:41:41 +, "Wong, Philip" <
> philip.w...@warwick.ac.uk> said:
>
>
>
> Philip> Sorry, I don't understand what you mean by emacs -Q.  How
>
> Philip> exactly am I supposed to run this command?
>
>
>
> Philip> I tried ctrl c and then started typing 'emacs -Q' but it
>
> Philip> did nothing.
>
>
>
> I guess youʼre starting emacs by clicking on some icon? You need to start
> it from the command line, with an argument of -Q, probably from cmd.exe or
> similar (I am Emacs-on-windows ignorant).
>
>
>
> Robert
>


Re: [O] function for inserting a block

2017-11-08 Thread Takaaki Ishikawa
I also support the idea of keeping "<s" as it was.
Please give importance to the backward compatibility in this case.

Best regards,
Takaaki Ishikawa

2017-11-09 3:24 GMT+09:00 Thomas S. Dye <t...@tsdye.com>:
>
> Berry, Charles writes:
>
>>> On Nov 8, 2017, at 6:07 AM, Rasmus <ras...@gmx.us> wrote:
>>>
>>> I think the template expansion a la "<s" is brilliant.  I used to have
>>> YASnippet installed for many years, and I never figured out how to use it
>>> properly.  To me, it is a bit too complex a replacement.
>>
>>
>> Me too.  "<s" just works. And it is brutally easy to extend.
>>
>> I suspect that there will be cries of pain and anger from others who have 
>> not tuned in to this thread if it is removed.
>>
>> Chuck
>
> Agreed.  It would be great if backward compatibility could be
> maintained.  I use (org-try-structure-completion) all the time.
>
> All the best,
> Tom
>
> --
> Thomas S. Dye
> http://www.tsdye.com
>



Re: [O] [PATCH] Add a custom list in org-mac-link.el

2017-06-15 Thread Takaaki Ishikawa
Dear Nicolas,

Thank you for your kind feedback. Please find my comments below.

> +(defcustom org-mac-link-descriptors
> > +  `(("F" "inder" org-mac-finder-insert-selected
> ,org-mac-grab-Finder-app-p)
> > +("m" "ail" org-mac-message-insert-selected
> ,org-mac-grab-Mail-app-p)
> > +("d" "EVONthink Pro Office" org-mac-devonthink-item-insert-selected
> > + ,org-mac-grab-devonthink-app-p)
> > +("o" "utlook" org-mac-outlook-message-insert-selected
> ,org-mac-grab-Outlook-app-p)
> > +("a" "ddressbook" org-mac-addressbook-insert-selected
> ,org-mac-grab-Addressbook-app-p)
> > +("s" "afari" org-mac-safari-insert-frontmost-url
> ,org-mac-grab-Safari-app-p)
> > +("f" "irefox" org-mac-firefox-insert-frontmost-url
> ,org-mac-grab-Firefox-app-p)
> > +("v" "imperator" org-mac-vimperator-insert-frontmost-url
> ,org-mac-grab-Firefox+Vimperator-p)
> > +("c" "hrome" org-mac-chrome-insert-frontmost-url
> ,org-mac-grab-Chrome-app-p)
> > +("e" "evernote" org-mac-evernote-note-insert-selected
> ,org-mac-grab-Evernote-app-p)
> > +("t" "ogether" org-mac-together-insert-selected
> ,org-mac-grab-Together-app-p)
> > +("S" "kim" org-mac-skim-insert-page ,org-mac-grab-Skim-app-p)
> > +("A" "crobat" org-mac-acrobat-insert-page
> ,org-mac-grab-Acrobat-app-p))
> > +  "Descriptors to select an application."
>
> Could you expand the docstring a bit? What is a descriptor, what type of
> data structure is it?
>

Updated docstring is

  "Alist of descriptors. Each descriptor consists of four elements to build
the link grabber menu in the minibuffer. A single character shall be used
for the first element to select an application, and the pair with the second
element represents the name of the application. The third element is a
function to insert information grabbed from selected application. And the
last
element is a flag to indicate whether the descriptor appears in the link
grabber menu."

Do we need more detail?

> +  :tag "A list of descriptors"
> > +  :group 'org-mac-link'
> > +  :type 'symbol)
>
> The :type value is wrong. You need a composite type here.
>

What do you feel about the following composite type.

:type '(alist :value-type (string string function boolean)


Is it useful to let the °descriptors' binding? We could simply replace
> `descriptors' with `org-mac-link-descriptors' in the `let' body. WDYT?


Yes, agree with you. I'll replace two `descriptors' in the function with
`org-mac-link-descriptors' when I produce an updated patch after receiving
your comments.

Best,
Takaaki


Re: [O] [PATCH] Add a custom list in org-mac-link.el

2017-06-15 Thread Takaaki Ishikawa
Dear Nicolas and all,

I tried to generate a patch for this proposal. Please find an attached file.
If you have any comments or suggestions on the file, feel free to ask me.

Best,
Takaaki


Takaaki ISHIKAWA <tak...@ieee.org>
  GITI, Waseda University
:) http://about.me/takaxp

2017-06-15 1:37 GMT+09:00 Nicolas Goaziou <m...@nicolasgoaziou.fr>:

> Hello,
>
> Takaaki Ishikawa <tak...@ieee.org> writes:
>
> > The attached patch includes a change for adding a custom variable to
> easily
> > extend link grabbing capabilities for masOS user. When someone wants to
> add
> > an additional menu to call an external application, it will be possible
> by
> > adding a setting to the proposed variable as follows:
> >
> > #+BEGIN_SRC emacs-lisp
> > (add-to-list 'org-mac-link-descriptors
> >`("P" "apers" org-mac-papers-insert-frontmost-paper-link
> > ,org-mac-grab-Papers-app-p) t)
> > #+END_SRC
>
> Thank you.
>
> Could you provide a patch, using format-patch, with an appropriate
> commit message?
>
> Regards,
>
> --
> Nicolas Goaziou
>


0001-org-mac-link-Add-a-custom-list-for-link-descriptors.patch
Description: Binary data


[O] [PATCH] Add a custom list in org-mac-link.el

2017-06-11 Thread Takaaki Ishikawa
Dear folks,

The attached patch includes a change for adding a custom variable to easily
extend link grabbing capabilities for masOS user. When someone wants to add
an additional menu to call an external application, it will be possible by
adding a setting to the proposed variable as follows:

#+BEGIN_SRC emacs-lisp
(add-to-list 'org-mac-link-descriptors
   `("P" "apers" org-mac-papers-insert-frontmost-paper-link
,org-mac-grab-Papers-app-p) t)
#+END_SRC

This example intends to handle Papers.app, not freeware[*1], in macOS. If
`org-mac-papers-insert-frontmost-paper-link' and `mac-grab-Papers-app-p'
are implemented by user correctly, an appropriate link will be inserted
into an org buffer. I don't want put such codes to `org-mac-link.el'
directly to avoid unnecessary increase of file size. This scenario can be
applied to other applications.

The inserted link can be opened by `C-c C-o' if the corresponding link type
is configured by `org-link-set-parameters' like the following.

#+BEGIN_SRC emacs-lisp
(org-link-set-parameters
   "papers3"
   :follow (lambda (path)
 (let ((cmd (concat "open papers3:" path)))
   (shell-command-to-string cmd)
   (message "%s" cmd
#+END_SRC

===
* contrib/lisp/org-mac-link.el: Add a custom list for link descriptors

`org-mac-link-descriptors' is added to extend link grabbing capabilities.

Modified from a patch proposal by Takaaki Ishikawa.
===

Kind regards,
Takaaki

[*1] http://papersapp.com/mac/

--
Takaaki ISHIKAWA <tak...@ieee.org>
diff --git a/contrib/lisp/org-mac-link.el b/contrib/lisp/org-mac-link.el
index 8ba485d..fa424e0 100644
--- a/contrib/lisp/org-mac-link.el
+++ b/contrib/lisp/org-mac-link.el
@@ -217,6 +217,26 @@
   :group 'org-mac-link
   :type 'string)
 
+(defcustom org-mac-link-descriptors
+  `(("F" "inder" org-mac-finder-insert-selected ,org-mac-grab-Finder-app-p)
+("m" "ail" org-mac-message-insert-selected ,org-mac-grab-Mail-app-p)
+("d" "EVONthink Pro Office" org-mac-devonthink-item-insert-selected
+ ,org-mac-grab-devonthink-app-p)
+("o" "utlook" org-mac-outlook-message-insert-selected 
,org-mac-grab-Outlook-app-p)
+("a" "ddressbook" org-mac-addressbook-insert-selected 
,org-mac-grab-Addressbook-app-p)
+("s" "afari" org-mac-safari-insert-frontmost-url 
,org-mac-grab-Safari-app-p)
+("f" "irefox" org-mac-firefox-insert-frontmost-url 
,org-mac-grab-Firefox-app-p)
+("v" "imperator" org-mac-vimperator-insert-frontmost-url 
,org-mac-grab-Firefox+Vimperator-p)
+("c" "hrome" org-mac-chrome-insert-frontmost-url 
,org-mac-grab-Chrome-app-p)
+("e" "evernote" org-mac-evernote-note-insert-selected 
,org-mac-grab-Evernote-app-p)
+("t" "ogether" org-mac-together-insert-selected 
,org-mac-grab-Together-app-p)
+("S" "kim" org-mac-skim-insert-page ,org-mac-grab-Skim-app-p)
+("A" "crobat" org-mac-acrobat-insert-page ,org-mac-grab-Acrobat-app-p))
+  "Descriptors to select an application."
+  :tag "A list of descriptors"
+  :group 'org-mac-link'
+  :type 'symbol)
+
 
 ;; In mac.c, removed in Emacs 23.
 (declare-function do-applescript "org-mac-message" (script))
@@ -238,21 +258,7 @@
   "Prompt for an application to grab a link from.
 When done, go grab the link, and insert it at point."
   (interactive)
-  (let* ((descriptors
- `(("F" "inder" org-mac-finder-insert-selected 
,org-mac-grab-Finder-app-p)
-   ("m" "ail" org-mac-message-insert-selected ,org-mac-grab-Mail-app-p)
-   ("d" "EVONthink Pro Office" org-mac-devonthink-item-insert-selected
-,org-mac-grab-devonthink-app-p)
-   ("o" "utlook" org-mac-outlook-message-insert-selected 
,org-mac-grab-Outlook-app-p)
-   ("a" "ddressbook" org-mac-addressbook-insert-selected 
,org-mac-grab-Addressbook-app-p)
-   ("s" "afari" org-mac-safari-insert-frontmost-url 
,org-mac-grab-Safari-app-p)
-   ("f" "irefox" org-mac-firefox-insert-frontmost-url 
,org-mac-grab-Firefox-app-p)
-   ("v" "imperator" org-mac-vimperator-insert-frontmost-url 
,org-mac-grab-Firefox+Vimperator-p)
-   ("c" "hrome" org-mac-chrome-insert-frontmost-url 
,org-mac-grab-Chrome-app-p)
-("e" "evernote" org-mac-evernote-note-insert-selected 
,org-mac-grab-Evernote-app-p)
-   ("t" "ogether" org-mac-together-insert-selected 
,org-mac-grab-Together-app-p)
-   ("S" "kim" org-mac-skim-insert-page ,org-mac-grab-Skim-app-p)
-   ("A" "crobat" org-mac-acrobat-insert-page 
,org-mac-grab-Acrobat-app-p)))
+  (let* ((descriptors org-mac-link-descriptors)
  (menu-string (make-string 0 ?x))
  input)
 


Re: [O] [orgweb patch] Add mailinglist archive alternatives

2016-10-05 Thread Takaaki Ishikawa
Dear Marco,

I agree with your nice idea. Since I have a permission to commit orgweb/ja, so 
I applied your changes to ja branch. I hope Bastien or some other main 
committers will merge it soon.

Best,
Takaaki

> On Oct 5, 2016, at 6:50 PM, Marco Wahl <marcowahls...@gmail.com> wrote:
> 
> Hi!
> 
>>> I propose to put the lists.gnu.org archive and The Mail Archive on the
>>> orgmode site, like in the patch below.  WDYT?
>> 
>> It sounds good.
> 
> Yeah, thanks.
> 
> Note that I can _not_ do the change by myself, since I'm not part of the
> respective group.
> 
> So committers to the orgweb, please consider to apply this patch!
> 
> 
> Thanks,
> --
> Marco
> 
> 

--
Takaaki ISHIKAWA <tak...@ieee.org>



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] Something happened in git server

2016-09-04 Thread Takaaki Ishikawa
Dear Robert,

Really appreciate it! Now it works.

BTW, I never know the repository can be accessed via HTTP protocol. I think we 
should disseminate it because some colleagues cannot use GIT protocol due to 
firewall. Any comments?

Best,
Takaaki


> Sep 5, 2016 04:44、Colin Baxter <m43...@yandex.com> のメール:
> 
> On Sun, Sep 04 2016, Robert Klein wrote:
> 
>> Hi,
>> 
>> http access seemed to be Ok, but there was something fishy about git.
>> I restarted all services, so everything should be Ok, now.
>> 
>> Best regards
>> Robert
>> 
>> 
>> On Mon, 5 Sep 2016 00:51:22 +0900
>> Ishikawa Takaaki <takaxp...@gmail.com> wrote:
>> 
>>> Many thanks to your reports. Unfortunately, it’s not working even
>>> now. I don’t know who is in charge of doing something to the server
>>> but I think we should contact ASAP.
>>> 
>>> Best,
>>> Takaaki
>>> 
>>> 
>>>> Sep 3, 2016 23:12、Charles Millar <mill...@verizon.net> のメール:
>>>> 
>>>> On 09/03/2016 09:36 AM, Colin Baxter wrote:
>>>>> On Sat, Sep 03 2016, Takaaki Ishikawa wrote:
>>>>> 
>>>>>> Hi all,
>>>>>> 
>>>>>> I've received an error message like `fatal: read error: Connection
>>>>>> reset by peer` from the git server of orgmode when I ran fetch and
>>>>>> also pull command. Does anybody have the same problem now?
>>>>>> 
>>>>>> Best,
>>>>>> Takaaki
>>>>> Yes, the org-mode git server appears to be not working.
>>>>> 
>>>> Yesterday morning around 8:00 EDT I tried it and it was not working
>>>> then.
>>> 
>>> 
> 
> git server is working for me now. I've just pulled the latest org-mode
> and it made ok.
> 
> Thanks.
> 
> Colin.



signature.asc
Description: Message signed with OpenPGP using GPGMail


[O] Something happened in git server

2016-09-02 Thread Takaaki Ishikawa
Hi all,

I've received an error message like `fatal: read error: Connection reset by 
peer` from the git server of orgmode when I ran fetch and also pull command. 
Does anybody have the same problem now?

Best,
Takaaki


signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] Japanese popularity of orgmode

2015-01-27 Thread Takaaki Ishikawa
Dear Tory,

Good point. I don’t know “taking off” is the correct word, but as you 
mentioned, it’s still growing. I can see several reasons why you think Japanese 
content has been increasing in the Web. First, some students use Emacs in their 
university because their teacher also uses Emacs. Then, the students use Emacs 
to write papers for graduation. I know a super student. He wrote his thesis 
using Emacs with org-mode! After graduation, they will be programmers, 
engineers, and researchers with high-level technical skills enough to 
distribute their knowledge through their blog and twitter. Second, We have 
several workshops related to Emacs and org-mode. At least, two workshops are 
held a few times a year at Kyoto and Tokyo. The participants of the workshops 
write blog entries and release some emacs-lisp actively. An Emacs advent 
calendar is a good example. Finally, we have many Japanese translated 
materials, manual, tutorial, org-web, and twitter bot, to know org-mode quickly 
and easily. And of course, the primary reason is that org-mode is very useful 
tool to do anything with Emacs :-)

Best regards,
Takaaki Ishikawa


 Jan 27, 2015 11:16 PM、Tory S. Anderson torys.ander...@gmail.com のメール:
 
 There seems to be (and has been for a while) a growing Japanese presence 
 online with orgmode materials, documentation, addons, etc. Most recenlty I 
 found this blog: http://paper.li/highfrontier/1300501273 . I had also noticed 
 many of the page titles on the orgmode website/wiki had Japanese content. 
 This has me curious. Does anyone know the story of what's causing it to take 
 off in Japan, or whether taking off is even the right word? Is it just a 
 few people or a department at a university that are using it?  
 




Re: [O] Maintainer change on May 1st

2014-04-19 Thread Takaaki ISHIKAWA
+1

Apr 19, 2014 6:33 PM、Bastien b...@gnu.org のメール:

 Hi Carsten,
 
 now that I'm down the pile of email I was late on, let me say I'm
 glad to be officially back -- it was a great relief to be able to
 not be in charge for a year, it helped me to step back and do a lot
 of other things.
 
 So thanks for the switch one year earlier, and for this one!
 
 Let's keep Org awesome all together.
 
 -- 
 Bastien, who sounds a bit like a cheerleader now
 




Re: [O] org-tree-slide annoyance

2013-07-21 Thread Takaaki ISHIKAWA
Hi Carsten and Nick,

I'd like to contribute my code[*1][*2] to org-mode, but I don't know
the procedure or rules to put it into the contrib dir.

Could you give me some information?

[*1] https://github.com/takaxp/org-tree-slide
[*2] http://orgmode.org/worg/org-tutorials/non-beamer-presentations.html

Best regards,
Takaaki

On Jul 15, 2013, at 10:43 PM, Nick Dokos ndo...@gmail.com wrote:

 henry atts s...@online.de writes:
 
 Carsten Dominik carsten.domi...@gmail.com writes:
 
 On 15.7.2013, at 10:33, henry atts s...@online.de wrote:
 
 I use org-tree-slide-mode by default with 
 
 (add-hook 'org-mode-hook 'org-tree-slide-mode)
 
 This works kind of acceptable minus some minor annoyances. But one thing
 makes it nearly unusuable. tree-slide rigidly expects at least one
 header. So if I open an org file without heading, or if I create a new
 one, I get an error message:
 
 File mode specification error: (error before first heading)
 
 If I include a setup file with `#+SETUPFILE:', which of course has no
 headings in it,  org-tree-slide stops working at all.
 
 
 Hi Henry,
 
 you could wrap turning on of the mode into a function
 that checks if there is a node, and if not, just add one.
 
 - Carsten
 
 Okay, but on the one hand this doesn't solve the problem with
 `SETUPFILE'. On the other hand what if I want an org file without any
 heading on purpose? Or otherwise asked is a file a `real' org file only
 if it has headings in it?
 
 
 No, I don't think so, but there are bugs (there was a bug in the latex
 exporter once that required a heading at the beginning). I presume
 Carsten's suggestion was as a workaround to a bug (although I might
 have misinterpreted his comment).
 
 You might say if you want some features of orgmode _and_ an org file
 without heading you can always use, say, text-mode and load orgstruct as
 a minor mode. Which does not solve the problem as well because with the
 org-tree-mode hook for orgmode it shows some strange behaviour equally.
 
 I like org-tree-mode but I think it does not play well with orgmode in
 some cases. And as far as I see it even is not in contrib.
 
 
 Yes, I went looking for it there and did not find it :-) So maybe you
 can ping the author about the bug - s/he might even fix it, particularly
 now that the package is being used by at least one other person! Or
 contribute the fix yourself - if you like the package, then others might
 too, so it might even end up in contrib at some point.
 
 -- 
 Nick
 
 

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
:) http://about.me/takaxp











Re: [O] org-tree-slide annoyance

2013-07-15 Thread Takaaki ISHIKAWA
Hi Henry,

Thank you for using org-tree-slide and reporting the issue.
Please use the following patch to avoid the error.

PATCH: 
  Replace the original code with

(defun ots-display-tree-with-narrow ()
  Show a tree with narrowing and also set a header at the head of slide.
  (goto-char (point-at-bol))
  (when (ots-last-heading-position)
(hide-subtree)  ; support CONTENT (subtrees are shown)
(org-show-entry)
(show-children)
(org-cycle-hide-drawers 'all)
(org-narrow-to-subtree))
  (setq display-tree-slide-string
(if (equal org-tree-slide-modeline-display 'outside)
(ots-count-slide (point))
  ))
  (when org-tree-slide-slide-in-effect
(ots-slide-in org-tree-slide-slide-in-brank-lines))
  (when org-tree-slide-header
(ots-show-slide-header)))


This patch is a tentative code for checking behavior in your environments,
but I think you will be able to open org files without heading.
I'll update it again within a few days.


Best,
Takaaki

On Jul 15, 2013, at 5:33 PM, henry atts s...@online.de wrote:

 I use org-tree-slide-mode by default with 
 
  (add-hook 'org-mode-hook 'org-tree-slide-mode)
 
 This works kind of acceptable minus some minor annoyances. But one thing
 makes it nearly unusuable. tree-slide rigidly expects at least one
 header. So if I open an org file without heading, or if I create a new
 one, I get an error message:
 
 File mode specification error: (error before first heading)
 
 If I include a setup file with `#+SETUPFILE:', which of course has no
 headings in it,  org-tree-slide stops working at all.
 
 henry
 
 -- 
 web: http://literaturlatenight.de
 jabberID: att...@jabber.at
 
 

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
:) http://about.me/takaxp











Re: [O] Extending ODT export

2013-05-07 Thread Takaaki ISHIKAWA
Dear Julian,

When I use soffice with exec-path setting,
the ODT export is failed like you.
So currently, I use the following setting:

#+BEGIN_SRC emacs-lisp
 (setq org-export-odt-preferred-output-format pdf)
 (setq org-export-odt-convert-processes
   '((LibreOffice
  /Applications/LibreOffice.app/Contents/MacOS/soffice --headless 
--convert-to %f%x --outdir %d %i)
 (unoconv unoconv -f %f -o %d %i)))
#+END_SRC

It works fine for me.

Best regards,
Takaaki Ishikawa


On May 7, 2013, at 10:51 PM, Julian M. Burgos jul...@hafro.is wrote:

 Hi Christian,
 The value
 for org-odt-convert-processes is ((LibreOffice soffice --headless 
 --convert-to %f%x --outdir %d %i)
 (unoconv unoconv -f %f -o %d %i))
 
 soffice is in my path, so I can run it from any directory.  
 
 Carsten, I have permission in /home.  That is where I had my trial org
 file. I have the same problem if I put my org file in other directory.
 
 Julian
 
 
 
 Carsten Dominik writes:
 
 On 7 mei 2013, at 14:29, Christian Moe m...@christianmoe.com wrote:
 
 
 Hi,
 
 Possible checks: What value do you have for org-odt-convert-processes?
 Does the command it provide launch LibreOffice services on your system?
 
 On my Mac, the default soffice command is not recognized out of the
 box; providing the full path to soffice
 (/Applications/LibreOffice.app/Contents/MacOS/soffice) helps. Also, it
 only seems to work when LibreOffice isn't already running, though I may
 be wrong about that (I just tried this for the first time).
 
 
 Another check:  Do you have write permissions in /home ?
 
 Why is it trying to write the file to that location?
 
 - Carsten
 
 Yours,
 Christian
 
 Julian M. Burgos writes:
 
 By the way, it also fails with the pdf and doc options...
 
 Julian M. Burgos writes:
 
 Hello everyone,
 I want to export via ODT directly into a docx format.  Following the
 instructions in the manual, I added 
 (setq org-odt-preferred-output-format docx)
 to my .emacs file.  But if I try to do an export I get the following
 error message:
 
 Export to /home/trial.docx failed
 
 I am using org-mode 8.0.2, LibreOffice 3.5.7.2, and Fedora 17.
 
 Any ideas?
 
 Julian
 
 
 
 
 -- 
 Julian Mariano Burgos, PhD
 Hafrannsóknastofnunin/Marine Research Institute
 Skúlagata 4, 121 Reykjavík, Iceland
 Sími/Telephone : +354-5752037
 Bréfsími/Telefax:  +354-5752001
 Netfang/Email: jul...@hafro.is
 

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
:) http://about.me/takaxp











Re: [O] Extending ODT export

2013-05-07 Thread Takaaki ISHIKAWA
Dear Julian,

Sorry, the code is an old setting for the previous org.
Please try org-odt-preferred-output-format.

#+BEGIN_SRC emacs-lisp
(setq org-odt-preferred-output-format pdf)
 (setq org-odt-convert-processes
   '((LibreOffice
  /Applications/LibreOffice.app/Contents/MacOS/soffice --headless 
--convert-to %f%x --outdir %d %i)
 (unoconv unoconv -f %f -o %d %i)))
#+END_SRC

Best,
Takaaki

On May 8, 2013, at 12:06 AM, Takaaki ISHIKAWA tak...@ieee.org wrote:

 Dear Julian,
 
 When I use soffice with exec-path setting,
 the ODT export is failed like you.
 So currently, I use the following setting:
 
 #+BEGIN_SRC emacs-lisp
 (setq org-export-odt-preferred-output-format pdf)
 (setq org-export-odt-convert-processes
   '((LibreOffice
  /Applications/LibreOffice.app/Contents/MacOS/soffice --headless 
 --convert-to %f%x --outdir %d %i)
 (unoconv unoconv -f %f -o %d %i)))
 #+END_SRC
 
 It works fine for me.
 
 Best regards,
 Takaaki Ishikawa
 
 
 On May 7, 2013, at 10:51 PM, Julian M. Burgos jul...@hafro.is wrote:
 
 Hi Christian,
 The value
 for org-odt-convert-processes is ((LibreOffice soffice --headless 
 --convert-to %f%x --outdir %d %i)
 (unoconv unoconv -f %f -o %d %i))
 
 soffice is in my path, so I can run it from any directory.  
 
 Carsten, I have permission in /home.  That is where I had my trial org
 file. I have the same problem if I put my org file in other directory.
 
 Julian
 
 
 
 Carsten Dominik writes:
 
 On 7 mei 2013, at 14:29, Christian Moe m...@christianmoe.com wrote:
 
 
 Hi,
 
 Possible checks: What value do you have for org-odt-convert-processes?
 Does the command it provide launch LibreOffice services on your system?
 
 On my Mac, the default soffice command is not recognized out of the
 box; providing the full path to soffice
 (/Applications/LibreOffice.app/Contents/MacOS/soffice) helps. Also, it
 only seems to work when LibreOffice isn't already running, though I may
 be wrong about that (I just tried this for the first time).
 
 
 Another check:  Do you have write permissions in /home ?
 
 Why is it trying to write the file to that location?
 
 - Carsten
 
 Yours,
 Christian
 
 Julian M. Burgos writes:
 
 By the way, it also fails with the pdf and doc options...
 
 Julian M. Burgos writes:
 
 Hello everyone,
 I want to export via ODT directly into a docx format.  Following the
 instructions in the manual, I added 
 (setq org-odt-preferred-output-format docx)
 to my .emacs file.  But if I try to do an export I get the following
 error message:
 
 Export to /home/trial.docx failed
 
 I am using org-mode 8.0.2, LibreOffice 3.5.7.2, and Fedora 17.
 
 Any ideas?
 
 Julian
 
 
 
 
 -- 
 Julian Mariano Burgos, PhD
 Hafrannsóknastofnunin/Marine Research Institute
 Skúlagata 4, 121 Reykjavík, Iceland
 Sími/Telephone : +354-5752037
 Bréfsími/Telefax:  +354-5752001
 Netfang/Email: jul...@hafro.is
 
 
 --
 Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
:) http://about.me/takaxp
 
 
 
 
 
 
 
 

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
:) http://about.me/takaxp











Re: [O] Offer for taking over maintainership

2013-02-13 Thread Takaaki ISHIKAWA
Dear all,

I cannot see any reason to change the maintainer.
My vote is -1.

Best regards,
Takaaki Ishikawa



--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
( ' -')b http://about.me/takaxp


On 2013年2月14日Thursday at 3:08, Jambunathan K wrote:

  
 I offer to take over maintainership of Org.
  
 Offer closes in 7 days. Only pre-condition will be that Org-8.0 and
 subsequent releases happen under my supervision.
  
 Principals and riff-raffs can PM me with your thoughts. I defend your
 right to choose the maintainer or express yourself freely.
  
 Note: Anger is futile, particularly over the internet.
 --  






Re: [O] org-tree-slide: some small changes

2013-02-02 Thread Takaaki ISHIKAWA
Dear Eric,

Thank you for your kind suggestions.

1. Title without []s.

  Yes! That's right. I'll change it.

2. Custom header.

  Yes! Face control is the next feature that I currently plan.
  I'm trying to resize font so that I can use org-tree-slide in a
  high resolution display like HD(1080p). We can already use C-x C-- or
  C-x C-= by face-remap.el, but this is not sufficient for Japanese users.

3. Skip trees with comments (org-tree-slide-skip-comments).

  Good idea! I'll implement this feature soon.

4. Custom faces for headings.

  Oh… This is not my expected behavior. 
  When you exit the org-tree-slide mode, the default configurations would
  be restored by org-tree-slide-heading-level-2-init or -3-init.
  However, as you know, those changes will apply to all org-mode buffers
  at the same time! Is my understanding correct?
  
5. The default keybindings to moving slides.

  I agree, but I cannot change this because my english keyboard does not
  have the Page Up and Page Down key :-(
  I usually change the keybindings to f9 and f10 by the following setting.

#+begin_src emacs-lisp
  (define-key org-tree-slide-mode-map (kbd f9)
'org-tree-slide-move-previous-tree)
  (define-key org-tree-slide-mode-map (kbd f10)
'org-tree-slide-move-next-tree)
  (define-key org-tree-slide-mode-map (kbd left) 'backward-char)
  (define-key org-tree-slide-mode-map (kbd right) 'forward-char)
#+end_src

Best,
Takaaki

On 2013/02/03, at 12:04, Eric S Fraga e.fr...@ucl.ac.uk wrote:

 Takaaki,
 
 a couple of further suggestions:
 
 - you change the faces org-level-2 and org-level-3.  This makes
  sense.  However, you use custom-set-faces which overwrites the user's
  own customisations permanently!  I think this is bad practice (I
  couldn't figure out why my faces had changed in other
  documents...).  Can you not simply change the face for that buffer
  ephemerally for the slide show?  I don't know enough emacs lisp to
  suggest how this would be done, mind you...
 
 - it would be better, in my opinion, to use prior and next instead
  of left and right for moving from slide to slide.  I think this is
  more intuitive but, in any case, my main reason for wanting this is
  that I am using tree-slide-mode for an interactive session and I am
  editing the slides as the meeting progresses.  I naturally wish to use
  the arrow keys to move the cursor when editing whereas I am unlikely
  to use the paging keys.
 
 Thanks,
 eric
 
 -- 
 : Eric S Fraga, GnuPG: 0xC89193D8FFFCF67D
 : in Emacs 24.3.50.1 and Org release_7.9.3d-898-g005917
 

--
Takaaki ISHIKAWA tak...@ieee.org
GITI, Waseda University
( ' -')b http://about.me/takaxp







Re: [O] org-tree-slide as default, sort of

2013-01-28 Thread Takaaki ISHIKAWA
Dear Henry,


How about the following setting?

(add-hook 'org-mode-hook 'org-tree-slide-mode)

If you have already tried the setting with the latest version of org-tree-slide,
and also encountered issues, please let me know the details.
I'll try to reproduce and fix it.

Best,
Takaaki

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
( ' -')b http://about.me/takaxp


On 2013年1月29日Tuesday at 1:18, henry atting wrote:

 I tried to make org-tree-slide work on every startup of an org file.
 Though I did not figure it for the best idea I set an orgmode hook. Now
 knowing some of the unwanted side effects this involves I know it actually
 is a bad idea.
 Is or will it be possible to set this on a per file basis?
  
 henry
  
 --  
 http://literaturlatenight.de






Re: [O] org-tree-slide: some small changes

2013-01-28 Thread Takaaki ISHIKAWA
Dear Eric,
  If you don't mind, I would like to add your name into the source code
  as a contributor.
 
 Sure, that would be fine.

Thank you! I'll add your name when I release the next version. 
 
  I Hope for the success of your talk ;-)
 
 Thanks again! I'm facilitating a workshop discussion and need to
 update slides as I go along, hence my desire to use something more
 interactive than my usual org-beamer-pdf route for talks. Your
 org-tree-slide mode seems to be ideal for this! And I would hate to
 have to struggle with powerpoint or its equivalent...

 Yes, that's the point. In my case, I did not wanted to create a PPT/Keynote
for short presentations such as meeting report, brain storming, and programming 
lecture.
I believe that Org + org-tree-slide is very useful for collaboration works and 
saving time.
Feel free to request additional features.

Best,
Takaaki

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
( ' -')b http://about.me/takaxp






Re: [O] org-tree-slide as default, sort of

2013-01-28 Thread Takaaki ISHIKAWA
Hi Henry,

I reproduced the first and the 3rd case you reported.
I think the following setting is better than using org-mode-hook.

(add-hook 'find-file-hook
  '(lambda () (when (eq major-mode 'org-mode)

(org-tree-slide-mode

When you call org-agenda, it will visit many org-files listed in
org-agenda-files. This is why multiple displaying of greeting message is 
occurred.
But actually, the message should be a custom variable.
I'll change it, thanks!

In my environment, I cannot reproduce the 2nd case.
Could you test again with the above setting?

Finally, when org-tree-slide is active, org-publish will export
the narrowed tree only. If you want to export whole trees,
please turn off org-tree-slide temporarily.

Best,
Takaaki


On 2013年1月29日Tuesday at 3:37, henry atting wrote:

  
 Hi Takaaki,
  
  [...]
  How about the following setting?
   
  (add-hook 'org-mode-hook 'org-tree-slide-mode)
   
  If you have already tried the setting with the latest version of 
  org-tree-slide,
  and also encountered issues, please let me know the details.
  I'll try to reproduce and fix it. [...]
  
  
  
 Yes, this was exactly my setting.
  
 At first it breaks org-publish. If I export a file the resulting html
 file will only contain the first top level headline and the second, 3rd
 ... level headlines. All other top level headlines are ignored.
 Secondly it breaks gnus/message mode when started with a hook to load
 orgstruct mode like this:
 (add-hook 'message-mode-hook 'turn-on-orgstruct)
 When I want to write a new mail only an empty buffer opens with an error
 message something like `before first heading'.
 Thirdly I think org-tree-slide should ignore org-agenda or vice versa.
 When I open org-agenda frequently the org-tree-slide greeting message
 appears in the echo area. Maybe it slows it down...
  
 henry
  
 --  
 http://literaturlatenight.de

--
Takaaki ISHIKAWA tak...@ieee.org
  GITI, Waseda University
( ' -')b http://about.me/takaxp






Re: [O] org-tree-slide: some small changes

2013-01-27 Thread Takaaki ISHIKAWA
Dear Eric,

Thank you for your feedback!
And I'm so glad to hear you like org-tree-slide.el.

I've just updated my code in Github.
The code includes the two hooks. On the other hand,
I deleted =org-mode-slide-mode-hook= because it did not work well.
I had to check the typo more carefully, sorry for that.

If you don't mind, I would like to add your name into the source code
as a contributor.

I Hope for the success of your talk ;-)

Best
Takaaki


On 2013/01/27, at 15:08, Eric S Fraga e.fr...@ucl.ac.uk wrote:

 Dear Takaaki,
 
 I have been playing with your org tree slide mode.  I really like it.
 
 It didn't quite do what I wanted so I have played around with it.  I've
 made a couple of simple changes which you may wish to consider
 incorporating.  Specifically, I have added two hooks, one run just
 before playing the slide show and one run when the slide show is
 stopped.  This allows me to, for instance, turn off flyspell mode,
 increase the text scale etc. for the actual slide show but revert these
 back after I am finished showing the slides.
 
 I realise that the play hook may duplicate the mode-hook you already had
 defined but I couldn't get the latter to work.  It turns out that there
 was a typographical error in =org-tree-slide-mode= in that it tried to
 run the wrong hook (=org-mode-slide-mode-hook= instead of
 =org-tree-slide-mode-hook=) but I only figured that out once I had added
 my own hooks.  I have fixed that error as well but decided to leave the
 hooks in place for the moment (I have to work on an actual talk now...).
 
 Please see attached the slightly modified version of your code and an
 example slide show which shows a couple of example hooks.  Please feel
 free to incorporate any of the changes you wish, if any.
 
 Thanks for an excellent little tool that is proving to be very useful to
 me!
 
 eric


--
Takaaki ISHIKAWA tak...@ieee.org
GITI, Waseda University
( ' -')b http://about.me/takaxp







Re: [O] backslashchar in texinfo

2013-01-06 Thread Takaaki ISHIKAWA
Hi Bastien,

 Could you change the line 3091 from ``@item'' to ``@item @@'' by hand?
 
 I think it should be @item, to mean no special char in this table
 line.  Or am I missing something?

Oh, I was so wrong. Please keep it as ``@item''.
Thanks.

 I don't know why my patch was not generated correctly.
 
 The patch was okay, I didn't apply it -- but it was not attached in
 a way that lets the patchwork catch it.

That's Ok! I understood.

Best,
Takaaki

--
Takaaki ISHIKAWA tak...@ieee.org




[O] backslashchar in texinfo

2013-01-05 Thread Takaaki ISHIKAWA
Dear all,

I found two build errors in the latest org manual(HEAD of git).

1. Using ``@backslashcar{}'' command in texinfo(L5114).
2. Missing ``@''(L3091).

The texinfo command was introduced at the version 4.14,
see http://permalink.gmane.org/gmane.comp.gnu.lilypond.devel/51827.

I think the command should not be used because many users
currently use the previous version 4.13.

Any comments?

Best,
Takaaki


 patch 

diff --git a/doc/org.texi b/doc/org.texi
index 83f5939..5464830 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -3088,7 +3088,7 @@ lines will be left alone by this command.
 Selects this line for global recalculation with @kbd{C-u C-c *}, but
 not for automatic recalculation.  Use this when automatic
 recalculation slows down editing too much.
-@item
+@item @@
 Unmarked lines are exempt from recalculation with @kbd{C-u C-c *}.
 All lines that should be recalculated should be marked with @samp{#}
 or @samp{*}.
@@ -5111,7 +5111,7 @@ FILE @r{The filename the entry is located in.}
 To create sparse trees and special lists with selection based on properties,
 the same commands are used as for tag searches (@pxref{Tag searches}).
 @table @kbd
-@orgcmdkkc{C-c / m,C-c \,org-match-sparse-tree}
+@orgcmdkkc{C-c / m,C-c \\,org-match-sparse-tree}
 Create a sparse tree with all matching entries.  With a
 @kbd{C-u} prefix argument, ignore headlines that are not a TODO line.
 @orgcmd{C-c a m,org-tags-view}

 patch 

--
Takaaki ISHIKAWA tak...@ieee.org




Re: [O] backslashchar in texinfo

2013-01-05 Thread Takaaki ISHIKAWA
Hi Bastien,

Could you change the line 3091 from ``@item'' to ``@item @@'' by hand?
I don't know why my patch was not generated correctly.

Best,
Takaaki

On 2013/01/06, at 14:19, Bastien b...@altern.org wrote:

 Hi Takaaki,
 
 Takaaki ISHIKAWA tak...@ieee.org writes:
 
 I found two build errors in the latest org manual(HEAD of git).
 
 1. Using ``@backslashcar{}'' command in texinfo(L5114).
 2. Missing ``@''(L3091).
 
 Thanks for reporting this!
 
 The texinfo command was introduced at the version 4.14,
 see http://permalink.gmane.org/gmane.comp.gnu.lilypond.devel/51827.
 
 I think the command should not be used because many users
 currently use the previous version 4.13.
 
 Any comments?
 
 I backported a diff from the Emacs trunk erroneously.
 It is fixed now.
 
 Thanks!
 
 -- 
 Bastien



--
Takaaki ISHIKAWA tak...@ieee.org




Re: [O] orgguide translated to spanish

2012-12-28 Thread Takaaki ISHIKAWA(石川 孝明)
Hi Bastien,

I think it is a good idea to keep .po files for many languages.
A translation project of the org-mode manual for Japanese is still working,
which is based on a .po file.
If we want, we can use a translation system like Pootle.

Pootle: http://docs.translatehouse.org/projects/pootle/en/latest/

Best,
Takaaki


2012/12/28 Bastien b...@altern.org

 Hi David,

 davi...@es.gnu.org (David Arroyo Menéndez) writes:

  I've translated orgguide to spanish. You can download the sources doing
  git pull to worg.

 Thanks for this work!  This is great.

 It would be nice to have some explanations on how to rebuild the
 manual from the .po file.  Also, orgguide/orgguide.texi does not
 tell what version it is, it's important to keep track of changes.

  My idea would be open a new phase of revision. I accept contributions in
  this sense.

 With no explanations on how to contribute, I'm afraid you will have
 approximatively 0 contributors :)  Better to put those explanations
 on Worg directly, perhaps orgguide/index.org ?

 I think a good move would be to create a new git repo on orgmode.org
 with the orgguide.texi regularily sync'ed with Org's master orgguide,
 and containing all .po(t) for all languages.  From there we could then
 publish the translated manuals.

 What do you think?

 Best,

 --
  Bastien


--
Takaaki ISHIKAWA tak...@ieee.org


Re: [O] [Contest] Redesign orgmode.org by the end of august

2012-09-10 Thread Takaaki ISHIKAWA
Hi Bastien,

I copied index.org into ./ja directory with Japanese translation (not completed 
yet).
The translation will be finished until this week end.

I made a branch ja in the orgweb repository for translation work.
If this is not good for you and all, please let me know.

By the way, do you have any solution to check the translated result in a 
browser (through HTTP)?
HTML export from org files is a solution, but I'm not sure the layout and 
visual quality is correct.
And also internal links between pages should be checked before pushing them 
into orgweb repository.


Best,
Takaaki Ishikawa


Re: [O] How to stop Org mode from assuming non-Latin characters after [[link]] as part of the link?

2012-08-19 Thread Takaaki ISHIKAWA
Dear Betty,

I have the same problem. To avoid it, I just simply 
comment out the following line in org.el.

; (if (memq 'plain lk) '(org-activate-plain-links))

I think this approach is not the best answer for all,
but this will help you.

Best regards,
Takaaki Ishikawa

On 2012/08/17, at 1:01, Betty xlu.2...@gmail.com wrote:

 If I don't put a space after a URL, Org always assumes that all
 characters after the link are part of the link. For example, if I
 write
 [[http://example.com]]asdf
 Org will think the URL is http://example.com]]asdf; while it should
 be http://example.com;.
 
 In English there is usually a space after each word (including links)
 anyway, so that might not be a big issue. But what about non-Latin
 languages?
 
 For instance, in Chinese, we don't use spaces to delimit words, and I
 really don't want to deteriorate the Chinese language by adding extra
 spaces just to make the links work properly. The result is, If I put a
 URL in and don't add an extra space after it, Org will think all the
 (Chinese) characters I enter after the URL is part of the link, until
 the end of paragraph where I press RET.
 
 Well, I know that ] is a valid URL character, which makes things a
 bit tricky. But it is very rare that a URL should contain both ]]
 and non-Latin characters immediately following the ]]. It is a safer
 bet to assume the URL is just the part before ]]. On the rare
 occasions when the URL does contain ]] followed by non-Latin
 characters, I'm willing to take the risk of breaking it.
 
 In sum, I want Org to take only stuff inside the [[]] brackets as
 the URL, nothing after. Is there a place where I can configure this?
 
 Thank you for reading this and for any help you might provide.
 
 (English is not my native tongue. I hope I have make myself clear.)
 






Re: [O] Japanese strings for Org-mode export

2012-03-04 Thread Takaaki ISHIKAWA
Dear Saito-san,

Thanks for making an alternative patch.
I'll follow up why I cannot apply the original patch.

Best regards,
Takaaki Ishikawa

On 2012/03/04, at 16:29, Hideki Saito wrote:

 The attached is alternative of the patch using utf-8 encoding.
 
 Hideki Saito hide...@gmail.com
 
 
 
 On Sat, Mar 3, 2012 at 10:26 PM, Hideki Saito hide...@gmail.com wrote:
 Hello Ishikiawa-san
 It is OSX at work, and it's still on Snow Leopard -- I haven't updated
 the console version of it, so I will have to check to see which
 version was it. It is now sound like to me that the way I've done on
 the patch is platform dependent at best -- which is strange as this
 notation was used in other languages in same entry, but not as
 extensive as in case for Japanese...
 
 Hideki Saito hide...@gmail.com
 
 
 
 
 2012/3/3 Takaaki ISHIKAWA tak...@ieee.org:
 Dear Saito-san,
 
 Thank you for comment.
 You mean OSX+emacs23 users cannot compile using the patch, right?
 (Or something wrong with me...)
 And I can compile it in SuSE Linux :-)
 
 Best regards,
 Takaaki Ishikawa
 
 On 2012/03/04, at 14:37, Hideki Saito wrote:
 
 Ishikawa-san,
 I've had that problem when I tried to do make' on Mac OS X, which I
 realized it was compiling in obsolete version of emacs. (like emacs
 22) I believe it was happening when (require 'org-exp.el)
 
 In fact, I did see this would work if UTF-8ed in your example even in
 the above environment, but I thought it was inappropriate as coding
 wasn't encoded in UTF-8. If UTF-8 strings are acceptable in org-mode
 source tree, I guess doing it so will make it most compatible.
 
 I verified the patch worked under Emacs 24 and in fact, I am right now
 using the code on my Mac and on Windows.
 
 Hideki Saito hide...@gmail.com
 
 2012/3/3 Takaaki ISHIKAWA tak...@ieee.org:
 Dear Saito-san,
 
 I've tried to compile your patch with the latest org-mode.
 I got an error message:
 Error: Invalid character: 33879, #o102127, #x8457
 
 I can apply the following line directly under UTF-8 env.:
 (ja 著者 日付 目次 脚注)
 
 Emacs 23.4 (nextstep)
 Org-version 7.8.03
 
 
 Could you give me your environment around Emacs?
 
 Best regards,
 Takaaki Ishikawa
 
 
 On 2012/03/03, at 16:06, Hideki Saito wrote:
 
 I think Gmail did bad to the patch snippet. Obviously, I haven't done
 much of patch contributions :-)
 
 I've attached one, or you can refer to:
 https://gist.github.com/1964802
 
 Thank you.
 
 Hideki Saito hide...@gmail.com
 
 
 On Fri, Mar 2, 2012 at 5:55 PM, Hideki Saito hide...@gmail.com wrote:
 diff --git a/lisp/org-exp.el b/lisp/org-exp.el
 index 174619a..43c54b5 100644
 --- a/lisp/org-exp.el
 +++ b/lisp/org-exp.el
 @@ -194,6 +194,7 @@ This option can also be set with the +OPTIONS
 line, e.g. \-:nil\.
 (hu Szerzotilde; Daacute;tum Tartalomjegyzeacute;k
 Laacute;bjegyzet)
 (is Houml;fundur Dagsetning Efnisyfirlit
 Aftanmaacute;lsgreinar)
 (it Autore Data  Indice Note a piegrave; di pagina)
 +(ja \x8457\x8005 \x65e5\x4ed8 \x76ee\x6b21 \x811a\x6ce8)
 (nl Auteur Datum Inhoudsopgave Voetnoten)
 (no Forfatter  Dato  Innhold Fotnoter)
 (nb Forfatter  Dato  Innhold Fotnoter)  ;; nb = Norsk 
 (bokm.l)
 org-japanese-export.patch
 
 
 orgmode-japanese-export-utf8.patch










Re: [O] Japanese strings for Org-mode export

2012-03-03 Thread Takaaki ISHIKAWA
Dear Saito-san,

I've tried to compile your patch with the latest org-mode.
I got an error message:
Error: Invalid character: 33879, #o102127, #x8457

I can apply the following line directly under UTF-8 env.:
(ja 著者 日付 目次 脚注)

Emacs 23.4 (nextstep)
Org-version 7.8.03


Could you give me your environment around Emacs?

Best regards,
Takaaki Ishikawa


On 2012/03/03, at 16:06, Hideki Saito wrote:

 I think Gmail did bad to the patch snippet. Obviously, I haven't done
 much of patch contributions :-)
 
 I've attached one, or you can refer to:
 https://gist.github.com/1964802
 
 Thank you.
 
 Hideki Saito hide...@gmail.com
 
 
 On Fri, Mar 2, 2012 at 5:55 PM, Hideki Saito hide...@gmail.com wrote:
 diff --git a/lisp/org-exp.el b/lisp/org-exp.el
 index 174619a..43c54b5 100644
 --- a/lisp/org-exp.el
 +++ b/lisp/org-exp.el
 @@ -194,6 +194,7 @@ This option can also be set with the +OPTIONS
 line, e.g. \-:nil\.
 (hu Szerzotilde; Daacute;tum Tartalomjegyzeacute;k
 Laacute;bjegyzet)
 (is Houml;fundur Dagsetning Efnisyfirlit
 Aftanmaacute;lsgreinar)
 (it Autore Data  Indice Note a piegrave; di pagina)
 +(ja \x8457\x8005 \x65e5\x4ed8 \x76ee\x6b21 \x811a\x6ce8)
 (nl Auteur Datum Inhoudsopgave Voetnoten)
 (no Forfatter  Dato  Innhold Fotnoter)
 (nb Forfatter  Dato  Innhold Fotnoter)  ;; nb = Norsk (bokm.l)
 org-japanese-export.patch


Takaaki ISHIKAWA,
GITI, Waseda University
tak...@ieee.org
https://takaxp.com/tak...@ieee.org.pub (gpg public key)
http://takaxp.com/
tel: 090-1837-8497
--- ( ' -')b
石川孝明
早稲田大学国際情報通信研究センター








Re: [O] Japanese strings for Org-mode export

2012-03-03 Thread Takaaki ISHIKAWA
Dear Saito-san,

Thank you for comment.
You mean OSX+emacs23 users cannot compile using the patch, right?
(Or something wrong with me...)
And I can compile it in SuSE Linux :-)

Best regards,
Takaaki Ishikawa

On 2012/03/04, at 14:37, Hideki Saito wrote:

 Ishikawa-san,
 I've had that problem when I tried to do make' on Mac OS X, which I
 realized it was compiling in obsolete version of emacs. (like emacs
 22) I believe it was happening when (require 'org-exp.el)
 
 In fact, I did see this would work if UTF-8ed in your example even in
 the above environment, but I thought it was inappropriate as coding
 wasn't encoded in UTF-8. If UTF-8 strings are acceptable in org-mode
 source tree, I guess doing it so will make it most compatible.
 
 I verified the patch worked under Emacs 24 and in fact, I am right now
 using the code on my Mac and on Windows.
 
 Hideki Saito hide...@gmail.com
 
 2012/3/3 Takaaki ISHIKAWA tak...@ieee.org:
 Dear Saito-san,
 
 I've tried to compile your patch with the latest org-mode.
 I got an error message:
 Error: Invalid character: 33879, #o102127, #x8457
 
 I can apply the following line directly under UTF-8 env.:
 (ja 著者 日付 目次 脚注)
 
 Emacs 23.4 (nextstep)
 Org-version 7.8.03
 
 
 Could you give me your environment around Emacs?
 
 Best regards,
 Takaaki Ishikawa
 
 
 On 2012/03/03, at 16:06, Hideki Saito wrote:
 
 I think Gmail did bad to the patch snippet. Obviously, I haven't done
 much of patch contributions :-)
 
 I've attached one, or you can refer to:
 https://gist.github.com/1964802
 
 Thank you.
 
 Hideki Saito hide...@gmail.com
 
 
 On Fri, Mar 2, 2012 at 5:55 PM, Hideki Saito hide...@gmail.com wrote:
 diff --git a/lisp/org-exp.el b/lisp/org-exp.el
 index 174619a..43c54b5 100644
 --- a/lisp/org-exp.el
 +++ b/lisp/org-exp.el
 @@ -194,6 +194,7 @@ This option can also be set with the +OPTIONS
 line, e.g. \-:nil\.
 (hu Szerzotilde; Daacute;tum Tartalomjegyzeacute;k
 Laacute;bjegyzet)
 (is Houml;fundur Dagsetning Efnisyfirlit
 Aftanmaacute;lsgreinar)
 (it Autore Data  Indice Note a piegrave; di pagina)
 +(ja \x8457\x8005 \x65e5\x4ed8 \x76ee\x6b21 \x811a\x6ce8)
 (nl Auteur Datum Inhoudsopgave Voetnoten)
 (no Forfatter  Dato  Innhold Fotnoter)
 (nb Forfatter  Dato  Innhold Fotnoter)  ;; nb = Norsk 
 (bokm.l)
 org-japanese-export.patch
 




[O] typo in org.texi

2012-01-24 Thread Takaaki ISHIKAWA
Hi. Bastien,

Japanese translation team of the manual found a small typo in org.texi.
Please check the attached patch.

Best regards,
Takaaki Ishikawa



@@ -15246,7 +15246,7 @@ not accept any arguments, and return the full link with 
prefix.
 @vindex org-ctrl-c-ctrl-c-hook
 
 Org has several commands that act differently depending on context.  The most
-important example it the @kbd{C-c C-c} (@pxref{The very busy C-c C-c key}).
+important example is the @kbd{C-c C-c} (@pxref{The very busy C-c C-c key}).
 Also the @kbd{M-cursor} and @kbd{M-S-cursor} keys have this property.
 
 Add-ons can tap into this functionality by providing a function that detects


Re: [O] Inconsisent typesetting of commands in the manual

2011-12-27 Thread Takaaki ISHIKAWA
Hi Bastien,

I have confirmed your fix in PDF :)
Thanks!

Best regards,
Takaaki

On 2011/12/26, at 22:26, Bastien wrote:

 Dear Takaaki,
 
 Takaaki ISHIKAWA tak...@ieee.org writes:
 
 I think this is caused by @table @asis at L.1645 in doc/org.texi.
 When I change it to @table @kbd, it looks good.
 
 But my suggestion is that the @table section is separated as follows:
 
 Thanks for the suggestion, it's a good one.  
 
 The patch is not 100% correct though, as @table @kbd is enough to 
 tell items how they should appear, so we don't need the @key{...}
 in @item and @itemx anymore.  
 
 See the diff here: http://goo.gl/AYzPJ
 
 It's fixed now.  
 
 Best,
 
 -- 
 Bastien



Re: [O] Inconsisent typesetting of commands in the manual

2011-12-25 Thread Takaaki ISHIKAWA
Dear Elias and all,

 In section 2.7 on p. 14--15 in the full manual for Org-mode the key commands 
 is typeset in serif while all the other key commands in the manual is typeset 
 in mono space fonts.

I think this is caused by @table @asis at L.1645 in doc/org.texi.
When I change it to @table @kbd, it looks good.

But my suggestion is that the @table section is separated as follows:

*** 1664,1670 
  variable @code{org-M-RET-may-split-line}.}.  If this command is executed
  @emph{before item's body}, the new item is created @emph{before} the current
  one.
! diff@kindex M-S-@key{RET}
  @item M-S-@key{RET}
  Insert a new item with a checkbox (@pxref{Checkboxes}).
  @kindex S-@key{down}
--- 1664,1673 
  variable @code{org-M-RET-may-split-line}.}.  If this command is executed
  @emph{before item's body}, the new item is created @emph{before} the current
  one.
! @end table
! 
! @table @kbd
! @kindex M-S-@key{RET}
  @item M-S-@key{RET}
  Insert a new item with a checkbox (@pxref{Checkboxes}).
  @kindex S-@key{down}


Best regards,
Takaaki Ishikawa


Re: [O] Please test the new Makefile

2011-12-25 Thread Takaaki ISHIKAWA
Hi. Achim,

Thank you for your kind explanations.
I learned a lot from you :)

 I opted for this behaviour to align more closely to GNU convention and to 
 avoid any surprising behaviour, but it is easy to make the default target 
 all instead of help.

I think many Org users are familiar to the previous
installation procedure by make not make all,
and some users wrote it in their blog, Org manual [*1] too.
Don't you think this change has a wide impact for them?
But it's just a concern to me :)

[*1] http://orgmode.org/manual/Installation.html


Re: [O] Please test the new Makefile

2011-12-22 Thread Takaaki ISHIKAWA
Dear Achim,

Hi. Thank you for your comment and great work on refactoring Makefile.

 Just make doesn't work anymore (it displays a usage section to conform to 
 GNU convention), you'll need make all.  This now implies a make clean, so 
 you'll normally don't need this as an extra step anymore.

I see why you use make all.

Could you tell me the current trend of Makefile?
I think make and make all have the same effect usually.
In the new Makefile of org-mode, however, make is used 
for displaying options of make command.
Is this familiar to all?

For example, GNU Emacs doesn't require make all, just make.

Best regards,
Takaaki Ishikawa


Re: [O] Please test the new Makefile

2011-12-21 Thread Takaaki ISHIKAWA
Hi Bastien,

I have tried to install the new package in my clean VM of Suse 12.1.
I'd like to report my install experience.

 http://orgmode.org/Org-7.8.03-TestMakefile.zip

1. When I just type make, I find a fatal error message:
  Not a git repository (or any parent up to mount parent )
  Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).

2. make all works well with the same message above.
  make all will be the default command instead of make?

3. Packages are installed into /usr/share/emacs/site-lisp.
  This is a known change in ML.

4. M-x org-version shows:
  ( @ /usr/share/emacs/site-lisp/org/org-install.el)

Best regards,
Takaaki Ishikawa


GNU Emacs 23.3.1 (x86_64-suse-linux-gnu, GTK+ Version 2.24.7) of 2011-10-30 on 
build17




Re: [O] descriptions about org-cycle is separated

2011-12-20 Thread Takaaki ISHIKAWA
Hi Bastien,

 There are many more occurrences of this notion

Yes! you are right. But I didn't mean it.
A comment from Bernt describes more clearly.

 The TAB key is listed twice on that page which I think feels a little
 weird.


It is separated into P.13 and P.14. So, I make a patch, please find it below.
I just jointed the separated descriptions.

Best regards,
Takaaki


--- a/doc/org.texi
+++ b/doc/org.texi
@@ -1651,6 +1651,10 @@ the cursor is on a plain list item.  For more details, 
see the variable
 headlines.  The level of an item is then given by the
 indentation of the bullet/number.  Items are always subordinate to real
 headlines, however; the hierarchies remain completely separated.
+In a new item with no text yet, the first @key{TAB} demotes the item to
+become a child of the previous one.  Subsequent @key{TAB}s move the item to
+meaningful levels in the list and eventually get it back to its initial
+position.
 @orgcmd{M-@key{RET},org-insert-heading}
 @vindex org-M-RET-may-split-line
 @vindex org-list-automatic-rules
@@ -1664,11 +1668,6 @@ one.
 @kindex M-S-@key{RET}
 @item M-S-@key{RET}
 Insert a new item with a checkbox (@pxref{Checkboxes}).
-@orgcmd{@key{TAB},org-cycle}
-In a new item with no text yet, the first @key{TAB} demotes the item to
-become a child of the previous one.  Subsequent @key{TAB}s move the item to
-meaningful levels in the list and eventually get it back to its initial
-position.
 @kindex S-@key{down}
 @item S-@key{up}
 @itemx S-@key{down}





Re: [O] reveal only current subtree

2011-12-18 Thread Takaaki ISHIKAWA
Dear sergio,

 It doesn't work for me: Symbol's value as variable is void: org-mode-map


Probably you set the define-key before (require 'org-install).
Anyway, I have verified your new setting, it works well :)

Best regards,
Takaaki Ishikawa

signature.asc
Description: Message signed with OpenPGP using GPGMail


[O] descriptions about org-cycle is separated

2011-12-18 Thread Takaaki ISHIKAWA
Dear all,

Descriptions about org-cycle is separated in the
Org manual, section 2.7.

http://orgmode.org/manual/Plain-lists.html#Plain-lists

Is there any reason for this?

Best regards,
Takaaki Ishikawa



Re: [O] reveal only current subtree

2011-12-17 Thread Takaaki ISHIKAWA
Dear sergio,

Hi. 
How do you jump to subtrees?
Could you give me the detail, I can probably help you.

Best regards,
Takaaki Ishikawa

 after jump to /b/e/g I see
 
 * a
 * b ...
 ** e ...
 *** g ...
 * c



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] reveal only current subtree

2011-12-17 Thread Takaaki ISHIKAWA
Dear sergio,

 Could you give me the detail, I can probably help you.
 What details you need?


No problem! I just wanted to know the jump method.

And… Carsten give us a great solution.

Best regards,
Takaaki

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] reveal only current subtree

2011-12-17 Thread Takaaki ISHIKAWA
Dear sergio,

Hi.
How about the following combination?

 
 * a...
 * b...
 ** d...
 *** e...
  g...
 * h- cursor is here
 - some
 - list
 * c...


C-c C-j d/e/g/h
(org-show-siblings)
(org-show-entry)


Best regards,
Takaaki Ishikawa

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] reveal only current subtree

2011-12-17 Thread Takaaki ISHIKAWA
Dear sergio,

Please use eval-expression function [*1] for testing.
Type M-: (org-show-siblings) and M-: (org-show-entry).

 org-show-siblings is also not that I want. It show all siblings of all
 expanded levels. And want to change this view:

The combination is maybe your answer. Please find a short clip.
http://dl.dropbox.com/u/2440/worg/Voila_Capture14.mov
I tested with an example org buffer[*2], Emacs24, and Org7.8.02.

Best regards,
Takaaki Ishikawa

[*1] http://www.gnu.org/s/libtool/manual/emacs/Lisp-Eval.html

[*2] an example org buffer
* a
** aa
* b
** d
*** ee
*** e
 f
 g
qwe
qwe
* hhh
* hh
* h
- a
- b
* 
* h
 gg
 gg
** ddd
* c



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] reveal only current subtree

2011-12-17 Thread Takaaki ISHIKAWA
Dear sergio,

I'm glad I could help.

 Oh, sorry. Thank you, Takaaki, (org-show-siblings) is exactly what
 I want! But could you say, how you've discovered it?


I have recently reading org.el to write my elisp, org-tree-slide[*1].
Your problem is very hot topic to me :-)

[*1] http://orgmode.org/worg/org-tutorials/non-beamer-presentations.html

Best regards,
Takaaki Ishikawa

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] How to control face for plain links

2011-12-17 Thread Takaaki ISHIKAWA
Dear Bernt,

Thanks for your comment.
I'll try to make faces.

Best regards,
Takaaki Ishikawa

 I would like to use http://orgmode.org; without underline,
 and [[http://orgmode.org/][Org]]; with underline.
 
 Do you have some good ideas?
 
 I'm afraid not.  I think you need different faces if you want to
 distinguish between [[ ]] links and plain http:// links and that's not
 currently supported AFAIK.
 
 -Bernt


signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] reveal only current subtree

2011-12-17 Thread Takaaki ISHIKAWA
Dear sergio,

I think you are right, and have confirmed your setting.

The following has the same effect, just for your information.

(define-key org-mode-map (kbd C-c C-r)
  '(lambda () (interactive) (org-show-siblings)))


Best regards,
Takaaki Ishikawa

 (add-hook 'org-mode-hook (lambda ()
   (local-set-key \C-c\C-r (lambda ()
   (interactive)
   (org-show-siblings)



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] How to control face for plain links

2011-12-16 Thread Takaaki ISHIKAWA
Dear Bernt,

Hi. Thank you for your comment!
Could you give me a function name assigned to `C-u C-x ='?
For me, it is `what-cursor-position'.

Best regards,
Takaaki

On 2011/12/16, at 21:38, Bernt Hansen wrote:

 Takaaki ISHIKAWA tak...@ieee.org writes:
 
 Does anyone know the best way to disable face for plain links?
 
 Can't you just customize the face to remove the underline?  C-u C-x = on
 a character of the link should show the face used and allow you to
 customize it to remove the underline.



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] A presentation tool for org-mode

2011-12-16 Thread Takaaki ISHIKAWA
Dear Elic,

 This looks like a fun presentation option.

Thank you very much!!

 headline in my Org-mode file.  I was using this file [1].  It is
 possible that this is not the file structure expected by org-tree-slide?

I took a short video to share a presentation by org-tree-slide
with your org file. Please find the following.

http://dl.dropbox.com/u/2440/org-tree-slide/Voila_Capture12.mov
(about 45[s]. 0-30[s]:simple profile, 30-end:presentation profile)

You can find a slide number in mode line like [1/6]. 
If you set `org-tree-slide-skip-done' is ON, it will [0/0].
Which means there is no the next slide.

Could you check the status? or tell me your Emacs version, OS, and Org-mode 
version.
I have verified org-tree-slide with Emacs23, Mac/suse, org 6.33 or higher.


 I wonder if you are familiar with epresent [2].  It is very similar to
 org-tree-slide as they are both minimal presentation frameworks build to
 run off of Org-mode documents from within Emacs.

Yes! I found it in this mailing list last year. It's very simple and good 
visual.

The org-tree-slide has not only presentation function but also TODO Pursuit 
like [*1].
If you use narrowing/widen frequently. This elisp is probably good for you too.
Please try M-x `org-tree-slide-narrowing-control-profile'.


 If you find time it would be great to add mention of org-tree-slide on
 the relevant worg page [3], so that future Orgers looking for
 presentation options won't miss this tool.


Thanks! I will do that as you say :-)


[*1] 15.3.1 Narrowing To A Subtree With Bh/Org-Todo
http://doc.norang.ca/org-mode.html

Best regards,
Takaaki Ishikawa



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] How to control face for plain links

2011-12-16 Thread Takaaki ISHIKAWA
Dear Bernt,

I see what you want to say :-)

I tried to set the face of org-link to remove the underline.
But faces for [[http://orgmode.org/][Org]] is also removed.

This is not good :-(

I would like to use http://orgmode.org; without underline,
and [[http://orgmode.org/][Org]]; with underline.

Do you have some good ideas?

Best regards,
Takaaki Ishikawa


On 2011/12/17, at 7:44, Bernt Hansen wrote:

 
 Could you give me a function name assigned to `C-u C-x ='?
 For me, it is `what-cursor-position'.
 
 That's what mine is set to.  The C-u just gives it a prefix argument








signature.asc
Description: Message signed with OpenPGP using GPGMail


[O] How to control face for plain links

2011-12-15 Thread Takaaki ISHIKAWA
Dear all,

Hi.

Does anyone know the best way to disable face for plain links?

In Japanese sentences, I handle a link without a space, e.g.

[ja] 公式ページは、http://orgmode.org/にあります。
[en] http://orgmode.org/ is the official website.

When the `org-activate-plain-links' is active,
the overlay with underline will be applied to the end of line.
An org-descriptive-links style (e.g. [[http://a][link]]) has 
the same issue when `org-activate-plain-links' is active.
This is probably not comfortable for many Japanese users.

I therefore comment out a line in org.el as follows:

org-set-font-lock-defaults, org.el, Line:5773
---
   (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
;  (if (memq 'plain lk) '(org-activate-plain-links))
   (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))

Any alternative solutions?

I think a toggle option like `org-toggle-link-display' is needed.


Best regards,
Takaaki Ishikawa

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] http://libremanuals.net (ikiwiki+org) to translate the Org Guide

2011-12-14 Thread Takaaki ISHIKAWA
Dear David,

Hi.

I have organized a translation project into Japanese.
We work hard to translate the org manual, and near future,
we are going to start 



On 2011/12/14, at 8:29, David Arroyo Menéndez wrote:

 Bastien, thanks for the announce.
 
 For now, I've enabled english, spanish and french in the libremanual ikiwiki, 
 but if someone wants translate the org compact guide 
 (http://www.libremanuals.net/orgguide/index.en.html) to another language, let 
 me know and I'll enable a new language.
 
 Best.
 
 El 13 de diciembre de 2011 20:48, Bastien b...@altern.org escribió:
 Dear all,
 
 another announcement about translation : David Arroyo Menéndez (who
 already translated David O'Toole's tutorial) is launching LibreManuals
 to help with translating/publishing FLOSS book.
 
 Libremanuals uses ikiwiki (http://ikiwiki.info/) a wiki compiler.  It
 builds static HTML pages for a wiki, from source in the ikiwiki/Markdown
 language (or others, such as texinfo or org-mode), and writes it out to
 destination.  Libremanuals is using org-mode files to manage the tasks
 to do in an integrated way with ikiwiki thanks to the org ikiwiki plugin
 http://www.golden-gryphon.com/software/misc/org.pm.html
 
 Please check the website and contribute on it (it's a wiki) or through
 the git repository: having the Org Guide in several languages would be
 great!
 
 Thanks to David for setting this up, and to you all for your attention!
 
 (And I'm done with announcements.)
 
 Best,
 
 --
  Bastien
 
 
 
 -- 
 David Arroyo Menéndez
 http://www.davidam.com


signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] http://libremanuals.net (ikiwiki+org) to translate the Org Guide

2011-12-14 Thread Takaaki ISHIKAWA
Dear all and David,

Sorry I sent an incomplete mail, it's my mistake.
please ignore the previous e-mail.

 David

Near future, I'll contribute a Japanese translation.
Could you setup the libremanual ikiwiki for Japanese?

Best regards,
Takaaki Ishikawa
@takaxp

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] http://libremanuals.net (ikiwiki+org) to translate the Org Guide

2011-12-14 Thread Takaaki ISHIKAWA
Hi David,

Thanks a lot!

I'll send you the key directory soon.

Best regards,
Takaaki

On 2011/12/14, at 20:19, David Arroyo Menéndez wrote:

 Done!
 
 Please send me your public ssh key to make an unix account and can do git 
 clone and git push
 
 Best
 
 El 14 de diciembre de 2011 10:44, Takaaki ISHIKAWA tak...@ieee.org escribió:
 Dear all and David,
 
 Sorry I sent an incomplete mail, it's my mistake.
 please ignore the previous e-mail.
 
  David
 
 Near future, I'll contribute a Japanese translation.
 Could you setup the libremanual ikiwiki for Japanese?
 





signature.asc
Description: Message signed with OpenPGP using GPGMail


[O] Org website for Japanese

2011-12-14 Thread Takaaki ISHIKAWA
Dear all,

I'm pleased to announce that Japanese translated Org website has been opened.

http://orgmode.org/ja/

Thanks Bastien! It's done with your great help.
And I'd like to say thanks to a Japanese translation team that I organized.


Best regards,
Takaaki Ishikawa
@takaxp

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] org-search-goto.el - full text search to go to locations in your org buffers

2011-12-12 Thread Takaaki ISHIKAWA
Dear Tom,

Hi. Thanks for your comment.

I have verified the `org-agenda-files' is available for org-search-goto
once I call org-agenda command.

The solution for `org-directory' is good for active buffers.
But I actually don't want to keep opening archived org files only for searching.
So I will find another solution :-)

Best regards,
Takaaki Ishikawa
@takaxp


On 2011/12/12, at 23:50, Tom wrote:

 Takaaki ISHIKAWA takaxp at ieee.org writes:
 
 
 If this package can handle `org-directory' having org files,
 or `org-agenda-files', it is more handy.
 
 org-agenda-files should be no problem, since this package searches in
 all opened org buffers, and org opens all agenda files when building
 the agenda.
 
 As for org-directory the simplest solution is to have all org files
 opened from there and then this tool will search in those too.
 
 Since the invention of iswitchb, ido and similar tools we don't travel
 the buffer list sequentialy anymore, so you can have all of your org files
 opened in emacs all the time, because it doesn't matter if 5 files are
 open or 20.
 


signature.asc
Description: Message signed with OpenPGP using GPGMail


[O] A presentation tool for org-mode

2011-12-12 Thread Takaaki ISHIKAWA
Dear all,

Hi.

I'm writing a presentation tool for Org-mode named `org-tree-slide'.
This elisp will help you when a live editable presentation is required.
And it is also possible to access TODO items sequentially with narrowing.

Since org-tree-slide treats a tree as a single slide by org-narrow-to-subtree,
it is different from an exporter to HTML and other presentation tools customized
for good visualization. To move between slides, just type left and right.

Please find org-tree-slide and review it.

You can download from the following direct link:
https://raw.github.com/takaxp/org-tree-slide/master/org-tree-slide.el

org-tree-slide is a minor mode for Org-mode.
I recommend that these key bindings are set into your .emacs.

(global-set-key (kbd f8) 'org-tree-slide-mode)
(global-set-key (kbd S-f8) 'org-tree-slide-skip-done-toggle)

Preset profiles are defined in org-tree-slide.
1. `org-tree-slide-simple-profile'; Simple use
2. `org-tree-slide-presentation-profile'  ; Presentation use
3. `org-tree-slide-narrowing-control-profile' ; TODO Pursuit with narrowing
These functions set user variables for each using scenario.
You can find more detail in the file.

I hope this will help you and I'm waiting for your comments.

Best regards,
Takaaki Ishikawa
@takaxp

signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: [O] org-search-goto.el - full text search to go to locations in your org buffers

2011-12-11 Thread Takaaki ISHIKAWA
Dear Tom,

Hi.

Nice package to achieve fast search! Thank you.

If this package can handle `org-directory' having org files,
or `org-agenda-files', it is more handy.
I currently do this task using `anything-grep-by-name', 
but it is not comfortable for me because it does not
open trees including the query text when touching the searching result.

Best regards,
Takaaki Ishikawa
@takaxp


On 2011/12/11, at 17:52, Tom wrote:

 This package is a simple variant of 
 http://www.emacswiki.org/emacs/org-occur-goto.el


signature.asc
Description: Message signed with OpenPGP using GPGMail


[Orgmode] Changed org-icalendar.el

2010-04-28 Thread Takaaki ISHIKAWA
Dear Org-mode developers,

Hi. I'm just a user of the org-mode.
First of all, many thanks to you since
you have provided the best tool for Emacs.

Lately, I added a description attribute to the iCal export function 
in lisp/org-icalendar.el.
The new function allows to display a description of
the exported iCal file.

I checked it's validation on the following environment.

- MacOSX Snow Leopard 10.6.3
- GNU Emacs 22.3.1 (386-apple-darwin9.8.0, Carbon Version 1.6.0)
- OrgMode the latest version (2010-04-28)
- iCal.app

Please review my contribution, and merge this small change
to the origin if you find the need.

GIT PATH: git://github.com/takaxp/org-mode.git
BRANCH NAME: master

Best regards,
Takaaki ISHIKAWA




--- ( ' -')b
Takaaki ISHIKAWA,
GITI, Waseda University
ishik...@takaxp.com
tak...@ieee.org (alias)
http://takaxp.com/









___
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


Re: [Orgmode] Changed org-icalendar.el

2010-04-28 Thread Takaaki ISHIKAWA
Dear Carsten,

Thank you very much.

Best regards,
Takaaki ISHIKAWA

On 2010/04/29, at 0:01, Carsten Dominik wrote:

 Applied, thanks.
 
 - Carsten
 
 On Apr 28, 2010, at 10:37 AM, Takaaki ISHIKAWA wrote:
 
 Dear Org-mode developers,
 
 Hi. I'm just a user of the org-mode.
 First of all, many thanks to you since
 you have provided the best tool for Emacs.
 
 Lately, I added a description attribute to the iCal export function
 in lisp/org-icalendar.el.
 The new function allows to display a description of
 the exported iCal file.
 
 I checked it's validation on the following environment.
 
 - MacOSX Snow Leopard 10.6.3
 - GNU Emacs 22.3.1 (386-apple-darwin9.8.0, Carbon Version 1.6.0)
 - OrgMode the latest version (2010-04-28)
 - iCal.app
 
 Please review my contribution, and merge this small change
 to the origin if you find the need.
 
  GIT PATH: git://github.com/takaxp/org-mode.git
  BRANCH NAME: master
 
 Best regards,
 Takaaki ISHIKAWA
 
 
 
 
 --- ( ' -')b
 Takaaki ISHIKAWA,
 GITI, Waseda University
   ishik...@takaxp.com
   tak...@ieee.org (alias)
   http://takaxp.com/
 
 
 
 
 
 
 
 
 
 ___
 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
 
 - Carsten
 
 
 



--- ( ' -')b
Takaaki ISHIKAWA,
GITI, Waseda University
  ishik...@takaxp.com
  tak...@ieee.org (alias)
  http://takaxp.com



___
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


Re: [Orgmode] Calendars Agenda mode

2010-04-28 Thread Takaaki ISHIKAWA
Dear David,

I have used iCalendar exporter to export an important schedule
on orgmode.
So it is org-mode - iCalendar.

Actually, I use this exporter with Dropbox service.
1. Export a iCal file to Dropbox directory
   (Dropbox will upload the file to the internet automatically)
2. iCal.app on Mac get the iCal file from the internet,
and display the schedule as a special item.

That's very useful for me.

Best regards,
Takaaki ISHIKAWA


On 2010/04/29, at 2:48, David Frascone wrote:

 
  iCalendar exporting? importing?
 Is anyone using this?  I've avoided agenda like stuff, since I have a
 calendar that is very full of meetings, appointments, etc.  (In fact,
 I have several, some at work, some on google calendars).  While I'd
 love to add todo's with dates, using orgmode for my real calendar
 seemed a bit much.  Does anyone else using calendars also use orgmode?
 If so, do you sync, and in what direction.  (i.e. org-mode -
 iCalendar, or move everything from other calendars - org-mode?)
 
 
 ___
 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


___
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