File: Toggle_ReadOnly.bsh

package info (click to toggle)
jedit 4.5.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,252 kB
  • sloc: java: 90,581; xml: 88,372; makefile: 55; sh: 25
file content (87 lines) | stat: -rw-r--r-- 2,236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Toggle_ReadOnly.bsh - a BeanShell macro for jEdit that toggles 
 * a local file's read-only flag.
 *
 * Copyright (C) 2002,2003 Ollie Rutherfurd, oliver@rutherfurd.net
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the jEdit program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Id: Toggle_ReadOnly.bsh 4937 2003-12-22 04:14:55Z spestov $
 */



CmdThread(cmd, view)
{
	run()
	{
		process = Runtime.getRuntime().exec(cmd);
		process.waitFor();
		view.getBuffer().checkFileStatus(view);
	}
	return this;
}


void ToggleReadOnly(view)
{

	buffer = view.getBuffer();

	// must be using file vfs
	if(!buffer.getVFS().getName().equals("file"))
	{
		Macros.error(view, "This macro only works on local files.");
		return;
	}

	// is read-only be turned on or off
	readonly = buffer.isReadOnly();

	if (OperatingSystem.isUnix() || OperatingSystem.isMacOS())
	{
		cmd = "chmod " + (readonly ? "+" : "-") + "w " 
			+ buffer.getPath();
	}
	else if(OperatingSystem.isWindows())
	{
		cmd = "ATTRIB.EXE " + (readonly ? "-" : "+") + "R \"" 
			+ buffer.getPath() + "\"";
	}
	else
	{
		Macros.error(view, "This macro only works on Windows, Unix, & MacOS X.");
		return;
	}

	toggle = CmdThread(cmd, view);
	SwingUtilities.invokeLater(toggle);
}

ToggleReadOnly(view);

/*
	Macro index data (in DocBook format)

<listitem>
	<para><filename>Toggle_ReadOnly.bsh</filename></para>
	<abstract><para>
	Toggles a local file's read-only flag. Uses platform-specific commands, so it only works on Windows, Unix and MacOS X.
	</para></abstract>
</listitem>

*/

// :indentSize=4:lineSeparator=\n:noTabs=false:tabSize=4:folding=explicit:collapseFolds=1: