Check-in [abf21ad565]
Overview
Comment:Updated to remove executable bit from files as some webservers refuse to serve these files
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: abf21ad56588d3346f5e0009f82f3063659b937b
User & Date: rkeene on 2010-08-10 13:26:24
Other Links: manifest | tags
Context
2010-08-30
12:20
Added LICENSE check-in: c0d502344a user: rkeene tags: trunk
2010-08-10
13:26
Updated to remove executable bit from files as some webservers refuse to serve these files check-in: abf21ad565 user: rkeene tags: trunk
2010-03-14
11:22
teaparty 0.9.6.x check-in: 576c36f860 user: rkeene tags: trunk
Changes

Modified server/teapot_index from [4cfb882ebe] to [833e43f77d].

324
325
326
327
328
329
330


331
332
333
334
335
336
337
			set origfile [lindex [glob -directory $pkgdir *] 0]

			file copy -force -- $origfile $extfile
		}

		file delete -- $regfile
		file link -hard $regfile $extfile


	}
}

proc create_entity_file {entity dstdir pkginfo_arrlist} {
	array set pkginfo $pkginfo_arrlist
	array set entinfo $entity








>
>







324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
			set origfile [lindex [glob -directory $pkgdir *] 0]

			file copy -force -- $origfile $extfile
		}

		file delete -- $regfile
		file link -hard $regfile $extfile
		file attributes $regfile -permissions -x
		file attributes $extfile -permissions -x
	}
}

proc create_entity_file {entity dstdir pkginfo_arrlist} {
	array set pkginfo $pkginfo_arrlist
	array set entinfo $entity