Skip to content

Commit 415df65

Browse files
Merge pull request #1 from waqasm78/master
Added Documentation
2 parents 2047487 + 398785d commit 415df65

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+4368
-0
lines changed

docs/404.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
permalink: /404.html
3+
---
4+
5+
<div style="margin-top: 60px;"></div>
6+
Oops! The page has moved, or the link is broken.
7+
8+
Let us know how you landed on this page, and we will try to fix the link: <a href="mailto:[email protected]">[email protected]</a>
9+
10+
Go to <a href="http://eval-sql.net/">Home</a>

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
eval-sql.net

docs/_config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
highlighter: rouge
2+
gems:
3+
ga: "UA-55584370-8"
4+
encoding: "utf-8"
5+
defaults:
6+
-
7+
scope:
8+
path: ""
9+
values:
10+
layout: "default"
11+
-
12+
scope:
13+
path: ""
14+
type: "pages"
15+
values:
16+
last_modified_at: "2017-03-13"

docs/_data/meta.csv

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
permalink,title,meta-description,meta-keywords,h1,h2,nagivation,template
2+
index,Learn how to use Eval SQL.NET with Tutorials & Examples using C# syntax.,Learn how to use Eval SQL.NET with Tutorials & Examples using C# syntax.,,,,,full
3+
/404.html,Page Moved,Page Moved,,Page Moved,,,container-h1
4+
download,Download,Download,,Download,,no,full-h1
5+
pricing,Purchase,Purchase,,Purchase,,no,full-h1
6+
contact-us,Contact Us,Contact Us,,Contact Us,,no,full-h1
7+
tutorials,Tutorials,Tutorials,,Tutorials,,,container-h1
8+
overview,Overview,Overview,,Overview,,,
9+
requirements,Requirements,Requirements,,Requirements,,,
10+
installing,Installing,Installing,,Installing,,,
11+
upgrading,Upgrading,Upgrading,,Upgrading,,,
12+
licensing,Licensing,Licensing,,Licensing,,,
13+
arithmetic-expressions,Arithmetic Expressions,Arithmetic Expressions,,Arithmetic Expressions,,,
14+
split-text,Split Text,Split Text,,Split Text,,,
15+
regular-expressions,Reqular Expressions,Reqular Expressions,,Reqular Expressions,,,
16+
api,API,API,,API,,,
17+
eval,Eval,Eval,,Eval,,,
18+
value,Value,Value,,Value,,,
19+
options,Options,Options,,Options,,,
20+
configuration,Configuration,Configuration,,Configuration,,,
21+
articles,Articles,Articles,,Articles,,,
22+
faq,FAQ,FAQ,,FAQ,,,
23+
issue-tracker,Issue Tracker,Issue Tracker,,Issue Tracker,,,
24+
faq-general,FAQ - General,FAQ - General,,FAQ - General,,,
25+
faq-installation,FAQ - Installation,FAQ - Installation,,FAQ - Installation,,,
26+
faq-license,FAQ - License,FAQ - License,,FAQ - License,,,
27+
faq-eval-sql-net,FAQ - Eval SQL.NET,FAQ - Eval SQL.NET,,FAQ - Eval SQL.NET,,,
28+
problems,Problems,Problems,,Problems,,,
29+
sql-server-function,SQL Server Function (UDF),SQL Server Function (UDF),,SQL Server Function (UDF),,,
30+
sql-server-regex,SQL Server Regex,SQL Server Regex,,SQL Server Regex,,,
31+
sql-server-file-operation,SQL Server File Operation,SQL Server File Operation,,SQL Server File Operation,,,
32+
sql-server-eval,SQL Server Eval,SQL Server Eval,,SQL Server Eval,,,
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{% if page.path contains "tutorials.md" %}
2+
{% assign is_context_home = true; %}
3+
{% assign is_context_home_css_active = "active"; %}
4+
{% elsif page.path contains "/tutorials/" %}
5+
{% assign is_context_tutorials = true; %}
6+
{% assign is_context_tutorials_css_active = "active"; %}
7+
{% elsif page.path contains "/api/" %}
8+
{% assign is_context_api = true; %}
9+
{% assign is_context_api_css_active = "active"; %}
10+
{% elsif page.path contains "/faq/" %}
11+
{% assign is_context_faq = true; %}
12+
{% assign is_context_faq_css_active = "active"; %}
13+
{% elsif page.path contains "/problems/" %}
14+
{% assign is_context_problems = true; %}
15+
{% assign is_context_problems_css_active = "active"; %}
16+
{% endif %}
17+
{% for num in (0..site.data.meta.size) %}
18+
{% if site.data.meta[num].permalink == page.permalink %}
19+
{% assign meta_index = num %}
20+
{% endif %}
21+
{% endfor %}

docs/_includes/aside.html

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{% if page.path contains "/tutorials/" %}
2+
<div class="card card-layout-z1">
3+
<div class="card-header">
4+
<h2>Tutorials</h2>
5+
</div>
6+
<div class="card-body">
7+
8+
<h3>Getting Started</h3>
9+
<ul>
10+
<li><a href="{{ site.github.url }}/overview">Overview</a></li>
11+
<li><a href="{{ site.github.url }}/requirements">Requirements</a></li>
12+
<li><a href="{{ site.github.url }}/installing">Installing</a></li>
13+
<li><a href="{{ site.github.url }}/upgrading">Upgrading</a></li>
14+
<li><a href="{{ site.github.url }}/licensing">Licensing</a></li>
15+
</ul>
16+
17+
<h4>Tutorials</h4>
18+
<ul>
19+
<li><a href="{{ site.github.url }}/arithmetic-expressions">Arithmetic Expressions</a></li>
20+
<li><a href="{{ site.github.url }}/split-text">Split Text</a></li>
21+
<li><a href="{{ site.github.url }}/regular-expressions">Reqular Expressions</a></li>
22+
</ul>
23+
24+
</div>
25+
</div>
26+
27+
{% elsif page.path contains "/api/" %}
28+
<div class="card card-layout-z1">
29+
<div class="card-header">
30+
<h3>API</h3>
31+
</div>
32+
<div class="card-body">
33+
<ul>
34+
<li><a href="{{ site.github.url }}/eval">Eval</a></li>
35+
<li><a href="{{ site.github.url }}/value">Value</a></li>
36+
<li><a href="{{ site.github.url }}/options">Options</a></li>
37+
<li><a href="{{ site.github.url }}/configuration">Configuration</a></li>
38+
</ul>
39+
40+
</div>
41+
</div>
42+
43+
{% elsif page.path contains "/articles/" %}
44+
<div class="card card-layout-z1">
45+
46+
</div>
47+
48+
{% elsif page.path contains "/faq/" %}
49+
<div class="card card-layout-z1">
50+
<div class="card-header">
51+
<h3>FAQ</h3>
52+
</div>
53+
<div class="card-body">
54+
55+
<h4>Getting Help</h4>
56+
<ul>
57+
<li><a href="{{ site.github.url }}/contact-us">Contact Us</a></li>
58+
<li><a href="{{ site.github.url }}/issue-tracker">Issue Tracker</a></li>
59+
</ul>
60+
61+
<h4>FAQ</h4>
62+
<ul>
63+
<li><a href="{{ site.github.url }}/faq-general">General</a></li>
64+
<li><a href="{{ site.github.url }}/faq-installation">Installation</a></li>
65+
<li><a href="{{ site.github.url }}/faq-license">License</a></li>
66+
<li><a href="{{ site.github.url }}/faq-eval-sql-net">Eval SQL.NET</a></li>
67+
</ul>
68+
69+
</div>
70+
</div>
71+
72+
{% elsif page.path contains "/problems/" %}
73+
<div class="card card-layout-z1">
74+
<div class="card-header">
75+
<h3>Problems</h3>
76+
</div>
77+
<div class="card-body">
78+
<ul>
79+
<li><a href="{{ site.github.url }}/sql-server-eval">SQL Server Eval</a></li>
80+
<li><a href="{{ site.github.url }}/sql-server-function">SQL Server Function (UDF)</a></li>
81+
<li><a href="{{ site.github.url }}/sql-server-file-operation">SQL Server File Operation</a></li>
82+
<li><a href="{{ site.github.url }}/sql-server-regex">SQL Server Regex</a></li>
83+
</ul>
84+
</div>
85+
</div>
86+
87+
{% endif %}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div class="header-angle">
2+
<div class="top-triangle wow slideInRight"></div>
3+
<div class="header-angle-inner">
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
</div>
2+
<div class="bottom-triangle-outer">
3+
<div class="bottom-triangle wow slideInLeft"></div>
4+
</div>
5+
</div>

docs/_includes/site-footer.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<footer class="site-footer">
2+
<div class="fixed-bottom">
3+
<div class="container">
4+
<div class="row justify-content-between">
5+
<div class="col-6 footer-site-copyright">
6+
Copyright &copy; 2014 - 2017
7+
<a href="http://www.zzzprojects.com/">ZZZ Projects Inc.</a>
8+
All rights reserved
9+
</div>
10+
<div class="col-6 footer-site-social">
11+
<div class="float-right">
12+
<a href="https://www.facebook.com/zzzprojects" target="_blank"><i class="fa fa-facebook"></i></a>
13+
<a href="https://twitter.com/zzzprojects" target="_blank"><i class="fa fa-twitter"></i></a>
14+
<a href="https://plus.google.com/+Zzzprojects_NetSQL" target="_blank"><i class="fa fa-google-plus"></i></a>
15+
<a href="http://zzzprojects.us9.list-manage.com/subscribe?u=cecbc4775cf67bf1ff82018af&amp;id=4765ffa5f8" target="_blank"><i class="fa fa-newspaper-o"></i></a>
16+
</div>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
</footer>

0 commit comments

Comments
 (0)