-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1c63c4
commit 6351125
Showing
201 changed files
with
13,832 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
<?php require_once '../Path.php'; ?> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
|
||
<title>Jake Dawkins</title> | ||
<?php include Path::partials().'bs_head.php' ?> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<!-- IMPORT NAV BAR--> | ||
<?php include Path::partials().'nav.php' ?> | ||
|
||
<!-- Page Header --> | ||
<!-- background image for header below. --> | ||
<header class="intro-header" style="background-image: url('../img/imac-bg.jpg')"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
<div class="post-heading"> | ||
<h1>Notes (jacksod a3)</h1> | ||
<h2 class="subheading"></h2> | ||
<span class="meta">Posted by Jake on February 27, 2016</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<!-- Post Content --> | ||
<article> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
<a class="btn btn-primary" href="notes-a3_files/jacksod.a3.zip"> | ||
<span class="glyphicon glyphicon-circle-arrow-down"></span> | ||
Download Source Code | ||
</a> | ||
<a class="btn btn-primary" href="notes-a3_files/dox_html/annotated.html"> | ||
<span class="glyphicon glyphicon-circle-arrow-down"></span> | ||
Doxygen Documentation | ||
</a> | ||
<p> | ||
A note-taking tool for taking short-form notes. Uses a local SQLite DataBase for management and persistent note storage. | ||
</p> | ||
<p> | ||
<strong>Something New:</strong>The ability to choose and save images for notes. | ||
</p> | ||
<p> | ||
<strong>Known Issues:</strong>In lists of notes, the image icon does not show next to the first item in the list if it has an image saved. | ||
</p> | ||
<ul> | ||
<li> | ||
To enter a new note, tap the "+" at the bottom of the main list of notes. There is an option to add tags to a note. | ||
Tags must be alphanumeric or contain a _. Alerts will prompt the user for empty notes. | ||
</li> | ||
<li> | ||
To edit a note, tap on it in the main list of notes. | ||
</li> | ||
<li> | ||
To delete a note, tap on it in the main list of notes, and tap "delete". Then tap "okay" on the alert. | ||
</li> | ||
</ul> | ||
<br /> | ||
</div> | ||
</div> <!-- end row --> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
<p><strong>Database Schema</strong></p> | ||
<a href="notes-a3_files/jacksod.a3.FinalSchema.jpg"> | ||
<img class="img-responsive" src="notes-a3_files/jacksod.a3.FinalSchema.jpg" /> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
<p><strong>Screenshots</strong></p> | ||
</div> | ||
<a href="notes-a3_files/notesa3-1.png"> | ||
<img class="img-responsive col-lg-2 col-lg-offset-2 col-md-2 col-md-offset-1" src="notes-a3_files/notesa3-1.png" /> | ||
</a> | ||
<a href="notes-a3_files/notesa3-2.png"> | ||
<img class="img-responsive col-lg-2 col-md-2" src="notes-a3_files/notesa3-2.png" /> | ||
</a> | ||
<a href="notes-a3_files/notesa3-3.png"> | ||
<img class="img-responsive col-lg-2 col-md-2" src="notes-a3_files/notesa3-3.png" /> | ||
</a> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
<br /><br /> | ||
<strong>Acknowledgments:</strong><br /> | ||
<ul> | ||
<li> | ||
<a href="http://stackoverflow.com/questions/26615889/how-to-change-the-launcher-logo-of-an-app-in-android-studio">How to Create a Launcher Icon</a> | ||
</li> | ||
<li> | ||
<a href="http://www.sketchappsources.com/resource/download-477.html">Icon Template for Sketch 3</a> | ||
</li> | ||
<li> | ||
<a href="http://stackoverflow.com/questions/3805599/add-delete-view-from-layout">Removing a View Programmatically</a> | ||
</li> | ||
<li> | ||
<a href="http://www.codeproject.com/Articles/995286/Saving-an-image-in-a-SQLite-database-in-your-Andro">Images and SQLite</a> | ||
</li> | ||
<li> | ||
<a href="(http://codestars.usefedora.com/courses/the-complete-android-developer-course/lectures/474991">Choosing Photos - Rob Percival</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</article> | ||
|
||
<hr> | ||
|
||
<!-- IMPORT FOOTER & JS --> | ||
<?php include Path::partials().'footer.php' ?> | ||
|
||
</body> | ||
|
||
</html> |
Binary file not shown.
127 changes: 127 additions & 0 deletions
127
public_html/projects/notes-a3_files/dox_html/annotated.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=9"/> | ||
<meta name="generator" content="Doxygen 1.8.11"/> | ||
<title>Notes (Jacksod.a3): Class List</title> | ||
<link href="tabs.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="jquery.js"></script> | ||
<script type="text/javascript" src="dynsections.js"></script> | ||
<link href="search/search.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="search/searchdata.js"></script> | ||
<script type="text/javascript" src="search/search.js"></script> | ||
<script type="text/javascript"> | ||
$(document).ready(function() { init_search(); }); | ||
</script> | ||
<link href="doxygen.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<div id="top"><!-- do not remove this div, it is closed by doxygen! --> | ||
<div id="titlearea"> | ||
<table cellspacing="0" cellpadding="0"> | ||
<tbody> | ||
<tr style="height: 56px;"> | ||
<td id="projectalign" style="padding-left: 0.5em;"> | ||
<div id="projectname">Notes (Jacksod.a3) | ||
</div> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<!-- end header part --> | ||
<!-- Generated by Doxygen 1.8.11 --> | ||
<script type="text/javascript"> | ||
var searchBox = new SearchBox("searchBox", "search",false,'Search'); | ||
</script> | ||
<div id="navrow1" class="tabs"> | ||
<ul class="tablist"> | ||
<li><a href="index.html"><span>Main Page</span></a></li> | ||
<li><a href="namespaces.html"><span>Namespaces</span></a></li> | ||
<li class="current"><a href="annotated.html"><span>Classes</span></a></li> | ||
<li> | ||
<div id="MSearchBox" class="MSearchBoxInactive"> | ||
<span class="left"> | ||
<img id="MSearchSelect" src="search/mag_sel.png" | ||
onmouseover="return searchBox.OnSearchSelectShow()" | ||
onmouseout="return searchBox.OnSearchSelectHide()" | ||
alt=""/> | ||
<input type="text" id="MSearchField" value="Search" accesskey="S" | ||
onfocus="searchBox.OnSearchFieldFocus(true)" | ||
onblur="searchBox.OnSearchFieldFocus(false)" | ||
onkeyup="searchBox.OnSearchFieldChange(event)"/> | ||
</span><span class="right"> | ||
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> | ||
</span> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
<div id="navrow2" class="tabs2"> | ||
<ul class="tablist"> | ||
<li class="current"><a href="annotated.html"><span>Class List</span></a></li> | ||
<li><a href="classes.html"><span>Class Index</span></a></li> | ||
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> | ||
<li><a href="functions.html"><span>Class Members</span></a></li> | ||
</ul> | ||
</div> | ||
</div><!-- top --> | ||
<!-- window showing the filter options --> | ||
<div id="MSearchSelectWindow" | ||
onmouseover="return searchBox.OnSearchSelectShow()" | ||
onmouseout="return searchBox.OnSearchSelectHide()" | ||
onkeydown="return searchBox.OnSearchSelectKey(event)"> | ||
</div> | ||
|
||
<!-- iframe showing the search results (closed by default) --> | ||
<div id="MSearchResultsWindow"> | ||
<iframe src="javascript:void(0)" frameborder="0" | ||
name="MSearchResults" id="MSearchResults"> | ||
</iframe> | ||
</div> | ||
|
||
<div class="header"> | ||
<div class="headertitle"> | ||
<div class="title">Class List</div> </div> | ||
</div><!--header--> | ||
<div class="contents"> | ||
<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory"> | ||
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span>]</div><table class="directory"> | ||
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">▼</span><span class="icona"><span class="icon">N</span></span><b>android</b></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_0_0_" class="arrow" onclick="toggleFolder('0_0_')">▼</span><span class="icona"><span class="icon">N</span></span><b>support</b></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_0_0_0_" class="arrow" onclick="toggleFolder('0_0_0_')">▼</span><span class="icona"><span class="icon">N</span></span><b>design</b></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_0_0_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classandroid_1_1support_1_1design_1_1_r.html" target="_self">R</a></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_0_0_1_" class="arrow" onclick="toggleFolder('0_0_1_')">▼</span><span class="icona"><span class="icon">N</span></span><b>v7</b></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_1_0_"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_0_0_1_0_" class="arrow" onclick="toggleFolder('0_0_1_0_')">▼</span><span class="icona"><span class="icon">N</span></span><b>appcompat</b></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_1_0_0_" class="even"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classandroid_1_1support_1_1v7_1_1appcompat_1_1_r.html" target="_self">R</a></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_1_1_"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_0_0_1_1_" class="arrow" onclick="toggleFolder('0_0_1_1_')">▼</span><span class="icona"><span class="icon">N</span></span><b>recyclerview</b></td><td class="desc"></td></tr> | ||
<tr id="row_0_0_1_1_0_" class="even"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classandroid_1_1support_1_1v7_1_1recyclerview_1_1_r.html" target="_self">R</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_1_" class="arrow" onclick="toggleFolder('1_')">▼</span><span class="icona"><span class="icon">N</span></span><b>com</b></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_1_0_" class="arrow" onclick="toggleFolder('1_0_')">▼</span><span class="icona"><span class="icon">N</span></span><b>jakedawkins</b></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_1_0_0_" class="arrow" onclick="toggleFolder('1_0_0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacecom_1_1jakedawkins_1_1notes.html" target="_self">notes</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_1_0_0_0_" class="arrow" onclick="toggleFolder('1_0_0_0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacecom_1_1jakedawkins_1_1notes_1_1test.html" target="_self">test</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_0_0_"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1test_1_1_build_config.html" target="_self">BuildConfig</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_all_notes.html" target="_self">AllNotes</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_2_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_application_test.html" target="_self">ApplicationTest</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_3_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_build_config.html" target="_self">BuildConfig</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_4_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_edit_note.html" target="_self">EditNote</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_5_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_example_unit_test.html" target="_self">ExampleUnitTest</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_6_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_info_activity.html" target="_self">InfoActivity</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_7_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_list_notes.html" target="_self">ListNotes</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_8_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_new_note.html" target="_self">NewNote</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_9_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_note.html" target="_self">Note</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_10_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_note_adapter.html" target="_self">NoteAdapter</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_11_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_r.html" target="_self">R</a></td><td class="desc"></td></tr> | ||
<tr id="row_1_0_0_12_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="classcom_1_1jakedawkins_1_1notes_1_1_search_activity.html" target="_self">SearchActivity</a></td><td class="desc"></td></tr> | ||
</table> | ||
</div><!-- directory --> | ||
</div><!-- contents --> | ||
<!-- start footer part --> | ||
<hr class="footer"/><address class="footer"><small> | ||
Generated by  <a href="http://www.doxygen.org/index.html"> | ||
<img class="footer" src="doxygen.png" alt="doxygen"/> | ||
</a> 1.8.11 | ||
</small></address> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.