Compiler.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. SC.loadPackage({ 'Compiler': {
  2. comment: 'I compile W3C HTML5 conpliant self-contained documents from this editor\'s current document.',
  3. properties: {
  4. pageAsHTML5: {
  5. comment: 'I compile to HTML5.',
  6. transform: function(theDocument){
  7. var thePage = '';
  8. thePage += '<!DOCTYPE html>\n<html>';
  9. thePage += '\n\t<head>'
  10. +'\n\t\t<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">'
  11. +'\n\t\t<meta name="generator" content="SuperGlue" data-superglue-version="'
  12. +SuperGlue.class.get('version')
  13. +'" data-superglue-settings="">'
  14. +'\n\t\t<title>'
  15. +document.getElementsByTagName('title')[0].innerHTML
  16. +'</title>'
  17. +'\n\t\t<style type="text/css" data-superglue="default-css">'
  18. +'\n\t\t\tbody { margin: 0px; padding: 0px; }'
  19. +'\n\t\t\t#sg-page { position: relative; top: 0px; }'
  20. +'\n\t\t\t#sg-page.sg-page-centered { margin: 0px auto; }'
  21. +'\n\t\t\t.sg-element { position: absolute; overflow: hidden; }'
  22. +'\n\t\t</style>'
  23. +'\n\t\t<link rel="stylesheet" href="/resources/css/SuperGlue.css" data-superglue="text-css">'
  24. +'\n\t</head>';
  25. thePage += '\n\t<body style="'+ document.body.getAttribute('style')
  26. .replace(document.location.origin, '')
  27. .replace('url("', 'url(')
  28. .replace('");', ');')
  29. +'">';
  30. thePage += '\n\t\t<div id="sg-page" '
  31. + (theDocument.get('layout').centered
  32. ? ('class="sg-page-centered" style="width: ' + theDocument.get('layout').width + 'px;" ')
  33. : '')
  34. + 'data-superglue-grid="'
  35. + (theDocument.get('grid').get('active') ? 'on' : 'off')
  36. + '/'+
  37. + theDocument.get('grid').get('gridSize')
  38. + 'px">';
  39. for(var children = theDocument.get('children'),
  40. i = 0, l = children.length; i < l; i++){
  41. thePage += children[i].do('renderYourself', { indent: 4 })
  42. }
  43. thePage += '\n\t\t</div>\n\t</body>\n</html>';
  44. return thePage;
  45. }
  46. }
  47. },
  48. methods: {
  49. init: {
  50. comment: 'I init the compiler (currently no options, only html5).',
  51. code: function(){
  52. this.set({ pageAsHTML5: SuperGlue.get('document') });
  53. }
  54. }
  55. }
  56. }});