This file is indexed.

/usr/share/canorus/scripts/newdocument.py is in canorus-data 0.7.1~rc1+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
from CanorusPython import *

def newDefaultDocument(document):
	sheet1 = document.addSheet()
	
	staff1 = sheet1.addStaff() # adds one voice automatically
	staff1.addVoice()          # add another voice
	staff1.voiceList()[0].setStemDirection( CANote.StemUp )
	staff1.voiceList()[1].setStemDirection( CANote.StemDown )
	staff1.voiceList()[0].append( CAClef( CAClef.Treble, staff1, 0 ) )
	staff1.voiceList()[0].append( CATimeSignature( 4, 4, staff1, 0 ) )
	
	staff2 = sheet1.addStaff() # adds one voice automatically
	staff2.addVoice()          # add another voice
	staff2.voiceList()[0].setStemDirection( CANote.StemUp )
	staff2.voiceList()[1].setStemDirection( CANote.StemDown )
	staff2.voiceList()[0].append( CAClef( CAClef.Bass, staff2, 0 ) )
	staff2.voiceList()[0].append( CATimeSignature( 4, 4, staff2, 0 ) )
	
	staff1.synchronizeVoices()
	staff2.synchronizeVoices()