diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..64c5f20 Binary files /dev/null and b/.DS_Store differ diff --git a/resources/.DS_Store b/resources/.DS_Store new file mode 100644 index 0000000..121ac3f Binary files /dev/null and b/resources/.DS_Store differ diff --git a/resources/public/.DS_Store b/resources/public/.DS_Store new file mode 100644 index 0000000..9b03e4c Binary files /dev/null and b/resources/public/.DS_Store differ diff --git a/resources/public/NiCtest.json b/resources/public/NiCtest.json new file mode 100644 index 0000000..2358a1e --- /dev/null +++ b/resources/public/NiCtest.json @@ -0,0 +1,27 @@ +[ +{ + "navn": "Grundpakke", + "pgt": "0", + "sortering": "10", + "varenr": "1101001", + "salgsstart": "2012-03-29", + "sorteringsgruppe": "TV-GA", + "vaegt": "10", + "pg": "GP", + "fo": "TV", + "pl": "1" +} +, +{ + "navn": "Grundpakke", + "pgt": "0", + "sortering": "10", + "varenr": "1101001", + "salgsstart": "2012-03-29", + "sorteringsgruppe": "TV-GA", + "vaegt": "10", + "pg": "GP", + "fo": "TV", + "pl": "1" +} +] \ No newline at end of file diff --git a/resources/public/NiCtest_simple.json b/resources/public/NiCtest_simple.json new file mode 100644 index 0000000..467de04 --- /dev/null +++ b/resources/public/NiCtest_simple.json @@ -0,0 +1,11 @@ +[ +{ + "navn": "Grundpakke", + "varenr": "1101001", +} +, +{ + "navn": "Mellempakke", + "varenr": "1101002", +} +] \ No newline at end of file diff --git a/resources/public/detaljer.html b/resources/public/detaljer.html index 3ffb0b5..2af6985 100644 --- a/resources/public/detaljer.html +++ b/resources/public/detaljer.html @@ -20,24 +20,48 @@ +
-
-
-

-

-

-

-

-
-
-

-

-

-

-

-
+ +
+ +
    +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + + +
+
+
diff --git a/resources/public/graphix/bg_body.png b/resources/public/graphix/bg_body.png new file mode 100644 index 0000000..d8cf81c Binary files /dev/null and b/resources/public/graphix/bg_body.png differ diff --git a/resources/public/index.html b/resources/public/index.html index 87914e4..cbadce2 100644 --- a/resources/public/index.html +++ b/resources/public/index.html @@ -18,6 +18,7 @@ + diff --git a/resources/public/javascripts/jquery-ui-1.8.18.custom.min.js b/resources/public/javascripts/jquery-ui-1.8.18.custom.min.js old mode 100644 new mode 100755 diff --git a/resources/public/javascripts/ppc2.js b/resources/public/javascripts/ppc2.js new file mode 100644 index 0000000..032266d --- /dev/null +++ b/resources/public/javascripts/ppc2.js @@ -0,0 +1,28 @@ + +var prod = { +// init:function() { + + NicTest:function() { + console.log("in function"); +// $.get('../NiCtest_simple.json', function(d){console.log() ;}); +// console.log("in function"); + + $.getJSON('../NiCtest_simple.json', function(data) { + console.log("in callback"); + var items = []; + + $.each(data, function(key, val) { + items.push('' + key + '">' + val + ''); + }); + + $('
    ', { + 'class': 'my-new-list', + html: items.join('') + }).appendTo('body'); + } + + + ); + } + +} \ No newline at end of file diff --git a/resources/public/stylesheets/yousee.css b/resources/public/stylesheets/yousee.css new file mode 100644 index 0000000..5002225 --- /dev/null +++ b/resources/public/stylesheets/yousee.css @@ -0,0 +1 @@ +body {background-image:url("http://yousee.dk/img/bg_body.png");} \ No newline at end of file diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 0000000..b61f680 Binary files /dev/null and b/src/.DS_Store differ diff --git a/test/.DS_Store b/test/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/test/.DS_Store differ diff --git a/test/NiCtest.json b/test/NiCtest.json new file mode 100644 index 0000000..2358a1e --- /dev/null +++ b/test/NiCtest.json @@ -0,0 +1,27 @@ +[ +{ + "navn": "Grundpakke", + "pgt": "0", + "sortering": "10", + "varenr": "1101001", + "salgsstart": "2012-03-29", + "sorteringsgruppe": "TV-GA", + "vaegt": "10", + "pg": "GP", + "fo": "TV", + "pl": "1" +} +, +{ + "navn": "Grundpakke", + "pgt": "0", + "sortering": "10", + "varenr": "1101001", + "salgsstart": "2012-03-29", + "sorteringsgruppe": "TV-GA", + "vaegt": "10", + "pg": "GP", + "fo": "TV", + "pl": "1" +} +] \ No newline at end of file diff --git a/test/NiCtest_simple.json b/test/NiCtest_simple.json new file mode 100644 index 0000000..467de04 --- /dev/null +++ b/test/NiCtest_simple.json @@ -0,0 +1,11 @@ +[ +{ + "navn": "Grundpakke", + "varenr": "1101001", +} +, +{ + "navn": "Mellempakke", + "varenr": "1101002", +} +] \ No newline at end of file