-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev_notes.html
73 lines (71 loc) · 2.53 KB
/
dev_notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Dataset Project</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://caltechlibrary.github.io/css/site.css">
</head>
<body>
<header>
<a href="http://library.caltech.edu" title="link to Caltech Library Homepage"><img src="https://caltechlibrary.github.io/assets/liblogo.gif" alt="Caltech Library logo"></a>
</header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="index.html">README</a></li>
<li><a href="LICENSE">LICENSE</a></li>
<li><a href="INSTALL.html">INSTALL</a></li>
<li><a href="user_manual.html">User Manual</a></li>
<li><a href="about.html">About</a></li>
<li><a href="search.html">Search</a></li>
<li><a href="https://github.com/caltechlibrary/models">GitHub</a></li>
</ul>
</nav>
<section>
<h1 id="development-notes">Development Notes</h1>
<h2 id="naming-things">Naming things</h2>
<dl>
<dt>Check</dt>
<dd>
This refers to “checking” a model to see if it makes sense as a model.
An example would be a model read in as hand coded YAML.
</dd>
<dt>Register</dt>
<dd>
This refers to associating a render method with the model
</dd>
<dt>Render</dt>
<dd>
This takes the model structure, passes it to the registered method to
generate a model representation. An example representation of the model
might be an SQL statement or as an HTML form. It is important to note
that this renders the model as opposed to the data held by the model.
</dd>
</dl>
<h2 id="named-ideas-to-concider-implementation">Named Ideas to concider
implementation</h2>
<dl>
<dt>Define</dt>
<dd>
This refers to associating a type definition available to elements of a
model. An example would be the definition of textarea, text, or date
type making them available to be model. This is the method you’d use to
define specialized types like ORCID, ROR, ISNI, etc.
</dd>
<dt>Validate</dt>
<dd>
This refers to the confirming correctness of the data the model is
holding. This is the only method that will operates on the data the
model is holding. Calling Validate on the model will then loop through
all the elements in the model invoking their Validate method.
</dd>
</dl>
</section>
<footer>
<span>© 2024 <a href="https://www.library.caltech.edu/copyright">Caltech Library</a></span>
<address>1200 E California Blvd, Mail Code 1-32, Pasadena, CA 91125-3200</address>
<span><a href="mailto:[email protected]">Email Us</a></span>
<span>Phone: <a href="tel:+1-626-395-3405">(626)395-3405</a></span>
</footer>
</body>
</html>