Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
87ebd670
Commit
87ebd670
authored
13 years ago
by
Robin Appelman
Browse files
Options
Downloads
Plain Diff
Merge branch 'refactoring' of
git://anongit.kde.org/owncloud
into refactoring
parents
a20ace7d
3e28883a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
admin/css/apps.css
+22
-0
22 additions, 0 deletions
admin/css/apps.css
admin/templates/app.php
+27
-0
27 additions, 0 deletions
admin/templates/app.php
with
49 additions
and
0 deletions
admin/css/apps.css
+
22
−
0
View file @
87ebd670
...
...
@@ -40,3 +40,25 @@ table td.name a
font-size
:
0.8em
;
}
.description
{
padding
:
6px
;
text-decoration
:
none
;
color
:
#666666
;
font-size
:
0.9em
;
}
.install
a
{
padding
:
0.2em
0.5em
;
border
:
1px
solid
#ddd
;
-moz-border-radius
:
15px
;
-webkit-border-radius
:
15px
;
border-radius
:
15px
;
text-decoration
:
none
;
font-size
:
1.5em
;
color
:
#666666
;
background-color
:
#F0F0F0
;
}
.install
a
:hover
{
background-color
:
#DDDDDD
;
}
This diff is collapsed.
Click to expand it.
admin/templates/app.php
0 → 100644
+
27
−
0
View file @
87ebd670
<?php
/*
* Template for Apps
*/
$app
=
$_
[
'app'
];
?>
<h1>
<?php
echo
$app
[
"name"
];
?>
</h1>
<?php
echo
(
'<span class="type">'
.
$app
[
'typename'
]
.
'</span>'
);
?>
<br
/>
<span
class=
"date"
>
<?php
echo
OC_UTIL
::
formatdate
(
$app
[
"changed"
]);
?>
</span><br
/>
<table
cellspacing=
"6"
border=
"0"
width=
"100%"
>
<tr>
<td
width=
"1"
valign=
"top"
>
<?php
if
(
$app
[
"preview1"
]
<>
""
)
{
echo
(
'<img class="preview" border="0" src="'
.
$app
[
"preview1"
]
.
'" /><br />'
);
}
?>
<?php
if
(
$app
[
"preview2"
]
<>
""
)
{
echo
(
'<img class="preview" border="0" src="'
.
$app
[
"preview2"
]
.
'" /><br />'
);
}
?>
<?php
if
(
$app
[
"preview3"
]
<>
""
)
{
echo
(
'<img class="preview" border="0" src="'
.
$app
[
"preview3"
]
.
'" /><br />'
);
}
?>
</td>
<td
class=
"description"
valign=
"top"
>
<?php
echo
$app
[
"description"
];
?>
<br
/>
<?php
echo
(
'<a class="description" href="'
.
$app
[
"detailpage"
]
.
'">read more</a><br />'
);
?>
</td>
<td
width=
"1"
valign=
"top"
class=
"install"
><a
href=
""
>
INSTALL
</a></td>
</tr>
</table>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment