mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 10:32:05 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
BIN
odoo-bringout-oca-dms-dms/dms/test/audio01.wav
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/audio01.wav
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/audio02.wav
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/audio02.wav
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/audio03.mp3
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/audio03.mp3
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/audio04.mp3
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/audio04.mp3
Normal file
Binary file not shown.
10
odoo-bringout-oca-dms-dms/dms/test/code01.aj
Normal file
10
odoo-bringout-oca-dms-dms/dms/test/code01.aj
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
// HelloWorld.java
|
||||
public class HelloWorld {
|
||||
public static void say(String message) {
|
||||
System.out.println(message);
|
||||
}
|
||||
|
||||
public static void sayToPerson(String message, String name) {
|
||||
System.out.println(name + ", " + message);
|
||||
}
|
||||
}
|
||||
9
odoo-bringout-oca-dms-dms/dms/test/code02.sh
Normal file
9
odoo-bringout-oca-dms-dms/dms/test/code02.sh
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
##
|
||||
##
|
||||
## Copyright 2017-2019 MuK IT GmbH
|
||||
## License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
##
|
||||
##
|
||||
STR="Hello World!"
|
||||
echo $STR
|
||||
12
odoo-bringout-oca-dms-dms/dms/test/code03.c
Normal file
12
odoo-bringout-oca-dms-dms/dms/test/code03.c
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/*
|
||||
*
|
||||
* Copyright 2017-2019 MuK IT GmbH
|
||||
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
*
|
||||
*/
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
printf("hello, world\n");
|
||||
}
|
||||
13
odoo-bringout-oca-dms-dms/dms/test/code04.cc
Normal file
13
odoo-bringout-oca-dms-dms/dms/test/code04.cc
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
*
|
||||
* Copyright 2017-2019 MuK IT GmbH
|
||||
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
*
|
||||
*/
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello, world!\n";
|
||||
return 0;
|
||||
}
|
||||
13
odoo-bringout-oca-dms-dms/dms/test/code05.cs
Normal file
13
odoo-bringout-oca-dms-dms/dms/test/code05.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
//
|
||||
// Copyright 2017-2019 MuK IT GmbH
|
||||
// License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
//
|
||||
using System;
|
||||
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello, world!");
|
||||
}
|
||||
}
|
||||
5
odoo-bringout-oca-dms-dms/dms/test/code06.cbl
Normal file
5
odoo-bringout-oca-dms-dms/dms/test/code06.cbl
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. hello-world.
|
||||
PROCEDURE DIVISION.
|
||||
DISPLAY "Hello, world!"
|
||||
.
|
||||
1
odoo-bringout-oca-dms-dms/dms/test/code07.coffee
Normal file
1
odoo-bringout-oca-dms-dms/dms/test/code07.coffee
Normal file
|
|
@ -0,0 +1 @@
|
|||
console.log "Hello, World!"
|
||||
3
odoo-bringout-oca-dms-dms/dms/test/code08.f
Normal file
3
odoo-bringout-oca-dms-dms/dms/test/code08.f
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
program helloworld
|
||||
print *, "Hello world!"
|
||||
end program helloworld
|
||||
7
odoo-bringout-oca-dms-dms/dms/test/code09.go
Normal file
7
odoo-bringout-oca-dms-dms/dms/test/code09.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello, World")
|
||||
}
|
||||
7
odoo-bringout-oca-dms-dms/dms/test/code10.groovy
Normal file
7
odoo-bringout-oca-dms-dms/dms/test/code10.groovy
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
/**********************************************************************************
|
||||
*
|
||||
* Copyright 2017-2019 MuK IT GmbH
|
||||
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
*
|
||||
**********************************************************************************/
|
||||
println "Hello World"
|
||||
11
odoo-bringout-oca-dms-dms/dms/test/code11.java
Normal file
11
odoo-bringout-oca-dms-dms/dms/test/code11.java
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/**********************************************************************************
|
||||
*
|
||||
* Copyright 2017-2019 MuK IT GmbH
|
||||
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
*
|
||||
**********************************************************************************/
|
||||
class HelloWorldApp {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World!"); // Prints the string to the console.
|
||||
}
|
||||
}
|
||||
3
odoo-bringout-oca-dms-dms/dms/test/code12.sc
Normal file
3
odoo-bringout-oca-dms-dms/dms/test/code12.sc
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
object HelloWorld extends App {
|
||||
println("Hello, World!")
|
||||
}
|
||||
BIN
odoo-bringout-oca-dms-dms/dms/test/document01.pdf
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/document01.pdf
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/document02.doc
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/document02.doc
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/document03.odt
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/document03.odt
Normal file
Binary file not shown.
23
odoo-bringout-oca-dms-dms/dms/test/document04.rtf
Normal file
23
odoo-bringout-oca-dms-dms/dms/test/document04.rtf
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{\rtf1\ansi\ansicpg1252\uc1 \deff0\deflang1033\deflangfe1033{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Arial;}
|
||||
{\f73\froman\fcharset238\fprq2 Times New Roman CE;}{\f74\froman\fcharset204\fprq2 Times New Roman Cyr;}{\f76\froman\fcharset161\fprq2 Times New Roman Greek;}{\f77\froman\fcharset162\fprq2 Times New Roman Tur;}
|
||||
{\f78\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f79\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f80\froman\fcharset186\fprq2 Times New Roman Baltic;}{\f81\fswiss\fcharset238\fprq2 Arial CE;}{\f82\fswiss\fcharset204\fprq2 Arial Cyr;}
|
||||
{\f84\fswiss\fcharset161\fprq2 Arial Greek;}{\f85\fswiss\fcharset162\fprq2 Arial Tur;}{\f86\fswiss\fcharset177\fprq2 Arial (Hebrew);}{\f87\fswiss\fcharset178\fprq2 Arial (Arabic);}{\f88\fswiss\fcharset186\fprq2 Arial Baltic;}}
|
||||
{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;
|
||||
\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red51\green102\blue255;}{\stylesheet{\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0
|
||||
\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \snext0 Normal;}{\s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang2057\langfe1033\kerning32\cgrid\langnp2057\langfenp1033
|
||||
\sbasedon0 \snext0 heading 1;}{\s3\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\f1\fs26\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 3;}{\*\cs10 \additive
|
||||
Default Paragraph Font;}}{\info{\title The power of technology lies in the ability to match learning styles to the needs of individual learners}{\author Les Mason}{\operator Les Mason}{\creatim\yr2005\mo3\dy15\hr18\min11}
|
||||
{\revtim\yr2005\mo3\dy15\hr18\min12}{\version1}{\edmins1}{\nofpages1}{\nofwords0}{\nofchars0}{\nofcharsws0}{\vern8203}}\paperw11906\paperh16838 \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin
|
||||
\dghspace180\dgvspace180\dghorigin1800\dgvorigin1440\dghshow1\dgvshow1\jexpand\viewkind1\viewscale117\viewzk2\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule \fet0\sectd
|
||||
\linex0\headery708\footery708\colsx708\endnhere\sectlinegrid360\sectdefaultcl {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang{\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang{\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang
|
||||
{\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang{\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl7
|
||||
\pnlcrm\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}\pard\plain
|
||||
\s1\ql \li0\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \b\f1\fs32\lang2057\langfe1033\kerning32\cgrid\langnp2057\langfenp1033 {
|
||||
The power of technology lies in the ability to match learning styles to the needs of individual learners
|
||||
\par }\pard\plain \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {
|
||||
\par }\pard\plain \s3\ql \li720\ri0\sb240\sa60\keepn\widctlpar\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin720\itap0 \b\f1\fs26\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\cf17 The more I study the more I l}{\cf17 earn.
|
||||
\par The more I learn the more I know
|
||||
\par The more I know the more I forget
|
||||
\par The more I forget the less I know
|
||||
\par So why study?}{
|
||||
\par }}
|
||||
BIN
odoo-bringout-oca-dms-dms/dms/test/image01.jpg
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/image01.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
BIN
odoo-bringout-oca-dms-dms/dms/test/image02.jpg
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/image02.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 180 KiB |
BIN
odoo-bringout-oca-dms-dms/dms/test/image03.jpg
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/image03.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 178 KiB |
BIN
odoo-bringout-oca-dms-dms/dms/test/image04.jpg
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/image04.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 108 KiB |
170
odoo-bringout-oca-dms-dms/dms/test/mail01.eml
Normal file
170
odoo-bringout-oca-dms-dms/dms/test/mail01.eml
Normal file
|
|
@ -0,0 +1,170 @@
|
|||
Return-Path: <mlemos@acm.org>
|
||||
To: Manuel Lemos <mlemos@linux.local>
|
||||
Subject: Testing Manuel Lemos' MIME E-mail composing and sending PHP class: HTML message
|
||||
From: mlemos <mlemos@acm.org>
|
||||
Reply-To: mlemos <mlemos@acm.org>
|
||||
Sender: mlemos@acm.org
|
||||
X-Mailer: http://www.phpclasses.org/mimemessage $Revision: 1.63 $ (mail)
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/mixed; boundary="652b8c4dcb00cdcdda1e16af36781caf"
|
||||
Message-ID: <20050430192829.0489.mlemos@acm.org>
|
||||
Date: Sat, 30 Apr 2005 19:28:29 -0300
|
||||
|
||||
|
||||
--652b8c4dcb00cdcdda1e16af36781caf
|
||||
Content-Type: multipart/related; boundary="6a82fb459dcaacd40ab3404529e808dc"
|
||||
|
||||
|
||||
--6a82fb459dcaacd40ab3404529e808dc
|
||||
Content-Type: multipart/alternative; boundary="69c1683a3ee16ef7cf16edd700694a2f"
|
||||
|
||||
|
||||
--69c1683a3ee16ef7cf16edd700694a2f
|
||||
Content-Type: text/plain; charset=ISO-8859-1
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
|
||||
This is an HTML message. Please use an HTML capable mail program to read
|
||||
this message.
|
||||
|
||||
--69c1683a3ee16ef7cf16edd700694a2f
|
||||
Content-Type: text/html; charset=ISO-8859-1
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>Testing Manuel Lemos' MIME E-mail composing and sending PHP class: H=
|
||||
TML message</title>
|
||||
<style type=3D"text/css"><!--
|
||||
body { color: black ; font-family: arial, helvetica, sans-serif ; backgroun=
|
||||
d-color: #A3C5CC }
|
||||
A:link, A:visited, A:active { text-decoration: underline }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<table background=3D"cid:4c837ed463ad29c820668e835a270e8a.gif" width=3D"100=
|
||||
%">
|
||||
<tr>
|
||||
<td>
|
||||
<center><h1>Testing Manuel Lemos' MIME E-mail composing and sending PHP cla=
|
||||
ss: HTML message</h1></center>
|
||||
<hr>
|
||||
<P>Hello Manuel,<br><br>
|
||||
This message is just to let you know that the <a href=3D"http://www.phpclas=
|
||||
ses.org/mimemessage">MIME E-mail message composing and sending PHP class</a=
|
||||
> is working as expected.<br><br>
|
||||
<center><h2>Here is an image embedded in a message as a separate part:</h2>=
|
||||
</center>
|
||||
<center><img src=3D"cid:ae0357e57f04b8347f7621662cb63855.gif"></center>Than=
|
||||
k you,<br>
|
||||
mlemos</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
--69c1683a3ee16ef7cf16edd700694a2f--
|
||||
|
||||
--6a82fb459dcaacd40ab3404529e808dc
|
||||
Content-Type: image/gif; name="logo.gif"
|
||||
Content-Transfer-Encoding: base64
|
||||
Content-Disposition: inline; filename="logo.gif"
|
||||
Content-ID: <ae0357e57f04b8347f7621662cb63855.gif>
|
||||
|
||||
R0lGODlhlgAjAPMJAAAAAAAA/y8vLz8/P19fX19f339/f4+Pj4+Pz7+/v///////////////////
|
||||
/////yH5BAEAAAkALAAAAACWACMAQwT+MMlJq7046827/2AoHYChGAChAkBylgKgKClFyEl6xDMg
|
||||
qLFBj3C5uXKplVAxIOxkA8BhdFCpDlMK1urMTrZWbAV8tVS5YsxtxmZHBVOSCcW9zaXyNhslVcto
|
||||
RBp5NQYxLAYGLi8oSwoJBlE+BiSNj5E/PDQsmy4pAJWQLAKJY5+hXhZ2dDYldFWtNSFPiXssXnZR
|
||||
k5+1pjpBiDMJUXG/Jo7DI4eKfMSmxsJ9GAUB1NXW19jZ2tvc3d7f4OHi2AgZN5vom1kk6F7s6u/p
|
||||
m3Ab7AOIiCxOyZuBIv8AOeTJIaYQjiR/kKTr5GQNE3pYSjCJ9mUXClRUsLxaZGciC0X+OlpoOuQo
|
||||
ZKdNJnIoKfnxRUQh6FLG0iLxIoYnJd0JEKISJyAQDodp3EUDC48oDnUY7HFI3wEDRjzycQJVZCQT
|
||||
Ol7NK+G0qgtkAcOKHUu2rNmzYTVqRMt2bB49bHompSchqg6HcGeANSMxr8sEa2y2HexnSEUTuWri
|
||||
SSbkYh7BgGVAnhB1b2REibESYaRoBgqIMYx59tFM9AvQffVG49P5NMZkMlHKhJPJb0knmSKZ6kSX
|
||||
JtbeF3Am7ocok6c7cM7pU5xcXiJJETUz16qPrzEfaFgZpvzn7h86YV5r/1mxXeAUMVyEIpnVUGpN
|
||||
RlG2ka9b3lP3pm2l6u7P+l/YLj3+RlEHbz1C0kRxSITQaAcilVBMEzmkkEQO8oSOBNg9SN+AX6hV
|
||||
z1pjgJiAhwCRsY8ZIp6xj1ruqCgeGeKNGEZwLnIwzTg45qjjjjz2GEA5hAUp5JBEFmnkkSCoWEcZ
|
||||
X8yohZNK1pFGPQS4hx0qNSLJlk9wCQORYu5QiMd7bUzGVyNlRiOHSlpuKdGEItHQ3HZ18beRRyws
|
||||
YSY/waDTiHf/tWlWUBAJiMJ1/Z0XXU7N0FnREpKM4NChCgbyRDq9XYpOplaKopN9NMkDnBbG+UMC
|
||||
QwLWIeaiglES6AjGARcPHCWoVAiatcTnGTABZoLPaPG1phccPv366mEvWEFSLnj+2QaonECwcJt/
|
||||
e1Zw3lJvVMmftBdVNQS3UngLCA85YHIQOy6JO9N4eZW7KJwtOUZmGwOMWqejwVW6RQzaikRHX3yI
|
||||
osKhDAq8wmnKSmdMwNidSOof9ZG2DoV0RfTVmLFtGmNk+CoZna0HQnPHS3AhRbIeDpqmR09E0bsu
|
||||
soeaw994z+rwQVInvqLenBftYjLOVphLFHhV9qsnez8AEUbQRgO737AxChjmyANxuEFHSGi7hFCV
|
||||
4jxLst2N8sRJYU+SHiAKjlmCgz2IffbLI5aaQR71hnkxq1ZfHSfKata6YDCJDMAQwY7wOgzhjxgj
|
||||
VFQnKB5uX4mr9qJ79pann+VcfcSzsSCd2mw5scqRRvlQ6TgcUelYhu75iPE4JejrsJOFQAG01277
|
||||
7bjnrvvuvPfu++/ABy887hfc6OPxyCevPDdAVoDA89BHL/301Fdv/fXYZ6/99tx3Pz0FEQAAOw==
|
||||
|
||||
--6a82fb459dcaacd40ab3404529e808dc
|
||||
Content-Type: image/gif; name="background.gif"
|
||||
Content-Transfer-Encoding: base64
|
||||
Content-Disposition: inline; filename="background.gif"
|
||||
Content-ID: <4c837ed463ad29c820668e835a270e8a.gif>
|
||||
|
||||
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
|
||||
eZmYmZmauZmc2ZlCEQEAOw==
|
||||
|
||||
--6a82fb459dcaacd40ab3404529e808dc--
|
||||
|
||||
--652b8c4dcb00cdcdda1e16af36781caf
|
||||
Content-Type: text/plain; name="attachment.txt"
|
||||
Content-Transfer-Encoding: base64
|
||||
Content-Disposition: attachment; filename="attachment.txt"
|
||||
|
||||
VGhpcyBpcyBqdXN0IGEgcGxhaW4gdGV4dCBhdHRhY2htZW50IGZpbGUgbmFtZWQgYXR0YWNobWVu
|
||||
dC50eHQgLg==
|
||||
|
||||
--652b8c4dcb00cdcdda1e16af36781caf--
|
||||
44
odoo-bringout-oca-dms-dms/dms/test/mail02.eml
Normal file
44
odoo-bringout-oca-dms-dms/dms/test/mail02.eml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
MIME-Version: 1.0
|
||||
Received: by 10.220.191.194 with HTTP; Wed, 11 May 2011 12:27:12 -0700 (PDT)
|
||||
Date: Wed, 11 May 2011 13:27:12 -0600
|
||||
Delivered-To: jncjkq@gmail.com
|
||||
Message-ID: <BANLkTi=JCQO1h3ET-pT_PLEHejhSSYxTZw@mail.jncjkq.com>
|
||||
Subject: Test
|
||||
From: Bill Jncjkq <jncjkq@gmail.com>
|
||||
To: bookmarks@jncjkq.net
|
||||
Content-Type: multipart/mixed; boundary=bcaec54eecc63acce904a3050f79
|
||||
|
||||
--bcaec54eecc63acce904a3050f79
|
||||
Content-Type: multipart/alternative; boundary=bcaec54eecc63acce604a3050f77
|
||||
|
||||
--bcaec54eecc63acce604a3050f77
|
||||
Content-Type: text/plain; charset=ISO-8859-1
|
||||
|
||||
--
|
||||
Bill Jncjkq
|
||||
|
||||
--bcaec54eecc63acce604a3050f77
|
||||
Content-Type: text/html; charset=ISO-8859-1
|
||||
|
||||
<br clear="all">--<br>Bill Jncjkq<br>
|
||||
|
||||
--bcaec54eecc63acce604a3050f77--
|
||||
--bcaec54eecc63acce904a3050f79
|
||||
Content-Type: text/html; charset=US-ASCII; name="bookmarks-really-short.html"
|
||||
Content-Disposition: attachment; filename="bookmarks-really-short.html"
|
||||
Content-Transfer-Encoding: base64
|
||||
X-Attachment-Id: f_gnknv6u70
|
||||
|
||||
PCFET0NUWVBFIE5FVFNDQVBFLUJvb2ttYXJrLWZpbGUtMT4KCTxIVE1MPgoJPE1FVEEgSFRUUC1F
|
||||
UVVJVj0iQ29udGVudC1UeXBlIiBDT05URU5UPSJ0ZXh0L2h0bWw7IGNoYXJzZXQ9VVRGLTgiPgoJ
|
||||
PFRpdGxlPkJvb2ttYXJrczwvVGl0bGU+Cgk8SDE+Qm9va21hcmtzPC9IMT4KCQk8RFQ+PEgzIEZP
|
||||
TERFRD5UZWNoIE5ld3M8L0gzPgoJCTxETD48cD4KCQkJPERUPjxBIEhSRUY9Imh0dHA6Ly93d3cu
|
||||
Y25ldC5jb20vIj5DTmV0PC9BPgoJCQk8RFQ+PEEgSFJFRj0iaHR0cDovL3d3dy53aXJlZC5jb20v
|
||||
Ij5XaXJlZCBOZXdzPC9BPgoJCTwvREw+PHA+CgkJPERUPjxIMyBGT0xERUQ+VG9vbHMgYW5kIFJl
|
||||
ZmVyZW5jZTwvSDM+CgkJPERMPjxwPgoJCQk8RFQ+PEEgSFJFRj0iaHR0cDovL3d3dy5tb25zdGVy
|
||||
LmNvbS8iPk1vbnN0ZXIuY29tPC9BPgoJCQk8RFQ+PEEgSFJFRj0iaHR0cDovL3d3dy53ZWJtZC5j
|
||||
b20vIj5XZWJNRDwvQT4KCQk8L0RMPjxwPgoJCTxEVD48SDMgRk9MREVEPlRyYXZlbDwvSDM+CgkJ
|
||||
PERMPjxwPgoJCQk8RFQ+PEEgSFJFRj0iaHR0cDovL2ZvZG9ycy5jb20vIj5Gb2RvcnM8L0E+CgkJ
|
||||
CTxEVD48QSBIUkVGPSJodHRwOi8vd3d3LnRyYXZlbG9jaXR5LmNvbS8iPlRyYXZlbG9jaXR5PC9B
|
||||
PgoJCTwvREw+PHA+Cgk8L0RMPjxwPgo8L0hUTUw+
|
||||
--bcaec54eecc63acce904a3050f79--
|
||||
138
odoo-bringout-oca-dms-dms/dms/test/markdown.md
Normal file
138
odoo-bringout-oca-dms-dms/dms/test/markdown.md
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
# An h1 header
|
||||
|
||||
Paragraphs are separated by a blank line.
|
||||
|
||||
2nd paragraph. _Italic_, **bold**, and `monospace`. Itemized lists look like:
|
||||
|
||||
- this one
|
||||
- that one
|
||||
- the other one
|
||||
|
||||
Note that --- not considering the asterisk --- the actual text content starts at
|
||||
4-columns in.
|
||||
|
||||
> Block quotes are written like so.
|
||||
>
|
||||
> They can span multiple paragraphs, if you like.
|
||||
|
||||
Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., "it's all in chapters
|
||||
12--14"). Three dots ... will be converted to an ellipsis. Unicode is supported.
|
||||
|
||||
## An h2 header
|
||||
|
||||
Here's a numbered list:
|
||||
|
||||
1. first item
|
||||
2. second item
|
||||
3. third item
|
||||
|
||||
Note again how the actual text starts at 4 columns in (4 characters from the left side).
|
||||
Here's a code sample:
|
||||
|
||||
# Let me re-iterate ...
|
||||
for i in 1 .. 10 { do-something(i) }
|
||||
|
||||
As you probably guessed, indented 4 spaces. By the way, instead of indenting the block,
|
||||
you can use delimited blocks, if you like:
|
||||
|
||||
```
|
||||
define foobar() {
|
||||
print "Welcome to flavor country!";
|
||||
}
|
||||
```
|
||||
|
||||
(which makes copying & pasting easier). You can optionally mark the delimited block for
|
||||
Pandoc to syntax highlight it:
|
||||
|
||||
```python
|
||||
import time
|
||||
# Quick, count to ten!
|
||||
for i in range(10):
|
||||
# (but not *too* quick)
|
||||
time.sleep(0.5)
|
||||
print i
|
||||
```
|
||||
|
||||
### An h3 header
|
||||
|
||||
Now a nested list:
|
||||
|
||||
1. First, get these ingredients:
|
||||
|
||||
- carrots
|
||||
- celery
|
||||
- lentils
|
||||
|
||||
2. Boil some water.
|
||||
|
||||
3. Dump everything in the pot and follow this algorithm:
|
||||
|
||||
find wooden spoon
|
||||
uncover pot
|
||||
stir
|
||||
cover pot
|
||||
balance wooden spoon precariously on pot handle
|
||||
wait 10 minutes
|
||||
goto first step (or shut off burner when done)
|
||||
|
||||
Do not bump wooden spoon or it will fall.
|
||||
|
||||
Notice again how text always lines up on 4-space indents (including that last line which
|
||||
continues item 3 above).
|
||||
|
||||
Here's a link to [a website](http://foo.bar), to a [local doc](local-doc.html), and to a
|
||||
[section heading in the current doc](#an-h2-header). Here's a footnote [^1].
|
||||
|
||||
[^1]: Footnote text goes here.
|
||||
|
||||
Tables can look like this:
|
||||
|
||||
size material color
|
||||
|
||||
---
|
||||
|
||||
9 leather brown 10 hemp canvas natural 11 glass transparent
|
||||
|
||||
Table: Shoes, their sizes, and what they're made of
|
||||
|
||||
(The above is the caption for the table.) Pandoc also supports multi-line tables:
|
||||
|
||||
---
|
||||
|
||||
keyword text
|
||||
|
||||
---
|
||||
|
||||
red Sunsets, apples, and other red or reddish things.
|
||||
|
||||
green Leaves, grass, frogs and other things it's not easy being.
|
||||
|
||||
---
|
||||
|
||||
A horizontal rule follows.
|
||||
|
||||
---
|
||||
|
||||
Here's a definition list:
|
||||
|
||||
apples : Good for making applesauce. oranges : Citrus! tomatoes : There's no "e" in
|
||||
tomatoe.
|
||||
|
||||
Again, text is indented 4 spaces. (Put a blank line between each term/definition pair to
|
||||
spread things out more.)
|
||||
|
||||
Here's a "line block":
|
||||
|
||||
| Line one | Line too | Line tree
|
||||
|
||||
and images can be specified like so:
|
||||
|
||||

|
||||
|
||||
Inline math equations go in like so: $\omega = d\phi / dt$. Display math should get its
|
||||
own line and be put in in double-dollarsigns:
|
||||
|
||||
$$I = \int \rho R^{2} dV$$
|
||||
|
||||
And note that you can backslash-escape any punctuation characters which you wish to be
|
||||
displayed literally, ex.: \`foo\`, \*bar\*, etc.
|
||||
BIN
odoo-bringout-oca-dms-dms/dms/test/sheet01.xls
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/sheet01.xls
Normal file
Binary file not shown.
100
odoo-bringout-oca-dms-dms/dms/test/sheet02.csv
Normal file
100
odoo-bringout-oca-dms-dms/dms/test/sheet02.csv
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
1,"Eldon Base for stackable storage shelf, platinum",Muhammed MacIntyre,3,-213.25,38.94,35,Nunavut,Storage & Organization,0.8
|
||||
2,"1.7 Cubic Foot Compact ""Cube"" Office Refrigerators",Barry French,293,457.81,208.16,68.02,Nunavut,Appliances,0.58
|
||||
3,"Cardinal Slant-D® Ring Binder, Heavy Gauge Vinyl",Barry French,293,46.71,8.69,2.99,Nunavut,Binders and Binder Accessories,0.39
|
||||
4,R380,Clay Rozendal,483,1198.97,195.99,3.99,Nunavut,Telephones and Communication,0.58
|
||||
5,Holmes HEPA Air Purifier,Carlos Soltero,515,30.94,21.78,5.94,Nunavut,Appliances,0.5
|
||||
6,G.E. Longer-Life Indoor Recessed Floodlight Bulbs,Carlos Soltero,515,4.43,6.64,4.95,Nunavut,Office Furnishings,0.37
|
||||
7,"Angle-D Binders with Locking Rings, Label Holders",Carl Jackson,613,-54.04,7.3,7.72,Nunavut,Binders and Binder Accessories,0.38
|
||||
8,"SAFCO Mobile Desk Side File, Wire Frame",Carl Jackson,613,127.70,42.76,6.22,Nunavut,Storage & Organization,
|
||||
9,"SAFCO Commercial Wire Shelving, Black",Monica Federle,643,-695.26,138.14,35,Nunavut,Storage & Organization,
|
||||
10,Xerox 198,Dorothy Badders,678,-226.36,4.98,8.33,Nunavut,Paper,0.38
|
||||
11,Xerox 1980,Neola Schneider,807,-166.85,4.28,6.18,Nunavut,Paper,0.4
|
||||
12,Advantus Map Pennant Flags and Round Head Tacks,Neola Schneider,807,-14.33,3.95,2,Nunavut,Rubber Bands,0.53
|
||||
13,Holmes HEPA Air Purifier,Carlos Daly,868,134.72,21.78,5.94,Nunavut,Appliances,0.5
|
||||
14,"DS/HD IBM Formatted Diskettes, 200/Pack - Staples",Carlos Daly,868,114.46,47.98,3.61,Nunavut,Computer Peripherals,0.71
|
||||
15,"Wilson Jones 1"" Hanging DublLock® Ring Binders",Claudia Miner,933,-4.72,5.28,2.99,Nunavut,Binders and Binder Accessories,0.37
|
||||
16,Ultra Commercial Grade Dual Valve Door Closer,Neola Schneider,995,782.91,39.89,3.04,Nunavut,Office Furnishings,0.53
|
||||
17,"#10-4 1/8"" x 9 1/2"" Premium Diagonal Seam Envelopes",Allen Rosenblatt,998,93.80,15.74,1.39,Nunavut,Envelopes,0.4
|
||||
18,Hon 4-Shelf Metal Bookcases,Sylvia Foulston,1154,440.72,100.98,26.22,Nunavut,Bookcases,0.6
|
||||
19,"Lesro Sheffield Collection Coffee Table, End Table, Center Table, Corner Table",Sylvia Foulston,1154,-481.04,71.37,69,Nunavut,Tables,0.68
|
||||
20,g520,Jim Radford,1344,-11.68,65.99,5.26,Nunavut,Telephones and Communication,0.59
|
||||
21,LX 788,Jim Radford,1344,313.58,155.99,8.99,Nunavut,Telephones and Communication,0.58
|
||||
22,Avery 52,Carlos Soltero,1412,26.92,3.69,0.5,Nunavut,Labels,0.38
|
||||
23,Plymouth Boxed Rubber Bands by Plymouth,Carlos Soltero,1412,-5.77,4.71,0.7,Nunavut,Rubber Bands,0.8
|
||||
24,"GBC Pre-Punched Binding Paper, Plastic, White, 8-1/2"" x 11""",Carl Ludwig,1539,-172.88,15.99,13.18,Nunavut,Binders and Binder Accessories,0.37
|
||||
25,"Maxell 3.5"" DS/HD IBM-Formatted Diskettes, 10/Pack",Carl Ludwig,1539,-144.55,4.89,4.93,Nunavut,Computer Peripherals,0.66
|
||||
26,Newell 335,Don Miller,1540,5.76,2.88,0.7,Nunavut,Pens & Art Supplies,0.56
|
||||
27,SANFORD Liquid Accent™ Tank-Style Highlighters,Annie Cyprus,1702,4.90,2.84,0.93,Nunavut,Pens & Art Supplies,0.54
|
||||
28,Canon PC940 Copier,Carl Ludwig,1761,-547.61,449.99,49,Nunavut,Copiers and Fax,0.38
|
||||
29,"Tenex Personal Project File with Scoop Front Design, Black",Carlos Soltero,1792,-5.45,13.48,4.51,Nunavut,Storage & Organization,0.59
|
||||
30,Col-Erase® Pencils with Erasers,Grant Carroll,2275,41.67,6.08,1.17,Nunavut,Pens & Art Supplies,0.56
|
||||
31,"Imation 3.5"" DS/HD IBM Formatted Diskettes, 10/Pack",Don Miller,2277,-46.03,5.98,4.38,Nunavut,Computer Peripherals,0.75
|
||||
32,"White Dual Perf Computer Printout Paper, 2700 Sheets, 1 Part, Heavyweight, 20 lbs., 14 7/8 x 11",Don Miller,2277,33.67,40.99,19.99,Nunavut,Paper,0.36
|
||||
33,Self-Adhesive Address Labels for Typewriters by Universal,Alan Barnes,2532,140.01,7.31,0.49,Nunavut,Labels,0.38
|
||||
34,Accessory37,Alan Barnes,2532,-78.96,20.99,2.5,Nunavut,Telephones and Communication,0.81
|
||||
35,Fuji 5.2GB DVD-RAM,Jack Garza,2631,252.66,40.96,1.99,Nunavut,Computer Peripherals,0.55
|
||||
36,Bevis Steel Folding Chairs,Julia West,2757,-1766.01,95.95,74.35,Nunavut,Chairs & Chairmats,0.57
|
||||
37,Avery Binder Labels,Eugene Barchas,2791,-236.27,3.89,7.01,Nunavut,Binders and Binder Accessories,0.37
|
||||
38,Hon Every-Day® Chair Series Swivel Task Chairs,Eugene Barchas,2791,80.44,120.98,30,Nunavut,Chairs & Chairmats,0.64
|
||||
39,"IBM Multi-Purpose Copy Paper, 8 1/2 x 11"", Case",Eugene Barchas,2791,118.94,30.98,5.76,Nunavut,Paper,0.4
|
||||
40,Global Troy™ Executive Leather Low-Back Tilter,Edward Hooks,2976,3424.22,500.98,26,Nunavut,Chairs & Chairmats,0.6
|
||||
41,XtraLife® ClearVue™ Slant-D® Ring Binders by Cardinal,Brad Eason,3232,-11.83,7.84,4.71,Nunavut,Binders and Binder Accessories,0.35
|
||||
42,Computer Printout Paper with Letter-Trim Perforations,Nicole Hansen,3524,52.35,18.97,9.03,Nunavut,Paper,0.37
|
||||
43,6160,Dorothy Wardle,3908,-180.20,115.99,2.5,Nunavut,Telephones and Communication,0.57
|
||||
44,Avery 49,Aaron Bergman,4132,1.32,2.88,0.5,Nunavut,Labels,0.36
|
||||
45,Hoover Portapower™ Portable Vacuum,Jim Radford,4612,-375.64,4.48,49,Nunavut,Appliances,0.6
|
||||
46,Timeport L7089,Annie Cyprus,4676,-104.25,125.99,7.69,Nunavut,Telephones and Communication,0.58
|
||||
47,Avery 510,Annie Cyprus,4676,85.96,3.75,0.5,Nunavut,Labels,0.37
|
||||
48,Xerox 1881,Annie Cyprus,4676,-8.38,12.28,6.47,Nunavut,Paper,0.38
|
||||
49,LX 788,Annie Cyprus,4676,1115.69,155.99,8.99,Nunavut,Telephones and Communication,0.58
|
||||
50,"Cardinal Slant-D® Ring Binder, Heavy Gauge Vinyl",Annie Cyprus,5284,-3.05,8.69,2.99,Nunavut,Binders and Binder Accessories,0.39
|
||||
51,"Memorex 4.7GB DVD-RAM, 3/Pack",Clay Rozendal,5316,514.07,31.78,1.99,Nunavut,Computer Peripherals,0.42
|
||||
52,Unpadded Memo Slips,Don Jones,5409,-7.04,3.98,2.97,Nunavut,Paper,0.35
|
||||
53,"Adams Telephone Message Book W/Dividers/Space For Phone Numbers, 5 1/4""X8 1/2"", 300/Messages",Beth Thompson,5506,4.41,5.88,3.04,Nunavut,Paper,0.36
|
||||
54,"Eldon Expressions™ Desk Accessory, Wood Pencil Holder, Oak",Frank Price,5569,-0.06,9.65,6.22,Nunavut,Office Furnishings,0.55
|
||||
55,Bell Sonecor JB700 Caller ID,Michelle Lonsdale,5607,-50.33,7.99,5.03,Nunavut,Telephones and Communication,0.6
|
||||
56,Avery Arch Ring Binders,Ann Chong,5894,87.68,58.1,1.49,Nunavut,Binders and Binder Accessories,0.38
|
||||
57,APC 7 Outlet Network SurgeArrest Surge Protector,Ann Chong,5894,-68.22,80.48,4.5,Nunavut,Appliances,0.55
|
||||
58,"Deflect-o RollaMat Studded, Beveled Mat for Medium Pile Carpeting",Joy Bell,5925,-354.90,92.23,39.61,Nunavut,Office Furnishings,0.67
|
||||
59,Accessory4,Joy Bell,5925,-267.01,85.99,0.99,Nunavut,Telephones and Communication,0.85
|
||||
60,Personal Creations™ Ink Jet Cards and Labels,Skye Norling,6016,3.63,11.48,5.43,Nunavut,Paper,0.36
|
||||
61,High Speed Automatic Electric Letter Opener,Barry Weirich,6116,-1759.58,1637.53,24.49,Nunavut,"Scissors, Rulers and Trimmers",0.81
|
||||
62,Xerox 1966,Grant Carroll,6182,-116.79,6.48,6.65,Nunavut,Paper,0.36
|
||||
63,Xerox 213,Grant Carroll,6182,-67.28,6.48,7.86,Nunavut,Paper,0.37
|
||||
64,"Boston Electric Pencil Sharpener, Model 1818, Charcoal Black",Adrian Hane,6535,-19.33,28.15,8.99,Nunavut,Pens & Art Supplies,0.57
|
||||
65,Hammermill CopyPlus Copy Paper (20Lb. and 84 Bright),Skye Norling,6884,-61.21,4.98,4.75,Nunavut,Paper,0.36
|
||||
66,"Telephone Message Books with Fax/Mobile Section, 5 1/2"" x 3 3/16""",Skye Norling,6884,119.09,6.35,1.02,Nunavut,Paper,0.39
|
||||
67,Crate-A-Files™,Andrew Gjertsen,6916,-141.27,10.9,7.46,Nunavut,Storage & Organization,0.59
|
||||
68,"Angle-D Binders with Locking Rings, Label Holders",Ralph Knight,6980,-77.28,7.3,7.72,Nunavut,Binders and Binder Accessories,0.38
|
||||
69,"80 Minute CD-R Spindle, 100/Pack - Staples",Dorothy Wardle,6982,407.44,39.48,1.99,Nunavut,Computer Peripherals,0.54
|
||||
70,"Bush Westfield Collection Bookcases, Dark Cherry Finish, Fully Assembled",Dorothy Wardle,6982,-338.27,100.98,57.38,Nunavut,Bookcases,0.78
|
||||
71,12-1/2 Diameter Round Wall Clock,Dorothy Wardle,6982,52.56,19.98,10.49,Nunavut,Office Furnishings,0.49
|
||||
72,SAFCO Arco Folding Chair,Grant Carroll,7110,1902.24,276.2,24.49,Nunavut,Chairs & Chairmats,
|
||||
73,"#10 White Business Envelopes,4 1/8 x 9 1/2",Barry Weirich,7430,353.20,15.67,1.39,Nunavut,Envelopes,0.38
|
||||
74,3M Office Air Cleaner,Beth Paige,7906,271.78,25.98,5.37,Nunavut,Appliances,0.5
|
||||
75,"Global Leather and Oak Executive Chair, Black",Sylvia Foulston,8391,-268.36,300.98,64.73,Nunavut,Chairs & Chairmats,0.56
|
||||
76,Xerox 1936,Nicole Hansen,8419,70.39,19.98,5.97,Nunavut,Paper,0.38
|
||||
77,Xerox 214,Nicole Hansen,8419,-86.62,6.48,7.03,Nunavut,Paper,0.37
|
||||
78,Carina Double Wide Media Storage Towers in Natural & Black,Nicole Hansen,8833,-846.73,80.98,35,Nunavut,Storage & Organization,0.81
|
||||
79,Staples® General Use 3-Ring Binders,Beth Paige,8995,8.05,1.88,1.49,Nunavut,Binders and Binder Accessories,0.37
|
||||
80,Xerox 1904,Beth Paige,8995,-78.02,6.48,5.86,Northwest Territories,Paper,0.36
|
||||
81,Luxo Professional Combination Clamp-On Lamps,Beth Paige,8995,737.94,102.3,21.26,Northwest Territories,Office Furnishings,0.59
|
||||
82,Xerox 217,Beth Paige,8995,-191.28,6.48,8.19,Northwest Territories,Paper,0.37
|
||||
83,Revere Boxed Rubber Bands by Revere,Beth Paige,8995,-21.49,1.89,0.76,Northwest Territories,Rubber Bands,0.83
|
||||
84,"Acco Smartsocket™ Table Surge Protector, 6 Color-Coded Adapter Outlets",Sylvia Foulston,9126,884.08,62.05,3.99,Northwest Territories,Appliances,0.55
|
||||
85,"Tennsco Snap-Together Open Shelving Units, Starter Sets and Add-On Units",Bryan Davis,9127,-329.49,279.48,35,Northwest Territories,Storage & Organization,0.8
|
||||
86,Hon 4070 Series Pagoda™ Round Back Stacking Chairs,Joy Bell,9509,2825.15,320.98,58.95,Northwest Territories,Chairs & Chairmats,0.57
|
||||
87,Xerox 1887,Joy Bell,9509,2.13,18.97,5.21,Northwest Territories,Paper,0.37
|
||||
88,Xerox 1891,Joy Bell,9509,707.15,48.91,5.81,Northwest Territories,Paper,0.38
|
||||
89,Avery 506,Alan Barnes,9763,75.13,4.13,0.5,Northwest Territories,Labels,0.39
|
||||
90,"Bush Heritage Pine Collection 5-Shelf Bookcase, Albany Pine Finish, *Special Order",Grant Carroll,9927,-270.63,140.98,53.48,Northwest Territories,Bookcases,0.65
|
||||
91,"Lifetime Advantage™ Folding Chairs, 4/Carton",Grant Carroll,9927,3387.35,218.08,18.06,Northwest Territories,Chairs & Chairmats,0.57
|
||||
92,Microsoft Natural Multimedia Keyboard,Grant Carroll,9927,-82.16,50.98,6.5,Northwest Territories,Computer Peripherals,0.73
|
||||
93,"Staples Wirebound Steno Books, 6"" x 9"", 12/Pack",Delfina Latchford,10022,-3.88,10.14,2.27,Northwest Territories,Paper,0.36
|
||||
94,"GBC Pre-Punched Binding Paper, Plastic, White, 8-1/2"" x 11""",Don Jones,10437,-191.22,15.99,13.18,Northwest Territories,Binders and Binder Accessories,0.37
|
||||
95,Bevis Boat-Shaped Conference Table,Doug Bickford,10499,31.21,262.11,62.74,Northwest Territories,Tables,0.75
|
||||
96,"Linden® 12"" Wall Clock With Oak Frame",Doug Bickford,10535,-44.14,33.98,19.99,Northwest Territories,Office Furnishings,0.55
|
||||
97,Newell 326,Doug Bickford,10535,-0.79,1.76,0.7,Northwest Territories,Pens & Art Supplies,0.56
|
||||
98,Prismacolor Color Pencil Set,Jamie Kunitz,10789,76.42,19.84,4.1,Northwest Territories,Pens & Art Supplies,0.44
|
||||
99,Xerox Blank Computer Paper,Anthony Johnson,10791,93.36,19.98,5.77,Northwest Territories,Paper,0.38
|
||||
100,600 Series Flip,Ralph Knight,10945,4.22,95.99,8.99,Northwest Territories,Telephones and Communication,0.57
|
||||
|
BIN
odoo-bringout-oca-dms-dms/dms/test/sheet03.ods
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/sheet03.ods
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/slide01.odp
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/slide01.odp
Normal file
Binary file not shown.
BIN
odoo-bringout-oca-dms-dms/dms/test/slide02.ppt
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/slide02.ppt
Normal file
Binary file not shown.
382
odoo-bringout-oca-dms-dms/dms/test/text.rst
Normal file
382
odoo-bringout-oca-dms-dms/dms/test/text.rst
Normal file
|
|
@ -0,0 +1,382 @@
|
|||
A ReStructuredText Primer
|
||||
=========================
|
||||
|
||||
:Author: Richard Jones
|
||||
:Version: $Revision: 5801 $
|
||||
:Copyright: This document has been placed in the public domain.
|
||||
|
||||
.. contents::
|
||||
|
||||
|
||||
The text below **contains** links that look like "(quickref__)". These
|
||||
are relative links that point to the `Quick reStructuredText`_ user
|
||||
reference. If these links don't work, please refer to the `master
|
||||
quick reference`_ document.
|
||||
|
||||
__
|
||||
.. _Quick reStructuredText: quickref.html
|
||||
.. _master quick reference:
|
||||
http://docutils.sourceforge.net/docs/user/rst/quickref.html
|
||||
|
||||
.. Note:: This document is an informal introduction to
|
||||
reStructuredText.
|
||||
|
||||
|
||||
Structure
|
||||
---------
|
||||
|
||||
From the **outset**, let me say that "Structured Text" is probably a bit
|
||||
of a misnomer. It's more like "Relaxed Text" that uses certain
|
||||
consistent patterns. These patterns are interpreted by a HTML
|
||||
converter to produce "Very Structured Text" that can be used by a web
|
||||
browser.
|
||||
|
||||
The most basic pattern recognised is a **paragraph** (quickref__).
|
||||
That's a chunk of text that is separated by blank lines (one is
|
||||
enough). Paragraphs must have the same indentation -- that is, line
|
||||
up at their left edge. Paragraphs that start indented will result in
|
||||
indented quote paragraphs. For example::
|
||||
|
||||
This is a paragraph. It's quite
|
||||
short.
|
||||
|
||||
This paragraph will result in an indented block of
|
||||
text, typically used for quoting other text.
|
||||
|
||||
This is another one.
|
||||
|
||||
Results in:
|
||||
|
||||
This is a paragraph. It's quite
|
||||
short.
|
||||
|
||||
This paragraph will result in an indented block of
|
||||
text, typically used for quoting other text.
|
||||
|
||||
This is another one.
|
||||
|
||||
__ quickref.html#paragraphs
|
||||
|
||||
|
||||
Text styles
|
||||
-----------
|
||||
|
||||
(quickref__)
|
||||
|
||||
__ quickref.html#inline-markup
|
||||
|
||||
Inside paragraphs and other bodies of text, you may additionally mark
|
||||
text for *italics* with "``*italics*``" or **bold** with
|
||||
"``**bold**``". This is called "inline markup".
|
||||
|
||||
If you want something to appear as a fixed-space literal, use
|
||||
"````double back-quotes````". Note that no further fiddling is done
|
||||
inside the double back-quotes -- so asterisks "``*``" etc. are left
|
||||
alone.
|
||||
|
||||
If you find that you want to use one of the "special" characters in
|
||||
text, it will generally be OK -- reStructuredText is pretty smart.
|
||||
For example, this lone asterisk * is handled just fine, as is the
|
||||
asterisk in this equation: 5*6=30. If you actually
|
||||
want text \*surrounded by asterisks* to **not** be italicised, then
|
||||
you need to indicate that the asterisk is not special. You do this by
|
||||
placing a backslash just before it, like so "``\*``" (quickref__), or
|
||||
by enclosing it in double back-quotes (inline literals), like this::
|
||||
|
||||
``*``
|
||||
|
||||
__ quickref.html#escaping
|
||||
|
||||
.. Tip:: Think of inline markup as a form of (parentheses) and use it
|
||||
the same way: immediately before and after the text being marked
|
||||
up. Inline markup by itself (surrounded by whitespace) or in the
|
||||
middle of a word won't be recognized. See the `markup spec`__ for
|
||||
full details.
|
||||
|
||||
__ ../../ref/rst/restructuredtext.html#inline-markup
|
||||
|
||||
|
||||
Lists
|
||||
-----
|
||||
|
||||
Lists of items come in three main flavours: **enumerated**,
|
||||
**bulleted** and **definitions**. In all list cases, you may have as
|
||||
many paragraphs, sublists, etc. as you want, as long as the left-hand
|
||||
side of the paragraph or whatever aligns with the first line of text
|
||||
in the list item.
|
||||
|
||||
Lists must always start a new paragraph -- that is, they must appear
|
||||
after a blank line.
|
||||
|
||||
**enumerated** lists (numbers, letters or roman numerals; quickref__)
|
||||
__ quickref.html#enumerated-lists
|
||||
|
||||
Start a line off with a number or letter followed by a period ".",
|
||||
right bracket ")" or surrounded by brackets "( )" -- whatever you're
|
||||
comfortable with. All of the following forms are recognised::
|
||||
|
||||
1. numbers
|
||||
|
||||
A. upper-case letters
|
||||
and it goes over many lines
|
||||
|
||||
with two paragraphs and all!
|
||||
|
||||
a. lower-case letters
|
||||
|
||||
1. with a sub-list starting at a different number
|
||||
2. make sure the numbers are in the correct sequence though!
|
||||
|
||||
I. upper-case roman numerals
|
||||
|
||||
i. lower-case roman numerals
|
||||
|
||||
(1) numbers again
|
||||
|
||||
1) and again
|
||||
|
||||
Results in (note: the different enumerated list styles are not
|
||||
always supported by every web browser, so you may not get the full
|
||||
effect here):
|
||||
|
||||
1. numbers
|
||||
|
||||
A. upper-case letters
|
||||
and it goes over many lines
|
||||
|
||||
with two paragraphs and all!
|
||||
|
||||
a. lower-case letters
|
||||
|
||||
1. with a sub-list starting at a different number
|
||||
2. make sure the numbers are in the correct sequence though!
|
||||
|
||||
I. upper-case roman numerals
|
||||
|
||||
i. lower-case roman numerals
|
||||
|
||||
(1) numbers again
|
||||
|
||||
1) and again
|
||||
|
||||
**bulleted** lists (quickref__)
|
||||
__ quickref.html#bullet-lists
|
||||
|
||||
Just like enumerated lists, start the line off with a bullet point
|
||||
character - either "-", "+" or "*"::
|
||||
|
||||
* a bullet point using "*"
|
||||
|
||||
- a sub-list using "-"
|
||||
|
||||
+ yet another sub-list
|
||||
|
||||
- another item
|
||||
|
||||
Results in:
|
||||
|
||||
* a bullet point using "*"
|
||||
|
||||
- a sub-list using "-"
|
||||
|
||||
+ yet another sub-list
|
||||
|
||||
- another item
|
||||
|
||||
**definition** lists (quickref__)
|
||||
__ quickref.html#definition-lists
|
||||
|
||||
Unlike the other two, the definition lists consist of a term, and
|
||||
the definition of that term. The format of a definition list is::
|
||||
|
||||
what
|
||||
Definition lists associate a term with a definition.
|
||||
|
||||
*how*
|
||||
The term is a one-line phrase, and the definition is one or more
|
||||
paragraphs or body elements, indented relative to the term.
|
||||
Blank lines are not allowed between term and definition.
|
||||
|
||||
Results in:
|
||||
|
||||
what
|
||||
Definition lists associate a term with a definition.
|
||||
|
||||
*how*
|
||||
The term is a one-line phrase, and the definition is one or more
|
||||
paragraphs or body elements, indented relative to the term.
|
||||
Blank lines are not allowed between term and definition.
|
||||
|
||||
|
||||
Preformatting (code samples)
|
||||
----------------------------
|
||||
(quickref__)
|
||||
|
||||
__ quickref.html#literal-blocks
|
||||
|
||||
To just include a chunk of preformatted, never-to-be-fiddled-with
|
||||
text, finish the prior paragraph with "``::``". The preformatted
|
||||
block is finished when the text falls back to the same indentation
|
||||
level as a paragraph prior to the preformatted block. For example::
|
||||
|
||||
An example::
|
||||
|
||||
Whitespace, newlines, blank lines, and all kinds of markup
|
||||
(like *this* or \this) is preserved by literal blocks.
|
||||
Lookie here, I've dropped an indentation level
|
||||
(but not far enough)
|
||||
|
||||
no more example
|
||||
|
||||
Results in:
|
||||
|
||||
An example::
|
||||
|
||||
Whitespace, newlines, blank lines, and all kinds of markup
|
||||
(like *this* or \this) is preserved by literal blocks.
|
||||
Lookie here, I've dropped an indentation level
|
||||
(but not far enough)
|
||||
|
||||
no more example
|
||||
|
||||
Note that if a paragraph consists only of "``::``", then it's removed
|
||||
from the output::
|
||||
|
||||
::
|
||||
|
||||
This is preformatted text, and the
|
||||
last "::" paragraph is removed
|
||||
|
||||
Results in:
|
||||
|
||||
::
|
||||
|
||||
This is preformatted text, and the
|
||||
last "::" paragraph is removed
|
||||
|
||||
|
||||
Sections
|
||||
--------
|
||||
|
||||
(quickref__)
|
||||
|
||||
__ quickref.html#section-structure
|
||||
|
||||
To break longer text up into sections, you use **section headers**.
|
||||
These are a single line of text (one or more words) with adornment: an
|
||||
underline alone, or an underline and an overline together, in dashes
|
||||
"``-----``", equals "``======``", tildes "``~~~~~~``" or any of the
|
||||
non-alphanumeric characters ``= - ` : ' " ~ ^ _ * + # < >`` that you
|
||||
feel comfortable with. An underline-only adornment is distinct from
|
||||
an overline-and-underline adornment using the same character. The
|
||||
underline/overline must be at least as long as the title text. Be
|
||||
consistent, since all sections marked with the same adornment style
|
||||
are deemed to be at the same level::
|
||||
|
||||
Chapter 1 Title
|
||||
===============
|
||||
|
||||
Section 1.1 Title
|
||||
-----------------
|
||||
|
||||
Subsection 1.1.1 Title
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Section 1.2 Title
|
||||
-----------------
|
||||
|
||||
Chapter 2 Title
|
||||
===============
|
||||
|
||||
This results in the following structure, illustrated by simplified
|
||||
pseudo-XML::
|
||||
|
||||
<section>
|
||||
<title>
|
||||
Chapter 1 Title
|
||||
<section>
|
||||
<title>
|
||||
Section 1.1 Title
|
||||
<section>
|
||||
<title>
|
||||
Subsection 1.1.1 Title
|
||||
<section>
|
||||
<title>
|
||||
Section 1.2 Title
|
||||
<section>
|
||||
<title>
|
||||
Chapter 2 Title
|
||||
|
||||
(Pseudo-XML uses indentation for nesting and has no end-tags. It's
|
||||
not possible to show actual processed output, as in the other
|
||||
examples, because sections cannot exist inside block quotes. For a
|
||||
concrete example, compare the section structure of this document's
|
||||
source text and processed output.)
|
||||
|
||||
Note that section headers are available as link targets, just using
|
||||
their name. To link to the Lists_ heading, I write "``Lists_``". If
|
||||
the heading has a space in it like `text styles`_, we need to quote
|
||||
the heading "```text styles`_``".
|
||||
|
||||
|
||||
Document Title / Subtitle
|
||||
`````````````````````````
|
||||
|
||||
The title of the whole document is distinct from section titles and
|
||||
may be formatted somewhat differently (e.g. the HTML writer by default
|
||||
shows it as a centered heading).
|
||||
|
||||
To indicate the document title in reStructuredText, use a unique adornment
|
||||
style at the beginning of the document. To indicate the document subtitle,
|
||||
use another unique adornment style immediately after the document title. For
|
||||
example::
|
||||
|
||||
================
|
||||
Document Title
|
||||
================
|
||||
----------
|
||||
Subtitle
|
||||
----------
|
||||
|
||||
Section Title
|
||||
=============
|
||||
|
||||
...
|
||||
|
||||
Note that "Document Title" and "Section Title" above both use equals
|
||||
signs, but are distict and unrelated styles. The text of
|
||||
overline-and-underlined titles (but not underlined-only) may be inset
|
||||
for aesthetics.
|
||||
|
||||
|
||||
Images
|
||||
------
|
||||
|
||||
(quickref__)
|
||||
|
||||
__ quickref.html#directives
|
||||
|
||||
To include an image in your document, you use the the ``image`` directive__.
|
||||
For example::
|
||||
|
||||
.. image:: https://picsum.photos/200/300/?random
|
||||
|
||||
results in:
|
||||
|
||||
.. image:: https://picsum.photos/200/300/?random
|
||||
|
||||
The ``images/biohazard.png`` part indicates the filename of the image
|
||||
you wish to appear in the document. There's no restriction placed on
|
||||
the image (format, size etc). If the image is to appear in HTML and
|
||||
you wish to supply additional information, you may::
|
||||
|
||||
.. image:: images/biohazard.png
|
||||
:height: 100
|
||||
:width: 200
|
||||
:scale: 50
|
||||
:alt: alternate text
|
||||
|
||||
See the full `image directive documentation`__ for more info.
|
||||
|
||||
__ ../../ref/rst/directives.html
|
||||
__ ../../ref/rst/directives.html#images
|
||||
27
odoo-bringout-oca-dms-dms/dms/test/text.txt
Normal file
27
odoo-bringout-oca-dms-dms/dms/test/text.txt
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus condimentum sagittis lacus, laoreet luctus ligula laoreet ut. Vestibulum ullamcorper accumsan velit vel vehicula. Proin tempor lacus arcu. Nunc at elit condimentum, semper nisi et, condimentum mi. In venenatis blandit nibh at sollicitudin. Vestibulum dapibus mauris at orci maximus pellentesque. Nullam id elementum ipsum. Suspendisse cursus lobortis viverra. Proin et erat at mauris tincidunt porttitor vitae ac dui.
|
||||
|
||||
Donec vulputate lorem tortor, nec fermentum nibh bibendum vel. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent dictum luctus massa, non euismod lacus. Pellentesque condimentum dolor est, ut dapibus lectus luctus ac. Ut sagittis commodo arcu. Integer nisi nulla, facilisis sit amet nulla quis, eleifend suscipit purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aliquam euismod ultrices lorem, sit amet imperdiet est tincidunt vel. Phasellus dictum justo sit amet ligula varius aliquet auctor et metus. Fusce vitae tortor et nisi pulvinar vestibulum eget in risus. Donec ante ex, placerat a lorem eget, ultricies bibendum purus. Nam sit amet neque non ante laoreet rutrum. Nullam aliquet commodo urna, sed ullamcorper odio feugiat id. Mauris nisi sapien, porttitor in condimentum nec, venenatis eu urna. Pellentesque feugiat diam est, at rhoncus orci porttitor non.
|
||||
|
||||
Nulla luctus sem sit amet nisi consequat, id ornare ipsum dignissim. Sed elementum elit nibh, eu condimentum orci viverra quis. Aenean suscipit vitae felis non suscipit. Suspendisse pharetra turpis non eros semper dictum. Etiam tincidunt venenatis venenatis. Praesent eget gravida lorem, ut congue diam. Etiam facilisis elit at porttitor egestas. Praesent consequat, velit non vulputate convallis, ligula diam sagittis urna, in venenatis nisi justo ut mauris. Vestibulum posuere sollicitudin mi, et vulputate nisl fringilla non. Nulla ornare pretium velit a euismod. Nunc sagittis venenatis vestibulum. Nunc sodales libero a est ornare ultricies. Sed sed leo sed orci pellentesque ultrices. Mauris sollicitudin, sem quis placerat ornare, velit arcu convallis ligula, pretium finibus nisl sapien vel sem. Vivamus sit amet tortor id lorem consequat hendrerit. Nullam at dui risus.
|
||||
|
||||
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed feugiat semper velit consequat facilisis. Etiam facilisis justo non iaculis dictum. Fusce turpis neque, pharetra ut odio eu, hendrerit rhoncus lacus. Nunc orci felis, imperdiet vel interdum quis, porta eu ipsum. Pellentesque dictum sem lacinia, auctor dui in, malesuada nunc. Maecenas sit amet mollis eros. Proin fringilla viverra ligula, sollicitudin viverra ante sollicitudin congue. Donec mollis felis eu libero malesuada, et lacinia risus interdum.
|
||||
|
||||
Etiam vitae accumsan augue. Ut urna orci, malesuada ut nisi a, condimentum gravida magna. Nulla bibendum ex in vulputate sagittis. Nulla facilisi. Nullam faucibus et metus ac consequat. Quisque tempor eros velit, id mattis nibh aliquet a. Aenean tempor elit ut finibus auctor. Sed at imperdiet mauris. Vestibulum pharetra non lacus sed pulvinar. Sed pellentesque magna a eros volutpat ullamcorper. In hac habitasse platea dictumst. Donec ipsum mi, feugiat in eros sed, varius lacinia turpis. Donec vulputate tincidunt dui ac laoreet. Sed in eros dui. Pellentesque placerat tristique ligula eu finibus. Proin nec faucibus felis, eu commodo ipsum.
|
||||
|
||||
Integer eu hendrerit diam, sed consectetur nunc. Aliquam a sem vitae leo fermentum faucibus quis at sem. Etiam blandit, quam quis fermentum varius, ante urna ultricies lectus, vel pellentesque ligula arcu nec elit. Donec placerat ante in enim scelerisque pretium. Donec et rhoncus erat. Aenean tempor nisi vitae augue tincidunt luctus. Nam condimentum dictum ante, et laoreet neque pellentesque id. Curabitur consectetur cursus neque aliquam porta. Ut interdum nunc nec nibh vestibulum, in sagittis metus facilisis. Pellentesque feugiat condimentum metus. Etiam venenatis quam at ante rhoncus vestibulum. Maecenas suscipit congue pellentesque. Vestibulum suscipit scelerisque fermentum. Nulla iaculis risus ac vulputate porttitor.
|
||||
|
||||
Mauris nec metus vel dolor blandit faucibus et vel magna. Ut tincidunt ipsum non nunc dapibus, sed blandit mi condimentum. Quisque pharetra interdum quam nec feugiat. Sed pellentesque nulla et turpis blandit interdum. Curabitur at metus vitae augue elementum viverra. Sed mattis lorem non enim fermentum finibus. Sed at dui in magna dignissim accumsan. Proin tincidunt ultricies cursus. Maecenas tincidunt magna at urna faucibus lacinia.
|
||||
|
||||
Quisque venenatis justo sit amet tortor condimentum, nec tincidunt tellus viverra. Morbi risus ipsum, consequat convallis malesuada non, fermentum non velit. Nulla facilisis orci eget ligula mattis fermentum. Aliquam vel velit ultricies, sollicitudin nibh eu, congue velit. Donec nulla lorem, euismod id cursus at, sollicitudin et arcu. Proin vitae tincidunt ipsum. Vivamus elementum eleifend justo, placerat interdum nulla rutrum id.
|
||||
|
||||
Phasellus fringilla luctus magna, a finibus justo dapibus a. Nam risus felis, rhoncus eget diam sit amet, congue facilisis nibh. Interdum et malesuada fames ac ante ipsum primis in faucibus. Praesent consequat euismod diam, eget volutpat magna convallis at. Mauris placerat pellentesque imperdiet. Nulla porta scelerisque enim, et scelerisque neque bibendum in. Proin eget turpis nisi. Suspendisse ut est a erat egestas eleifend at euismod arcu. Donec aliquet, nisi sed faucibus condimentum, nisi metus dictum eros, nec dignissim justo odio id nulla. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas sollicitudin, justo id elementum eleifend, justo neque aliquet nibh, finibus malesuada metus erat eget neque. Suspendisse nec auctor orci. Aenean et vestibulum nulla. Nullam hendrerit augue tristique, commodo metus id, sodales lorem. Etiam feugiat dui est, vitae auctor risus convallis non.
|
||||
|
||||
Maecenas turpis enim, consectetur eget lectus eu, hendrerit posuere lacus. Praesent efficitur, felis eget dapibus consectetur, nisi massa dignissim enim, nec semper dolor est eu urna. Nullam ut sodales lorem. Aliquam dapibus faucibus diam. Vestibulum vel magna et dolor gravida imperdiet ut sit amet sem. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur elementum metus tincidunt nulla euismod ultricies. Duis elementum nec neque in porttitor. Nulla sagittis lorem elit, et consectetur ante laoreet eu. Maecenas nulla tellus, scelerisque ac erat sed, fermentum dapibus metus. Donec tincidunt fermentum molestie.
|
||||
|
||||
Sed consequat mi at maximus faucibus. Pellentesque aliquet tincidunt sapien vel auctor. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Praesent accumsan nunc eget leo aliquam, facilisis hendrerit turpis egestas. Morbi in ultricies mauris, a eleifend turpis. Quisque fringilla massa iaculis risus ultrices, sit amet tincidunt dui varius. Quisque maximus porta tristique. Proin tincidunt, turpis ut tempor pretium, lectus ipsum ullamcorper leo, ac tincidunt felis dui non leo. Aenean porta augue ligula, non consequat ipsum aliquet et. Suspendisse ut suscipit ex. Pellentesque vitae lacinia arcu. Curabitur eget tincidunt nulla, non bibendum metus. Nullam mi ipsum, eleifend vitae tortor pulvinar, facilisis sollicitudin ipsum.
|
||||
|
||||
Vestibulum molestie risus lorem, at feugiat lorem congue sed. Phasellus ullamcorper laoreet enim, nec aliquam turpis scelerisque et. Etiam dictum metus in elit aliquam dapibus. Vivamus vel lectus velit. Nam sed purus luctus, commodo dui quis, malesuada dui. Nulla porttitor aliquet elit sit amet viverra. Proin tempor nulla urna, non aliquet metus maximus quis. Aliquam ac lectus nec mi aliquam sagittis. Quisque venenatis quam eget nisl tempor, egestas rutrum eros eleifend. Nullam venenatis commodo velit, non tempor mauris fermentum ut. In a metus quis erat cursus sagittis. Donec congue nisl in viverra egestas.
|
||||
|
||||
Vestibulum facilisis ligula magna, eu ornare lectus varius et. Mauris facilisis faucibus quam, quis mollis eros convallis non. Interdum et malesuada fames ac ante ipsum primis in faucibus. Praesent sit amet rutrum erat. Suspendisse potenti. Donec lorem mi, sagittis a fringilla sit amet, sagittis bibendum mauris. In in diam et lorem rutrum eleifend a et felis. Sed ac magna quis enim faucibus dictum. Suspendisse blandit enim eu ex laoreet gravida.
|
||||
|
||||
Suspendisse sed semper felis. Etiam mattis magna mi, suscipit ullamcorper tellus euismod sed. Aenean congue scelerisque ligula id sodales. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nunc sem lectus, gravida ac dui non, pharetra posuere leo. Maecenas lacus libero, facilisis et elit vitae, commodo facilisis sem. Vivamus id nisl nulla. Integer at maximus dui. Ut a tincidunt lorem. Vivamus vitae ligula vel lacus cursus condimentum. Phasellus quis mauris lobortis, finibus lorem in, vulputate ex. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed faucibus aliquam metus, quis varius elit porttitor id. Vivamus dignissim sollicitudin scelerisque. Morbi tincidunt, dolor quis vehicula consequat, dui diam condimentum nunc, vitae scelerisque odio libero nec ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;
|
||||
1
odoo-bringout-oca-dms-dms/dms/test/vector.svg
Normal file
1
odoo-bringout-oca-dms-dms/dms/test/vector.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 389 KiB |
BIN
odoo-bringout-oca-dms-dms/dms/test/video.mp4
Normal file
BIN
odoo-bringout-oca-dms-dms/dms/test/video.mp4
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue