diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | changeset_r322.diff | 33 | ||||
| -rw-r--r-- | changeset_r323.diff | 107 | ||||
| -rw-r--r-- | glpi-pdf-dev.spec | 165 | ||||
| -rw-r--r-- | glpi-pdf.spec | 147 | 
5 files changed, 456 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e65467 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile + diff --git a/changeset_r322.diff b/changeset_r322.diff new file mode 100644 index 0000000..f8ff15a --- /dev/null +++ b/changeset_r322.diff @@ -0,0 +1,33 @@ +Index: trunk/inc/common.class.php +=================================================================== +--- trunk/inc/common.class.php	(revision 321) ++++ trunk/inc/common.class.php	(revision 322) +@@ -118,7 +118,7 @@ +    **/ +    function getTabNameForItem(CommonGLPI $item, $withtemplate=0) { +       global $LANG; +-       ++ +       if(!isset($withtemplate) || empty($withtemplate)) { +          return $LANG['plugin_pdf']['title'][1]; +       } +@@ -310,6 +310,7 @@ +  +                if (!is_integer($itemtype) +                    && $itemtype != 'empty' ++                   && method_exists($itemtype, "displayTabContentForPdf") +                    && ($obj = getItemForItemtype($itemtype))) { +                   if ($obj->displayTabContentForPdf($this->pdf, $this->obj, $tabnum)) { +                      continue; +Index: trunk/inc/computer.class.php +=================================================================== +--- trunk/inc/computer.class.php	(revision 321) ++++ trunk/inc/computer.class.php	(revision 322) +@@ -44,6 +44,7 @@ +  +       $onglets = parent::defineAllTabs($options); +       unset($onglets['OcsLink$1']); // TODO add method to print OCS ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems +       return $onglets; +    } +  diff --git a/changeset_r323.diff b/changeset_r323.diff new file mode 100644 index 0000000..645b266 --- /dev/null +++ b/changeset_r323.diff @@ -0,0 +1,107 @@ +Index: trunk/inc/monitor.class.php +=================================================================== +--- trunk/inc/monitor.class.php	(revision 322) ++++ trunk/inc/monitor.class.php	(revision 323) +@@ -41,6 +41,14 @@ +  +  +  ++   function defineAllTabs($options=array()) { ++ ++      $onglets = parent::defineAllTabs($options); ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems ++      return $onglets; ++   } ++ ++ +    static function pdfMain(PluginPdfSimplePDF $pdf, Monitor $item) { +       global $LANG; +  +Index: trunk/inc/software.class.php +=================================================================== +--- trunk/inc/software.class.php	(revision 322) ++++ trunk/inc/software.class.php	(revision 323) +@@ -104,6 +104,7 @@ +  +       $onglets = parent::defineAllTabs($options); +       unset($onglets['Software$1']); // Merge tab can't be exported ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems +       return $onglets; +    } +  +Index: trunk/inc/peripheral.class.php +=================================================================== +--- trunk/inc/peripheral.class.php	(revision 322) ++++ trunk/inc/peripheral.class.php	(revision 323) +@@ -40,7 +40,14 @@ +    } +  +  ++   function defineAllTabs($options=array()) { +  ++      $onglets = parent::defineAllTabs($options); ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems ++      return $onglets; ++   } ++ ++ +    static function pdfMain(PluginPdfSimplePDF $pdf, Peripheral $item) { +       global $LANG; +  +Index: trunk/inc/networkequipment.class.php +=================================================================== +--- trunk/inc/networkequipment.class.php	(revision 322) ++++ trunk/inc/networkequipment.class.php	(revision 323) +@@ -40,6 +40,14 @@ +    } +  +  ++   function defineAllTabs($options=array()) { ++ ++      $onglets = parent::defineAllTabs($options); ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems ++      return $onglets; ++   } ++ ++ +    static function pdfMain(PluginPdfSimplePDF $pdf, NetworkEquipment $item) { +       global $LANG; +  +Index: trunk/inc/phone.class.php +=================================================================== +--- trunk/inc/phone.class.php	(revision 322) ++++ trunk/inc/phone.class.php	(revision 323) +@@ -40,7 +40,14 @@ +    } +  +  ++   function defineAllTabs($options=array()) { +  ++      $onglets = parent::defineAllTabs($options); ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems ++      return $onglets; ++   } ++ ++ +    static function pdfMain(PluginPdfSimplePDF $pdf, Phone $item) { +       global $LANG; +  +Index: trunk/inc/printer.class.php +=================================================================== +--- trunk/inc/printer.class.php	(revision 322) ++++ trunk/inc/printer.class.php	(revision 323) +@@ -40,6 +40,14 @@ +    } +  +  ++   function defineAllTabs($options=array()) { ++ ++      $onglets = parent::defineAllTabs($options); ++      unset($onglets['Item_Problem$1']); // TODO add method to print linked Problems ++      return $onglets; ++   } ++ ++ +    static function pdfMain(PluginPdfSimplePDF $pdf, Printer $printer) { +       global $LANG; +  diff --git a/glpi-pdf-dev.spec b/glpi-pdf-dev.spec new file mode 100644 index 0000000..8063c66 --- /dev/null +++ b/glpi-pdf-dev.spec @@ -0,0 +1,165 @@ +%global pluginname   pdf +#global svnrelease   315 + +Name:           glpi-pdf +Version:        0.83 +%if 0%{?svnrelease} +Release:        0.1.svn%{svnrelease}%{?dist} +%else +Release:        2%{?dist} +%endif +Summary:        GLPI Plugin to print PDF of equipment +Summary(fr):    Extension GLPI pour créer des PDF des matériels + +Group:          Applications/Internet +License:        GPLv2+ +URL:            https://forge.indepnet.net/projects/pdf + +%if 0%{?svnrelease} +# svn export -r 315 https://forge.indepnet.net/svn/pdf/trunk pdf +# tar czf glpi-pdf-0.83-315.tar.gz pdf +Source0:        glpi-pdf-0.83-%{svnrelease}.tar.gz +%else +Source0:        https://forge.indepnet.net/attachments/download/1095/glpi-pdf-0.83.tar.gz +%endif + +# https://forge.indepnet.net/issues/3455 +Patch0:         changeset_r322.diff +Patch1:         changeset_r323.diff + +BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch:      noarch + +Requires:       glpi >= 0.83 +Requires:       glpi <  0.84 + + +%description +This GLPI plugin enables you to print, in pdf format, the information  +sheet of an equipment or a software of the inventory.  + + +%description -l fr +Cette extension GLPI vous permet de créer un PDF contenant toutes les +informations sur un équipement ou un logiciel de l'inventaire. + + +%prep +%setup -q -c + +# dos2unix to avoid rpmlint warnings +mv %{pluginname}/docs docs +for doc in docs/* ; do +    sed -i -e 's/\r//' $doc +done + +cd %{pluginname} +%patch0 -p1 +%patch1 -p1 + + +%build +# empty build + +%install +rm -rf %{buildroot}  + +mkdir -p %{buildroot}/%{_datadir}/glpi/plugins +cp -ar %{pluginname} %{buildroot}/%{_datadir}/glpi/plugins/%{pluginname} + +for i in %{buildroot}/%{_datadir}/glpi/plugins/%{pluginname}/locales/* +do +  lang=$(basename $i) +  echo "%lang(${lang:0:2}) %{_datadir}/glpi/plugins/%{pluginname}/locales/${lang}" +done | tee %{name}.lang + + +%clean +rm -rf %{buildroot}  + + +%files -f %{name}.lang +%defattr(-,root,root,-) +%doc docs/* %{pluginname}/LICENSE +%dir %{_datadir}/glpi/plugins/%{pluginname} +%dir %{_datadir}/glpi/plugins/%{pluginname}/locales +%{_datadir}/glpi/plugins/%{pluginname}/*.php +%{_datadir}/glpi/plugins/%{pluginname}/fonts +%{_datadir}/glpi/plugins/%{pluginname}/front +%{_datadir}/glpi/plugins/%{pluginname}/inc +%{_datadir}/glpi/plugins/%{pluginname}/pics +# Keep here as required from interface +%{_datadir}/glpi/plugins/%{pluginname}/LICENSE + + +%changelog +* Thu Apr 19 2012 Remi Collet <Fedora@FamilleCollet.com> - 0.83-2 +- add patch for 0.83.1 (Problem tab on various object) + +* Fri Apr 06 2012 Remi Collet <Fedora@FamilleCollet.com> - 0.83-1 +- version 0.83 +  https://forge.indepnet.net/projects/pdf/versions/615 + +* Sun Feb 26 2012 Remi Collet <Fedora@FamilleCollet.com> - 0.83-0.1.svn315 +- update to 0.83 for glpi 0.83 RC (svn snapshot) + +* Tue Sep 20 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.80.3-1 +- version 0.80.3 +  https://forge.indepnet.net/projects/pdf/versions/617 + +* Tue Jul 19 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.80-1 +- update to 0.80 (version have change from 0.8.0) + +* Tue Jun 28 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.8.0-0.1.svn259 +- update to 0.8.0 for glpi 0.80 RC (svn snapshot) + +* Sat Jun 11 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.7.2-1 +- version 0.7.2 +  https://forge.indepnet.net/projects/pdf/versions/550 + +* Sat Jan 22 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.7.1-1 +- version 0.7.1 + +* Tue Oct 12 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-1 +- version 0.7.0 and GLPI 0.78 released + +* Sat Sep 18 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn194 +- new snapshot + +* Tue Aug 10 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn190 +- new snapshot + +* Thu Jul 08 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn189 +- new snapshot + +* Tue Jun 15 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn188 +- update to 0.7.0 for glpi 0.78 RC (svn snapshot) + +* Fri May 21 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.6.1-2 +- spec cleanup + +* Tue Aug 18 2009 Remi Collet <Fedora@FamilleCollet.com> - 0.6.1-1 +- update to 0.6.1 finale for glpi 0.72 + +* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Jul 12 2008 Remi Collet <Fedora@FamilleCollet.com> - 0.5-1 +- update to 0.5 finale for glpi 0.71 + +* Thu Dec 27 2007 Remi Collet <Fedora@FamilleCollet.com> - 0.4-1 +- update to 0.4 finale +- Initial RPM for Fedora review + +* Sun Nov 11 2007 Remi Collet <RPMS@FamilleCollet.com> - 0.4-0.20071111 +- update from SVN + +* Sat Sep 23 2007 Remi Collet <RPMS@FamilleCollet.com> - 0.3-0.20070922 +- new SVN snapshot + +* Mon Aug 13 2007 Remi Collet <RPMS@FamilleCollet.com> - 0.2-0.20070813 +- Initial RPM + diff --git a/glpi-pdf.spec b/glpi-pdf.spec new file mode 100644 index 0000000..8f3825c --- /dev/null +++ b/glpi-pdf.spec @@ -0,0 +1,147 @@ +%global pluginname   pdf +#global svnrelease   259 + +Name:           glpi-pdf +Version:        0.80.3 +%if 0%{?svnrelease} +Release:        0.1.svn%{svnrelease}%{?dist} +%else +Release:        1%{?dist} +%endif +Summary:        GLPI Plugin to print PDF of equipment +Summary(fr):    Extension GLPI pour créer des PDF des matériels + +Group:          Applications/Internet +License:        GPLv2+ +URL:            https://forge.indepnet.net/projects/pdf + +%if 0%{?svnrelease} +# svn export -r 259 https://forge.indepnet.net/svn/pdf/trunk pdf +# tar czf glpi-pdf-0.8.0-259.tar.gz pdf +Source0:        glpi-pdf-0.8.0-%{svnrelease}.tar.gz +%else +Source0:        https://forge.indepnet.net/attachments/download/966/glpi-pdf-0.80.3.tar.gz +%endif + +BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch:      noarch + +Requires:       glpi >= 0.80.3 +Requires:       glpi <  0.81 + + +%description +This GLPI plugin enables you to print, in pdf format, the information  +sheet of an equipment or a software of the inventory.  + + +%description -l fr +Cette extension GLPI vous permet de créer un PDF contenant toutes les +informations sur un équipement ou un logiciel de l'inventaire. + + +%prep +%setup -q -c + +# dos2unix to avoid rpmlint warnings +mv %{pluginname}/docs docs +for doc in docs/* ; do +    sed -i -e 's/\r//' $doc +done + +cd %{pluginname} + + +%build +# empty build + +%install +rm -rf %{buildroot}  + +mkdir -p %{buildroot}/%{_datadir}/glpi/plugins +cp -ar %{pluginname} %{buildroot}/%{_datadir}/glpi/plugins/%{pluginname} + +for i in %{buildroot}/%{_datadir}/glpi/plugins/%{pluginname}/locales/* +do +  lang=$(basename $i) +  echo "%lang(${lang:0:2}) %{_datadir}/glpi/plugins/%{pluginname}/locales/${lang}" +done | tee %{name}.lang + + +%clean +rm -rf %{buildroot}  + + +%files -f %{name}.lang +%defattr(-,root,root,-) +%doc docs/* +%dir %{_datadir}/glpi/plugins/%{pluginname} +%dir %{_datadir}/glpi/plugins/%{pluginname}/locales +%{_datadir}/glpi/plugins/%{pluginname}/*.php +%{_datadir}/glpi/plugins/%{pluginname}/fonts +%{_datadir}/glpi/plugins/%{pluginname}/front +%{_datadir}/glpi/plugins/%{pluginname}/inc +%{_datadir}/glpi/plugins/%{pluginname}/pics + + +%changelog +* Tue Sep 20 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.80.3-1 +- version 0.80.3 +  https://forge.indepnet.net/projects/pdf/versions/617 + +* Tue Jul 19 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.80-1 +- update to 0.80 (version have change from 0.8.0) + +* Tue Jun 28 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.8.0-0.1.svn259 +- update to 0.8.0 for glpi 0.80 RC (svn snapshot) + +* Sat Jun 11 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.7.2-1 +- version 0.7.2 +  https://forge.indepnet.net/projects/pdf/versions/550 + +* Sat Jan 22 2011 Remi Collet <Fedora@FamilleCollet.com> - 0.7.1-1 +- version 0.7.1 + +* Tue Oct 12 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-1 +- version 0.7.0 and GLPI 0.78 released + +* Sat Sep 18 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn194 +- new snapshot + +* Tue Aug 10 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn190 +- new snapshot + +* Thu Jul 08 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn189 +- new snapshot + +* Tue Jun 15 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.7.0-0.1.svn188 +- update to 0.7.0 for glpi 0.78 RC (svn snapshot) + +* Fri May 21 2010 Remi Collet <Fedora@FamilleCollet.com> - 0.6.1-2 +- spec cleanup + +* Tue Aug 18 2009 Remi Collet <Fedora@FamilleCollet.com> - 0.6.1-1 +- update to 0.6.1 finale for glpi 0.72 + +* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Jul 12 2008 Remi Collet <Fedora@FamilleCollet.com> - 0.5-1 +- update to 0.5 finale for glpi 0.71 + +* Thu Dec 27 2007 Remi Collet <Fedora@FamilleCollet.com> - 0.4-1 +- update to 0.4 finale +- Initial RPM for Fedora review + +* Sun Nov 11 2007 Remi Collet <RPMS@FamilleCollet.com> - 0.4-0.20071111 +- update from SVN + +* Sat Sep 23 2007 Remi Collet <RPMS@FamilleCollet.com> - 0.3-0.20070922 +- new SVN snapshot + +* Mon Aug 13 2007 Remi Collet <RPMS@FamilleCollet.com> - 0.2-0.20070813 +- Initial RPM +  | 
