Skip to content

Commit

Permalink
DevM with www folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
josecallaguzman committed Mar 26, 2012
1 parent 089b161 commit e7db5cf
Show file tree
Hide file tree
Showing 80 changed files with 28,097 additions and 0 deletions.
4 changes: 4 additions & 0 deletions DevM/DevM.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
A70C24311520B23100B802C8 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A70C24301520B23100B802C8 /* MainViewController.m */; };
A70C24331520B23100B802C8 /* MainViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A70C24321520B23100B802C8 /* MainViewController.xib */; };
A70C24371520B23100B802C8 /* verify.sh in Resources */ = {isa = PBXBuildFile; fileRef = A70C24361520B23100B802C8 /* verify.sh */; };
A70C24401520B92500B802C8 /* www in Resources */ = {isa = PBXBuildFile; fileRef = A70C243F1520B92500B802C8 /* www */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand Down Expand Up @@ -78,6 +79,7 @@
A70C24321520B23100B802C8 /* MainViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainViewController.xib; path = Classes/MainViewController.xib; sourceTree = "<group>"; };
A70C24351520B23100B802C8 /* README */ = {isa = PBXFileReference; lastKnownFileType = text; name = README; path = Plugins/README; sourceTree = "<group>"; };
A70C24361520B23100B802C8 /* verify.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = verify.sh; sourceTree = "<group>"; };
A70C243F1520B92500B802C8 /* www */ = {isa = PBXFileReference; lastKnownFileType = folder; path = www; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -115,6 +117,7 @@
A70C23D31520B23000B802C8 = {
isa = PBXGroup;
children = (
A70C243F1520B92500B802C8 /* www */,
A70C23FF1520B23000B802C8 /* DevM */,
A70C23E41520B23000B802C8 /* Frameworks */,
A70C23E21520B23000B802C8 /* Products */,
Expand Down Expand Up @@ -330,6 +333,7 @@
A70C242A1520B23100B802C8 /* Cordova.plist in Resources */,
A70C24331520B23100B802C8 /* MainViewController.xib in Resources */,
A70C24371520B23100B802C8 /* verify.sh in Resources */,
A70C24401520B92500B802C8 /* www in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
Binary file added DevM/www/.DS_Store
Binary file not shown.
65 changes: 65 additions & 0 deletions DevM/www/co_cocoa.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@


<!DOCTYPE HTML>
<html >

<head>
<title>PhoneGap</title>
<meta charset="utf-8" />
<!-- <meta name="viewport" content="initial-scale=1.0,width=devicewidth,user-scalable=no"/> -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>



<link rel="stylesheet" href="jquery.mobile-1.0.1.min.css">




<script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>

<script type="text/javascript" charset="utf-8">
function onLoad(){

document.addEventListener("deviceready", onDeviceReady, true);

}
</script>
<script type="text/javascript" charset="utf-8">
$(document).bind("mobileinit", function() {
$.mobile.allowCrossDomainPages = true;
$.support.cors = true;

});
</script>




</head>
<body onload="onLoad()">

<div data-role="page" id="cocoa">
<div data-theme="a" data-role="header" data-position="fixed">
<h3>
CocoaHeads Göteborg
</h3>
<a data-role="button" data-rel="reverse" data-transition="slide" href="#speakers" data-icon="back" data-iconpos="left">
Back
</a>
<a data-role="button" rel="external" data-rel="reverse" data-transition="slide" href="index.html" data-icon="home" data-iconpos="right">
Home
</a>
</div>
<div data-role="content">
<a href="http://www.meetup.com/cocoaheads-goteborg/"><img src="images/cocoahead.png"></a><br />
<br />CocoaHeads is a group devoted to discussion of Apple Computer’s Cocoa <a href="https://developer.apple.com/technologies/mac/cocoa.html">Framework</a> for programming on MacOS X (including the iPhone). During monthly meetings, members present on their projects and offer tutorials on various programming topics.<br />
<br />Read more about CocoaHeads on our <a href="http://www.meetup.com/cocoaheads-goteborg/">website</a><br />

</div>
</div>

</body>
</html>
69 changes: 69 additions & 0 deletions DevM/www/co_gomobile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@


<!DOCTYPE HTML>
<html >

<head>
<title>PhoneGap</title>
<meta charset="utf-8" />
<!-- <meta name="viewport" content="initial-scale=1.0,width=devicewidth,user-scalable=no"/> -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>



<link rel="stylesheet" href="jquery.mobile-1.0.1.min.css">




<script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>

<script type="text/javascript" charset="utf-8">
function onLoad(){

document.addEventListener("deviceready", onDeviceReady, true);

}
</script>
<script type="text/javascript" charset="utf-8">
$(document).bind("mobileinit", function() {
$.mobile.allowCrossDomainPages = true;
$.support.cors = true;

});
</script>




</head>
<body onload="onLoad()">

<div data-role="page" id="gomobile">
<div data-theme="a" data-role="header" data-position="fixed">
<h3>
go mobile
</h3>
<a data-role="button" data-rel="reverse" data-transition="slide" href="#speakers" data-icon="back" data-iconpos="left">
Back
</a>
<a data-role="button" rel="external" data-rel="reverse" data-transition="slide" href="index.html" data-icon="home" data-iconpos="right">
Home
</a>
</div>
<div data-role="content">
<a href="http://www.go-mobile.se/"><img src="images/gomobile.jpg"></a><br />
<br />go mobile is a non profit organisation targeted to grow the mobile industry in the Gothenburg region. The organisation will help start-ups and take small companies to the next level through networking, mentorship, global PR and VC funding from local and international investors.<br />
<br /><h2>Mobile and Mobility</h2><br />
<br />Mobile is the state of being in motion and is a generic term describing the ability to use technology on the move, and often refer to access and create information from connected, portable, networked communication device.<br />
<br />Mobile is the core of the individual and the organisations communication, digital consumption and lifestyle at home and at work. Regardless of information carrier (desktop, laptop, tablet, phone, console or TV we are always online, available and expect the same experience regardless of platform.<br />
<br /><a href="http://www.linkedin.com/groups/go-mobile-3088466?gid=3088466&trk=myg_ugrp_ovr">go mobile on LinkedIn</a><br />
<br />During the spring 2010 a group was created on LinkedIn for professionals active in the mobile industry with a relationship to Gothenburg in some way. No marketing was needed, the logo go:mobile spoke its own words.<br />
<br />Quite soon professionals from all spectrum of the mobile industry joined the group. We are now about to embark on the next level an show that Gothenburg will go mobile.<br />
</div>
</div>

</body>
</html>
65 changes: 65 additions & 0 deletions DevM/www/co_javaforum.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@


<!DOCTYPE HTML>
<html >

<head>
<title>PhoneGap</title>
<meta charset="utf-8" />
<!-- <meta name="viewport" content="initial-scale=1.0,width=devicewidth,user-scalable=no"/> -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>



<link rel="stylesheet" href="jquery.mobile-1.0.1.min.css">




<script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>

<script type="text/javascript" charset="utf-8">
function onLoad(){

document.addEventListener("deviceready", onDeviceReady, true);

}
</script>
<script type="text/javascript" charset="utf-8">
$(document).bind("mobileinit", function() {
$.mobile.allowCrossDomainPages = true;
$.support.cors = true;

});
</script>




</head>
<body onload="onLoad()">

<div data-role="page" id="javaforum">
<div data-theme="a" data-role="header" data-position="fixed">
<h3>
Javaforum.se
</h3>
<a data-role="button" data-rel="reverse" data-transition="slide" href="#speakers" data-icon="back" data-iconpos="left">
Back
</a>
<a data-role="button" rel="external" data-rel="reverse" data-transition="slide" href="index.html" data-icon="home" data-iconpos="right">
Home
</a>
</div>
<div data-role="content">
<a href="http://www.javaforum.se"><img src="images/javaforum.png"></a><br />
<br />Javaforum is a Swedish Java-community supporting Java developers by arranging meetings, seminars and conferences. More information about Javaforum and upcoming meetings can be found at <a href="http://www.javaforum.se">www.jforum.se</a><br />
<br />Javaforum hosts meetings in Stockholm, Göteborg, Malmö and Umeå.<br />

</div>
</div>

</body>
</html>
67 changes: 67 additions & 0 deletions DevM/www/co_nforum.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@


<!DOCTYPE HTML>
<html >

<head>
<title>PhoneGap</title>
<meta charset="utf-8" />
<!-- <meta name="viewport" content="initial-scale=1.0,width=devicewidth,user-scalable=no"/> -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>



<link rel="stylesheet" href="jquery.mobile-1.0.1.min.css">




<script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>

<script type="text/javascript" charset="utf-8">
function onLoad(){

document.addEventListener("deviceready", onDeviceReady, true);

}
</script>
<script type="text/javascript" charset="utf-8">
$(document).bind("mobileinit", function() {
$.mobile.allowCrossDomainPages = true;
$.support.cors = true;

});
</script>




</head>
<body onload="onLoad()">

<div data-role="page" id="nforum">
<div data-theme="a" data-role="header" data-position="fixed">
<h3>
nforum.se
</h3>
<a data-role="button" data-rel="reverse" data-transition="slide" href="#speakers" data-icon="back" data-iconpos="left">
Back
</a>
<a data-role="button" rel="external" data-rel="reverse" data-transition="slide" href="index.html" data-icon="home" data-iconpos="right">
Home
</a>
</div>
<div data-role="content">
<a href="http://www.nforum.se/"><img src="images/nforum.png"></a><br />
<br />nforum är en svensk .net-community i Göteborg med syfte att stödja svenska .net-utvecklare genom regelbundna möten med intressanta seminarier och mingel.<br />
<br />nforum har ett brett samarbete med många andra fristående communities så som Swenug och Javaforum.<br />
<br />Vill du ställa upp som talare eller tipsa om talare eller kanske till och med vill sponsra ett event i framtiden så är du välkommen att kontakta oss med just dina ideer. Allt är välkommet.<br />
<br />Vid frågor tveka inte att kontakta oss via: nforum (a) squeed.com<br />
<br />Mvh nforum <a href="http://www.nforum.se/">www.nforum.se</a><br />
</div>
</div>

</body>
</html>
64 changes: 64 additions & 0 deletions DevM/www/co_squeed.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@


<!DOCTYPE HTML>
<html >

<head>
<title>PhoneGap</title>
<meta charset="utf-8" />
<!-- <meta name="viewport" content="initial-scale=1.0,width=devicewidth,user-scalable=no"/> -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>



<link rel="stylesheet" href="jquery.mobile-1.0.1.min.css">




<script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>

<script type="text/javascript" charset="utf-8">
function onLoad(){

document.addEventListener("deviceready", onDeviceReady, true);

}
</script>
<script type="text/javascript" charset="utf-8">
$(document).bind("mobileinit", function() {
$.mobile.allowCrossDomainPages = true;
$.support.cors = true;

});
</script>




</head>
<body onload="onLoad()">

<div data-role="page" id="squeed">
<div data-theme="a" data-role="header" data-position="fixed">
<h3>
Squeed
</h3>
<a data-role="button" data-rel="reverse" data-transition="slide" href="#speakers" data-icon="back" data-iconpos="left">
Back
</a>
<a data-role="button" rel="external" data-rel="reverse" data-transition="slide" href="index.html" data-icon="home" data-iconpos="right">
Home
</a>
</div>
<div data-role="content">
<a href="http://www.squeed.se/"><img src="images/squeed.png"></a><br />
<br />Squeeders jobbar med arkitekturfrågor, coaching, mentorskap, utbildningar, systemutveckling, metoder mm. Vi är experter på Java, Microsoft .Net och open source. Som Microsoft MVP och Insider har vi bra relation med Microsoft samt vetskap och kunskap om det kommande och senaste från Microsoft .Net.<br />

</div>
</div>

</body>
</html>
Loading

0 comments on commit e7db5cf

Please sign in to comment.