diff --git a/docs/Resources/images/favicon.png b/docs/Resources/images/favicon.png deleted file mode 100644 index 84109069e..000000000 Binary files a/docs/Resources/images/favicon.png and /dev/null differ diff --git a/docs/Resources/images/icon_114x114.png b/docs/Resources/images/icon_114x114.png deleted file mode 100644 index fdce712cb..000000000 Binary files a/docs/Resources/images/icon_114x114.png and /dev/null differ diff --git a/docs/Resources/images/icon_144x144.png b/docs/Resources/images/icon_144x144.png deleted file mode 100644 index 3b430d0eb..000000000 Binary files a/docs/Resources/images/icon_144x144.png and /dev/null differ diff --git a/docs/Resources/images/icon_57x57.png b/docs/Resources/images/icon_57x57.png deleted file mode 100644 index 65c9e4675..000000000 Binary files a/docs/Resources/images/icon_57x57.png and /dev/null differ diff --git a/docs/Resources/images/icon_72x72.png b/docs/Resources/images/icon_72x72.png deleted file mode 100644 index cddd96ca0..000000000 Binary files a/docs/Resources/images/icon_72x72.png and /dev/null differ diff --git a/docs/Resources/lib.js b/docs/Resources/lib.js deleted file mode 100644 index a47b15168..000000000 --- a/docs/Resources/lib.js +++ /dev/null @@ -1,176 +0,0 @@ -// $alt.js -(function(g, document) { - - // Alternative DOM Wrapper - function AlternativeDomWrapper( elements ) { - if ( typeof elements.length === 'undefined' ) - this.elements = [elements]; - else - this.elements = elements; - } - - // applies the given function to each of the childern - AlternativeDomWrapper.prototype.each = function each(fn, thisArg) { - var i = 0, - z = this.elements.length; - - for (; i < z; i++) { - fn.call(thisArg || this.elements[i], this.elements[i], i); - } - return this; - }; - - - // based on salt.js | https://github.com/james2doyle/saltjs - /*! Salt.js DOM Selector Lib. By @james2doyle */ - function salt( selector, context ) { - if ( typeof context === 'undefined' ) context = document; - - // an object containing the matching keys and native get commands - var matches = { - '#': 'getElementById', - '.': 'getElementsByClassName', - '@': 'getElementsByName', - '=': 'getElementsByTagName', - '*': 'querySelectorAll' - }[selector[0]]; // you can treat a string as an array of characters - - // now pass the target without the key - return (context[matches](selector.slice(1))); - } - - - // public API - function $alt( document, engine, wrapper ) { - - if ( typeof document === 'undefined' ) - throw new Error('document is required'); - - if ( typeof engine === 'undefined' ) - engine = salt; - - if ( typeof wrapper === 'undefined' ) - wrapper = AlternativeDomWrapper; - - function api( what, context ) { - if ( typeof context === 'undefined' ) context = document; - - // handle $(element) || $(object) - if (typeof what === 'object') { - if ( wrapper !== null ) return new wrapper( what ); - else return what; - } - - // handle $(fn) - if (typeof what === 'function') { - /c/.test(context.readyState) ? what() : context.addEventListener('DOMContentLoaded', what) - return this; - } - - if ( wrapper !== null ) return new wrapper( engine(what, context) ); - else return engine(what, context); - } - - // augments the wrapper by attaching the given extensions to it's prototype - function extendWrapper( extensions, force ) { - for( name in extensions ) { - x = extensions[name]; - if ( extensions.hasOwnProperty(name) - && typeof x !== 'undefined' - && ( !wrapper.prototype.hasOwnProperty(name) || force) ) { - wrapper.prototype[name] = x; - } - else - throw new Error('wrapper already has ' + name + ' defined'); - } - } - - // enable wrapper extensions - api.fn = wrapper.prototype; - api.xfn = extendWrapper; - - return api; - } - - $alt.AlternativeDomWrapper = AlternativeDomWrapper; - - // exports - g.$alt = $alt; - -}(this, document)); - - -// $alt-basics.js -var $ = $alt( document ); - -$.xfn({ - // dom - attr: function( name, value ) { - if ( typeof value !== 'undefined' ) { - this.each( function( el ) { el.setAttribute(name, value); }); - } else { - return this.elements[0].getAttribute(name); - } - return this; - }, - - // events - on: function( type, listener, capture) { - return this.each( function( el ) { - el.addEventListener( type, listener, capture ); - }); - }, - - off: function( type, listener) { - return this.each( function( el ) { - el.removeEventListener( type, listener, capture ); - }); - }, - - // styling - css: function( prop, value ) { - if ( typeof value !== 'undefined' ) { - this.each( function( el ) { el.style[prop] = value; }); - } else { - return this.elements[0].style[prop]; - } - return this; - }, - - addClass: function( c ) { - return this.each( function( el ) { el.classList.add( c ); }); - }, - - removeClass: function( c ) { - return this.each( function( el ) { el.classList.remove( c ); }); - }, - - hasClass: function( c ) { - var i = 0, - z = this.elements.length; - - for (; i < z; i++) { - if ( this.elements[i].classList.contains( c ) ) return true; - } - return false; - }, - - // visibility - hide: function() { - return this.css('display', 'none'); - }, - - show: function() { - return this.css('display', ''); - } -}); - - -// cookie.min.js -// https://github.com/js-coder/cookie.js -// Copyright (c) 2012 Florian H. -!function(e,t){var n=function(){return n.get.apply(n,arguments)},r=n.utils={isArray:Array.isArray||function(e){return Object.prototype.toString.call(e)==="[object Array]"},isPlainObject:function(e){return!!e&&Object.prototype.toString.call(e)==="[object Object]"},toArray:function(e){return Array.prototype.slice.call(e)},getKeys:Object.keys||function(e){var t=[],n="";for(n in e)e.hasOwnProperty(n)&&t.push(n);return t},escape:function(e){return String(e).replace(/[,;"\\=\s%]/g,function(e){return encodeURIComponent(e)})},retrieve:function(e,t){return e==null?t:e}};n.defaults={},n.expiresMultiplier=86400,n.set=function(n,i,s){if(r.isPlainObject(n))for(var o in n)n.hasOwnProperty(o)&&this.set(o,n[o],i);else{s=r.isPlainObject(s)?s:{expires:s};var u=s.expires!==t?s.expires:this.defaults.expires||"",a=typeof u;a==="string"&&u!==""?u=new Date(u):a==="number"&&(u=new Date(+(new Date)+1e3*this.expiresMultiplier*u)),u!==""&&"toGMTString"in u&&(u=";expires="+u.toGMTString());var f=s.path||this.defaults.path;f=f?";path="+f:"";var l=s.domain||this.defaults.domain;l=l?";domain="+l:"";var c=s.secure||this.defaults.secure?";secure":"";e.cookie=r.escape(n)+"="+r.escape(i)+u+f+l+c}return this},n.remove=function(e){e=r.isArray(e)?e:r.toArray(arguments);for(var t=0,n=e.length;t0){for(g=0;g=8)){window.onhashchange=a}else{setInterval(a,50)}if(location.hash!==""){Path.dispatch(location.hash)}},core:{route:function(a){this.path=a;this.action=null;this.do_enter=[];this.do_exit=null;this.params={};Path.routes.defined[a]=this}},routes:{current:null,root:null,rescue:null,previous:null,defined:{}}};Path.core.route.prototype={to:function(a){this.action=a;return this},enter:function(a){if(a instanceof Array){this.do_enter=this.do_enter.concat(a)}else{this.do_enter.push(a)}return this},exit:function(a){this.do_exit=a;return this},partition:function(){var a=[],b=[],c=/\(([^}]+?)\)/g,d,e;while(d=c.exec(this.path)){a.push(d[1])}b.push(this.path.split("(")[0]);for(e=0;e0){for(b=0;b -wireframe
Ξ×
Here's a note for the start page.
Ξ×
... and another note for page 1.
\ No newline at end of file diff --git a/docs/pages/background.png b/docs/pages/background.png deleted file mode 100644 index d13c4652b..000000000 Binary files a/docs/pages/background.png and /dev/null differ diff --git a/docs/pages/page_1.png b/docs/pages/page_1.png deleted file mode 100644 index b82f29370..000000000 Binary files a/docs/pages/page_1.png and /dev/null differ diff --git a/docs/pages/start.png b/docs/pages/start.png deleted file mode 100644 index c32dd0364..000000000 Binary files a/docs/pages/start.png and /dev/null differ diff --git a/documentation/wireframes/axure/export/data/document.js b/documentation/wireframes/axure/export/data/document.js index 4aa3ef9e2..834a74f90 100644 --- a/documentation/wireframes/axure/export/data/document.js +++ b/documentation/wireframes/axure/export/data/document.js @@ -2,6 +2,6 @@ (function() { var _ = function() { var r={},a=arguments; for(var i=0; i - + diff --git a/documentation/wireframes/axure/export/resources/chrome/allow_access.gif b/documentation/wireframes/axure/export/resources/chrome/allow_access.gif new file mode 100644 index 000000000..11a608618 Binary files /dev/null and b/documentation/wireframes/axure/export/resources/chrome/allow_access.gif differ diff --git a/documentation/wireframes/axure/export/resources/chrome/axure_logo.gif b/documentation/wireframes/axure/export/resources/chrome/axure_logo.gif new file mode 100644 index 000000000..0e2357c66 Binary files /dev/null and b/documentation/wireframes/axure/export/resources/chrome/axure_logo.gif differ diff --git a/documentation/wireframes/axure/export/resources/chrome/chrome.html b/documentation/wireframes/axure/export/resources/chrome/chrome.html index 98de10344..c33a4e4e2 100644 --- a/documentation/wireframes/axure/export/resources/chrome/chrome.html +++ b/documentation/wireframes/axure/export/resources/chrome/chrome.html @@ -31,22 +31,19 @@ } .button { - background: #A502B3; + background: #E31687; font: normal 16px Arial, sans-serif; color: #FFFFFF; - padding: 10px 30px 10px 30px; - border: 2px solid #A502B3; + padding: 8px 25px 8px 25px; + border: 0; display: inline-block; margin-top: 10px; text-transform: uppercase; - font-size: 14px; - border-radius: 4px; + font-size: 13px; } a:hover.button { - border: 2px solid #A502B3; - color: #A502B3; - background-color: #FFFFFF; + opacity: .8; } div.left { @@ -65,7 +62,7 @@ } h1 { - font-size: 36px; + font-size: 40px; color: #333333; line-height: 50px; margin-bottom: 20px; @@ -73,33 +70,30 @@ } h2 { - font-size: 24px; + font-size: 38px; font-weight: normal; color: #08639C; text-align: center; } h3 { - font-size: 16px; + font-size: 20px; color: #333333; font-weight: normal; - text-transform: uppercase; } .heading { - border-bottom: 1px solid black; - height: 36px; + background-color: #cdecf9; + height: 36px; line-height: 36px; - font-size: 22px; - color: #000000; - + padding-left: 20px; + font-size: 16px; + color: #666666; } span.faq { font-size: 16px; - line-height: 24px; font-weight: normal; - text-transform: uppercase; color: #333333; display: block; } @@ -111,9 +105,9 @@
axure
-

- AXURE RP EXTENSION FOR CHROME

+ AXURE RP EXTENSION
+ For Chrome

Google Chrome requires an extension to view locally stored projects. Alternatively, upload your RP file to Axure Share or use a different @@ -130,26 +124,19 @@

- 2. Open "More Tools > Extensions"

- extensions + 2. Open the Extensions Options

+ extensions
 
-
-

- 3. View Axure RP Extension Details

- extension details -
-
+

- 4. Check "Allow access to file URLs"

- allow access + 3. Check "Allow access to file URLs" + allow access
-
-  
-
+

- 5. Click the button below

+ 4. Click the button below @@ -160,27 +147,29 @@

EXTENSION FAQ

What is a Chrome Extension? Extensions are downloadable - plug-ins for Google Chrome that modify the browser + plug-ins for Google Chrome that modify the browser
and allow you additional capabilities.

Why do I need to install the extension? Google requires - this extension to be installed to allow the viewing of local files in + this extension to be installed to allow the viewing of local files in
Chrome

Why does this extension require a high access level? This - extension requires a high access level to allow the viewing of the file:// + extension requires a high access level to allow the viewing of the file://
protocol. Axure does not track or access any of your information.

- WE'RE HERE TO HELP

+ ROUND UP +

+ Chrome requires this extension to be installed to view local files.

- Need help or have any questions? Contact our support team at + Need help or have any questions? Drop us a line at support@axure.com.

- \ No newline at end of file + diff --git a/documentation/wireframes/axure/export/resources/chrome/extensions_menu.gif b/documentation/wireframes/axure/export/resources/chrome/extensions_menu.gif new file mode 100644 index 000000000..1c8b1a16e Binary files /dev/null and b/documentation/wireframes/axure/export/resources/chrome/extensions_menu.gif differ diff --git a/documentation/wireframes/axure/export/resources/chrome/safari.html b/documentation/wireframes/axure/export/resources/chrome/safari.html index d6a0fb7a0..d6128a64f 100644 --- a/documentation/wireframes/axure/export/resources/chrome/safari.html +++ b/documentation/wireframes/axure/export/resources/chrome/safari.html @@ -31,22 +31,19 @@ } .button { - background: #A502B3; + background: #E31687; font: normal 16px Arial, sans-serif; color: #FFFFFF; - padding: 10px 30px 10px 30px; - border: 2px solid #A502B3; + padding: 8px 25px 8px 25px; + border: 0; display: inline-block; margin-top: 10px; text-transform: uppercase; - font-size: 14px; - border-radius: 4px; + font-size: 13px; } a:hover.button { - border: 2px solid #A502B3; - color: #A502B3; - background-color: #FFFFFF; + opacity: .8; } div.left { @@ -65,7 +62,7 @@ } h1 { - font-size: 36px; + font-size: 40px; color: #333333; line-height: 50px; margin-bottom: 20px; @@ -73,31 +70,31 @@ } h2 { - font-size: 24px; + font-size: 38px; font-weight: normal; color: #08639C; text-align: center; } h3 { - font-size: 16px; + font-size: 18px; line-height: 24px; color: #333333; font-weight: normal; } .heading { - border-bottom: 1px solid black; - height: 36px; + background-color: #cdecf9; + height: 36px; line-height: 36px; - font-size: 22px; - color: #000000; + padding-left: 20px; + font-size: 16px; + color: #666666; } span.faq { font-size: 16px; font-weight: normal; - text-transform: uppercase; color: #333333; display: block; } @@ -118,7 +115,7 @@

VIEW LOCAL PROJECTS IN SAFARI

- 1. Open "Safari > Preferences > Advanced" from the top menu menu, and check the option to "Show Develop menu in menu bar"

+ 1. Open Safari > Preferences > Advanced and check the option to Show Develop menu in menu bar advanced
@@ -126,7 +123,7 @@

- 2. In the Develop menu that appears in the menu bar, click "Develop > Disable Local File Restrictions" to un-select the menu option

+ 2. Select Develop > Disable Local File Restrictions in the menu bar extensions
@@ -142,7 +139,7 @@

- We're Here to Help

+ NEED HELP?

Need help or have any questions? Drop us a line at support@axure.com. @@ -151,4 +148,4 @@

- \ No newline at end of file + diff --git a/documentation/wireframes/axure/export/resources/scripts/prototypePost.js b/documentation/wireframes/axure/export/resources/scripts/prototypePost.js index ed7d75b43..c43bd59e9 100644 --- a/documentation/wireframes/axure/export/resources/scripts/prototypePost.js +++ b/documentation/wireframes/axure/export/resources/scripts/prototypePost.js @@ -1,4 +1,4 @@ -// 8.0.0.3379. Generated 9/4/2018 6:40:43 PM UTC +// 8.0.0.3377. Generated 6/6/2018 6:37:57 PM UTC //***** messagecenter.js *****// if (typeof console == 'undefined') console = { diff --git a/documentation/wireframes/axure/export/resources/scripts/prototypePre.js b/documentation/wireframes/axure/export/resources/scripts/prototypePre.js index adbfdd295..47f71fa95 100644 --- a/documentation/wireframes/axure/export/resources/scripts/prototypePre.js +++ b/documentation/wireframes/axure/export/resources/scripts/prototypePre.js @@ -1,4 +1,4 @@ -// 8.0.0.3379. Generated 9/4/2018 6:40:43 PM UTC +// 8.0.0.3377. Generated 6/6/2018 6:37:57 PM UTC //***** axQuery.js *****// $axure = function(query) { diff --git a/documentation/wireframes/axure/export/resources/scripts/startPost.js b/documentation/wireframes/axure/export/resources/scripts/startPost.js index de5a3e11e..15b926965 100644 --- a/documentation/wireframes/axure/export/resources/scripts/startPost.js +++ b/documentation/wireframes/axure/export/resources/scripts/startPost.js @@ -1,4 +1,4 @@ -// 8.0.0.3379. Generated 9/4/2018 6:40:43 PM UTC +// 8.0.0.3377. Generated 6/6/2018 6:37:57 PM UTC //***** sitemap.js *****// var currentNodeUrl = ''; diff --git a/documentation/wireframes/axure/export/resources/scripts/startPre.js b/documentation/wireframes/axure/export/resources/scripts/startPre.js index 194b8be3f..61760c94e 100644 --- a/documentation/wireframes/axure/export/resources/scripts/startPre.js +++ b/documentation/wireframes/axure/export/resources/scripts/startPre.js @@ -1,4 +1,4 @@ -// 8.0.0.3379. Generated 9/4/2018 6:40:43 PM UTC +// 8.0.0.3377. Generated 6/6/2018 6:37:57 PM UTC //***** splitter.js *****// /* diff --git a/documentation/wireframes/axure/export/start.html b/documentation/wireframes/axure/export/start.html index 49ade3552..944e686b3 100644 --- a/documentation/wireframes/axure/export/start.html +++ b/documentation/wireframes/axure/export/start.html @@ -16,7 +16,7 @@ } - + diff --git a/documentation/wireframes/axure/wireframe.rp b/documentation/wireframes/axure/wireframe.rp index 3f72e2f8e..933b0301a 100644 Binary files a/documentation/wireframes/axure/wireframe.rp and b/documentation/wireframes/axure/wireframe.rp differ diff --git a/investigations/worklogs/worklog_one_18_10_2018.md b/investigations/worklogs/worklog_one_18_10_2018.md new file mode 100644 index 000000000..6679824fb --- /dev/null +++ b/investigations/worklogs/worklog_one_18_10_2018.md @@ -0,0 +1,9 @@ +# Test entry 1 +Here is to hoping that this *testlog* actually **works**. +**date:** *18/10/2018* +**time:** *10:25* + +**and hence the testing is done** +for the moment *at least* +**date:** *same* +**time:** *10:29*