-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First working Upload of DI Conatiner Framework
- Loading branch information
1 parent
8cf9924
commit 4ea7e88
Showing
188 changed files
with
20,184 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="DIContainer.SampleAspx.Default" %> | ||
|
||
<%@ Register Src="~/TemplateProject/TemplateProject.ascx" TagPrefix="uc1" TagName="TemplateProject" %> | ||
|
||
<!DOCTYPE html> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head runat="server"> | ||
<title></title> | ||
</head> | ||
<body> | ||
<form id="form1" runat="server"> | ||
<div> | ||
<uc1:TemplateProject runat="server" id="TemplateProject" /> | ||
<script src="script/config.main.js"></script> | ||
</div> | ||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
using System.Web.UI; | ||
using System.Web.UI.WebControls; | ||
|
||
namespace DIContainer.SampleAspx | ||
{ | ||
public partial class Default : System.Web.UI.Page | ||
{ | ||
protected void Page_Load(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
//first i configure hte calendar | ||
samqode.main.API = { | ||
url: "../../wcalendar_service/wcalendar.ashx" | ||
}; | ||
|
||
samqode.main.DIContainer.loadScripts([ | ||
|
||
"../../TemplateProject/core/js/main.js",// load application | ||
"script/integration.main.js"// then i integrate | ||
]); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
window.samqode.main.DIContainer.ready(function (win, $, DIContainer) { | ||
samqode.main.ready(function (internalApi) { | ||
internalApi.on("myBoxClicked", function (eventArg) { | ||
// console.log( ); | ||
console.log("event fired ..."); | ||
console.log(eventArg); | ||
console.log(internalApi); | ||
console.log($); | ||
DIContainer.Interface().DOM.changeWidthOfMyBox("1102px"); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TemplateProject.ascx.cs" Inherits="RosterWare.Web.TemplateProject.TemplateProject" %> | ||
|
||
<link href="../../TemplateProject/core/css/main.css" rel="stylesheet" /> | ||
<link href="../../TemplateProject/lib/bootstrap/css/bootstrap.workoptics.css" rel="stylesheet" /> | ||
<link href="../../TemplateProject/lib/jquery-ui-1.9.2/themes/base/minified/jquery-ui.min.css" rel="stylesheet" /> | ||
|
||
|
||
<script src="../../TemplateProject/lib/jquery/jquery-1.9.1.js"></script> | ||
<script src="../../TemplateProject/core/js/DIContainer.js"></script> | ||
<script src="../../TemplateProject/core/js/InterfaceFactory.js"></script> | ||
<script> | ||
window.jQuery_1_9_2 = jQuery.noConflict(); | ||
window.pad00 = function (n) { | ||
return ("0" + n).slice(-2); | ||
}; | ||
jQuery_1_9_2.ajaxSetup({ | ||
cache: true | ||
}); | ||
window.samqode = {}; | ||
window.samqode.project = "TemplateProject"; | ||
window.samqode[window.samqode.project] = {}; | ||
window.samqode.main = window.samqode[window.samqode.project]; | ||
window.samqode.version="1." + (((new Date()).getTime() * 10000) + 621355968000000000); | ||
window.samqode.main.DIContainer = new window._DIContainer(window.samqode.version, jQuery_1_9_2); | ||
</script> | ||
|
||
<script src="../../TemplateProject/lib/jquery-ui-1.9.2/external/jquery.cookie.js"></script> | ||
<script src="../../TemplateProject/lib/jquery-ui-1.9.2/ui/minified/jquery-ui.min.js"></script> | ||
|
||
<div class="hello"> hello world </div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
using System.Web.UI; | ||
using System.Web.UI.WebControls; | ||
|
||
namespace DIContainer.TemplateProject | ||
{ | ||
public partial class TemplateProject : System.Web.UI.UserControl | ||
{ | ||
protected void Page_Load(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<configuration> | ||
|
||
<system.web> | ||
<authorization> | ||
<allow users="*" /> | ||
</authorization> | ||
</system.web> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>QUnit basic example</title> | ||
<link href="../css/qunit.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<div id="qunit"></div> | ||
<div id="qunit-fixture"></div> | ||
<script src="../js/qunit.js"></script> | ||
<script src="../js/samqode.wcalendar.js"></script> | ||
<script src="../js/samqode.wcalendar.Test.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.hello { | ||
cursor:pointer; | ||
width:100px; | ||
height:100px; | ||
background-color:#c0c0c0; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
body { | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.