├── api ├── config-global.php ├── util.php ├── config-local.php.template ├── manage.php ├── schema.sql └── api.php ├── web ├── offline.html ├── favicon.ico ├── apple-touch-icon.png ├── images │ ├── g_favicon.png │ ├── gnome_home.png │ ├── gnome_new.png │ ├── gnome_open.png │ ├── gnome_sync.png │ ├── gnome_text.png │ ├── gnome_delete.png │ ├── gnome_saving.png │ ├── gnome_system.png │ ├── gnome_syncing.png │ └── html5-badge-h-css3-semantics-storage.png ├── about │ ├── apple-touch-icon.png │ ├── .htaccess │ └── index.html ├── apple-touch-icon-precomposed.png ├── robots.txt ├── api │ └── index.php ├── 404.html ├── js │ ├── libs │ │ ├── autoresize.jquery.min.js │ │ ├── json2-min.js │ │ ├── autoresize.jquery.js │ │ └── jquery-1.4.2.min.js │ └── note5.js ├── .htaccess ├── css │ └── style.css └── index-src.php ├── doc └── cws │ ├── icon_128.png │ └── manifest.json ├── .gitignore ├── README.md └── lib └── openid.php /api/config-global.php: -------------------------------------------------------------------------------- 1 | getMessage(), "\n"; 5 | } 6 | -------------------------------------------------------------------------------- /web/about/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{HTTP_HOST} ^html5notepad.com 3 | RewriteRule (.*) http://www.html5notepad.com/$1 [R=301,L] 4 | -------------------------------------------------------------------------------- /web/images/html5-badge-h-css3-semantics-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonhanley/note5/HEAD/web/images/html5-badge-h-css3-semantics-storage.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /.buildpath 3 | /.project 4 | /.idea 5 | /todo.txt 6 | /notes.txt 7 | /api/config-remote.php 8 | /api/config-local.php 9 | /web/index.html 10 | /web/cache.manifest 11 | /web/d.html 12 | /web/m.html 13 | /api/data.sql 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | note5: An HTML5 notepad 2 | ======================= 3 | 4 | Inspired by the iPad "Notes" application. 5 | 6 | Very simple. Just start typing. Everything is saved to your system automatically. 7 | 8 | By: [Jason M. Hanley](http://www.jasonhanley.com/) 9 | -------------------------------------------------------------------------------- /api/config-local.php.template: -------------------------------------------------------------------------------- 1 | $v) { 7 | unset($process[$key][$k]); 8 | if (is_array($v)) { 9 | $process[$key][stripslashes($k)] = $v; 10 | $process[] = &$process[$key][stripslashes($k)]; 11 | } else { 12 | $process[$key][stripslashes($k)] = stripslashes($v); 13 | } 14 | } 15 | } 16 | unset($process); 17 | } 18 | 19 | include "../../api/api.php"; 20 | ?> -------------------------------------------------------------------------------- /web/404.html: -------------------------------------------------------------------------------- 1 | 2 |