-
Notifications
You must be signed in to change notification settings - Fork 4
/
about.html
executable file
·145 lines (100 loc) · 5.29 KB
/
about.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DBIx::Class — An ORM for Perl that is extensible and flexible</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,600' rel='stylesheet' type='text/css'>
<link href="assets/css/application.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<![endif]-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/script.js"></script>
<link rel="shortcut icon" href="assets/ico/favicon.png">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17806002-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<a href="https://github.com/dbsrgits/DBIx-Class"><img class="forkme" src="assets/img/forkme.png" alt="Fork me on GitHub"></a>
<div class="page-wrapper">
<nav class="navbar navbar-custom navbar-static-top" id="main-menu">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">The team</a></li>
<li><a href="download.html">Downloads</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="documentation.html">Documentation</a></li>
</ul>
<div class="social pull-right">
<a href="https://twitter.com/dbix_class" class="twitter" title="Find us on Twitter"></a>
</div>
</div>
</div>
</div>
</nav>
<div class="content">
<section id="about">
<div class="container">
<ul>
<li>Write complex SQL queries in Perl code</li>
<li><a href="https://metacpan.org/module/DBIx::Class::Manual::Intro#Using-DBIx::Class::Schema::Loader" title="Generate classes">Generate classes</a> from your database structure</li>
<li>Write your classes <a href="https://metacpan.org/module/DBIx::Class::Manual::Intro#Setting-it-up-manually" title="Setting it up manually">manually</a></li>
<li>Get a <a href="https://metacpan.org/module/DBIx::Class::InflateColumn::DateTime" title="DateTime object">DateTime object</a> when you are dealing with a time based column</li>
<li>Get an <a href="https://metacpan.org/module/Catalyst::Plugin::AutoCRUD" title="AJAX Interface">Ajax interface</a> to your database - automatically</li>
</ul>
<div class="more-container">
<div class="more">
<div class="block-one">
<h1>Getting started</h1>
<p>If you would like to read more about DBIC we reccomend you start with the <a href="documentation.html" title="Documentation">documentation</a> and join <a href="support.html" title="Community">the community</a>.</p>
</div>
<div class="block-two">
</div>
<div class="block-three">
<h3>Supporting <span>projects</span></h3>
<hr/>
<p>DBIC is an <a href="http://www.enlightenedperl.org/project.html">Enlightened Perl Organisation supported project</a>.</p>
</div>
</div>
<span class="monkey"><span></span></span>
</div>
<div class="info">
<h3>WHAT IS <strong style="text-transform: none">DBIx::Class</strong> ?</h3>
<hr/>
<p>DBIx::Class (also known as Dbic) is an <strong>extensible</strong> and <strong>flexible</strong> Object/Relational Mapper (ORM) written in Perl. The advantage of using an ORM is to speed development, abstract data and make it
pole the database. This allows you to represent your business rules through object orientated design and generate boilerplate code for CRUD operations.</p>
</div>
</div>
</section>
</div>
</div>
<footer>
<div class="container">
<p>Design: <a href="www.evozon.com">Evozon 2013</a> -- <a href="http://www.shadow.cat">Shadowcat 2014</a> -- ©Dbic Team 2014</p>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>