-
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
Showing
13 changed files
with
659 additions
and
0 deletions.
There are no files selected for viewing
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,4 @@ | ||
<p align="center"> | ||
<h1>Family Tree app for nextcloud</h1> | ||
<h3>A Nextcloud app that lets you design freeform family trees.</h3> | ||
</p> |
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,28 @@ | ||
<?xml version="1.0"?> | ||
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> | ||
<id>familytree</id> | ||
<name>Family Tree</name> | ||
<summary>Family Tree</summary> | ||
<description><![CDATA[ | ||
# familytree | ||
A Nextcloud app that lets you build your own family tree. | ||
]]></description> | ||
<version>1.2.1</version> | ||
<licence>agpl</licence> | ||
<author mail="[email protected]" homepage="https://derben.ca">DerBen</author> | ||
<namespace>familytree</namespace> | ||
<category>tools</category> | ||
<website>https://github.com/derbenx/nextcloud-familytree</website> | ||
<bugs>https://github.com/derbenx/nextcloud-familytree/issues</bugs> | ||
<screenshot>https://raw.githubusercontent.com/derbenx/nextcloud-familytree/familytree.png</screenshot> | ||
<dependencies> | ||
<nextcloud min-version="25" max-version="29"/> | ||
</dependencies> | ||
<navigations> | ||
<navigation> | ||
<name>Family Tree</name> | ||
<route>familytree.page.index</route> | ||
</navigation> | ||
</navigations> | ||
</info> |
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,12 @@ | ||
<?php | ||
/** | ||
* Create your routes in here. The name is the lowercase name of the controller | ||
* without the controller part, the stuff after the hash is the method. | ||
* The controller class has to be registered in the application.php file since | ||
* it's instantiated in there | ||
*/ | ||
return [ | ||
'routes' => [ | ||
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'], | ||
] | ||
]; |
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,11 @@ | ||
#can{top:0px;left:0px;position:fixed;} | ||
table,.inp { width:95%; } | ||
tr,td,input,#r,#s { min-height:25px !important; height:25px !important; } | ||
#addPer,#updPer,#delPer,#cent,#nt,#st,#lt,#fu,#sh { padding:0px 7px 0px 7px !important; font-size: 13px !important; min-height:23px !important; height:23px !important; } | ||
#bg {min-height:23px !important; height:23px !important;} | ||
td { border:1px dotted green; color:black; text-align:center; } | ||
tr:hover {background:none !important; } | ||
#ln,#hp { width:49%; height:150px; } | ||
#inp { z-index:99;position:relative; background:grey; color:black; } | ||
#sh,#fu { z-index:99;position:relative; } | ||
|
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.
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.