internal name: richdocuments, name: Collabora Online, version: 0.9.0

pull/1/head
Andras Timar 8 years ago
parent f0f3e42c0e
commit b323d9512d

@ -1,9 +1,9 @@
VERSION=1.0.7 VERSION=0.9.0
.PHONY: dist .PHONY: dist
dist: owncloud-ccs.spec dist: owncloud-collabora-online.spec
rm -rf owncloud-ccs-$(VERSION) rm -rf owncloud-collabora-online-$(VERSION)
mkdir owncloud-ccs-$(VERSION) mkdir owncloud-collabora-online-$(VERSION)
tar cf - *.php \ tar cf - *.php \
appinfo \ appinfo \
assets \ assets \
@ -17,10 +17,10 @@ dist: owncloud-ccs.spec
l10n \ l10n \
lib \ lib \
templates \ templates \
| ( cd owncloud-ccs-$(VERSION) && tar xf - ) | ( cd owncloud-collabora-online-$(VERSION) && tar xf - )
tar cfz owncloud-ccs-$(VERSION).tar.gz owncloud-ccs-$(VERSION) tar cfz owncloud-collabora-online-$(VERSION).tar.gz owncloud-collabora-online-$(VERSION)
rm -rf owncloud-ccs-$(VERSION) rm -rf owncloud-collabora-online-$(VERSION)
owncloud-ccs.spec: owncloud-ccs.spec.in Makefile owncloud-collabora-online.spec: owncloud-collabora-online.spec.in Makefile
sed -e 's/@PACKAGE_VERSION@/$(VERSION)/g' <owncloud-ccs.spec.in >owncloud-ccs.spec sed -e 's/@PACKAGE_VERSION@/$(VERSION)/g' <owncloud-collabora-online.spec.in >owncloud-collabora-online.spec

@ -37,7 +37,7 @@ $navigationEntry = function () use ($c) {
'order' => 2, 'order' => 2,
'href' => $c->query('ServerContainer')->getURLGenerator()->linkToRoute('richdocuments.document.index'), 'href' => $c->query('ServerContainer')->getURLGenerator()->linkToRoute('richdocuments.document.index'),
'icon' => $c->query('ServerContainer')->getURLGenerator()->imagePath('richdocuments', 'documents.svg'), 'icon' => $c->query('ServerContainer')->getURLGenerator()->imagePath('richdocuments', 'documents.svg'),
'name' => $c->query('L10N')->t('Collabora Online Development Edition') 'name' => $c->query('L10N')->t('Collabora Online')
]; ];
}; };
$c->getServer()->getNavigationManager()->add($navigationEntry); $c->getServer()->getNavigationManager()->add($navigationEntry);

@ -1,13 +1,13 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<info> <info>
<id>richdocuments</id> <id>richdocuments</id>
<name>Collabora Online Development Edition</name> <name>Collabora Online</name>
<description>An ownCloud app to work with office documents</description> <description>An ownCloud app to work with office documents</description>
<licence>AGPL</licence> <licence>AGPL</licence>
<version>0.13.0</version> <version>0.9.0</version>
<author>Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk</author> <author>Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk</author>
<bugs>https://www.collaboraoffice.com/</bugs> <bugs>https://github.com/owncloud/richdocuments/issues</bugs>
<repository type="git">git://gerrit.libreoffice.org/online.git</repository> <repository type="git">https://github.com/owncloud/richdocuments.git</repository>
<category>productivity</category> <category>productivity</category>
<dependencies> <dependencies>
<owncloud min-version="8.1" max-version="9.0" /> <owncloud min-version="8.1" max-version="9.0" />

@ -1,8 +1,8 @@
<?php <?php
script('richdocuments', 'admin'); script('richdocuments', 'admin');
?> ?>
<div class="section" id="documents"> <div class="section" id="richdocuments">
<h2><?php p($l->t('Documents')) ?></h2> <h2><?php p($l->t('Collabora Online')) ?></h2>
<div id="wopi_client"> <div id="wopi_client">
<input type="text" name="wopi_url" id="wopi_url" value="<?php p($_['wopi_url'])?>" style="width:250px;"> <input type="text" name="wopi_url" id="wopi_url" value="<?php p($_['wopi_url'])?>" style="width:250px;">
<br /><em><?php p($l->t('WOPI Client')) ?></em> <br /><em><?php p($l->t('WOPI Client')) ?></em>

@ -1,8 +1,8 @@
<?php <?php
script('richdocuments', 'personal'); script('richdocuments', 'personal');
?> ?>
<div class="section" id="documents-personal"> <div class="section" id="richdocuments-personal">
<h2><?php p($l->t('Documents')); ?></h2> <h2><?php p($l->t('Collabora Online')); ?></h2>
<div> <div>
<label for="documents-default-path"><?php p($l->t('Save new documents to')) ?></label> <label for="documents-default-path"><?php p($l->t('Save new documents to')) ?></label>
<input type="text" id="documents-default-path" value="<?php p($_['save_path']) ?>" /><span class="msg"></span> <input type="text" id="documents-default-path" value="<?php p($_['save_path']) ?>" /><span class="msg"></span>

@ -5,7 +5,7 @@
timeoutForMediumTests="900" timeoutForMediumTests="900"
timeoutForLargeTests="900" timeoutForLargeTests="900"
> >
<testsuite name='ownCloud - Documents App Tests'> <testsuite name='ownCloud - Richdocuments App Tests'>
<directory suffix='test.php'>.</directory> <directory suffix='test.php'>.</directory>
</testsuite> </testsuite>
<!-- filters for code coverage --> <!-- filters for code coverage -->
@ -22,4 +22,4 @@
<!-- and this is where your report will be written --> <!-- and this is where your report will be written -->
<log type="coverage-clover" target="./clover.xml"/> <log type="coverage-clover" target="./clover.xml"/>
</logging> </logging>
</phpunit> </phpunit>

Loading…
Cancel
Save