]> git.lyx.org Git - lyx.git/blob - development/MacOSX/lyxeditor
Cmake tests: Test export xhtml always, independent of default output format
[lyx.git] / development / MacOSX / lyxeditor
1 #!/bin/sh
2 # ron@18james.com, 11 Dec 2003
3 # With modifications by Angus Leeming, tweaked by Bennett Helm 21 Jan 2007
4
5 parse_serverpipe()
6 {
7         test -r "$1" || {
8                 echo "Usage: parse_serverpipe lyxrc" >&2
9                 exit 1
10         }
11
12         # The output of this sed script is output to STDOUT
13         LYXPIPE=`sed -n '/^\\\\serverpipe /{
14 # First consider that the file path may be quoted
15 s/^ *\\\\serverpipe \{1,\}\"\([^"]\{1,\}\)\" *$/\1/
16 tfound
17
18 # Now, unquoted
19 s/^ *\\\\serverpipe \{1,\}\(.*\)/\1/
20 s/ *$//
21
22 :found
23 # Change from single to double shell quoting temporarily...
24 '"
25 s@^~/@${HOME}/@
26 # Revert to single shell quotes
27 "'
28
29 p
30 q
31 }' "$1"`
32         echo "${LYXPIPE}"
33 }
34
35
36 USER_SUPPORT="${HOME}/Library/Application Support"
37 test -d "${USER_SUPPORT}" || {
38         echo "Something horrible is going on. No user support directory ${USER_SUPPORT}" >&2 
39         exit 1
40 }
41
42 # we prefere newer lyx releases here... the last should catch all
43 for LYXDIR in LyX-2.0* LyX-2* LyX-1.6* LyX-1.5* LyX-1.4* LyX*
44 do
45         ABS_USER_LYXDIR="${USER_SUPPORT}/${LYXDIR}"
46         test -d "${ABS_USER_LYXDIR}" || {
47                 continue
48         }
49         PREFERENCES="${ABS_USER_LYXDIR}/preferences"
50         test -r "${PREFERENCES}" || {
51                 echo "Failed to find PREFERENCES: ${PREFERENCES}" >&2
52                 continue
53         }
54         # preferences file exists.
55         # See if it contains a \\serverpipe entry
56         # Whether it does or not, break out of the loop because we've
57         # found the preferences file.
58         LYXPIPE=`parse_serverpipe "${PREFERENCES}"`
59         if [ -n "$LYXPIPE" -a -p "$LYXPIPE".in ]; then
60                 break
61         fi
62 done
63
64 # echo "preferences file sets lyxpipe as ${LYXPIPE}"
65
66 test -z "${LYXPIPE}" && {
67         ABS_SYSTEM_LYXDIR='/Applications/LyX.app/Contents/Resources'
68         test -d "${ABS_SYSTEM_LYXDIR}" || {
69                 echo "Failed to find ABS_SYSTEM_LYXDIR: ${ABS_SYSTEM_LYXDIR}" >&2
70                 exit 1
71         }
72         LYXRC_DIST="${ABS_SYSTEM_LYXDIR}/lyxrc.dist"
73         test -r "${LYXRC_DIST}" || {
74                 echo "Failed to find LYXRC_DIST: ${LYXRC_DIST}" >&2
75                 exit 1
76         }
77
78         # lyxrc.dist exists
79         # See if it contains a \\serverpipe entry
80         LYXPIPE=`parse_serverpipe "${LYXRC_DIST}"`
81 }
82
83 if [ -n "$LYXPIPE" -a -p "$LYXPIPE".in ]; then
84         file=`echo "$1" | sed 's|^/private||'`
85
86         MAC_LYXPIPE_CONTENTS="LYXCMD:macdvix:server-goto-file-row:$file $2"
87         # echo "$MAC_LYXPIPE_CONTENTS"
88         echo "$MAC_LYXPIPE_CONTENTS" > "${LYXPIPE}".in || { echo "Cannot write to lyxpipe." ; exit 2 ; }
89         read < "${LYXPIPE}".out || { echo "Cannot read from lyxpipe." ; exit 2 ; }
90 else
91         echo "Our best guess sets lyxpipe as ${LYXPIPE}"
92         echo "But the lyxpipe could not be found."
93         exit 1
94 fi
95 # The end
96