├── AUTHORS ├── CHANGES ├── README ├── VERSION ├── docs ├── Makefile ├── en │ ├── Makefile │ ├── _ext │ │ └── djangodocs.py │ ├── _static │ │ ├── sphinxdoc.css │ │ └── user_features │ │ │ ├── css │ │ │ └── feature.css │ │ │ └── img │ │ │ ├── Capture_openPLM_navigate2.png │ │ │ ├── OpenPLM_study_doc_addpart.png │ │ │ ├── OpenPLM_study_doc_parts.png │ │ │ ├── OpenPLM_study_part_add.png │ │ │ ├── OpenPLM_study_part_addpart.png │ │ │ ├── OpenPLM_study_part_doc.png │ │ │ └── focus.png │ ├── _templates │ │ ├── lang.html │ │ └── list_lang.html │ ├── admin │ │ ├── apache │ │ │ ├── simple_2.0.conf │ │ │ ├── simple_2.0b.conf │ │ │ ├── ssl_2.0.conf │ │ │ └── ssl_2.0b.conf │ │ ├── applications.rst │ │ ├── applications │ │ │ ├── badges │ │ │ │ └── index.rst │ │ │ ├── calendrier │ │ │ │ └── index.rst │ │ │ ├── document3D │ │ │ │ └── index.rst │ │ │ ├── ecr │ │ │ │ └── index.rst │ │ │ ├── gdoc │ │ │ │ ├── images │ │ │ │ │ ├── gapi_1.png │ │ │ │ │ ├── gapi_2.png │ │ │ │ │ ├── gapi_3.png │ │ │ │ │ ├── gapi_4.png │ │ │ │ │ └── gapi_5.png │ │ │ │ └── index.rst │ │ │ ├── oerp │ │ │ │ └── index.rst │ │ │ ├── pdfgen │ │ │ │ └── index.rst │ │ │ ├── richpage │ │ │ │ └── index.rst │ │ │ ├── subversion │ │ │ │ └── index.rst │ │ │ └── webdav │ │ │ │ └── index.rst │ │ ├── commands.rst │ │ ├── files.rst │ │ ├── how-tos.rst │ │ ├── ht_1_install_server.rst │ │ ├── ht_2_install_server.rst │ │ ├── ht_3_upgrade.rst │ │ ├── images │ │ │ ├── admin_login.png │ │ │ ├── admin_user.png │ │ │ ├── admin_userprofile.png │ │ │ ├── company_login.png │ │ │ ├── openplm_connexion.png │ │ │ └── sponsor.png │ │ ├── index.rst │ │ ├── lifecycle.rst │ │ ├── publication.rst │ │ ├── references.rst │ │ ├── richtext.rst │ │ ├── settings.rst │ │ └── upgrade │ │ │ ├── upgrade-2.0.rst │ │ │ └── upgrade-2.1.rst │ ├── changes.rst │ ├── conf.py │ ├── devel │ │ ├── applications.rst │ │ ├── applications │ │ │ ├── badges │ │ │ │ ├── autobiographer.py │ │ │ │ ├── index.rst │ │ │ │ ├── utils.rst │ │ │ │ └── views.rst │ │ │ ├── calendrier │ │ │ │ └── index.rst │ │ │ ├── document3D │ │ │ │ ├── STP_converter_WebGL.rst │ │ │ │ ├── arborescense.rst │ │ │ │ ├── classes.rst │ │ │ │ ├── generate3D.rst │ │ │ │ ├── generateComposition.rst │ │ │ │ ├── generateDecomposition.rst │ │ │ │ ├── index.rst │ │ │ │ ├── mesh.rst │ │ │ │ ├── models.dot │ │ │ │ ├── models.png │ │ │ │ ├── models.rst │ │ │ │ └── views.rst │ │ │ ├── gdoc │ │ │ │ ├── index.rst │ │ │ │ └── models.rst │ │ │ ├── pdfgen │ │ │ │ ├── index.rst │ │ │ │ └── views.rst │ │ │ └── webdav │ │ │ │ ├── backends.rst │ │ │ │ ├── backends_openplm.rst │ │ │ │ ├── index.rst │ │ │ │ ├── views.rst │ │ │ │ └── webdav_handler.rst │ │ ├── architecture.rst │ │ ├── bom.rst │ │ ├── code │ │ │ ├── bicycle.py │ │ │ └── bicycle │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ ├── cookbook.rst │ │ ├── doctemplate.rst │ │ ├── documentation.rst │ │ ├── how-tos.rst │ │ ├── ht_2_add_models.rst │ │ ├── ht_3_add_models2.rst │ │ ├── http-api.rst │ │ ├── index.rst │ │ ├── modules.rst │ │ ├── modules │ │ │ ├── controllers.rst │ │ │ ├── controllers │ │ │ │ ├── controllers_base.rst │ │ │ │ ├── controllers_document.rst │ │ │ │ ├── controllers_group.rst │ │ │ │ ├── controllers_part.rst │ │ │ │ ├── controllers_plmobject.rst │ │ │ │ └── controllers_user.rst │ │ │ ├── csvimport.rst │ │ │ ├── decomposers.rst │ │ │ ├── decomposers │ │ │ │ └── decomposers_base.rst │ │ │ ├── exceptions.rst │ │ │ ├── fileformats.rst │ │ │ ├── filehandlers.rst │ │ │ ├── filehandlers │ │ │ │ ├── filehandlers_base.rst │ │ │ │ ├── filehandlers_odf.rst │ │ │ │ └── filehandlers_pdf.rst │ │ │ ├── files.rst │ │ │ ├── files │ │ │ │ ├── deletable.rst │ │ │ │ └── formats.rst │ │ │ ├── filters.rst │ │ │ ├── forms.rst │ │ │ ├── lifecycle.rst │ │ │ ├── mail.rst │ │ │ ├── models.rst │ │ │ ├── navigate.rst │ │ │ ├── plmapp_tags.rst │ │ │ ├── references.rst │ │ │ ├── thumbnailers.rst │ │ │ ├── thumbnailers │ │ │ │ ├── thumbnailers_base.rst │ │ │ │ ├── thumbnailers_jfif.rst │ │ │ │ ├── thumbnailers_magick.rst │ │ │ │ ├── thumbnailers_odf.rst │ │ │ │ ├── thumbnailers_pil.rst │ │ │ │ ├── thumbnailers_png.rst │ │ │ │ └── thumbnailers_sw.rst │ │ │ ├── utils.rst │ │ │ ├── utils │ │ │ │ ├── archive.rst │ │ │ │ ├── importing.rst │ │ │ │ └── units.rst │ │ │ ├── views.rst │ │ │ ├── views_params.txt │ │ │ └── widgets.rst │ │ ├── publication.rst │ │ ├── richtext.rst │ │ ├── testing.rst │ │ ├── uml_models_controllers.dia │ │ └── uml_models_controllers.png │ ├── glossary.rst │ ├── index.rst │ ├── license.rst │ ├── resources.rst │ ├── specs │ │ ├── clone.rst │ │ ├── index.rst │ │ ├── lifecycle.rst │ │ ├── publication.rst │ │ ├── restricted_access.rst │ │ └── revisions.rst │ ├── user │ │ ├── PLMObject │ │ │ ├── 1_common.rst │ │ │ ├── 2_part.rst │ │ │ └── 3_document.rst │ │ ├── download │ │ │ └── openplm.xpi │ │ ├── features.rst │ │ ├── features │ │ │ ├── browse.rst │ │ │ ├── create.rst │ │ │ ├── csv_import │ │ │ │ ├── BOM.csv │ │ │ │ ├── PLMObject.csv │ │ │ │ └── User.csv │ │ │ ├── html │ │ │ │ ├── browse.html │ │ │ │ ├── create.html │ │ │ │ ├── css │ │ │ │ │ └── search.css │ │ │ │ ├── img │ │ │ │ │ └── focus.png │ │ │ │ ├── navigate.html │ │ │ │ ├── search.html │ │ │ │ ├── study_doc.html │ │ │ │ ├── study_part.html │ │ │ │ └── study_part_child.html │ │ │ ├── markdown_syntax.rst │ │ │ ├── navigate.rst │ │ │ ├── search.rst │ │ │ └── study.rst │ │ ├── images │ │ │ ├── 3D1.png │ │ │ ├── 3D2.png │ │ │ ├── 3D3.png │ │ │ ├── 3Dview.png │ │ │ ├── Capture_openPLM_browse.png │ │ │ ├── Capture_openPLM_create.png │ │ │ ├── Capture_openPLM_display_thumbnails.png │ │ │ ├── Capture_openPLM_header.png │ │ │ ├── Capture_openPLM_home.png │ │ │ ├── Capture_openPLM_leftpanel.png │ │ │ ├── Capture_openPLM_navigate.png │ │ │ ├── Capture_openPLM_navigate2.png │ │ │ ├── Capture_openPLM_search.png │ │ │ ├── Capture_openPLM_study.png │ │ │ ├── image_1.png │ │ │ ├── pl_fc_ci.png │ │ │ ├── pl_fc_co1.png │ │ │ ├── pl_fc_co2.png │ │ │ ├── pl_fc_conf.png │ │ │ ├── pl_fc_create.png │ │ │ ├── pl_fc_login.png │ │ │ ├── pl_fc_rev.png │ │ │ ├── pl_ooo_ci.png │ │ │ ├── pl_ooo_co1.png │ │ │ ├── pl_ooo_co2.png │ │ │ ├── pl_ooo_conf.png │ │ │ ├── pl_ooo_create.png │ │ │ ├── pl_ooo_em.png │ │ │ ├── pl_ooo_login.png │ │ │ ├── pl_ooo_rev.png │ │ │ ├── pl_th_c2.png │ │ │ ├── pl_th_ci.png │ │ │ ├── pl_th_conf.png │ │ │ ├── pl_th_create.png │ │ │ ├── pl_th_em.png │ │ │ ├── pl_th_em2.png │ │ │ ├── pl_th_em3.png │ │ │ ├── pl_th_login.png │ │ │ ├── sponsor.png │ │ │ └── thumbnails │ │ │ │ ├── 3Dview.png │ │ │ │ ├── browse.png │ │ │ │ ├── create.png │ │ │ │ ├── display_thumbnails.png │ │ │ │ ├── header.png │ │ │ │ ├── home.png │ │ │ │ ├── leftpanel.png │ │ │ │ ├── navigate.png │ │ │ │ ├── navigate2.png │ │ │ │ ├── search.png │ │ │ │ └── study.png │ │ ├── index.rst │ │ ├── plugin_freecad.rst │ │ ├── plugin_ooo.rst │ │ ├── plugin_thunderbird.rst │ │ ├── plugins.rst │ │ ├── tuto_1_main_funct.rst │ │ ├── tuto_2_plmobject.rst │ │ ├── tuto_3_user.rst │ │ ├── tuto_4_group.rst │ │ └── tutorials.rst │ ├── whatsnew-2.1.rst │ └── whatsnew │ │ ├── 1.1 │ │ ├── 3D1.png │ │ ├── 3D2.png │ │ ├── 3D3.png │ │ ├── 3D_old.png │ │ ├── Capture_openPLM_file_add.png │ │ ├── Capture_openPLM_file_progress.png │ │ ├── Capture_openPLM_lifecycle_management.png │ │ ├── Capture_openPLM_sponsor.png │ │ └── webdav_nautilus.png │ │ ├── 1.2 │ │ ├── bom_1.png │ │ ├── files_1.png │ │ ├── intro.png │ │ ├── lifecycle_1.png │ │ ├── navigate_1.png │ │ ├── navigate_2.png │ │ ├── navigate_3.png │ │ ├── navigate_4.png │ │ └── upload.webm │ │ ├── 2.0 │ │ ├── 3D_mendelmax.png │ │ ├── attributes.png │ │ ├── avatar_card.png │ │ ├── avatar_comment.png │ │ ├── avatar_profile.png │ │ ├── avatar_timeline.png │ │ ├── cards.png │ │ ├── editor_compose.png │ │ ├── editor_preview.png │ │ ├── editor_result.png │ │ ├── history.png │ │ ├── home_page.png │ │ ├── login_page.png │ │ └── toolbar.png │ │ ├── whatsnew-1.1.rst │ │ ├── whatsnew-1.2.rst │ │ └── whatsnew-2.0.rst ├── fr │ ├── Makefile │ ├── _ext │ ├── _static │ │ ├── sphinxdoc.css │ │ └── user_features │ │ │ ├── css │ │ │ └── feature.css │ │ │ └── img │ │ │ ├── Capture_openPLM_navigate2.png │ │ │ ├── OpenPLM_study_doc_addpart.png │ │ │ ├── OpenPLM_study_doc_parts.png │ │ │ ├── OpenPLM_study_part_add.png │ │ │ ├── OpenPLM_study_part_addpart.png │ │ │ ├── OpenPLM_study_part_doc.png │ │ │ └── focus.png │ ├── _templates │ │ ├── lang.html │ │ └── list_lang.html │ ├── admin │ │ ├── apache │ │ ├── applications.rst │ │ ├── applications │ │ │ ├── badges │ │ │ │ └── index.rst │ │ │ ├── calendrier │ │ │ │ └── index.rst │ │ │ ├── document3D │ │ │ │ └── index.rst │ │ │ ├── ecr │ │ │ │ └── index.rst │ │ │ ├── gdoc │ │ │ │ ├── images │ │ │ │ │ ├── gapi_1.png │ │ │ │ │ ├── gapi_2.png │ │ │ │ │ ├── gapi_3.png │ │ │ │ │ ├── gapi_4.png │ │ │ │ │ └── gapi_5.png │ │ │ │ └── index.rst │ │ │ ├── oerp │ │ │ │ └── index.rst │ │ │ ├── pdfgen │ │ │ │ └── index.rst │ │ │ ├── subversion │ │ │ │ └── index.rst │ │ │ └── webdav │ │ │ │ └── index.rst │ │ ├── commands.rst │ │ ├── how-tos.rst │ │ ├── ht_1_install_server.rst │ │ ├── ht_2_install_server.rst │ │ ├── ht_3_upgrade.rst │ │ ├── images │ │ │ ├── admin_login.png │ │ │ ├── admin_user.png │ │ │ ├── admin_userprofile.png │ │ │ ├── company_login.png │ │ │ ├── openplm_connexion.png │ │ │ └── sponsor.png │ │ ├── index.rst │ │ ├── lifecycle.rst │ │ ├── publication.rst │ │ └── settings.rst │ ├── conf.py │ ├── devel │ ├── glossary.rst │ ├── index.rst │ ├── license.rst │ ├── resources.rst │ ├── specs │ ├── user │ │ ├── PLMObject │ │ │ ├── 1_common.rst │ │ │ ├── 2_part.rst │ │ │ └── 3_document.rst │ │ ├── download │ │ ├── features.rst │ │ ├── features │ │ │ ├── browse.rst │ │ │ ├── create.rst │ │ │ ├── csv_import │ │ │ │ ├── BOM.csv │ │ │ │ ├── PLMObject.csv │ │ │ │ └── User.csv │ │ │ ├── html │ │ │ │ ├── browse.html │ │ │ │ ├── create.html │ │ │ │ ├── css │ │ │ │ │ └── search.css │ │ │ │ ├── img │ │ │ │ │ └── focus.png │ │ │ │ ├── navigate.html │ │ │ │ ├── search.html │ │ │ │ ├── study_doc.html │ │ │ │ ├── study_part.html │ │ │ │ └── study_part_child.html │ │ │ ├── navigate.rst │ │ │ ├── search.rst │ │ │ └── study.rst │ │ ├── images │ │ │ ├── 3Dview.png │ │ │ ├── Capture_openPLM_browse.png │ │ │ ├── Capture_openPLM_create.png │ │ │ ├── Capture_openPLM_display_thumbnails.png │ │ │ ├── Capture_openPLM_header.png │ │ │ ├── Capture_openPLM_home.png │ │ │ ├── Capture_openPLM_leftpanel.png │ │ │ ├── Capture_openPLM_navigate.png │ │ │ ├── Capture_openPLM_navigate2.png │ │ │ ├── Capture_openPLM_search.png │ │ │ ├── Capture_openPLM_study.png │ │ │ ├── image_1.png │ │ │ ├── pl_fc_ci.png │ │ │ ├── pl_fc_co1.png │ │ │ ├── pl_fc_co2.png │ │ │ ├── pl_fc_conf.png │ │ │ ├── pl_fc_create.png │ │ │ ├── pl_fc_login.png │ │ │ ├── pl_fc_rev.png │ │ │ ├── pl_ooo_ci.png │ │ │ ├── pl_ooo_co1.png │ │ │ ├── pl_ooo_co2.png │ │ │ ├── pl_ooo_conf.png │ │ │ ├── pl_ooo_create.png │ │ │ ├── pl_ooo_em.png │ │ │ ├── pl_ooo_login.png │ │ │ ├── pl_ooo_rev.png │ │ │ ├── pl_th_c2.png │ │ │ ├── pl_th_ci.png │ │ │ ├── pl_th_conf.png │ │ │ ├── pl_th_create.png │ │ │ ├── pl_th_em.png │ │ │ ├── pl_th_em2.png │ │ │ ├── pl_th_em3.png │ │ │ ├── pl_th_login.png │ │ │ ├── sponsor.png │ │ │ └── thumbnails │ │ │ │ ├── 3Dview.png │ │ │ │ ├── browse.png │ │ │ │ ├── create.png │ │ │ │ ├── display_thumbnails.png │ │ │ │ ├── header.png │ │ │ │ ├── home.png │ │ │ │ ├── leftpanel.png │ │ │ │ ├── navigate.png │ │ │ │ ├── navigate2.png │ │ │ │ ├── search.png │ │ │ │ └── study.png │ │ ├── index.rst │ │ ├── plugin_freecad.rst │ │ ├── plugin_ooo.rst │ │ ├── plugin_thunderbird.rst │ │ ├── plugins.rst │ │ ├── tuto_1_main_funct.rst │ │ ├── tuto_2_plmobject.rst │ │ ├── tuto_3_user.rst │ │ ├── tuto_4_group.rst │ │ └── tutorials.rst │ ├── whatsnew-1.2.rst │ └── whatsnew │ │ ├── 1.1 │ │ ├── 3D1.png │ │ ├── 3D2.png │ │ ├── 3D3.png │ │ ├── 3D_old.png │ │ ├── Capture_openPLM_file_add.png │ │ ├── Capture_openPLM_file_progress.png │ │ ├── Capture_openPLM_lifecycle_management.png │ │ ├── Capture_openPLM_sponsor.png │ │ └── webdav_nautilus.png │ │ ├── 1.2 │ │ ├── bom_1.png │ │ ├── files_1.png │ │ ├── intro.png │ │ ├── lifecycle_1.png │ │ ├── navigate_1.png │ │ ├── navigate_2.png │ │ ├── navigate_3.png │ │ ├── navigate_4.png │ │ └── upload.webm │ │ └── whatsnew-1.1.rst └── skel │ ├── Makefile │ ├── _ext │ ├── _templates │ └── list_lang.html │ ├── admin │ └── apache │ ├── conf.py │ ├── devel │ ├── index.rst │ ├── lang.html │ ├── resources.rst │ └── specs ├── openPLM ├── .coveragerc ├── GPLv3-LICENSE.txt ├── Makefile ├── __init__.py ├── apache │ ├── access.wsgi │ ├── access_restricted.wsgi │ └── django.wsgi ├── apps │ ├── __init__.py │ ├── badges │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── award_badges.py │ │ ├── managers.py │ │ ├── meta_badges.py │ │ ├── middleware.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── signals.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── badges.css │ │ │ └── img │ │ │ │ └── badges │ │ │ │ ├── bronze.png │ │ │ │ ├── diamond.png │ │ │ │ ├── gold.png │ │ │ │ └── silver.png │ │ ├── templates │ │ │ ├── badges │ │ │ │ ├── badge.html │ │ │ │ ├── detail.html │ │ │ │ └── overview.html │ │ │ └── user │ │ │ │ └── badges_overview.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── badges_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── cad │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── cae │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── calendrier │ │ ├── __init__.py │ │ ├── models.py │ │ ├── static │ │ │ └── css │ │ │ │ └── calendar.css │ │ ├── templates │ │ │ ├── calendar.html │ │ │ └── history_cal.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── computer │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_referencedesignator.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── document3D │ │ ├── STP_converter_WebGL.py │ │ ├── __init__.py │ │ ├── api.py │ │ ├── arborescense.py │ │ ├── assembly.py │ │ ├── classes.py │ │ ├── data_test │ │ │ ├── 0.js │ │ │ ├── 1.js │ │ │ ├── 2.js │ │ │ ├── bolt.step │ │ │ ├── l-bracket.step │ │ │ ├── nut.step │ │ │ ├── rod.step │ │ │ ├── stp_false.stp │ │ │ ├── test.stp │ │ │ ├── test2.stp │ │ │ └── valid_sans_information.stp │ │ ├── forms.py │ │ ├── generate3D.py │ │ ├── generateComposition.py │ │ ├── generateDecomposition.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── mesh.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_stp_to_jss_navigabilite.py │ │ │ ├── 0003_auto__add_stp_to_jss_arborescense.py │ │ │ ├── 0004_auto__del_stp_to_jss_navigabilite.py │ │ │ ├── 0005_auto__add_field_stp_to_jss_index.py │ │ │ ├── 0006_auto__add_field_stp_to_jss_count.py │ │ │ ├── 0007_auto__add_location.py │ │ │ ├── 0008_auto__del_location__add_location_link.py │ │ │ ├── 0009_auto__add_field_document3d_step_original.py │ │ │ ├── 0010_auto__chg_field_document3d_step_original.py │ │ │ ├── 0011_auto__del_field_document3d_step_original.py │ │ │ ├── 0012_auto__add_field_document3d_step_original.py │ │ │ ├── 0013_auto__del_field_document3d_step_original.py │ │ │ ├── 0014_auto__add_step_original.py │ │ │ ├── 0015_auto__del_step_original__add_step_originallll.py │ │ │ ├── 0016_auto__del_step_originallll__add_step_original.py │ │ │ ├── 0017_auto__del_step_original__add_field_document3d_reference_step.py │ │ │ ├── 0018_auto__chg_field_document3d_reference_step.py │ │ │ ├── 0019_auto__del_field_document3d_reference_step.py │ │ │ ├── 0020_auto__add_field_document3d_step_active__add_field_document3d_step_deco.py │ │ │ ├── 0021_auto__chg_field_document3d_step_active__chg_field_document3d_step_deco.py │ │ │ ├── 0022_auto__del_field_document3d_step_active__del_field_document3d_step_deco.py │ │ │ ├── 0023_auto__add_arbrefile_documentfile_stp.py │ │ │ ├── 0024_auto__del_stp_to_jss_arborescense__del_field_location_link_angle__del_.py │ │ │ ├── 0025_auto__del_arbrefile_documentfile_stp__del_stp_to_jss__add_arbrefile__a.py │ │ │ ├── 0026_auto__add_field_document3d_PartDecompose.py │ │ │ ├── 0027_auto__add_field_arbrefile_decomposable.py │ │ │ ├── 0028_decomposable.py │ │ │ ├── 0029_Product_v_0_5_to_1.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── part21.py │ │ ├── part21_preparse.py │ │ ├── pov.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── 3D.css │ │ │ │ └── displayDecompose.css │ │ │ ├── img │ │ │ │ ├── views.png │ │ │ │ └── views.svg │ │ │ └── js │ │ │ │ └── 3D │ │ │ │ ├── ajax3D.js │ │ │ │ ├── struct-LICENSE │ │ │ │ ├── struct.js │ │ │ │ ├── three-min.js │ │ │ │ └── view.js │ │ ├── tasks.py │ │ ├── templates │ │ │ ├── Display3D.htm │ │ │ ├── DisplayDecompose.htm │ │ │ ├── decompose_msg.html │ │ │ ├── extra_attributes.html │ │ │ ├── public_3d.html │ │ │ └── public_3d_view.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── arborescense.py │ │ │ ├── assembly.py │ │ │ ├── decomposer.py │ │ │ └── views.py │ │ ├── urls.py │ │ └── views.py │ ├── ecr │ │ ├── __init__.py │ │ ├── controllers.py │ │ ├── fixtures │ │ │ └── lifecycles_ecr.json │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_field_ecr_description.py │ │ │ ├── 0003_auto__add_ecruserlink__add_unique_ecruserlink_ecr_user_role_end_time__.py │ │ │ ├── 0004_fix_signer_role_ecr.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── browse_ecr.html │ │ │ ├── changes.html │ │ │ └── ecrs │ │ │ │ ├── identity_card.html │ │ │ │ ├── plmobjects.html │ │ │ │ └── plmobjects_add.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── gdoc │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── gutils.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_googledocument.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── gdoc_files.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── oerp │ │ ├── __init__.py │ │ ├── erp.py │ │ ├── forms.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── createuom.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_oerprootbom.py │ │ │ ├── 0003_auto__add_partcost.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── product.uom.csv │ │ ├── templates │ │ │ └── erp_summary.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── office │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── pdfgen │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── models.py │ │ ├── templates │ │ │ ├── attributes.xhtml │ │ │ ├── base.xhtml │ │ │ ├── bom.xhtml │ │ │ ├── select_pdf.html │ │ │ ├── select_pdf_doc.html │ │ │ ├── select_pdf_part.html │ │ │ └── summary.xhtml │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── richpage │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── richpage │ │ │ │ ├── edit_content.html │ │ │ │ └── page.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── rss │ │ ├── __init__.py │ │ ├── feeds.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── software │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_dependencylink.py │ │ │ ├── 0003_rename_description.py │ │ │ ├── 0004_copy_description.py │ │ │ ├── 0005_auto__del_field_package_description2__del_field_software_description2.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── subversion │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── ajax_logs.html │ │ │ ├── logs.html │ │ │ └── subversion_files.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── urldoc │ │ ├── __init__.py │ │ ├── locale │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── content.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── webdav │ │ ├── __init__.py │ │ ├── acl.py │ │ ├── backends │ │ ├── __init__.py │ │ └── openplm.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── util.py │ │ ├── views.py │ │ └── webdav_handler.py ├── bin │ ├── bootstrap_namespace_prefixer.py │ ├── change_secret_key.py │ ├── check_modules.py │ ├── extractor.sh │ ├── run_coverage.sh │ ├── runserver.sh │ └── translate_all.sh ├── datatests │ ├── office_a4_3p.odt │ └── thumbnail.png ├── django_xml_test_runner │ ├── LICENSE │ ├── __init__.py │ ├── setup.py │ └── xmltestrunner │ │ ├── __init__.py │ │ └── xmlrunner.py ├── djcelery_transactions │ ├── AUTHORS │ ├── LICENSE │ ├── README │ ├── __init__.py │ └── transaction_signals.py ├── etc │ ├── default │ │ └── celeryd │ └── init.d │ │ └── celeryd ├── go.py ├── help │ ├── en │ │ └── search.rst │ ├── es │ │ └── search.rst │ ├── fr │ │ └── search.rst │ ├── ja │ │ └── search.rst │ └── ru │ │ └── search.rst ├── locale │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── django.po ├── manage.py ├── non-official-GPLv3-french-translation.txt ├── plmapp │ ├── __init__.py │ ├── admin.py │ ├── controllers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── document.py │ │ ├── group.py │ │ ├── part.py │ │ ├── plmobject.py │ │ └── user.py │ ├── csvimport.py │ ├── customized_models │ │ └── __init__.py │ ├── decomposers │ │ ├── __init__.py │ │ └── base.py │ ├── exceptions.py │ ├── fileformats.py │ ├── filehandlers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── odfhandler.py │ │ ├── pdfhandler.py │ │ └── progressbarhandler.py │ ├── files │ │ ├── __init__.py │ │ ├── deletable.py │ │ └── formats.py │ ├── filters.py │ ├── fixtures │ │ ├── extra_lifecycles.json │ │ ├── initial_data.json │ │ ├── lifecycles_20120402.json │ │ └── template_lifecycles.json │ ├── forms.py │ ├── lifecycle.py │ ├── mail.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── createcompany.py │ │ │ └── sponsor.py │ ├── middleware │ │ ├── __init__.py │ │ └── locale.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_plmobject_group.py │ │ ├── 0003_auto__chg_field_plmobject_group.py │ │ ├── 0004_auto__add_invitation.py │ │ ├── 0005_auto.py │ │ ├── 0006_auto__add_field_parentchildlink_unit.py │ │ ├── 0007_auto__add_parentchildlinkextension.py │ │ ├── 0008_delete_lc_draft_official.py │ │ ├── 0009_auto__add_field_userprofile_language.py │ │ ├── 0010_auto__add_field_documentfile_deprecated.py │ │ ├── 0011_auto__add_statehistory.py │ │ ├── 0012_state_histories.py │ │ ├── 0013_add_proposed_lifecycle.py │ │ ├── 0014_auto__add_field_userprofile_can_publish.py │ │ ├── 0015_auto__add_field_plmobject_published.py │ │ ├── 0016_auto__add_field_plmobject_reference_number.py │ │ ├── 0017_reference_number.py │ │ ├── 0018_auto__add_field_userprofile_restricted.py │ │ ├── 0019_publish_thumbnails.py │ │ ├── 0020_auto__add_field_documentfile_ctime__add_field_documentfile_end_time__a.py │ │ ├── 0021_file_ctime.py │ │ ├── 0022_auto__add_field_documentpartlink_end_time__del_unique_documentpartlink.py │ │ ├── 0023_auto__add_promotionapproval__add_unique_promotionapproval_plmobject_us.py │ │ ├── 0024_auto__add_synchronizedpartset.py │ │ ├── 0025_auto__add_alternatepartset.py │ │ ├── 0026_add_field_Lifecycle_type.py │ │ ├── 0027_auto__add_privatefile.py │ │ ├── 0028_fix_signer_role.py │ │ ├── 0029_auto__add_field_userprofile_avatar.py │ │ ├── 0030_auto__chg_field_userprofile_user.py │ │ ├── 0031_auto__del_synchronizedpartset.py │ │ ├── 0032_auto__add_field_plmobject_description.py │ │ ├── 0033_auto__add_field_document_template.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── document.py │ │ ├── group.py │ │ ├── history.py │ │ ├── iobject.py │ │ ├── lifecycle.py │ │ ├── link.py │ │ ├── part.py │ │ ├── plmobject.py │ │ └── user.py │ ├── navigate.py │ ├── query_parser.py │ ├── references.py │ ├── search.py │ ├── search_indexes.py │ ├── search_sites.py │ ├── static │ │ ├── MarkEdit-LICENSE-MIT.txt │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.prefixed.css │ │ │ ├── bootstrap.prefixed.css │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── files.css │ │ │ ├── help.css │ │ │ ├── import_csv.css │ │ │ ├── jquery.markedit.css │ │ │ ├── lifecycle.css │ │ │ ├── loginpage.css │ │ │ ├── management.css │ │ │ ├── navigate.css │ │ │ ├── openplm.css │ │ │ ├── openplm │ │ │ │ ├── images │ │ │ │ │ ├── active.png │ │ │ │ │ ├── bg_hover.png │ │ │ │ │ ├── hover.png │ │ │ │ │ ├── normal.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_65_e3017d_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_e3017d_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_15_373737_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_e4e4e4_256x240.png │ │ │ │ └── jquery-ui.css │ │ │ ├── search.css │ │ │ ├── showLoading.css │ │ │ └── timeline.css │ │ ├── img │ │ │ ├── arrow_middle.png │ │ │ ├── arrows.png │ │ │ ├── dark │ │ │ │ ├── background-login-page.jpg │ │ │ │ ├── background-login-page1.jpg │ │ │ │ ├── background-login-page2.jpg │ │ │ │ ├── background-login-page3.jpg │ │ │ │ ├── background-login-page4.jpg │ │ │ │ ├── background-login-page5.jpg │ │ │ │ ├── banner.png │ │ │ │ ├── bg_tr_doc.png │ │ │ │ ├── bg_tr_part.png │ │ │ │ ├── footer.png │ │ │ │ ├── h2_bg.png │ │ │ │ ├── h2_bg_1.png │ │ │ │ ├── h2_bg_2.png │ │ │ │ ├── logo_o.png │ │ │ │ ├── logo_openplm.png │ │ │ │ └── logo_openplm_linear.png │ │ │ ├── favicon.ico │ │ │ ├── feed_icon.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── icon_doc.png │ │ │ ├── icon_part.png │ │ │ ├── icon_user.png │ │ │ ├── image-missing.png │ │ │ ├── lifecycle │ │ │ │ ├── arrow_off.png │ │ │ │ ├── arrow_on.png │ │ │ │ ├── deprecated_off.png │ │ │ │ ├── deprecated_on.png │ │ │ │ ├── deprecated_small.png │ │ │ │ ├── draft_off.png │ │ │ │ ├── draft_on.png │ │ │ │ ├── draft_small.png │ │ │ │ ├── official_off.png │ │ │ │ ├── official_on.png │ │ │ │ ├── official_small.png │ │ │ │ ├── proposition_off.png │ │ │ │ ├── proposition_on.png │ │ │ │ └── proposition_small.png │ │ │ ├── line.png │ │ │ ├── line_part.png │ │ │ ├── linobject.png │ │ │ ├── loading-bars.gif │ │ │ ├── loading.gif │ │ │ ├── lock_unlock.png │ │ │ ├── lock_unlock.svg │ │ │ ├── menuitem_home.png │ │ │ ├── menuitem_home_disabled.png │ │ │ ├── navigate │ │ │ │ ├── main.xcf │ │ │ │ ├── next.png │ │ │ │ ├── no_next.png │ │ │ │ ├── no_prev.png │ │ │ │ ├── prev.png │ │ │ │ ├── zoom-fit-best.png │ │ │ │ ├── zoom-in.png │ │ │ │ ├── zoom-original.png │ │ │ │ └── zoom-out.png │ │ │ ├── navigate_arrows.png │ │ │ ├── navigate_arrows.svg │ │ │ ├── puce.png │ │ │ ├── trash_can1.png │ │ │ ├── triangle.png │ │ │ ├── triangle.svg │ │ │ ├── wmd-buttons-dark.png │ │ │ └── wmd-buttons.png │ │ └── js │ │ │ ├── async_search.js │ │ │ ├── bom.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.prefixed.js │ │ │ ├── bootstrap.prefixed.js │ │ │ ├── chosen.jquery.min.js │ │ │ ├── confirm.js │ │ │ ├── create.js │ │ │ ├── file.js │ │ │ ├── help.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.hoverIntent.minified.js │ │ │ ├── jquery.markedit.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.showLoading.min.js │ │ │ ├── navigate.js │ │ │ ├── opera_upload.js │ │ │ ├── panels.js │ │ │ ├── plmapp.js │ │ │ ├── raphael-min.js │ │ │ ├── screenfull.js │ │ │ ├── screenfull.min.js │ │ │ └── showdown.js │ ├── tasks.py │ ├── templatetags │ │ ├── __init__.py │ │ └── plmapp_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── ajax.py │ │ ├── api.py │ │ ├── archive.py │ │ ├── base.py │ │ ├── closure.py │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── assembly.py │ │ │ ├── base.py │ │ │ ├── deletion.py │ │ │ ├── document.py │ │ │ ├── group.py │ │ │ ├── part.py │ │ │ ├── partdoc.py │ │ │ └── plmobject.py │ │ ├── csvimport.py │ │ ├── filehandlers.py │ │ ├── filters.py │ │ ├── gestion_document_native.py │ │ ├── lifecycle.py │ │ ├── models.py │ │ ├── navigate.py │ │ ├── pcle.py │ │ ├── reference.py │ │ ├── restricted.py │ │ ├── runner.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── document.py │ │ │ ├── group.py │ │ │ ├── main.py │ │ │ ├── part.py │ │ │ └── user.py │ ├── thumbnailers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── jfifthumbnailer.py │ │ ├── magickthumbnailer.py │ │ ├── odfthumbnailer.py │ │ ├── pilthumbnailer.py │ │ ├── pngthumbnailer.py │ │ └── swthumbnailer.py │ ├── utils │ │ ├── __init__.py │ │ ├── archive.py │ │ ├── encoding.py │ │ ├── importing.py │ │ ├── unicodecsv.py │ │ └── units.py │ ├── views │ │ ├── __init__.py │ │ ├── ajax.py │ │ ├── api.py │ │ ├── base.py │ │ ├── document.py │ │ ├── group.py │ │ ├── main.py │ │ ├── part.py │ │ ├── plmobject.py │ │ ├── user.py │ │ └── views_params.txt │ └── widgets.py ├── settings.py ├── settings_tests.py ├── templates │ ├── 404.html │ ├── 500.html │ ├── attributes.html │ ├── base.html │ ├── blocks │ │ ├── menu.html │ │ ├── reference.html │ │ ├── search.html │ │ ├── supermenu.html │ │ └── user.html │ ├── browse.html │ ├── clone.html │ ├── comments │ │ └── preview.html │ ├── create.html │ ├── documents │ │ ├── checkout_btn.html │ │ ├── clone.html │ │ ├── file_revisions.html │ │ ├── files.html │ │ ├── files_add.html │ │ ├── files_add_noscript.html │ │ ├── identity_card.html │ │ ├── parts.html │ │ ├── parts_add.html │ │ └── revisions.html │ ├── edit.html │ ├── error.html │ ├── groups │ │ ├── accept_invitation.html │ │ ├── add_user.html │ │ ├── ask_to_join.html │ │ ├── identity_card.html │ │ ├── objects.html │ │ ├── pending_invitations.html │ │ ├── refuse_invitation.html │ │ └── users.html │ ├── history.html │ ├── home.html │ ├── identity_card.html │ ├── import │ │ ├── csv.html │ │ └── done.html │ ├── lifecycle.html │ ├── lifecycle_cancelled.html │ ├── login.html │ ├── mails │ │ ├── history.html │ │ ├── history.txt │ │ ├── invitation1.html │ │ ├── invitation1.txt │ │ ├── invitation2.html │ │ ├── invitation2.txt │ │ ├── new_account.html │ │ └── new_account.txt │ ├── management_replace.html │ ├── navigate.html │ ├── navigate │ │ ├── add_buttons.html │ │ └── node.html │ ├── parts │ │ ├── alternates.html │ │ ├── alternates_add.html │ │ ├── bom.html │ │ ├── bom_add.html │ │ ├── bom_alt.html │ │ ├── bom_diff.html │ │ ├── bom_docs.html │ │ ├── bom_edit.html │ │ ├── bom_replace.html │ │ ├── bom_table.html │ │ ├── bom_thead.html │ │ ├── clone.html │ │ ├── doccad.html │ │ ├── doccad_add.html │ │ ├── identity_card.html │ │ ├── parents.html │ │ └── revisions.html │ ├── public.html │ ├── render_search.html │ ├── revisions.html │ ├── search │ │ ├── indexes │ │ │ └── plmapp │ │ │ │ ├── documentfile_rendered.txt │ │ │ │ ├── documentfile_rendered_add.txt │ │ │ │ └── documentfile_text.txt │ │ ├── indexes_rendered.txt │ │ ├── indexes_rendered_add.txt │ │ ├── indexes_text.txt │ │ ├── result.html │ │ └── search.html │ ├── snippets │ │ ├── astable.html │ │ ├── confirmation_form.html │ │ ├── management_block.html │ │ ├── pagination.html │ │ ├── time_filter.html │ │ └── undo_form.html │ └── users │ │ ├── delegation.html │ │ ├── files.html │ │ ├── groups.html │ │ ├── identity_card.html │ │ ├── password.html │ │ ├── plmobjects.html │ │ └── sponsor.html ├── urls.py └── xapian_backend.py └── plugins ├── freecad ├── LICENSE-lgpl-2.1.txt ├── OpenPLM │ ├── Init.py │ ├── InitGui.py │ ├── banner_openplm.png │ ├── logo_small.png │ └── openplm.py └── install.sh ├── gedit ├── install.sh ├── openplm.gedit-plugin └── openplm.py ├── openoffice ├── Addons.xcu ├── META-INF │ └── manifest.xml ├── install.sh ├── openplm.py └── pythonpath │ └── poster │ ├── PKG-INFO │ ├── __init__.py │ ├── encode.py │ └── streaminghttp.py ├── solidworks ├── README.txt ├── SWCAD.py ├── SWCADGui.py ├── SW_Addin.py ├── banner_openplm.png ├── logo_small.png └── openplm.py └── thunderbird ├── build.sh └── openplm ├── chrome.manifest ├── chrome ├── content │ ├── about.xul │ ├── checkin.xul │ ├── create.xul │ ├── options.xul │ ├── overlay.js │ └── overlay.xul ├── locale │ └── en-US │ │ ├── about.dtd │ │ ├── options.dtd │ │ ├── overlay.dtd │ │ └── overlay.properties └── skin │ └── overlay.css ├── defaults └── preferences │ └── prefs.js ├── install.rdf └── modules └── openplm.jsm /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/CHANGES -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.1 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/_ext/djangodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/_ext/djangodocs.py -------------------------------------------------------------------------------- /docs/en/_static/sphinxdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/_static/sphinxdoc.css -------------------------------------------------------------------------------- /docs/en/_static/user_features/css/feature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/_static/user_features/css/feature.css -------------------------------------------------------------------------------- /docs/en/_static/user_features/img/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/_static/user_features/img/focus.png -------------------------------------------------------------------------------- /docs/en/_templates/lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/_templates/lang.html -------------------------------------------------------------------------------- /docs/en/_templates/list_lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/_templates/list_lang.html -------------------------------------------------------------------------------- /docs/en/admin/apache/simple_2.0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/apache/simple_2.0.conf -------------------------------------------------------------------------------- /docs/en/admin/apache/simple_2.0b.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/apache/simple_2.0b.conf -------------------------------------------------------------------------------- /docs/en/admin/apache/ssl_2.0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/apache/ssl_2.0.conf -------------------------------------------------------------------------------- /docs/en/admin/apache/ssl_2.0b.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/apache/ssl_2.0b.conf -------------------------------------------------------------------------------- /docs/en/admin/applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/badges/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/badges/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/calendrier/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/calendrier/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/document3D/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/document3D/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/ecr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/ecr/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/gdoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/gdoc/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/oerp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/oerp/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/pdfgen/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/pdfgen/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/richpage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/richpage/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/subversion/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/subversion/index.rst -------------------------------------------------------------------------------- /docs/en/admin/applications/webdav/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/applications/webdav/index.rst -------------------------------------------------------------------------------- /docs/en/admin/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/commands.rst -------------------------------------------------------------------------------- /docs/en/admin/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/files.rst -------------------------------------------------------------------------------- /docs/en/admin/how-tos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/how-tos.rst -------------------------------------------------------------------------------- /docs/en/admin/ht_1_install_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/ht_1_install_server.rst -------------------------------------------------------------------------------- /docs/en/admin/ht_2_install_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/ht_2_install_server.rst -------------------------------------------------------------------------------- /docs/en/admin/ht_3_upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/ht_3_upgrade.rst -------------------------------------------------------------------------------- /docs/en/admin/images/admin_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/images/admin_login.png -------------------------------------------------------------------------------- /docs/en/admin/images/admin_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/images/admin_user.png -------------------------------------------------------------------------------- /docs/en/admin/images/admin_userprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/images/admin_userprofile.png -------------------------------------------------------------------------------- /docs/en/admin/images/company_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/images/company_login.png -------------------------------------------------------------------------------- /docs/en/admin/images/openplm_connexion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/images/openplm_connexion.png -------------------------------------------------------------------------------- /docs/en/admin/images/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/images/sponsor.png -------------------------------------------------------------------------------- /docs/en/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/index.rst -------------------------------------------------------------------------------- /docs/en/admin/lifecycle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/lifecycle.rst -------------------------------------------------------------------------------- /docs/en/admin/publication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/publication.rst -------------------------------------------------------------------------------- /docs/en/admin/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/references.rst -------------------------------------------------------------------------------- /docs/en/admin/richtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/richtext.rst -------------------------------------------------------------------------------- /docs/en/admin/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/settings.rst -------------------------------------------------------------------------------- /docs/en/admin/upgrade/upgrade-2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/upgrade/upgrade-2.0.rst -------------------------------------------------------------------------------- /docs/en/admin/upgrade/upgrade-2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/admin/upgrade/upgrade-2.1.rst -------------------------------------------------------------------------------- /docs/en/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/changes.rst -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/devel/applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/badges/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/badges/index.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/badges/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/badges/utils.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/badges/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/badges/views.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/calendrier/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/calendrier/index.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/document3D/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/document3D/index.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/document3D/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/document3D/mesh.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/document3D/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/document3D/views.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/gdoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/gdoc/index.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/gdoc/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/gdoc/models.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/pdfgen/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/pdfgen/index.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/pdfgen/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/pdfgen/views.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/webdav/backends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/webdav/backends.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/webdav/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/webdav/index.rst -------------------------------------------------------------------------------- /docs/en/devel/applications/webdav/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/applications/webdav/views.rst -------------------------------------------------------------------------------- /docs/en/devel/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/architecture.rst -------------------------------------------------------------------------------- /docs/en/devel/bom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/bom.rst -------------------------------------------------------------------------------- /docs/en/devel/code/bicycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/code/bicycle.py -------------------------------------------------------------------------------- /docs/en/devel/code/bicycle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/devel/code/bicycle/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/code/bicycle/models.py -------------------------------------------------------------------------------- /docs/en/devel/code/bicycle/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/code/bicycle/tests.py -------------------------------------------------------------------------------- /docs/en/devel/code/bicycle/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/code/bicycle/urls.py -------------------------------------------------------------------------------- /docs/en/devel/code/bicycle/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/code/bicycle/views.py -------------------------------------------------------------------------------- /docs/en/devel/cookbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/cookbook.rst -------------------------------------------------------------------------------- /docs/en/devel/doctemplate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/doctemplate.rst -------------------------------------------------------------------------------- /docs/en/devel/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/documentation.rst -------------------------------------------------------------------------------- /docs/en/devel/how-tos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/how-tos.rst -------------------------------------------------------------------------------- /docs/en/devel/ht_2_add_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/ht_2_add_models.rst -------------------------------------------------------------------------------- /docs/en/devel/ht_3_add_models2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/ht_3_add_models2.rst -------------------------------------------------------------------------------- /docs/en/devel/http-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/http-api.rst -------------------------------------------------------------------------------- /docs/en/devel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/index.rst -------------------------------------------------------------------------------- /docs/en/devel/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/controllers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/controllers.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/csvimport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/csvimport.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/decomposers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/decomposers.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/exceptions.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/fileformats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/fileformats.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/filehandlers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/filehandlers.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/files.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/files/deletable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/files/deletable.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/files/formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/files/formats.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/filters.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/forms.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/lifecycle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/lifecycle.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/mail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/mail.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/models.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/navigate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/navigate.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/plmapp_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/plmapp_tags.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/references.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/thumbnailers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/thumbnailers.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/utils.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/utils/archive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/utils/archive.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/utils/importing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/utils/importing.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/utils/units.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/utils/units.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/views.rst -------------------------------------------------------------------------------- /docs/en/devel/modules/views_params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/views_params.txt -------------------------------------------------------------------------------- /docs/en/devel/modules/widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/modules/widgets.rst -------------------------------------------------------------------------------- /docs/en/devel/publication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/publication.rst -------------------------------------------------------------------------------- /docs/en/devel/richtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/richtext.rst -------------------------------------------------------------------------------- /docs/en/devel/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/testing.rst -------------------------------------------------------------------------------- /docs/en/devel/uml_models_controllers.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/uml_models_controllers.dia -------------------------------------------------------------------------------- /docs/en/devel/uml_models_controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/devel/uml_models_controllers.png -------------------------------------------------------------------------------- /docs/en/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/glossary.rst -------------------------------------------------------------------------------- /docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/index.rst -------------------------------------------------------------------------------- /docs/en/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/license.rst -------------------------------------------------------------------------------- /docs/en/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/resources.rst -------------------------------------------------------------------------------- /docs/en/specs/clone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/specs/clone.rst -------------------------------------------------------------------------------- /docs/en/specs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/specs/index.rst -------------------------------------------------------------------------------- /docs/en/specs/lifecycle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/specs/lifecycle.rst -------------------------------------------------------------------------------- /docs/en/specs/publication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/specs/publication.rst -------------------------------------------------------------------------------- /docs/en/specs/restricted_access.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/specs/restricted_access.rst -------------------------------------------------------------------------------- /docs/en/specs/revisions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/specs/revisions.rst -------------------------------------------------------------------------------- /docs/en/user/PLMObject/1_common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/PLMObject/1_common.rst -------------------------------------------------------------------------------- /docs/en/user/PLMObject/2_part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/PLMObject/2_part.rst -------------------------------------------------------------------------------- /docs/en/user/PLMObject/3_document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/PLMObject/3_document.rst -------------------------------------------------------------------------------- /docs/en/user/download/openplm.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/download/openplm.xpi -------------------------------------------------------------------------------- /docs/en/user/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features.rst -------------------------------------------------------------------------------- /docs/en/user/features/browse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/browse.rst -------------------------------------------------------------------------------- /docs/en/user/features/create.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/create.rst -------------------------------------------------------------------------------- /docs/en/user/features/csv_import/BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/csv_import/BOM.csv -------------------------------------------------------------------------------- /docs/en/user/features/csv_import/PLMObject.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/csv_import/PLMObject.csv -------------------------------------------------------------------------------- /docs/en/user/features/csv_import/User.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/csv_import/User.csv -------------------------------------------------------------------------------- /docs/en/user/features/html/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/browse.html -------------------------------------------------------------------------------- /docs/en/user/features/html/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/create.html -------------------------------------------------------------------------------- /docs/en/user/features/html/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/css/search.css -------------------------------------------------------------------------------- /docs/en/user/features/html/img/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/img/focus.png -------------------------------------------------------------------------------- /docs/en/user/features/html/navigate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/navigate.html -------------------------------------------------------------------------------- /docs/en/user/features/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/search.html -------------------------------------------------------------------------------- /docs/en/user/features/html/study_doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/study_doc.html -------------------------------------------------------------------------------- /docs/en/user/features/html/study_part.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/html/study_part.html -------------------------------------------------------------------------------- /docs/en/user/features/markdown_syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/markdown_syntax.rst -------------------------------------------------------------------------------- /docs/en/user/features/navigate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/navigate.rst -------------------------------------------------------------------------------- /docs/en/user/features/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/search.rst -------------------------------------------------------------------------------- /docs/en/user/features/study.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/features/study.rst -------------------------------------------------------------------------------- /docs/en/user/images/3D1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/3D1.png -------------------------------------------------------------------------------- /docs/en/user/images/3D2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/3D2.png -------------------------------------------------------------------------------- /docs/en/user/images/3D3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/3D3.png -------------------------------------------------------------------------------- /docs/en/user/images/3Dview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/3Dview.png -------------------------------------------------------------------------------- /docs/en/user/images/Capture_openPLM_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/Capture_openPLM_browse.png -------------------------------------------------------------------------------- /docs/en/user/images/Capture_openPLM_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/Capture_openPLM_create.png -------------------------------------------------------------------------------- /docs/en/user/images/Capture_openPLM_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/Capture_openPLM_header.png -------------------------------------------------------------------------------- /docs/en/user/images/Capture_openPLM_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/Capture_openPLM_home.png -------------------------------------------------------------------------------- /docs/en/user/images/Capture_openPLM_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/Capture_openPLM_search.png -------------------------------------------------------------------------------- /docs/en/user/images/Capture_openPLM_study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/Capture_openPLM_study.png -------------------------------------------------------------------------------- /docs/en/user/images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/image_1.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_ci.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_co1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_co1.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_co2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_co2.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_conf.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_create.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_login.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_fc_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_fc_rev.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_ci.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_co1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_co1.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_co2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_co2.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_conf.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_create.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_em.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_login.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_ooo_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_ooo_rev.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_c2.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_ci.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_conf.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_create.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_em.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_em2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_em2.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_em3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_em3.png -------------------------------------------------------------------------------- /docs/en/user/images/pl_th_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/pl_th_login.png -------------------------------------------------------------------------------- /docs/en/user/images/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/sponsor.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/3Dview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/3Dview.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/browse.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/create.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/header.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/home.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/leftpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/leftpanel.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/navigate.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/navigate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/navigate2.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/search.png -------------------------------------------------------------------------------- /docs/en/user/images/thumbnails/study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/images/thumbnails/study.png -------------------------------------------------------------------------------- /docs/en/user/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/index.rst -------------------------------------------------------------------------------- /docs/en/user/plugin_freecad.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/plugin_freecad.rst -------------------------------------------------------------------------------- /docs/en/user/plugin_ooo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/plugin_ooo.rst -------------------------------------------------------------------------------- /docs/en/user/plugin_thunderbird.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/plugin_thunderbird.rst -------------------------------------------------------------------------------- /docs/en/user/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/plugins.rst -------------------------------------------------------------------------------- /docs/en/user/tuto_1_main_funct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/tuto_1_main_funct.rst -------------------------------------------------------------------------------- /docs/en/user/tuto_2_plmobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/tuto_2_plmobject.rst -------------------------------------------------------------------------------- /docs/en/user/tuto_3_user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/tuto_3_user.rst -------------------------------------------------------------------------------- /docs/en/user/tuto_4_group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/tuto_4_group.rst -------------------------------------------------------------------------------- /docs/en/user/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/user/tutorials.rst -------------------------------------------------------------------------------- /docs/en/whatsnew-2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew-2.1.rst -------------------------------------------------------------------------------- /docs/en/whatsnew/1.1/3D1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.1/3D1.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.1/3D2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.1/3D2.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.1/3D3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.1/3D3.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.1/3D_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.1/3D_old.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.1/webdav_nautilus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.1/webdav_nautilus.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/bom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/bom_1.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/files_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/files_1.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/intro.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/lifecycle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/lifecycle_1.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/navigate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/navigate_1.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/navigate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/navigate_2.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/navigate_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/navigate_3.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/navigate_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/navigate_4.png -------------------------------------------------------------------------------- /docs/en/whatsnew/1.2/upload.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/1.2/upload.webm -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/3D_mendelmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/3D_mendelmax.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/attributes.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/avatar_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/avatar_card.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/avatar_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/avatar_comment.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/avatar_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/avatar_profile.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/avatar_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/avatar_timeline.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/cards.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/editor_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/editor_compose.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/editor_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/editor_preview.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/editor_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/editor_result.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/history.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/home_page.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/login_page.png -------------------------------------------------------------------------------- /docs/en/whatsnew/2.0/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/2.0/toolbar.png -------------------------------------------------------------------------------- /docs/en/whatsnew/whatsnew-1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/whatsnew-1.1.rst -------------------------------------------------------------------------------- /docs/en/whatsnew/whatsnew-1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/whatsnew-1.2.rst -------------------------------------------------------------------------------- /docs/en/whatsnew/whatsnew-2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/en/whatsnew/whatsnew-2.0.rst -------------------------------------------------------------------------------- /docs/fr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/Makefile -------------------------------------------------------------------------------- /docs/fr/_ext: -------------------------------------------------------------------------------- 1 | ../en/_ext/ -------------------------------------------------------------------------------- /docs/fr/_static/sphinxdoc.css: -------------------------------------------------------------------------------- 1 | /home/zaha/var/django/openPLM/trunk/docs/en/_static/sphinxdoc.css -------------------------------------------------------------------------------- /docs/fr/_static/user_features/css/feature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/_static/user_features/css/feature.css -------------------------------------------------------------------------------- /docs/fr/_static/user_features/img/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/_static/user_features/img/focus.png -------------------------------------------------------------------------------- /docs/fr/_templates/lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/_templates/lang.html -------------------------------------------------------------------------------- /docs/fr/_templates/list_lang.html: -------------------------------------------------------------------------------- 1 | ../../en/_templates/list_lang.html -------------------------------------------------------------------------------- /docs/fr/admin/apache: -------------------------------------------------------------------------------- 1 | ../../en/admin/apache/ -------------------------------------------------------------------------------- /docs/fr/admin/applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/badges/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/badges/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/calendrier/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/calendrier/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/document3D/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/document3D/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/ecr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/ecr/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/gdoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/gdoc/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/oerp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/oerp/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/pdfgen/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/pdfgen/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/subversion/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/subversion/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/applications/webdav/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/applications/webdav/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/commands.rst -------------------------------------------------------------------------------- /docs/fr/admin/how-tos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/how-tos.rst -------------------------------------------------------------------------------- /docs/fr/admin/ht_1_install_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/ht_1_install_server.rst -------------------------------------------------------------------------------- /docs/fr/admin/ht_2_install_server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/ht_2_install_server.rst -------------------------------------------------------------------------------- /docs/fr/admin/ht_3_upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/ht_3_upgrade.rst -------------------------------------------------------------------------------- /docs/fr/admin/images/admin_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/images/admin_login.png -------------------------------------------------------------------------------- /docs/fr/admin/images/admin_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/images/admin_user.png -------------------------------------------------------------------------------- /docs/fr/admin/images/admin_userprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/images/admin_userprofile.png -------------------------------------------------------------------------------- /docs/fr/admin/images/company_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/images/company_login.png -------------------------------------------------------------------------------- /docs/fr/admin/images/openplm_connexion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/images/openplm_connexion.png -------------------------------------------------------------------------------- /docs/fr/admin/images/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/images/sponsor.png -------------------------------------------------------------------------------- /docs/fr/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/index.rst -------------------------------------------------------------------------------- /docs/fr/admin/lifecycle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/lifecycle.rst -------------------------------------------------------------------------------- /docs/fr/admin/publication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/publication.rst -------------------------------------------------------------------------------- /docs/fr/admin/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/admin/settings.rst -------------------------------------------------------------------------------- /docs/fr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/conf.py -------------------------------------------------------------------------------- /docs/fr/devel: -------------------------------------------------------------------------------- 1 | ../en/devel/ -------------------------------------------------------------------------------- /docs/fr/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/glossary.rst -------------------------------------------------------------------------------- /docs/fr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/index.rst -------------------------------------------------------------------------------- /docs/fr/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/license.rst -------------------------------------------------------------------------------- /docs/fr/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/resources.rst -------------------------------------------------------------------------------- /docs/fr/specs: -------------------------------------------------------------------------------- 1 | ../en/specs/ -------------------------------------------------------------------------------- /docs/fr/user/PLMObject/1_common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/PLMObject/1_common.rst -------------------------------------------------------------------------------- /docs/fr/user/PLMObject/2_part.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/PLMObject/2_part.rst -------------------------------------------------------------------------------- /docs/fr/user/PLMObject/3_document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/PLMObject/3_document.rst -------------------------------------------------------------------------------- /docs/fr/user/download: -------------------------------------------------------------------------------- 1 | ../../en/user/download/ -------------------------------------------------------------------------------- /docs/fr/user/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features.rst -------------------------------------------------------------------------------- /docs/fr/user/features/browse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/browse.rst -------------------------------------------------------------------------------- /docs/fr/user/features/create.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/create.rst -------------------------------------------------------------------------------- /docs/fr/user/features/csv_import/BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/csv_import/BOM.csv -------------------------------------------------------------------------------- /docs/fr/user/features/csv_import/PLMObject.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/csv_import/PLMObject.csv -------------------------------------------------------------------------------- /docs/fr/user/features/csv_import/User.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/csv_import/User.csv -------------------------------------------------------------------------------- /docs/fr/user/features/html/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/browse.html -------------------------------------------------------------------------------- /docs/fr/user/features/html/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/create.html -------------------------------------------------------------------------------- /docs/fr/user/features/html/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/css/search.css -------------------------------------------------------------------------------- /docs/fr/user/features/html/img/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/img/focus.png -------------------------------------------------------------------------------- /docs/fr/user/features/html/navigate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/navigate.html -------------------------------------------------------------------------------- /docs/fr/user/features/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/search.html -------------------------------------------------------------------------------- /docs/fr/user/features/html/study_doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/study_doc.html -------------------------------------------------------------------------------- /docs/fr/user/features/html/study_part.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/html/study_part.html -------------------------------------------------------------------------------- /docs/fr/user/features/navigate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/navigate.rst -------------------------------------------------------------------------------- /docs/fr/user/features/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/search.rst -------------------------------------------------------------------------------- /docs/fr/user/features/study.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/features/study.rst -------------------------------------------------------------------------------- /docs/fr/user/images/3Dview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/3Dview.png -------------------------------------------------------------------------------- /docs/fr/user/images/Capture_openPLM_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/Capture_openPLM_browse.png -------------------------------------------------------------------------------- /docs/fr/user/images/Capture_openPLM_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/Capture_openPLM_create.png -------------------------------------------------------------------------------- /docs/fr/user/images/Capture_openPLM_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/Capture_openPLM_header.png -------------------------------------------------------------------------------- /docs/fr/user/images/Capture_openPLM_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/Capture_openPLM_home.png -------------------------------------------------------------------------------- /docs/fr/user/images/Capture_openPLM_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/Capture_openPLM_search.png -------------------------------------------------------------------------------- /docs/fr/user/images/Capture_openPLM_study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/Capture_openPLM_study.png -------------------------------------------------------------------------------- /docs/fr/user/images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/image_1.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_ci.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_co1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_co1.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_co2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_co2.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_conf.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_create.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_login.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_fc_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_fc_rev.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_ci.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_co1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_co1.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_co2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_co2.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_conf.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_create.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_em.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_login.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_ooo_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_ooo_rev.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_c2.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_ci.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_conf.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_create.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_em.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_em.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_em2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_em2.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_em3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_em3.png -------------------------------------------------------------------------------- /docs/fr/user/images/pl_th_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/pl_th_login.png -------------------------------------------------------------------------------- /docs/fr/user/images/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/sponsor.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/3Dview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/3Dview.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/browse.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/create.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/header.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/home.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/leftpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/leftpanel.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/navigate.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/navigate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/navigate2.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/search.png -------------------------------------------------------------------------------- /docs/fr/user/images/thumbnails/study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/images/thumbnails/study.png -------------------------------------------------------------------------------- /docs/fr/user/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/index.rst -------------------------------------------------------------------------------- /docs/fr/user/plugin_freecad.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/plugin_freecad.rst -------------------------------------------------------------------------------- /docs/fr/user/plugin_ooo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/plugin_ooo.rst -------------------------------------------------------------------------------- /docs/fr/user/plugin_thunderbird.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/plugin_thunderbird.rst -------------------------------------------------------------------------------- /docs/fr/user/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/plugins.rst -------------------------------------------------------------------------------- /docs/fr/user/tuto_1_main_funct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/tuto_1_main_funct.rst -------------------------------------------------------------------------------- /docs/fr/user/tuto_2_plmobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/tuto_2_plmobject.rst -------------------------------------------------------------------------------- /docs/fr/user/tuto_3_user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/tuto_3_user.rst -------------------------------------------------------------------------------- /docs/fr/user/tuto_4_group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/tuto_4_group.rst -------------------------------------------------------------------------------- /docs/fr/user/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/user/tutorials.rst -------------------------------------------------------------------------------- /docs/fr/whatsnew-1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew-1.2.rst -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.1/3D1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.1/3D1.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.1/3D2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.1/3D2.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.1/3D3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.1/3D3.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.1/3D_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.1/3D_old.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.1/webdav_nautilus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.1/webdav_nautilus.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/bom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/bom_1.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/files_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/files_1.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/intro.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/lifecycle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/lifecycle_1.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/navigate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/navigate_1.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/navigate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/navigate_2.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/navigate_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/navigate_3.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/navigate_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/navigate_4.png -------------------------------------------------------------------------------- /docs/fr/whatsnew/1.2/upload.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/1.2/upload.webm -------------------------------------------------------------------------------- /docs/fr/whatsnew/whatsnew-1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/fr/whatsnew/whatsnew-1.1.rst -------------------------------------------------------------------------------- /docs/skel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/skel/Makefile -------------------------------------------------------------------------------- /docs/skel/_ext: -------------------------------------------------------------------------------- 1 | ../en/_ext/ -------------------------------------------------------------------------------- /docs/skel/_templates/list_lang.html: -------------------------------------------------------------------------------- 1 | ../../en/_templates/list_lang.html -------------------------------------------------------------------------------- /docs/skel/admin/apache: -------------------------------------------------------------------------------- 1 | ../../en/admin/apache/ -------------------------------------------------------------------------------- /docs/skel/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/skel/conf.py -------------------------------------------------------------------------------- /docs/skel/devel: -------------------------------------------------------------------------------- 1 | ../en/devel/ -------------------------------------------------------------------------------- /docs/skel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/skel/index.rst -------------------------------------------------------------------------------- /docs/skel/lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/skel/lang.html -------------------------------------------------------------------------------- /docs/skel/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/docs/skel/resources.rst -------------------------------------------------------------------------------- /docs/skel/specs: -------------------------------------------------------------------------------- 1 | ../en/specs/ -------------------------------------------------------------------------------- /openPLM/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/.coveragerc -------------------------------------------------------------------------------- /openPLM/GPLv3-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/GPLv3-LICENSE.txt -------------------------------------------------------------------------------- /openPLM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/Makefile -------------------------------------------------------------------------------- /openPLM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/__init__.py -------------------------------------------------------------------------------- /openPLM/apache/access.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apache/access.wsgi -------------------------------------------------------------------------------- /openPLM/apache/access_restricted.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apache/access_restricted.wsgi -------------------------------------------------------------------------------- /openPLM/apache/django.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apache/django.wsgi -------------------------------------------------------------------------------- /openPLM/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/badges/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/__init__.py -------------------------------------------------------------------------------- /openPLM/apps/badges/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/admin.py -------------------------------------------------------------------------------- /openPLM/apps/badges/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/badges/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/badges/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/managers.py -------------------------------------------------------------------------------- /openPLM/apps/badges/meta_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/meta_badges.py -------------------------------------------------------------------------------- /openPLM/apps/badges/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/middleware.py -------------------------------------------------------------------------------- /openPLM/apps/badges/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/badges/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/badges/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/models.py -------------------------------------------------------------------------------- /openPLM/apps/badges/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/signals.py -------------------------------------------------------------------------------- /openPLM/apps/badges/static/css/badges.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/static/css/badges.css -------------------------------------------------------------------------------- /openPLM/apps/badges/static/img/badges/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/static/img/badges/gold.png -------------------------------------------------------------------------------- /openPLM/apps/badges/templates/badges/badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/templates/badges/badge.html -------------------------------------------------------------------------------- /openPLM/apps/badges/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/badges/templatetags/badges_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/templatetags/badges_tags.py -------------------------------------------------------------------------------- /openPLM/apps/badges/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/tests.py -------------------------------------------------------------------------------- /openPLM/apps/badges/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/urls.py -------------------------------------------------------------------------------- /openPLM/apps/badges/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/utils.py -------------------------------------------------------------------------------- /openPLM/apps/badges/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/badges/views.py -------------------------------------------------------------------------------- /openPLM/apps/cad/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/cad/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cad/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/cad/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/cad/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cad/models.py -------------------------------------------------------------------------------- /openPLM/apps/cad/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cad/tests.py -------------------------------------------------------------------------------- /openPLM/apps/cad/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cad/views.py -------------------------------------------------------------------------------- /openPLM/apps/cae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/cae/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cae/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/cae/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/cae/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cae/models.py -------------------------------------------------------------------------------- /openPLM/apps/cae/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cae/tests.py -------------------------------------------------------------------------------- /openPLM/apps/cae/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/cae/views.py -------------------------------------------------------------------------------- /openPLM/apps/calendrier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/calendrier/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/calendrier/models.py -------------------------------------------------------------------------------- /openPLM/apps/calendrier/static/css/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/calendrier/static/css/calendar.css -------------------------------------------------------------------------------- /openPLM/apps/calendrier/templates/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/calendrier/templates/calendar.html -------------------------------------------------------------------------------- /openPLM/apps/calendrier/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/calendrier/tests.py -------------------------------------------------------------------------------- /openPLM/apps/calendrier/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/calendrier/urls.py -------------------------------------------------------------------------------- /openPLM/apps/calendrier/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/calendrier/views.py -------------------------------------------------------------------------------- /openPLM/apps/computer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/computer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/computer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/computer/models.py -------------------------------------------------------------------------------- /openPLM/apps/computer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/computer/tests.py -------------------------------------------------------------------------------- /openPLM/apps/computer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/computer/views.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/STP_converter_WebGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/STP_converter_WebGL.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/document3D/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/api.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/arborescense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/arborescense.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/assembly.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/classes.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/0.js -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/1.js -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/2.js -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/bolt.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/bolt.step -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/nut.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/nut.step -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/rod.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/rod.step -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/stp_false.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/stp_false.stp -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/test.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/test.stp -------------------------------------------------------------------------------- /openPLM/apps/document3D/data_test/test2.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/data_test/test2.stp -------------------------------------------------------------------------------- /openPLM/apps/document3D/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/forms.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/generate3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/generate3D.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/generateComposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/generateComposition.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/mesh.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/document3D/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/models.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/part21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/part21.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/part21_preparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/part21_preparse.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/pov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/pov.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/static/css/3D.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/static/css/3D.css -------------------------------------------------------------------------------- /openPLM/apps/document3D/static/img/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/static/img/views.png -------------------------------------------------------------------------------- /openPLM/apps/document3D/static/img/views.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/static/img/views.svg -------------------------------------------------------------------------------- /openPLM/apps/document3D/static/js/3D/ajax3D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/static/js/3D/ajax3D.js -------------------------------------------------------------------------------- /openPLM/apps/document3D/static/js/3D/struct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/static/js/3D/struct.js -------------------------------------------------------------------------------- /openPLM/apps/document3D/static/js/3D/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/static/js/3D/view.js -------------------------------------------------------------------------------- /openPLM/apps/document3D/tasks.py: -------------------------------------------------------------------------------- 1 | import openPLM.apps.document3D.models 2 | -------------------------------------------------------------------------------- /openPLM/apps/document3D/templates/Display3D.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/templates/Display3D.htm -------------------------------------------------------------------------------- /openPLM/apps/document3D/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/tests/__init__.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/tests/arborescense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/tests/arborescense.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/tests/assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/tests/assembly.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/tests/decomposer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/tests/decomposer.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/tests/views.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/urls.py -------------------------------------------------------------------------------- /openPLM/apps/document3D/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/document3D/views.py -------------------------------------------------------------------------------- /openPLM/apps/ecr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/ecr/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/controllers.py -------------------------------------------------------------------------------- /openPLM/apps/ecr/fixtures/lifecycles_ecr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/fixtures/lifecycles_ecr.json -------------------------------------------------------------------------------- /openPLM/apps/ecr/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/forms.py -------------------------------------------------------------------------------- /openPLM/apps/ecr/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/ecr/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/ecr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/models.py -------------------------------------------------------------------------------- /openPLM/apps/ecr/templates/browse_ecr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/templates/browse_ecr.html -------------------------------------------------------------------------------- /openPLM/apps/ecr/templates/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/templates/changes.html -------------------------------------------------------------------------------- /openPLM/apps/ecr/templates/ecrs/plmobjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/templates/ecrs/plmobjects.html -------------------------------------------------------------------------------- /openPLM/apps/ecr/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/ecr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/urls.py -------------------------------------------------------------------------------- /openPLM/apps/ecr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/ecr/views.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/gdoc/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/forms.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/gutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/gutils.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/gdoc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/models.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/templates/gdoc_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/templates/gdoc_files.html -------------------------------------------------------------------------------- /openPLM/apps/gdoc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/tests.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/urls.py -------------------------------------------------------------------------------- /openPLM/apps/gdoc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/gdoc/views.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/oerp/erp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/erp.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/forms.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/oerp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/oerp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/oerp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/models.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/product.uom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/product.uom.csv -------------------------------------------------------------------------------- /openPLM/apps/oerp/templates/erp_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/templates/erp_summary.html -------------------------------------------------------------------------------- /openPLM/apps/oerp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/tests.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/urls.py -------------------------------------------------------------------------------- /openPLM/apps/oerp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/oerp/views.py -------------------------------------------------------------------------------- /openPLM/apps/office/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/office/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/office/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/office/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/office/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/office/models.py -------------------------------------------------------------------------------- /openPLM/apps/office/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/office/tests.py -------------------------------------------------------------------------------- /openPLM/apps/office/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/office/views.py -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/forms.py -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/templates/attributes.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/templates/attributes.xhtml -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/templates/base.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/templates/base.xhtml -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/templates/bom.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/templates/bom.xhtml -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/templates/select_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/templates/select_pdf.html -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/templates/summary.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/templates/summary.xhtml -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/tests.py -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/urls.py -------------------------------------------------------------------------------- /openPLM/apps/pdfgen/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/pdfgen/views.py -------------------------------------------------------------------------------- /openPLM/apps/richpage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/richpage/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/richpage/forms.py -------------------------------------------------------------------------------- /openPLM/apps/richpage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/richpage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/richpage/models.py -------------------------------------------------------------------------------- /openPLM/apps/richpage/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/richpage/tests.py -------------------------------------------------------------------------------- /openPLM/apps/richpage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/richpage/urls.py -------------------------------------------------------------------------------- /openPLM/apps/richpage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/richpage/views.py -------------------------------------------------------------------------------- /openPLM/apps/rss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/rss/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/rss/feeds.py -------------------------------------------------------------------------------- /openPLM/apps/rss/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/rss/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/rss/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/rss/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/rss/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/rss/tests.py -------------------------------------------------------------------------------- /openPLM/apps/rss/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/rss/urls.py -------------------------------------------------------------------------------- /openPLM/apps/rss/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /openPLM/apps/software/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/software/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/software/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/software/models.py -------------------------------------------------------------------------------- /openPLM/apps/software/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/software/tests.py -------------------------------------------------------------------------------- /openPLM/apps/software/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /openPLM/apps/subversion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/subversion/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/subversion/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/subversion/models.py -------------------------------------------------------------------------------- /openPLM/apps/subversion/templates/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/subversion/templates/logs.html -------------------------------------------------------------------------------- /openPLM/apps/subversion/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/subversion/tests.py -------------------------------------------------------------------------------- /openPLM/apps/subversion/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/subversion/urls.py -------------------------------------------------------------------------------- /openPLM/apps/subversion/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/subversion/views.py -------------------------------------------------------------------------------- /openPLM/apps/urldoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/urldoc/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/urldoc/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/apps/urldoc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/urldoc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/urldoc/models.py -------------------------------------------------------------------------------- /openPLM/apps/urldoc/templates/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/urldoc/templates/content.html -------------------------------------------------------------------------------- /openPLM/apps/urldoc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/urldoc/tests.py -------------------------------------------------------------------------------- /openPLM/apps/urldoc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/urldoc/urls.py -------------------------------------------------------------------------------- /openPLM/apps/urldoc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/urldoc/views.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/__init__.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/acl.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/backends/__init__.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/backends/openplm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/backends/openplm.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/apps/webdav/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/tests.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/urls.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/util.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/views.py -------------------------------------------------------------------------------- /openPLM/apps/webdav/webdav_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/apps/webdav/webdav_handler.py -------------------------------------------------------------------------------- /openPLM/bin/bootstrap_namespace_prefixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/bootstrap_namespace_prefixer.py -------------------------------------------------------------------------------- /openPLM/bin/change_secret_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/change_secret_key.py -------------------------------------------------------------------------------- /openPLM/bin/check_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/check_modules.py -------------------------------------------------------------------------------- /openPLM/bin/extractor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/extractor.sh -------------------------------------------------------------------------------- /openPLM/bin/run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/run_coverage.sh -------------------------------------------------------------------------------- /openPLM/bin/runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/runserver.sh -------------------------------------------------------------------------------- /openPLM/bin/translate_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/bin/translate_all.sh -------------------------------------------------------------------------------- /openPLM/datatests/office_a4_3p.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/datatests/office_a4_3p.odt -------------------------------------------------------------------------------- /openPLM/datatests/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/datatests/thumbnail.png -------------------------------------------------------------------------------- /openPLM/django_xml_test_runner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/django_xml_test_runner/LICENSE -------------------------------------------------------------------------------- /openPLM/django_xml_test_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/django_xml_test_runner/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/django_xml_test_runner/setup.py -------------------------------------------------------------------------------- /openPLM/djcelery_transactions/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/djcelery_transactions/AUTHORS -------------------------------------------------------------------------------- /openPLM/djcelery_transactions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/djcelery_transactions/LICENSE -------------------------------------------------------------------------------- /openPLM/djcelery_transactions/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/djcelery_transactions/README -------------------------------------------------------------------------------- /openPLM/djcelery_transactions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/djcelery_transactions/__init__.py -------------------------------------------------------------------------------- /openPLM/etc/default/celeryd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/etc/default/celeryd -------------------------------------------------------------------------------- /openPLM/etc/init.d/celeryd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/etc/init.d/celeryd -------------------------------------------------------------------------------- /openPLM/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/go.py -------------------------------------------------------------------------------- /openPLM/help/en/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/help/en/search.rst -------------------------------------------------------------------------------- /openPLM/help/es/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/help/es/search.rst -------------------------------------------------------------------------------- /openPLM/help/fr/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/help/fr/search.rst -------------------------------------------------------------------------------- /openPLM/help/ja/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/help/ja/search.rst -------------------------------------------------------------------------------- /openPLM/help/ru/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/help/ru/search.rst -------------------------------------------------------------------------------- /openPLM/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openPLM/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openPLM/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openPLM/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openPLM/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openPLM/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/manage.py -------------------------------------------------------------------------------- /openPLM/plmapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/admin.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/document.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/group.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/part.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/plmobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/plmobject.py -------------------------------------------------------------------------------- /openPLM/plmapp/controllers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/controllers/user.py -------------------------------------------------------------------------------- /openPLM/plmapp/csvimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/csvimport.py -------------------------------------------------------------------------------- /openPLM/plmapp/customized_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/plmapp/decomposers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/decomposers/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/decomposers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/decomposers/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/exceptions.py -------------------------------------------------------------------------------- /openPLM/plmapp/fileformats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/fileformats.py -------------------------------------------------------------------------------- /openPLM/plmapp/filehandlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/filehandlers/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/filehandlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/filehandlers/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/filehandlers/odfhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/filehandlers/odfhandler.py -------------------------------------------------------------------------------- /openPLM/plmapp/filehandlers/pdfhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/filehandlers/pdfhandler.py -------------------------------------------------------------------------------- /openPLM/plmapp/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/plmapp/files/deletable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/files/deletable.py -------------------------------------------------------------------------------- /openPLM/plmapp/files/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/files/formats.py -------------------------------------------------------------------------------- /openPLM/plmapp/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/filters.py -------------------------------------------------------------------------------- /openPLM/plmapp/fixtures/extra_lifecycles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/fixtures/extra_lifecycles.json -------------------------------------------------------------------------------- /openPLM/plmapp/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/fixtures/initial_data.json -------------------------------------------------------------------------------- /openPLM/plmapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/forms.py -------------------------------------------------------------------------------- /openPLM/plmapp/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/lifecycle.py -------------------------------------------------------------------------------- /openPLM/plmapp/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/mail.py -------------------------------------------------------------------------------- /openPLM/plmapp/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/management/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/plmapp/management/commands/sponsor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/management/commands/sponsor.py -------------------------------------------------------------------------------- /openPLM/plmapp/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/plmapp/middleware/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/middleware/locale.py -------------------------------------------------------------------------------- /openPLM/plmapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /openPLM/plmapp/migrations/0005_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/migrations/0005_auto.py -------------------------------------------------------------------------------- /openPLM/plmapp/migrations/0021_file_ctime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/migrations/0021_file_ctime.py -------------------------------------------------------------------------------- /openPLM/plmapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/plmapp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/document.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/group.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/history.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/iobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/iobject.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/lifecycle.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/link.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/part.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/plmobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/plmobject.py -------------------------------------------------------------------------------- /openPLM/plmapp/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/models/user.py -------------------------------------------------------------------------------- /openPLM/plmapp/navigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/navigate.py -------------------------------------------------------------------------------- /openPLM/plmapp/query_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/query_parser.py -------------------------------------------------------------------------------- /openPLM/plmapp/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/references.py -------------------------------------------------------------------------------- /openPLM/plmapp/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/search.py -------------------------------------------------------------------------------- /openPLM/plmapp/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/search_indexes.py -------------------------------------------------------------------------------- /openPLM/plmapp/search_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/search_sites.py -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/chosen-sprite.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/chosen.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/files.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/files.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/help.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/import_csv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/import_csv.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/lifecycle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/lifecycle.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/loginpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/loginpage.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/management.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/management.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/navigate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/navigate.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/openplm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/openplm.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/openplm/images/active.png: -------------------------------------------------------------------------------- 1 | ui-bg_highlight-soft_65_e3017d_1x100.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/openplm/images/hover.png: -------------------------------------------------------------------------------- 1 | ui-bg_highlight-soft_80_e3017d_1x100.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/openplm/images/normal.png: -------------------------------------------------------------------------------- 1 | ui-bg_inset-soft_15_373737_1x100.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/search.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/showLoading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/showLoading.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/css/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/css/timeline.css -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/arrow_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/arrow_middle.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/arrows.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/banner.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/bg_tr_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/bg_tr_doc.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/footer.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/h2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/h2_bg.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/h2_bg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/h2_bg_1.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/h2_bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/h2_bg_2.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/dark/logo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/dark/logo_o.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/favicon.ico -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/feed_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/feed_icon.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/icon_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/icon_doc.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/icon_part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/icon_part.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/icon_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/icon_user.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/image-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/image-missing.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/line.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/line_part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/line_part.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/linobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/linobject.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/loading-bars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/loading-bars.gif -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/loading.gif -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/lock_unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/lock_unlock.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/lock_unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/lock_unlock.svg -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/menuitem_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/menuitem_home.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/navigate/main.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/navigate/main.xcf -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/navigate/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/navigate/next.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/navigate/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/navigate/prev.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/puce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/puce.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/trash_can1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/trash_can1.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/triangle.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/triangle.svg -------------------------------------------------------------------------------- /openPLM/plmapp/static/img/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/img/wmd-buttons.png -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/async_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/async_search.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/bom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/bom.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/confirm.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/create.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/file.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/help.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/jquery.markedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/jquery.markedit.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/jquery.min.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/navigate.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/opera_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/opera_upload.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/panels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/panels.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/plmapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/plmapp.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/raphael-min.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/screenfull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/screenfull.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/screenfull.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/screenfull.min.js -------------------------------------------------------------------------------- /openPLM/plmapp/static/js/showdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/static/js/showdown.js -------------------------------------------------------------------------------- /openPLM/plmapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tasks.py -------------------------------------------------------------------------------- /openPLM/plmapp/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openPLM/plmapp/templatetags/plmapp_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/templatetags/plmapp_tags.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/ajax.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/api.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/archive.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/closure.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/assembly.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/deletion.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/document.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/group.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/part.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/controllers/partdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/controllers/partdoc.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/csvimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/csvimport.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/filehandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/filehandlers.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/filters.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/lifecycle.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/models.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openPLM/plmapp/tests/navigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/navigate.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/pcle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/pcle.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/reference.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/restricted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/restricted.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/runner.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/document.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/group.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/main.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/part.py -------------------------------------------------------------------------------- /openPLM/plmapp/tests/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/tests/views/user.py -------------------------------------------------------------------------------- /openPLM/plmapp/thumbnailers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/thumbnailers/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/thumbnailers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/thumbnailers/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/thumbnailers/swthumbnailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/thumbnailers/swthumbnailer.py -------------------------------------------------------------------------------- /openPLM/plmapp/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/utils/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/utils/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/utils/archive.py -------------------------------------------------------------------------------- /openPLM/plmapp/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/utils/encoding.py -------------------------------------------------------------------------------- /openPLM/plmapp/utils/importing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/utils/importing.py -------------------------------------------------------------------------------- /openPLM/plmapp/utils/unicodecsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/utils/unicodecsv.py -------------------------------------------------------------------------------- /openPLM/plmapp/utils/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/utils/units.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/__init__.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/ajax.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/api.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/base.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/document.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/group.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/main.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/part.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/plmobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/plmobject.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/user.py -------------------------------------------------------------------------------- /openPLM/plmapp/views/views_params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/views/views_params.txt -------------------------------------------------------------------------------- /openPLM/plmapp/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/plmapp/widgets.py -------------------------------------------------------------------------------- /openPLM/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/settings.py -------------------------------------------------------------------------------- /openPLM/settings_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/settings_tests.py -------------------------------------------------------------------------------- /openPLM/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/404.html -------------------------------------------------------------------------------- /openPLM/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/500.html -------------------------------------------------------------------------------- /openPLM/templates/attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/attributes.html -------------------------------------------------------------------------------- /openPLM/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/base.html -------------------------------------------------------------------------------- /openPLM/templates/blocks/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/blocks/menu.html -------------------------------------------------------------------------------- /openPLM/templates/blocks/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/blocks/reference.html -------------------------------------------------------------------------------- /openPLM/templates/blocks/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/blocks/search.html -------------------------------------------------------------------------------- /openPLM/templates/blocks/supermenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/blocks/supermenu.html -------------------------------------------------------------------------------- /openPLM/templates/blocks/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/blocks/user.html -------------------------------------------------------------------------------- /openPLM/templates/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/browse.html -------------------------------------------------------------------------------- /openPLM/templates/clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/clone.html -------------------------------------------------------------------------------- /openPLM/templates/comments/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/comments/preview.html -------------------------------------------------------------------------------- /openPLM/templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/create.html -------------------------------------------------------------------------------- /openPLM/templates/documents/clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/documents/clone.html -------------------------------------------------------------------------------- /openPLM/templates/documents/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/documents/files.html -------------------------------------------------------------------------------- /openPLM/templates/documents/files_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/documents/files_add.html -------------------------------------------------------------------------------- /openPLM/templates/documents/parts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/documents/parts.html -------------------------------------------------------------------------------- /openPLM/templates/documents/parts_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/documents/parts_add.html -------------------------------------------------------------------------------- /openPLM/templates/documents/revisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/documents/revisions.html -------------------------------------------------------------------------------- /openPLM/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/edit.html -------------------------------------------------------------------------------- /openPLM/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/error.html -------------------------------------------------------------------------------- /openPLM/templates/groups/add_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/groups/add_user.html -------------------------------------------------------------------------------- /openPLM/templates/groups/ask_to_join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/groups/ask_to_join.html -------------------------------------------------------------------------------- /openPLM/templates/groups/identity_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/groups/identity_card.html -------------------------------------------------------------------------------- /openPLM/templates/groups/objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/groups/objects.html -------------------------------------------------------------------------------- /openPLM/templates/groups/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/groups/users.html -------------------------------------------------------------------------------- /openPLM/templates/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/history.html -------------------------------------------------------------------------------- /openPLM/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/home.html -------------------------------------------------------------------------------- /openPLM/templates/identity_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/identity_card.html -------------------------------------------------------------------------------- /openPLM/templates/import/csv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/import/csv.html -------------------------------------------------------------------------------- /openPLM/templates/import/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/import/done.html -------------------------------------------------------------------------------- /openPLM/templates/lifecycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/lifecycle.html -------------------------------------------------------------------------------- /openPLM/templates/lifecycle_cancelled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/lifecycle_cancelled.html -------------------------------------------------------------------------------- /openPLM/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/login.html -------------------------------------------------------------------------------- /openPLM/templates/mails/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/history.html -------------------------------------------------------------------------------- /openPLM/templates/mails/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/history.txt -------------------------------------------------------------------------------- /openPLM/templates/mails/invitation1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/invitation1.html -------------------------------------------------------------------------------- /openPLM/templates/mails/invitation1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/invitation1.txt -------------------------------------------------------------------------------- /openPLM/templates/mails/invitation2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/invitation2.html -------------------------------------------------------------------------------- /openPLM/templates/mails/invitation2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/invitation2.txt -------------------------------------------------------------------------------- /openPLM/templates/mails/new_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/new_account.html -------------------------------------------------------------------------------- /openPLM/templates/mails/new_account.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/mails/new_account.txt -------------------------------------------------------------------------------- /openPLM/templates/management_replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/management_replace.html -------------------------------------------------------------------------------- /openPLM/templates/navigate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/navigate.html -------------------------------------------------------------------------------- /openPLM/templates/navigate/add_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/navigate/add_buttons.html -------------------------------------------------------------------------------- /openPLM/templates/navigate/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/navigate/node.html -------------------------------------------------------------------------------- /openPLM/templates/parts/alternates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/alternates.html -------------------------------------------------------------------------------- /openPLM/templates/parts/alternates_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/alternates_add.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_add.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_alt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_alt.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_diff.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_docs.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_edit.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_replace.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_table.html -------------------------------------------------------------------------------- /openPLM/templates/parts/bom_thead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/bom_thead.html -------------------------------------------------------------------------------- /openPLM/templates/parts/clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/clone.html -------------------------------------------------------------------------------- /openPLM/templates/parts/doccad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/doccad.html -------------------------------------------------------------------------------- /openPLM/templates/parts/doccad_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/doccad_add.html -------------------------------------------------------------------------------- /openPLM/templates/parts/identity_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/identity_card.html -------------------------------------------------------------------------------- /openPLM/templates/parts/parents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/parents.html -------------------------------------------------------------------------------- /openPLM/templates/parts/revisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/parts/revisions.html -------------------------------------------------------------------------------- /openPLM/templates/public.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/public.html -------------------------------------------------------------------------------- /openPLM/templates/render_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/render_search.html -------------------------------------------------------------------------------- /openPLM/templates/revisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/revisions.html -------------------------------------------------------------------------------- /openPLM/templates/search/indexes/plmapp/documentfile_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.filename }} 2 | -------------------------------------------------------------------------------- /openPLM/templates/search/indexes_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/search/indexes_text.txt -------------------------------------------------------------------------------- /openPLM/templates/search/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/search/result.html -------------------------------------------------------------------------------- /openPLM/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/search/search.html -------------------------------------------------------------------------------- /openPLM/templates/snippets/astable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/snippets/astable.html -------------------------------------------------------------------------------- /openPLM/templates/snippets/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/snippets/pagination.html -------------------------------------------------------------------------------- /openPLM/templates/snippets/time_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/snippets/time_filter.html -------------------------------------------------------------------------------- /openPLM/templates/snippets/undo_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/snippets/undo_form.html -------------------------------------------------------------------------------- /openPLM/templates/users/delegation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/delegation.html -------------------------------------------------------------------------------- /openPLM/templates/users/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/files.html -------------------------------------------------------------------------------- /openPLM/templates/users/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/groups.html -------------------------------------------------------------------------------- /openPLM/templates/users/identity_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/identity_card.html -------------------------------------------------------------------------------- /openPLM/templates/users/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/password.html -------------------------------------------------------------------------------- /openPLM/templates/users/plmobjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/plmobjects.html -------------------------------------------------------------------------------- /openPLM/templates/users/sponsor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/templates/users/sponsor.html -------------------------------------------------------------------------------- /openPLM/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/urls.py -------------------------------------------------------------------------------- /openPLM/xapian_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/openPLM/xapian_backend.py -------------------------------------------------------------------------------- /plugins/freecad/LICENSE-lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/LICENSE-lgpl-2.1.txt -------------------------------------------------------------------------------- /plugins/freecad/OpenPLM/Init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/OpenPLM/Init.py -------------------------------------------------------------------------------- /plugins/freecad/OpenPLM/InitGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/OpenPLM/InitGui.py -------------------------------------------------------------------------------- /plugins/freecad/OpenPLM/banner_openplm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/OpenPLM/banner_openplm.png -------------------------------------------------------------------------------- /plugins/freecad/OpenPLM/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/OpenPLM/logo_small.png -------------------------------------------------------------------------------- /plugins/freecad/OpenPLM/openplm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/OpenPLM/openplm.py -------------------------------------------------------------------------------- /plugins/freecad/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/freecad/install.sh -------------------------------------------------------------------------------- /plugins/gedit/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/gedit/install.sh -------------------------------------------------------------------------------- /plugins/gedit/openplm.gedit-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/gedit/openplm.gedit-plugin -------------------------------------------------------------------------------- /plugins/gedit/openplm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/gedit/openplm.py -------------------------------------------------------------------------------- /plugins/openoffice/Addons.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/openoffice/Addons.xcu -------------------------------------------------------------------------------- /plugins/openoffice/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/openoffice/META-INF/manifest.xml -------------------------------------------------------------------------------- /plugins/openoffice/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/openoffice/install.sh -------------------------------------------------------------------------------- /plugins/openoffice/openplm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/openoffice/openplm.py -------------------------------------------------------------------------------- /plugins/solidworks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/README.txt -------------------------------------------------------------------------------- /plugins/solidworks/SWCAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/SWCAD.py -------------------------------------------------------------------------------- /plugins/solidworks/SWCADGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/SWCADGui.py -------------------------------------------------------------------------------- /plugins/solidworks/SW_Addin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/SW_Addin.py -------------------------------------------------------------------------------- /plugins/solidworks/banner_openplm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/banner_openplm.png -------------------------------------------------------------------------------- /plugins/solidworks/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/logo_small.png -------------------------------------------------------------------------------- /plugins/solidworks/openplm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/solidworks/openplm.py -------------------------------------------------------------------------------- /plugins/thunderbird/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/thunderbird/build.sh -------------------------------------------------------------------------------- /plugins/thunderbird/openplm/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/thunderbird/openplm/chrome.manifest -------------------------------------------------------------------------------- /plugins/thunderbird/openplm/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarh/openPLM/HEAD/plugins/thunderbird/openplm/install.rdf --------------------------------------------------------------------------------