In src:
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:
Родитель
b4c7eb816f
Коммит
601ca43899
2
COPYING
2
COPYING
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче