diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index b68b9c1897..0000000000 --- a/Gruntfile.js +++ /dev/null @@ -1,46 +0,0 @@ -module.exports = function ( grunt ) { - - /** - * Load required Grunt tasks. These are installed based on the versions listed - * in `package.json` when you do `npm install` in this directory. - */ - - grunt.loadNpmTasks('grunt-contrib-less'); - grunt.loadNpmTasks('grunt-contrib-watch'); - - var taskConfig = { - - less: { - compile: { - files: { - "www/css/main.css": "www/less/main.less" - } - } - }, - - delta: { - - options: { - livereload: true - }, - - /** - * When the LESS files change, we need to compile and minify them. - */ - less: { - files: [ 'www/**/*.less' ], - tasks: [ 'less:compile' ], - }, - - } - } - - grunt.config.init(taskConfig); - - grunt.renameTask( 'watch', 'delta' ); - grunt.registerTask( 'watch', [ 'less:compile', 'delta' ] ); - - - grunt.registerTask('default', ['less:compile']); - -} \ No newline at end of file diff --git a/_static.cfg b/_static.cfg deleted file mode 100644 index f9d6e5e7ec..0000000000 --- a/_static.cfg +++ /dev/null @@ -1,3 +0,0 @@ -SERVER_TYPE="nginx" -BUILD_WEB_ASSETS="true" -STATIC_SUBDIR="www" diff --git a/_webassets.cfg b/_webassets.cfg deleted file mode 100644 index decd9d2c39..0000000000 --- a/_webassets.cfg +++ /dev/null @@ -1,2 +0,0 @@ -USE_GRUNT="true" -GRUNT_OPTIONS="" #by default the project compiles itself diff --git a/conf/mime.types b/conf/mime.types deleted file mode 100644 index 3f486a2843..0000000000 --- a/conf/mime.types +++ /dev/null @@ -1,98 +0,0 @@ -types { - text/html html htm shtml; - text/css css; - text/cache-manifest manifest appcache; - text/mathml mml; - text/plain txt; - text/vnd.sun.j2me.app-descriptor jad; - text/vnd.wap.wml wml; - text/x-component htc; - text/x-vcard vcf; - - # JavaScript - application/javascript js jsonp; - application/json json; - - # Images - image/png png; - image/svg+xml svg svgz; - image/tiff tif tiff; - image/vnd.wap.wbmp wbmp; - image/webp webp; - image/x-icon ico; - image/x-jng jng; - image/bmp bmp; - image/gif gif; - image/jpeg jpeg jpg; - - application/xml rss atom xml rdf; - application/java-archive jar war ear; - application/mac-binhex40 hqx; - application/pdf pdf; - application/postscript ps eps ai; - application/rtf rtf; - application/vnd.wap.wmlc wmlc; - application/xhtml+xml xhtml; - application/vnd.google-earth.kml+xml kml; - application/vnd.google-earth.kmz kmz; - application/x-7z-compressed 7z; - application/x-chrome-extension crx; - application/x-opera-extension oex; - application/x-xpinstall xpi; - application/x-cocoa cco; - application/x-java-archive-diff jardiff; - application/x-java-jnlp-file jnlp; - application/x-makeself run; - application/x-perl pl pm; - application/x-pilot prc pdb; - application/x-rar-compressed rar; - application/x-redhat-package-manager rpm; - application/x-sea sea; - application/x-shockwave-flash swf; - application/x-stuffit sit; - application/x-tcl tcl tk; - application/x-x509-ca-cert der pem crt; - application/zip zip; - - application/octet-stream bin exe dll; - application/octet-stream deb; - application/octet-stream dmg; - application/octet-stream iso img; - application/octet-stream msi msp msm; - application/octet-stream safariextz; - - # Audio - audio/midi mid midi kar; - audio/mpeg mp3; - audio/ogg oga ogg; - audio/mp4 m4a f4a f4b aac; - audio/x-realaudio ra; - audio/x-wav wav; - - # Video - video/3gpp 3gpp 3gp; - video/mp4 mp4 m4v f4v f4p; - video/mpeg mpeg mpg; - video/ogg ogv; - video/quicktime mov; - video/webm webm; - video/x-flv flv; - video/x-mng mng; - video/x-ms-asf asx asf; - video/x-ms-wmv wmv; - video/x-msvideo avi; - - # Webfonts - application/font-woff woff; - application/vnd.ms-fontobject eot; - application/x-font-ttf ttf ttc; - application/x-font-opentype otf; - - # Microsoft Office - application/msword doc; - application/vnd.ms-excel xls; - application/vnd.ms-powerpoint ppt; - application/vnd.openxmlformats-officedocument.wordprocessingml.document docx; - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx; - application/vnd.openxmlformats-officedocument.presentationml.presentation pptx; -} diff --git a/conf/nginx.conf.erb b/conf/nginx.conf.erb deleted file mode 100644 index ceaccc42ba..0000000000 --- a/conf/nginx.conf.erb +++ /dev/null @@ -1,180 +0,0 @@ -# Set another default user than root for security reasons -user www www; - -# As a thumb rule: One per CPU. If you are serving a large amount -# of static files, which requires blocking disk reads, you may want -# to increase this from the number of cpu_cores available on your -# system. -# -# The maximum number of connections for Nginx is calculated by: -# max_clients = worker_processes * worker_connections -worker_processes 3; -daemon off; - -# Maximum file descriptors that can be opened per process -# This should be > worker_connections -worker_rlimit_nofile 8192; - -events { - # When you need > 8000 * cpu_cores connections, you start optimizing - # your OS, and this is probably the point at where you hire people - # who are smarter than you, this is *a lot* of requests. - worker_connections 8000; -} - -http { - # Set the mime-types via the mime.types external file - include mime.types; - - # And the fallback mime-type - default_type application/octet-stream; - - # Hide nginx version - server_tokens off; - - # ~2 seconds is often enough for HTML/CSS, but connections in - # Nginx are cheap, so generally it's safe to increase it - keepalive_timeout 20; - - sendfile on; - - tcp_nopush on; # off may be better for Comet/long-poll stuff - tcp_nodelay off; # on may be better for Comet/long-poll stuff - - # Enable Gzip: - gzip on; - gzip_http_version 1.0; - gzip_comp_level 5; - gzip_min_length 512; - gzip_buffers 4 8k; - gzip_proxied any; - gzip_types - # text/html is always compressed by HttpGzipModule - text/css - text/plain - text/x-component - application/javascript - application/json - application/xml - application/xhtml+xml - application/x-font-ttf - application/x-font-opentype - application/vnd.ms-fontobject - image/svg+xml - image/x-icon; - - # This should be turned on if you are going to have pre-compressed copies (.gz) of - # static files available. If not it should be left off as it will cause extra I/O - # for the check. It would be better to enable this in a location {} block for - # a specific directory: - # gzip_static on; - - gzip_disable "msie6"; - gzip_vary on; - - server { - listen <%= ENV['PORT'] %>; - - # The host name to respond to - server_name dev.ripple.com; - - # Path for static files - root www; - - #Specify a charset - charset utf-8; - - # Custom 404 page - error_page 404 /404.html; - - if ($http_x_forwarded_proto != "https") { - rewrite ^(.*)$ https://$server_name$1 permanent; - } - - # Expire rules for static content - - # Built-in filename-based cache busting - - # https://github.com/h5bp/html5-boilerplate/blob/5370479476dceae7cc3ea105946536d6bc0ee468/.htaccess#L403 - # This will route all requests for /css/style.20120716.css to /css/style.css - # Read also this: github.com/h5bp/html5-boilerplate/wiki/cachebusting - # This is not included by default, because it'd be better if you use the build - # script to manage the file names. - location ~* (.+)\.(\d+)\.(js|css|png|jpg|jpeg|gif)$ { - try_files $uri $1.$3; - } - - # No default expire rule. This config mirrors that of apache as outlined in the - # html5-boilerplate .htaccess file. However, nginx applies rules by location, - # the apache rules are defined by type. A concequence of this difference is that - # if you use no file extension in the url and serve html, with apache you get an - # expire time of 0s, with nginx you'd get an expire header of one month in the - # future (if the default expire rule is 1 month). Therefore, do not use a - # default expire rule with nginx unless your site is completely static - - # cache.appcache, your document html and data - location ~* \.(?:manifest|appcache|html|xml|json)$ { - expires -1; - access_log logs/static.log; - } - - # Feed - location ~* \.(?:rss|atom)$ { - expires 1h; - add_header Cache-Control "public"; - } - - # Favicon - location ~* \.ico$ { - expires 1w; - access_log off; - add_header Cache-Control "public"; - } - - # Media: images, video, audio, HTC - location ~* \.(?:jpg|jpeg|gif|png|ico|gz|svg|svgz|mp4|ogg|ogv|webm)$ { - expires 1M; - access_log off; - add_header Cache-Control "public"; - } - - # CSS and Javascript - location ~* \.(?:css|js)$ { - expires 1y; - access_log off; - add_header Cache-Control "public"; - } - - # Cross domain webfont access - location ~* \.(ttf|ttc|otf|eot|woff|font.css)$ { - add_header "Access-Control-Allow-Origin" "*"; - - # Also, set cache rules for webfonts. - # - # See http://wiki.nginx.org/HttpCoreModule#location - # And https://github.com/h5bp/server-configs/issues/85 - # And https://github.com/h5bp/server-configs/issues/86 - expires 1M; - access_log off; - add_header Cache-Control "public"; - } - - # Force the latest IE version - # Use ChromeFrame if it's installed for a better experience for the poor IE folk - add_header "X-UA-Compatible" "IE=Edge,chrome=1"; - - # Prevent clients from accessing hidden files (starting with a dot) - location ~* (^|/)\. { - return 403; - } - - # Prevent clients from accessing to backup/config/source files - location ~* (\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$ { - return 403; - } - - # Prevent mobile network providers from modifying your site - add_header "Cache-Control" "no-transform"; - - } -} diff --git a/www/css/main.css b/css/main.css similarity index 100% rename from www/css/main.css rename to css/main.css diff --git a/www/css/mod.css b/css/mod.css similarity index 100% rename from www/css/mod.css rename to css/mod.css diff --git a/www/css/style.css b/css/style.css similarity index 100% rename from www/css/style.css rename to css/style.css diff --git a/www/favicon.ico b/favicon.ico similarity index 100% rename from www/favicon.ico rename to favicon.ico diff --git a/www/font/icons-69f2993ae31bde255c4a342228474e94.eot b/font/icons-69f2993ae31bde255c4a342228474e94.eot similarity index 100% rename from www/font/icons-69f2993ae31bde255c4a342228474e94.eot rename to font/icons-69f2993ae31bde255c4a342228474e94.eot diff --git a/www/font/icons-69f2993ae31bde255c4a342228474e94.svg b/font/icons-69f2993ae31bde255c4a342228474e94.svg similarity index 100% rename from www/font/icons-69f2993ae31bde255c4a342228474e94.svg rename to font/icons-69f2993ae31bde255c4a342228474e94.svg diff --git a/www/font/icons-69f2993ae31bde255c4a342228474e94.ttf b/font/icons-69f2993ae31bde255c4a342228474e94.ttf similarity index 100% rename from www/font/icons-69f2993ae31bde255c4a342228474e94.ttf rename to font/icons-69f2993ae31bde255c4a342228474e94.ttf diff --git a/www/font/icons-69f2993ae31bde255c4a342228474e94.woff b/font/icons-69f2993ae31bde255c4a342228474e94.woff similarity index 100% rename from www/font/icons-69f2993ae31bde255c4a342228474e94.woff rename to font/icons-69f2993ae31bde255c4a342228474e94.woff diff --git a/www/guidelines.html b/guidelines.html similarity index 100% rename from www/guidelines.html rename to guidelines.html diff --git a/www/img/Ripple_attribution_badge_blue.png b/img/Ripple_attribution_badge_blue.png similarity index 100% rename from www/img/Ripple_attribution_badge_blue.png rename to img/Ripple_attribution_badge_blue.png diff --git a/www/img/Ripple_attribution_badge_blue.svg b/img/Ripple_attribution_badge_blue.svg similarity index 100% rename from www/img/Ripple_attribution_badge_blue.svg rename to img/Ripple_attribution_badge_blue.svg diff --git a/www/img/Ripple_attribution_badge_gray.png b/img/Ripple_attribution_badge_gray.png similarity index 100% rename from www/img/Ripple_attribution_badge_gray.png rename to img/Ripple_attribution_badge_gray.png diff --git a/www/img/Ripple_attribution_badge_gray.svg b/img/Ripple_attribution_badge_gray.svg similarity index 100% rename from www/img/Ripple_attribution_badge_gray.svg rename to img/Ripple_attribution_badge_gray.svg diff --git a/www/img/Ripple_attribution_badge_white.png b/img/Ripple_attribution_badge_white.png similarity index 100% rename from www/img/Ripple_attribution_badge_white.png rename to img/Ripple_attribution_badge_white.png diff --git a/www/img/Ripple_attribution_badge_white.svg b/img/Ripple_attribution_badge_white.svg similarity index 100% rename from www/img/Ripple_attribution_badge_white.svg rename to img/Ripple_attribution_badge_white.svg diff --git a/www/img/badge-example.png b/img/badge-example.png similarity index 100% rename from www/img/badge-example.png rename to img/badge-example.png diff --git a/www/img/badge-white.png b/img/badge-white.png similarity index 100% rename from www/img/badge-white.png rename to img/badge-white.png diff --git a/www/img/burger.png b/img/burger.png similarity index 100% rename from www/img/burger.png rename to img/burger.png diff --git a/www/img/downloadicon.svg b/img/downloadicon.svg similarity index 100% rename from www/img/downloadicon.svg rename to img/downloadicon.svg diff --git a/www/img/gateway.png b/img/gateway.png similarity index 100% rename from www/img/gateway.png rename to img/gateway.png diff --git a/www/img/icon-check.png b/img/icon-check.png similarity index 100% rename from www/img/icon-check.png rename to img/icon-check.png diff --git a/www/img/icon-remove.png b/img/icon-remove.png similarity index 100% rename from www/img/icon-remove.png rename to img/icon-remove.png diff --git a/www/img/lab.png b/img/lab.png similarity index 100% rename from www/img/lab.png rename to img/lab.png diff --git a/www/img/logo-lg.png b/img/logo-lg.png similarity index 100% rename from www/img/logo-lg.png rename to img/logo-lg.png diff --git a/www/img/logo1.png b/img/logo1.png similarity index 100% rename from www/img/logo1.png rename to img/logo1.png diff --git a/www/img/logotype.png b/img/logotype.png similarity index 100% rename from www/img/logotype.png rename to img/logotype.png diff --git a/www/img/ripple-logos.zip b/img/ripple-logos.zip similarity index 100% rename from www/img/ripple-logos.zip rename to img/ripple-logos.zip diff --git a/www/img/ripple-triskelion.png b/img/ripple-triskelion.png similarity index 100% rename from www/img/ripple-triskelion.png rename to img/ripple-triskelion.png diff --git a/www/img/rippled.png b/img/rippled.png similarity index 100% rename from www/img/rippled.png rename to img/rippled.png diff --git a/www/img/rp-arctic.png b/img/rp-arctic.png similarity index 100% rename from www/img/rp-arctic.png rename to img/rp-arctic.png diff --git a/www/index.html b/index.html similarity index 100% rename from www/index.html rename to index.html diff --git a/www/intro.md b/intro.md similarity index 100% rename from www/intro.md rename to intro.md diff --git a/www/js/bootstrap-modal.js b/js/bootstrap-modal.js similarity index 100% rename from www/js/bootstrap-modal.js rename to js/bootstrap-modal.js diff --git a/www/js/main.js b/js/main.js similarity index 100% rename from www/js/main.js rename to js/main.js diff --git a/www/js/multicodetab.js b/js/multicodetab.js similarity index 100% rename from www/js/multicodetab.js rename to js/multicodetab.js diff --git a/www/less/.DS_Store b/less/.DS_Store similarity index 100% rename from www/less/.DS_Store rename to less/.DS_Store diff --git a/www/less/icons.less b/less/icons.less similarity index 100% rename from www/less/icons.less rename to less/icons.less diff --git a/www/less/main.less b/less/main.less similarity index 100% rename from www/less/main.less rename to less/main.less diff --git a/www/less/mixins.less b/less/mixins.less similarity index 100% rename from www/less/mixins.less rename to less/mixins.less diff --git a/www/less/modals.less b/less/modals.less similarity index 100% rename from www/less/modals.less rename to less/modals.less diff --git a/www/less/variables.less b/less/variables.less similarity index 100% rename from www/less/variables.less rename to less/variables.less diff --git a/package.json b/package.json deleted file mode 100644 index f5c74eaf5b..0000000000 --- a/package.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "ripple-docs", - "devDependencies": { - "grunt": "~0.4.2", - "grunt-contrib-less": "~0.8.2", - "grunt-contrib-watch": "~0.5.3" - } -} \ No newline at end of file diff --git a/www/ripplerest_api.md b/ripplerest_api.md similarity index 100% rename from www/ripplerest_api.md rename to ripplerest_api.md diff --git a/www/terms-conditions.html b/terms-conditions.html similarity index 100% rename from www/terms-conditions.html rename to terms-conditions.html diff --git a/www/vendor/flatdoc/v/0.8.0/flatdoc.js b/vendor/flatdoc/v/0.8.0/flatdoc.js similarity index 100% rename from www/vendor/flatdoc/v/0.8.0/flatdoc.js rename to vendor/flatdoc/v/0.8.0/flatdoc.js diff --git a/www/vendor/flatdoc/v/0.8.0/legacy.js b/vendor/flatdoc/v/0.8.0/legacy.js similarity index 100% rename from www/vendor/flatdoc/v/0.8.0/legacy.js rename to vendor/flatdoc/v/0.8.0/legacy.js diff --git a/www/vendor/flatdoc/v/0.8.0/theme-white/script.js b/vendor/flatdoc/v/0.8.0/theme-white/script.js similarity index 100% rename from www/vendor/flatdoc/v/0.8.0/theme-white/script.js rename to vendor/flatdoc/v/0.8.0/theme-white/script.js diff --git a/www/vendor/flatdoc/v/0.8.0/theme-white/style.css b/vendor/flatdoc/v/0.8.0/theme-white/style.css similarity index 100% rename from www/vendor/flatdoc/v/0.8.0/theme-white/style.css rename to vendor/flatdoc/v/0.8.0/theme-white/style.css diff --git a/www/vendor/ghbtn.html b/vendor/ghbtn.html similarity index 100% rename from www/vendor/ghbtn.html rename to vendor/ghbtn.html diff --git a/www/websocket_api.md b/websocket_api.md similarity index 100% rename from www/websocket_api.md rename to websocket_api.md diff --git a/www/.DS_Store b/www/.DS_Store deleted file mode 100644 index a657376d75..0000000000 Binary files a/www/.DS_Store and /dev/null differ