2007-04-02  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* jscallglue/Makefile.am: More dist fixes.
	
	* Resources/JSCall.js: Fix a couple of JS warnings.

2007-04-02  Boyd Timothy <btimothy@gmail.com>

	* Makefile.am: Fix "make distcheck".

In .:
2007-04-02  Michael Hutchinson <m.j.hutchinson@gmail.com>

	* COPYING: Explicitly name the MIT/X11 license.

2007-04-02  Boyd Timothy <btimothy@gmail.com>

	* Makefile.am: Fix "make distcheck".


svn path=/trunk/jscall-sharp/; revision=75301
This commit is contained in:
Michael Hutchinson 2007-04-02 19:35:55 +00:00
Родитель b4c7eb816f
Коммит 601ca43899
7 изменённых файлов: 28 добавлений и 8 удалений

Просмотреть файл

@ -1,3 +1,5 @@
This software is licensed under the terms of the MIT/X11 Licence:
Copyright (c) 2006-2007 the individuals listed on the ChangeLog entries.
Permission is hereby granted, free of charge, to any person obtaining

Просмотреть файл

@ -1,3 +1,11 @@
2007-04-02 Michael Hutchinson <m.j.hutchinson@gmail.com>
* COPYING: Explicitly name the MIT/X11 license.
2007-04-02 Boyd Timothy <btimothy@gmail.com>
* Makefile.am: Fix "make distcheck".
2007-03-13 C.J. Adams-Collier <cjcollier@colliertech.org>
Overview: Installing assemblies into gacutil of $prefix rather
than /usr

Просмотреть файл

@ -1,5 +1,5 @@
SUBDIRS = src
EXTRA_DIST = jscall-sharp.pc.in
EXTRA_DIST = jscall-sharp.pc.in jscall.key
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = jscall-sharp.pc

Просмотреть файл

@ -1,3 +1,13 @@
2007-04-02 Michael Hutchinson <m.j.hutchinson@gmail.com>
* jscallglue/Makefile.am: More dist fixes.
* Resources/JSCall.js: Fix a couple of JS warnings.
2007-04-02 Boyd Timothy <btimothy@gmail.com>
* Makefile.am: Fix "make distcheck".
2006-09-07 Chris Howie <cdhowie@nerdshack.com>
* Resources/JSCall.js: Restore the old document title after

Просмотреть файл

@ -11,9 +11,9 @@ SNK=$(ASSEMBLY_NAME).key
### Source files and refs ###
ASSEMBLY_CSFILES = \
AssemblyInfo.cs \
AspNetEdit.JSCall/CommandManager.cs \
AspNetEdit.JSCall/InvalidJSArgumentException.cs
$(srcdir)/AssemblyInfo.cs \
$(srcdir)/AspNetEdit.JSCall/CommandManager.cs \
$(srcdir)/AspNetEdit.JSCall/InvalidJSArgumentException.cs
ASSEMBLY_REFERENCES = \
$(GTKSHARP_LIBS) \

Просмотреть файл

@ -44,7 +44,7 @@ function JSCallInit()
throw "Error: the document already contains a <jscall> element";
}
el = document.getElementsByTagName("jscall")[0];
var el = document.getElementsByTagName("jscall")[0];
el.addEventListener( "DOMNodeInserted", JSCallHandler, false );
//JSCallRegisterClrHandler("Redo", Redo);
@ -88,7 +88,7 @@ function JSCallHandler(e)
function JSCallPlaceClrCall(fn, returnTo, args) {
str = "JSCall" + delimiter + fn + delimiter + returnTo + delimiter;
var str = "JSCall" + delimiter + fn + delimiter + returnTo + delimiter;
if (args && args.length > 0)
{

Просмотреть файл

@ -7,9 +7,9 @@ libjscallglue_la_CXXFLAGS = -fno-rtti
INCLUDES=$(JSGLUEDEPS_CFLAGS)
libjscallglue_la_SOURCES = \
jscallglue.cpp
$(srcdir)/jscallglue.cpp
lib_LTLIBRARIES=$(GLUELIB)
EXTRA_DIST = $(ASSEMBLY_CSFILES) $(glue_CPPFILES)
EXTRA_DIST = $(libjscallglue_la_SOURCES) README
CLEANFILES = lib*.a lib*.o lib*.lo lib*.la