Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

model-lodel-1.0.xml 339KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026
  1. <?xml version="1.0" encoding="utf8"?>
  2. <!DOCTYPE lodelEM SYSTEM "lodelEM.dtd">
  3. <lodelEM>
  4. <model>
  5. <lodelversion>1.0</lodelversion>
  6. <date>2015-09-24</date>
  7. <title>me-revorg lodel 1.0</title>
  8. <description>me-revorg lodel 1.0</description>
  9. <author>Open Edition Team</author>
  10. <modelversion>1.0.0</modelversion>
  11. </model>
  12. <table name="#_TP_classes">
  13. <structure>
  14. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  15. <field name="icon">varchar(255) NOT NULL DEFAULT ''</field>
  16. <field name="class">varchar(64) NOT NULL</field>
  17. <field name="title">tinytext NOT NULL</field>
  18. <field name="altertitle">text NOT NULL</field>
  19. <field name="classtype">varchar(64) NOT NULL</field>
  20. <field name="comment">text NOT NULL</field>
  21. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  22. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  23. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  24. <field name="PRIMARY_10" key="1">(`id`)</field>
  25. <field name="UNIQUE_11" key="1">`class` (`class`)</field>
  26. <field name="KEY_12" key="1">`index_class` (`class`)</field>
  27. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=2000000275 DEFAULT CHARSET=utf8</field>
  28. </structure>
  29. <datas>
  30. <row>
  31. <col name="id">252</col>
  32. <col name="icon">lodel/icons/texte.gif</col>
  33. <col name="class">textes</col>
  34. <col name="title">Textes</col>
  35. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Texts&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Textos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Textos&lt;/r2r:ml&gt;</col>
  36. <col name="classtype">entities</col>
  37. <col name="comment"></col>
  38. <col name="rank">2</col>
  39. <col name="status">32</col>
  40. <col name="upd">2015-09-14 14:20:28</col>
  41. </row>
  42. <row>
  43. <col name="id">253</col>
  44. <col name="icon">lodel/icons/collection.gif</col>
  45. <col name="class">publications</col>
  46. <col name="title">Publications</col>
  47. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folders&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Publicaciones&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Publicações&lt;/r2r:ml&gt;</col>
  48. <col name="classtype">entities</col>
  49. <col name="comment"></col>
  50. <col name="rank">1</col>
  51. <col name="status">1</col>
  52. <col name="upd">2015-09-14 14:20:28</col>
  53. </row>
  54. <row>
  55. <col name="id">254</col>
  56. <col name="icon">lodel/icons/doc_annexe.gif</col>
  57. <col name="class">fichiers</col>
  58. <col name="title">Fichiers</col>
  59. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Files&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Archivos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiros&lt;/r2r:ml&gt;</col>
  60. <col name="classtype">entities</col>
  61. <col name="comment"></col>
  62. <col name="rank">5</col>
  63. <col name="status">32</col>
  64. <col name="upd">2015-09-14 14:20:28</col>
  65. </row>
  66. <row>
  67. <col name="id">255</col>
  68. <col name="icon">lodel/icons/lien.gif</col>
  69. <col name="class">liens</col>
  70. <col name="title">Sites</col>
  71. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Websites&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sitios web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Websites&lt;/r2r:ml&gt;</col>
  72. <col name="classtype">entities</col>
  73. <col name="comment"></col>
  74. <col name="rank">6</col>
  75. <col name="status">32</col>
  76. <col name="upd">2015-09-14 14:20:28</col>
  77. </row>
  78. <row>
  79. <col name="id">256</col>
  80. <col name="icon">lodel/icons/texte_simple.gif</col>
  81. <col name="class">textessimples</col>
  82. <col name="title">Textes simples</col>
  83. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Simple texts&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Textos sencillos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Textos simples&lt;/r2r:ml&gt;</col>
  84. <col name="classtype">entities</col>
  85. <col name="comment"></col>
  86. <col name="rank">3</col>
  87. <col name="status">32</col>
  88. <col name="upd">2015-09-14 14:20:28</col>
  89. </row>
  90. <row>
  91. <col name="id">257</col>
  92. <col name="icon">lodel/icons/personne.gif</col>
  93. <col name="class">auteurs</col>
  94. <col name="title">Auteurs</col>
  95. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Authors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autores&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autores&lt;/r2r:ml&gt;</col>
  96. <col name="classtype">persons</col>
  97. <col name="comment"></col>
  98. <col name="rank">7</col>
  99. <col name="status">32</col>
  100. <col name="upd">2015-09-14 14:20:28</col>
  101. </row>
  102. <row>
  103. <col name="id">258</col>
  104. <col name="icon">lodel/icons/index.gif</col>
  105. <col name="class">indexes</col>
  106. <col name="title">Index</col>
  107. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Indexes&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índices&lt;/r2r:ml&gt;</col>
  108. <col name="classtype">entries</col>
  109. <col name="comment"></col>
  110. <col name="rank">9</col>
  111. <col name="status">1</col>
  112. <col name="upd">2015-09-14 14:20:28</col>
  113. </row>
  114. <row>
  115. <col name="id">259</col>
  116. <col name="icon">lodel/icons/individu.gif</col>
  117. <col name="class">individus</col>
  118. <col name="title">Personnes</col>
  119. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Persons&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Personas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Indivíduos&lt;/r2r:ml&gt;</col>
  120. <col name="classtype">entities</col>
  121. <col name="comment"></col>
  122. <col name="rank">4</col>
  123. <col name="status">1</col>
  124. <col name="upd">2015-09-14 14:20:28</col>
  125. </row>
  126. <row>
  127. <col name="id">260</col>
  128. <col name="icon">lodel/icons/index_avance.gif</col>
  129. <col name="class">indexavances</col>
  130. <col name="title">Index avancés</col>
  131. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Advanced indexes&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice avanzado&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índices avançados&lt;/r2r:ml&gt;</col>
  132. <col name="classtype">entries</col>
  133. <col name="comment"></col>
  134. <col name="rank">11</col>
  135. <col name="status">1</col>
  136. <col name="upd">2015-09-14 14:20:28</col>
  137. </row>
  138. <row>
  139. <col name="id">261</col>
  140. <col name="icon">lodel/icons/doc_annexe.gif</col>
  141. <col name="class">fichiersexternes</col>
  142. <col name="title">Fichiers distants</col>
  143. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Remote files&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Archivos externos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiros externos&lt;/r2r:ml&gt;</col>
  144. <col name="classtype">entities</col>
  145. <col name="comment"></col>
  146. <col name="rank">8</col>
  147. <col name="status">32</col>
  148. <col name="upd">2015-09-14 14:20:28</col>
  149. </row>
  150. <row>
  151. <col name="id">262</col>
  152. <col name="icon">lodel/icons/index_avance.gif</col>
  153. <col name="class">collections</col>
  154. <col name="title">Collections</col>
  155. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Collections&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Colecciones&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coleções&lt;/r2r:ml&gt;</col>
  156. <col name="classtype">entries</col>
  157. <col name="comment"></col>
  158. <col name="rank">12</col>
  159. <col name="status">1</col>
  160. <col name="upd">2015-09-14 14:20:28</col>
  161. </row>
  162. </datas>
  163. </table>
  164. <table name="#_TP_tablefields">
  165. <structure>
  166. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  167. <field name="name">varchar(32) NOT NULL</field>
  168. <field name="idgroup">int(10) unsigned NOT NULL DEFAULT '0'</field>
  169. <field name="class">varchar(64) NOT NULL</field>
  170. <field name="title">tinytext NOT NULL</field>
  171. <field name="altertitle">text NOT NULL</field>
  172. <field name="style">tinytext NOT NULL</field>
  173. <field name="type">tinytext NOT NULL</field>
  174. <field name="g_name">varchar(255) NOT NULL</field>
  175. <field name="cond">varchar(16) NOT NULL</field>
  176. <field name="defaultvalue">tinytext NOT NULL</field>
  177. <field name="processing">tinytext NOT NULL</field>
  178. <field name="allowedtags">tinytext NOT NULL</field>
  179. <field name="gui_user_complexity">tinyint(3) unsigned NOT NULL DEFAULT '64'</field>
  180. <field name="filtering">text NOT NULL</field>
  181. <field name="edition">tinytext NOT NULL</field>
  182. <field name="editionparams">tinytext NOT NULL</field>
  183. <field name="editionhooks">text NOT NULL</field>
  184. <field name="weight">tinyint(4) NOT NULL</field>
  185. <field name="comment">text NOT NULL</field>
  186. <field name="mask">text NOT NULL</field>
  187. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  188. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  189. <field name="otx">tinytext NOT NULL</field>
  190. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  191. <field name="PRIMARY_25" key="1">(`id`)</field>
  192. <field name="UNIQUE_26" key="1">`name` (`name`,`class`)</field>
  193. <field name="KEY_27" key="1">`index_name` (`name`)</field>
  194. <field name="KEY_28" key="1">`index_g_name` (`g_name`)</field>
  195. <field name="KEY_29" key="1">`index_idgroup` (`idgroup`)</field>
  196. <field name="KEY_30" key="1">`index_class` (`class`)</field>
  197. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=229 DEFAULT CHARSET=utf8</field>
  198. </structure>
  199. <datas>
  200. <row>
  201. <col name="id">1</col>
  202. <col name="name">titre</col>
  203. <col name="idgroup">31</col>
  204. <col name="class">textes</col>
  205. <col name="title">Titre du document</col>
  206. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título do documento&lt;/r2r:ml&gt;</col>
  207. <col name="style">title, titre, titleuser, heading, titulo,titulo</col>
  208. <col name="type">text</col>
  209. <col name="g_name">dc.title</col>
  210. <col name="cond">+</col>
  211. <col name="defaultvalue">Document sans titre</col>
  212. <col name="processing"></col>
  213. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Lien;Appel de Note;style:strict</col>
  214. <col name="gui_user_complexity">16</col>
  215. <col name="filtering"></col>
  216. <col name="edition">editable</col>
  217. <col name="editionparams"></col>
  218. <col name="editionhooks"></col>
  219. <col name="weight">8</col>
  220. <col name="comment"></col>
  221. <col name="mask"></col>
  222. <col name="status">1</col>
  223. <col name="rank">3</col>
  224. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[@type='main']</col>
  225. <col name="upd">2015-05-11 10:03:08</col>
  226. </row>
  227. <row>
  228. <col name="id">2</col>
  229. <col name="name">surtitre</col>
  230. <col name="idgroup">31</col>
  231. <col name="class">textes</col>
  232. <col name="title">Surtitre du document</col>
  233. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document heading (additional title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título adicional (encima del título principal)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Antetítulo do documento&lt;/r2r:ml&gt;</col>
  234. <col name="style">surtitre, tituloadicional, subhead,subhead,antetitulo</col>
  235. <col name="type">text</col>
  236. <col name="g_name"></col>
  237. <col name="cond">*</col>
  238. <col name="defaultvalue"></col>
  239. <col name="processing"></col>
  240. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Lien;Appel de Note;style:strict</col>
  241. <col name="gui_user_complexity">32</col>
  242. <col name="filtering"></col>
  243. <col name="edition">importable</col>
  244. <col name="editionparams"></col>
  245. <col name="editionhooks"></col>
  246. <col name="weight">8</col>
  247. <col name="comment"></col>
  248. <col name="mask"></col>
  249. <col name="status">1</col>
  250. <col name="rank">2</col>
  251. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[@type='sup']</col>
  252. <col name="upd">2014-01-30 14:35:53</col>
  253. </row>
  254. <row>
  255. <col name="id">3</col>
  256. <col name="name">soustitre</col>
  257. <col name="idgroup">31</col>
  258. <col name="class">textes</col>
  259. <col name="title">Sous-titre du document</col>
  260. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document subtitle (secondary title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Subtítulo del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Subtítulo do documento&lt;/r2r:ml&gt;</col>
  261. <col name="style">subtitle, soustitre, subtitulo,subtitulo</col>
  262. <col name="type">text</col>
  263. <col name="g_name"></col>
  264. <col name="cond">*</col>
  265. <col name="defaultvalue"></col>
  266. <col name="processing"></col>
  267. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Lien;Appel de Note;style:strict</col>
  268. <col name="gui_user_complexity">32</col>
  269. <col name="filtering"></col>
  270. <col name="edition">importable</col>
  271. <col name="editionparams"></col>
  272. <col name="editionhooks"></col>
  273. <col name="weight">8</col>
  274. <col name="comment"></col>
  275. <col name="mask"></col>
  276. <col name="status">1</col>
  277. <col name="rank">5</col>
  278. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[@type='sub']</col>
  279. <col name="upd">2015-03-04 16:37:01</col>
  280. </row>
  281. <row>
  282. <col name="id">4</col>
  283. <col name="name">texte</col>
  284. <col name="idgroup">32</col>
  285. <col name="class">textes</col>
  286. <col name="title">Texte du document</col>
  287. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Standard text&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Texto du documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Texto do documento&lt;/r2r:ml&gt;</col>
  288. <col name="style">texte, standard, normal, textbody, texto</col>
  289. <col name="type">longtext</col>
  290. <col name="g_name"></col>
  291. <col name="cond">*</col>
  292. <col name="defaultvalue"></col>
  293. <col name="processing"></col>
  294. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  295. <col name="gui_user_complexity">16</col>
  296. <col name="filtering"></col>
  297. <col name="edition">importable</col>
  298. <col name="editionparams"></col>
  299. <col name="editionhooks"></col>
  300. <col name="weight">4</col>
  301. <col name="comment"></col>
  302. <col name="mask"></col>
  303. <col name="status">32</col>
  304. <col name="rank">1</col>
  305. <col name="otx">/tei:TEI/tei:text/tei:body/child::*</col>
  306. <col name="upd">2015-03-04 16:43:39</col>
  307. </row>
  308. <row>
  309. <col name="id">5</col>
  310. <col name="name">notesbaspage</col>
  311. <col name="idgroup">32</col>
  312. <col name="class">textes</col>
  313. <col name="title">Notes de bas de page</col>
  314. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Footnotes&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Notas a pie de página&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Notas de rodapé&lt;/r2r:ml&gt;</col>
  315. <col name="style">notebaspage, footnote, footnotetext, notaapiedepagina,footnotes,notaapiedepagina</col>
  316. <col name="type">longtext</col>
  317. <col name="g_name"></col>
  318. <col name="cond">*</col>
  319. <col name="defaultvalue"></col>
  320. <col name="processing"></col>
  321. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  322. <col name="gui_user_complexity">32</col>
  323. <col name="filtering"></col>
  324. <col name="edition">importable</col>
  325. <col name="editionparams"></col>
  326. <col name="editionhooks"></col>
  327. <col name="weight">4</col>
  328. <col name="comment"></col>
  329. <col name="mask"></col>
  330. <col name="status">1</col>
  331. <col name="rank">2</col>
  332. <col name="otx"></col>
  333. <col name="upd">2013-09-06 10:03:21</col>
  334. </row>
  335. <row>
  336. <col name="id">7</col>
  337. <col name="name">annexe</col>
  338. <col name="idgroup">32</col>
  339. <col name="class">textes</col>
  340. <col name="title">Annexes du document</col>
  341. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appendixes&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Anexos del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Anexos ao documento&lt;/r2r:ml&gt;</col>
  342. <col name="style">annexe, anexo, appendix,appendix,anexo</col>
  343. <col name="type">longtext</col>
  344. <col name="g_name"></col>
  345. <col name="cond">*</col>
  346. <col name="defaultvalue"></col>
  347. <col name="processing"></col>
  348. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  349. <col name="gui_user_complexity">32</col>
  350. <col name="filtering"></col>
  351. <col name="edition">importable</col>
  352. <col name="editionparams"></col>
  353. <col name="editionhooks"></col>
  354. <col name="weight">4</col>
  355. <col name="comment"></col>
  356. <col name="mask"></col>
  357. <col name="status">1</col>
  358. <col name="rank">4</col>
  359. <col name="otx">/tei:TEI/tei:text/tei:back/tei:div[@type='appendix']</col>
  360. <col name="upd">2013-09-06 10:03:21</col>
  361. </row>
  362. <row>
  363. <col name="id">8</col>
  364. <col name="name">bibliographie</col>
  365. <col name="idgroup">32</col>
  366. <col name="class">textes</col>
  367. <col name="title">Bibliographie du document</col>
  368. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Bibliography&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Bibliografía del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Bibliografia&lt;/r2r:ml&gt;</col>
  369. <col name="style">bibliographie, bibliografia, bibliography,bibliography,bibliografia</col>
  370. <col name="type">text</col>
  371. <col name="g_name"></col>
  372. <col name="cond">*</col>
  373. <col name="defaultvalue"></col>
  374. <col name="processing"></col>
  375. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  376. <col name="gui_user_complexity">32</col>
  377. <col name="filtering"></col>
  378. <col name="edition">importable</col>
  379. <col name="editionparams"></col>
  380. <col name="editionhooks"></col>
  381. <col name="weight">4</col>
  382. <col name="comment"></col>
  383. <col name="mask"></col>
  384. <col name="status">1</col>
  385. <col name="rank">5</col>
  386. <col name="otx">/tei:TEI/tei:text/tei:back/tei:div[@type='bibliography']</col>
  387. <col name="upd">2013-09-06 10:03:21</col>
  388. </row>
  389. <row>
  390. <col name="id">9</col>
  391. <col name="name">datepubli</col>
  392. <col name="idgroup">33</col>
  393. <col name="class">textes</col>
  394. <col name="title">Date de la publication électronique</col>
  395. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Date of online publication (electronic edition)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación electrónica&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data da publicação electrónica&lt;/r2r:ml&gt;</col>
  396. <col name="style">datepubli, fechapubli, epublidate,epublidate,fechapubli</col>
  397. <col name="type">date</col>
  398. <col name="g_name">dc.date</col>
  399. <col name="cond">*</col>
  400. <col name="defaultvalue">today</col>
  401. <col name="processing"></col>
  402. <col name="allowedtags">style:none</col>
  403. <col name="gui_user_complexity">16</col>
  404. <col name="filtering"></col>
  405. <col name="edition">display</col>
  406. <col name="editionparams"></col>
  407. <col name="editionhooks"></col>
  408. <col name="weight">0</col>
  409. <col name="comment"></col>
  410. <col name="mask"></col>
  411. <col name="status">1</col>
  412. <col name="rank">1</col>
  413. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:date</col>
  414. <col name="upd">2015-03-04 16:47:20</col>
  415. </row>
  416. <row>
  417. <col name="id">10</col>
  418. <col name="name">datepublipapier</col>
  419. <col name="idgroup">33</col>
  420. <col name="class">textes</col>
  421. <col name="title">Date de la publication sur papier</col>
  422. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Date of publication (print edition)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación papel&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data da publicação em papel&lt;/r2r:ml&gt;</col>
  423. <col name="style">datepublipapier, publidate, fechapublipapel,publidate,fechapublipapel</col>
  424. <col name="type">date</col>
  425. <col name="g_name"></col>
  426. <col name="cond">*</col>
  427. <col name="defaultvalue"></col>
  428. <col name="processing"></col>
  429. <col name="allowedtags">style:none</col>
  430. <col name="gui_user_complexity">32</col>
  431. <col name="filtering"></col>
  432. <col name="edition">display</col>
  433. <col name="editionparams"></col>
  434. <col name="editionhooks"></col>
  435. <col name="weight">0</col>
  436. <col name="comment"></col>
  437. <col name="mask"></col>
  438. <col name="status">1</col>
  439. <col name="rank">2</col>
  440. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:publicationStmt/tei:date</col>
  441. <col name="upd">2015-03-04 16:47:38</col>
  442. </row>
  443. <row>
  444. <col name="id">11</col>
  445. <col name="name">noticebiblio</col>
  446. <col name="idgroup">33</col>
  447. <col name="class">textes</col>
  448. <col name="title">Notice bibliographique du document</col>
  449. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Bibliographical reference describing the document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Referencia bibliográfica del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Referência bibliográfica do documento&lt;/r2r:ml&gt;</col>
  450. <col name="style">noticebiblio, bibliographicalreference, referenciabibliografica,bibliographicalreference,referenciabibliografica</col>
  451. <col name="type">text</col>
  452. <col name="g_name"></col>
  453. <col name="cond">*</col>
  454. <col name="defaultvalue"></col>
  455. <col name="processing"></col>
  456. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;style:strict</col>
  457. <col name="gui_user_complexity">64</col>
  458. <col name="filtering"></col>
  459. <col name="edition">importable</col>
  460. <col name="editionparams"></col>
  461. <col name="editionhooks"></col>
  462. <col name="weight">0</col>
  463. <col name="comment"></col>
  464. <col name="mask"></col>
  465. <col name="status">1</col>
  466. <col name="rank">3</col>
  467. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:notesStmt/tei:note[@type='bibl']</col>
  468. <col name="upd">2014-01-30 14:35:53</col>
  469. </row>
  470. <row>
  471. <col name="id">12</col>
  472. <col name="name">pagination</col>
  473. <col name="idgroup">33</col>
  474. <col name="class">textes</col>
  475. <col name="title">Pagination du document sur le papier</col>
  476. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Pagination&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Paginación del documento papel&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Números de página do documento em papel&lt;/r2r:ml&gt;</col>
  477. <col name="style">pagination, paginacion, pagenumbering,pagenumbering,paginacion</col>
  478. <col name="type">tinytext</col>
  479. <col name="g_name"></col>
  480. <col name="cond">*</col>
  481. <col name="defaultvalue"></col>
  482. <col name="processing"></col>
  483. <col name="allowedtags">style:none</col>
  484. <col name="gui_user_complexity">64</col>
  485. <col name="filtering"></col>
  486. <col name="edition">importable</col>
  487. <col name="editionparams"></col>
  488. <col name="editionhooks"></col>
  489. <col name="weight">0</col>
  490. <col name="comment"></col>
  491. <col name="mask"></col>
  492. <col name="status">1</col>
  493. <col name="rank">4</col>
  494. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:sourceDesc/tei:biblFull/tei:publicationStmt/tei:idno[@type='pp']</col>
  495. <col name="upd">2015-03-04 16:39:50</col>
  496. </row>
  497. <row>
  498. <col name="id">130</col>
  499. <col name="name">editeurscientifique</col>
  500. <col name="idgroup">14</col>
  501. <col name="class">textes</col>
  502. <col name="title">Éditeur scientifique</col>
  503. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Academic editor&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Editor científico&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coordenador científico&lt;/r2r:ml&gt;</col>
  504. <col name="style"></col>
  505. <col name="type">persons</col>
  506. <col name="g_name"></col>
  507. <col name="cond"></col>
  508. <col name="defaultvalue"></col>
  509. <col name="processing"></col>
  510. <col name="allowedtags"></col>
  511. <col name="gui_user_complexity">64</col>
  512. <col name="filtering"></col>
  513. <col name="edition">importable</col>
  514. <col name="editionparams"></col>
  515. <col name="editionhooks"></col>
  516. <col name="weight">0</col>
  517. <col name="comment"></col>
  518. <col name="mask"></col>
  519. <col name="status">1</col>
  520. <col name="rank">109</col>
  521. <col name="otx"></col>
  522. <col name="upd">2015-03-04 16:38:39</col>
  523. </row>
  524. <row>
  525. <col name="id">14</col>
  526. <col name="name">langue</col>
  527. <col name="idgroup">33</col>
  528. <col name="class">textes</col>
  529. <col name="title">Langue du document</col>
  530. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Language of document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Idioma del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Língua do documento&lt;/r2r:ml&gt;</col>
  531. <col name="style">langue, idioma, language,language,idioma</col>
  532. <col name="type">lang</col>
  533. <col name="g_name">dc.language</col>
  534. <col name="cond">*</col>
  535. <col name="defaultvalue"></col>
  536. <col name="processing"></col>
  537. <col name="allowedtags">style:none</col>
  538. <col name="gui_user_complexity">32</col>
  539. <col name="filtering"></col>
  540. <col name="edition">display</col>
  541. <col name="editionparams"></col>
  542. <col name="editionhooks"></col>
  543. <col name="weight">0</col>
  544. <col name="comment"></col>
  545. <col name="mask"></col>
  546. <col name="status">1</col>
  547. <col name="rank">6</col>
  548. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:langUsage/tei:language</col>
  549. <col name="upd">2015-07-21 08:42:59</col>
  550. </row>
  551. <row>
  552. <col name="id">15</col>
  553. <col name="name">prioritaire</col>
  554. <col name="idgroup">16</col>
  555. <col name="class">textes</col>
  556. <col name="title">Document prioritaire</col>
  557. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document priority&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;¿Es prioritario este documento?&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Documento prioritário&lt;/r2r:ml&gt;</col>
  558. <col name="style"></col>
  559. <col name="type">boolean</col>
  560. <col name="g_name"></col>
  561. <col name="cond">*</col>
  562. <col name="defaultvalue"></col>
  563. <col name="processing"></col>
  564. <col name="allowedtags"></col>
  565. <col name="gui_user_complexity">64</col>
  566. <col name="filtering"></col>
  567. <col name="edition">none</col>
  568. <col name="editionparams"></col>
  569. <col name="editionhooks"></col>
  570. <col name="weight">0</col>
  571. <col name="comment"></col>
  572. <col name="mask"></col>
  573. <col name="status">32</col>
  574. <col name="rank">7</col>
  575. <col name="otx"></col>
  576. <col name="upd">2015-03-04 16:45:16</col>
  577. </row>
  578. <row>
  579. <col name="id">17</col>
  580. <col name="name">addendum</col>
  581. <col name="idgroup">34</col>
  582. <col name="class">textes</col>
  583. <col name="title">Addendum</col>
  584. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Addendum&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Addendum&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Adenda&lt;/r2r:ml&gt;</col>
  585. <col name="style">erratum, addendum</col>
  586. <col name="type">text</col>
  587. <col name="g_name"></col>
  588. <col name="cond">*</col>
  589. <col name="defaultvalue"></col>
  590. <col name="processing"></col>
  591. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  592. <col name="gui_user_complexity">64</col>
  593. <col name="filtering"></col>
  594. <col name="edition">importable</col>
  595. <col name="editionparams"></col>
  596. <col name="editionhooks"></col>
  597. <col name="weight">2</col>
  598. <col name="comment"></col>
  599. <col name="mask"></col>
  600. <col name="status">32</col>
  601. <col name="rank">3</col>
  602. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='correction']</col>
  603. <col name="upd">2011-09-20 22:11:39</col>
  604. </row>
  605. <row>
  606. <col name="id">18</col>
  607. <col name="name">ndlr</col>
  608. <col name="idgroup">34</col>
  609. <col name="class">textes</col>
  610. <col name="title">Note de la rédaction</col>
  611. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Editor's note&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nota de la redacción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nota de edição&lt;/r2r:ml&gt;</col>
  612. <col name="style">ndlr, editorsnote,editorsnote</col>
  613. <col name="type">text</col>
  614. <col name="g_name"></col>
  615. <col name="cond">*</col>
  616. <col name="defaultvalue"></col>
  617. <col name="processing"></col>
  618. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  619. <col name="gui_user_complexity">64</col>
  620. <col name="filtering"></col>
  621. <col name="edition">importable</col>
  622. <col name="editionparams"></col>
  623. <col name="editionhooks"></col>
  624. <col name="weight">2</col>
  625. <col name="comment"></col>
  626. <col name="mask"></col>
  627. <col name="status">1</col>
  628. <col name="rank">1</col>
  629. <col name="otx">/tei:TEI/tei:text/tei:front/tei:note[@resp='editor']/tei:p</col>
  630. <col name="upd">2013-09-06 10:03:08</col>
  631. </row>
  632. <row>
  633. <col name="id">20</col>
  634. <col name="name">commentaireinterne</col>
  635. <col name="idgroup">16</col>
  636. <col name="class">textes</col>
  637. <col name="title">Commentaire interne sur le document</col>
  638. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Internal comment about the document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Comentario interno sobre el documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Comentário interno sobre o documento&lt;/r2r:ml&gt;</col>
  639. <col name="style">commentaire</col>
  640. <col name="type">text</col>
  641. <col name="g_name"></col>
  642. <col name="cond">*</col>
  643. <col name="defaultvalue"></col>
  644. <col name="processing"></col>
  645. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  646. <col name="gui_user_complexity">64</col>
  647. <col name="filtering"></col>
  648. <col name="edition">importable</col>
  649. <col name="editionparams"></col>
  650. <col name="editionhooks"></col>
  651. <col name="weight">0</col>
  652. <col name="comment"></col>
  653. <col name="mask"></col>
  654. <col name="status">32</col>
  655. <col name="rank">4</col>
  656. <col name="otx"></col>
  657. <col name="upd">2011-09-20 22:22:45</col>
  658. </row>
  659. <row>
  660. <col name="id">21</col>
  661. <col name="name">dedicace</col>
  662. <col name="idgroup">34</col>
  663. <col name="class">textes</col>
  664. <col name="title">Dédicace</col>
  665. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Dedication&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Dedicatoria&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Dedicatória&lt;/r2r:ml&gt;</col>
  666. <col name="style">dedicace, dedicatoria, dedication,dedication,dedicatoria</col>
  667. <col name="type">text</col>
  668. <col name="g_name"></col>
  669. <col name="cond">*</col>
  670. <col name="defaultvalue"></col>
  671. <col name="processing"></col>
  672. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  673. <col name="gui_user_complexity">64</col>
  674. <col name="filtering"></col>
  675. <col name="edition">importable</col>
  676. <col name="editionparams"></col>
  677. <col name="editionhooks"></col>
  678. <col name="weight">2</col>
  679. <col name="comment"></col>
  680. <col name="mask"></col>
  681. <col name="status">1</col>
  682. <col name="rank">4</col>
  683. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='dedication']</col>
  684. <col name="upd">2013-09-06 10:03:21</col>
  685. </row>
  686. <row>
  687. <col name="id">23</col>
  688. <col name="name">ocr</col>
  689. <col name="idgroup">16</col>
  690. <col name="class">textes</col>
  691. <col name="title">Document issu d’une numérisation dite OCR</col>
  692. <col name="altertitle">&lt;r2r:ml lang="en"&gt;The document is a transcript from an OCR&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Este texto fue obtenido por OCR&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Documento obtido por digitalização OCR&lt;/r2r:ml&gt;</col>
  693. <col name="style"></col>
  694. <col name="type">boolean</col>
  695. <col name="g_name"></col>
  696. <col name="cond">*</col>
  697. <col name="defaultvalue"></col>
  698. <col name="processing"></col>
  699. <col name="allowedtags"></col>
  700. <col name="gui_user_complexity">64</col>
  701. <col name="filtering"></col>
  702. <col name="edition">importable</col>
  703. <col name="editionparams"></col>
  704. <col name="editionhooks"></col>
  705. <col name="weight">0</col>
  706. <col name="comment"></col>
  707. <col name="mask"></col>
  708. <col name="status">32</col>
  709. <col name="rank">9</col>
  710. <col name="otx"></col>
  711. <col name="upd">2011-09-20 22:23:44</col>
  712. </row>
  713. <row>
  714. <col name="id">24</col>
  715. <col name="name">documentcliquable</col>
  716. <col name="idgroup">16</col>
  717. <col name="class">textes</col>
  718. <col name="title">Document cliquable dans les sommaires</col>
  719. <col name="altertitle">&lt;r2r:ml lang="en"&gt;The document is clickable in the contents of the folder&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Este documento es accesible en índices&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Documento clicável no índice&lt;/r2r:ml&gt;</col>
  720. <col name="style"></col>
  721. <col name="type">boolean</col>
  722. <col name="g_name"></col>
  723. <col name="cond">*</col>
  724. <col name="defaultvalue">true</col>
  725. <col name="processing"></col>
  726. <col name="allowedtags"></col>
  727. <col name="gui_user_complexity">64</col>
  728. <col name="filtering"></col>
  729. <col name="edition">importable</col>
  730. <col name="editionparams"></col>
  731. <col name="editionhooks"></col>
  732. <col name="weight">0</col>
  733. <col name="comment"></col>
  734. <col name="mask"></col>
  735. <col name="status">32</col>
  736. <col name="rank">10</col>
  737. <col name="otx"></col>
  738. <col name="upd">2015-03-05 15:48:51</col>
  739. </row>
  740. <row>
  741. <col name="id">25</col>
  742. <col name="name">nom</col>
  743. <col name="idgroup">0</col>
  744. <col name="class">indexes</col>
  745. <col name="title">Dénomination de l’entrée d'index</col>
  746. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Entry name&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nombre de la entrada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Designação da entrada do índice&lt;/r2r:ml&gt;</col>
  747. <col name="style"></col>
  748. <col name="type">text</col>
  749. <col name="g_name">index key</col>
  750. <col name="cond">*</col>
  751. <col name="defaultvalue">Tous droits réservés</col>
  752. <col name="processing"></col>
  753. <col name="allowedtags"></col>
  754. <col name="gui_user_complexity">16</col>
  755. <col name="filtering"></col>
  756. <col name="edition">editable</col>
  757. <col name="editionparams"></col>
  758. <col name="editionhooks"></col>
  759. <col name="weight">4</col>
  760. <col name="comment"></col>
  761. <col name="mask"></col>
  762. <col name="status">32</col>
  763. <col name="rank">25</col>
  764. <col name="otx"></col>
  765. <col name="upd">2011-09-20 23:19:35</col>
  766. </row>
  767. <row>
  768. <col name="id">26</col>
  769. <col name="name">motsclesfr</col>
  770. <col name="idgroup">15</col>
  771. <col name="class">textes</col>
  772. <col name="title">Mots-clés</col>
  773. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Mots-clés&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Mots-clés&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Mots-clés&lt;/r2r:ml&gt;</col>
  774. <col name="style"></col>
  775. <col name="type">entries</col>
  776. <col name="g_name"></col>
  777. <col name="cond"></col>
  778. <col name="defaultvalue"></col>
  779. <col name="processing"></col>
  780. <col name="allowedtags"></col>
  781. <col name="gui_user_complexity">64</col>
  782. <col name="filtering"></col>
  783. <col name="edition">importable</col>
  784. <col name="editionparams"></col>
  785. <col name="editionhooks"></col>
  786. <col name="weight">0</col>
  787. <col name="comment"></col>
  788. <col name="mask"></col>
  789. <col name="status">32</col>
  790. <col name="rank">1</col>
  791. <col name="otx"></col>
  792. <col name="upd">2015-03-05 14:31:26</col>
  793. </row>
  794. <row>
  795. <col name="id">27</col>
  796. <col name="name">definition</col>
  797. <col name="idgroup">0</col>
  798. <col name="class">indexes</col>
  799. <col name="title">Définition</col>
  800. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Entry definition&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Definición de la entrada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Definição da entrada do índice&lt;/r2r:ml&gt;</col>
  801. <col name="style"></col>
  802. <col name="type">text</col>
  803. <col name="g_name"></col>
  804. <col name="cond">*</col>
  805. <col name="defaultvalue"></col>
  806. <col name="processing"></col>
  807. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  808. <col name="gui_user_complexity">16</col>
  809. <col name="filtering"></col>
  810. <col name="edition">fckeditor</col>
  811. <col name="editionparams">Basic</col>
  812. <col name="editionhooks"></col>
  813. <col name="weight">1</col>
  814. <col name="comment"></col>
  815. <col name="mask"></col>
  816. <col name="status">32</col>
  817. <col name="rank">27</col>
  818. <col name="otx"></col>
  819. <col name="upd">2011-09-20 23:19:47</col>
  820. </row>
  821. <row>
  822. <col name="id">28</col>
  823. <col name="name">nomfamille</col>
  824. <col name="idgroup">0</col>
  825. <col name="class">auteurs</col>
  826. <col name="title">Nom de famille</col>
  827. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Surname&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Apellido&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Apelido&lt;/r2r:ml&gt;</col>
  828. <col name="style"></col>
  829. <col name="type">tinytext</col>
  830. <col name="g_name">familyname</col>
  831. <col name="cond">*</col>
  832. <col name="defaultvalue"></col>
  833. <col name="processing"></col>
  834. <col name="allowedtags"></col>
  835. <col name="gui_user_complexity">32</col>
  836. <col name="filtering"></col>
  837. <col name="edition">editable</col>
  838. <col name="editionparams"></col>
  839. <col name="editionhooks"></col>
  840. <col name="weight">4</col>
  841. <col name="comment"></col>
  842. <col name="mask"></col>
  843. <col name="status">32</col>
  844. <col name="rank">28</col>
  845. <col name="otx"></col>
  846. <col name="upd">2011-09-20 23:13:18</col>
  847. </row>
  848. <row>
  849. <col name="id">29</col>
  850. <col name="name">prenom</col>
  851. <col name="idgroup">0</col>
  852. <col name="class">auteurs</col>
  853. <col name="title">Prénom</col>
  854. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Name&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nombre&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nome próprio&lt;/r2r:ml&gt;</col>
  855. <col name="style"></col>
  856. <col name="type">tinytext</col>
  857. <col name="g_name">firstname</col>
  858. <col name="cond">*</col>
  859. <col name="defaultvalue"></col>
  860. <col name="processing"></col>
  861. <col name="allowedtags"></col>
  862. <col name="gui_user_complexity">32</col>
  863. <col name="filtering"></col>
  864. <col name="edition">editable</col>
  865. <col name="editionparams"></col>
  866. <col name="editionhooks"></col>
  867. <col name="weight">4</col>
  868. <col name="comment"></col>
  869. <col name="mask"></col>
  870. <col name="status">32</col>
  871. <col name="rank">29</col>
  872. <col name="otx"></col>
  873. <col name="upd">2011-09-20 23:13:31</col>
  874. </row>
  875. <row>
  876. <col name="id">30</col>
  877. <col name="name">prefix</col>
  878. <col name="idgroup">0</col>
  879. <col name="class">entities_auteurs</col>
  880. <col name="title">Préfixe</col>
  881. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Prefix&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Prefijo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título&lt;/r2r:ml&gt;</col>
  882. <col name="style">prefixe, .prefixe, prefix, ,prefix,prefijo</col>
  883. <col name="type">tinytext</col>
  884. <col name="g_name"></col>
  885. <col name="cond">*</col>
  886. <col name="defaultvalue"></col>
  887. <col name="processing"></col>
  888. <col name="allowedtags"></col>
  889. <col name="gui_user_complexity">64</col>
  890. <col name="filtering"></col>
  891. <col name="edition">importable</col>
  892. <col name="editionparams"></col>
  893. <col name="editionhooks"></col>
  894. <col name="weight">0</col>
  895. <col name="comment"></col>
  896. <col name="mask"></col>
  897. <col name="status">1</col>
  898. <col name="rank">2</col>
  899. <col name="otx">//tei:roleName[@type='honorific']</col>
  900. <col name="upd">2015-03-05 14:34:49</col>
  901. </row>
  902. <row>
  903. <col name="id">31</col>
  904. <col name="name">affiliation</col>
  905. <col name="idgroup">0</col>
  906. <col name="class">entities_auteurs</col>
  907. <col name="title">Affiliation</col>
  908. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Affiliation&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Afiliación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Afiliação&lt;/r2r:ml&gt;</col>
  909. <col name="style">affiliation, .affiliation, afiliacion,afiliacion</col>
  910. <col name="type">tinytext</col>
  911. <col name="g_name"></col>
  912. <col name="cond">*</col>
  913. <col name="defaultvalue"></col>
  914. <col name="processing"></col>
  915. <col name="allowedtags"></col>
  916. <col name="gui_user_complexity">32</col>
  917. <col name="filtering"></col>
  918. <col name="edition">importable</col>
  919. <col name="editionparams"></col>
  920. <col name="editionhooks"></col>
  921. <col name="weight">4</col>
  922. <col name="comment"></col>
  923. <col name="mask"></col>
  924. <col name="status">1</col>
  925. <col name="rank">3</col>
  926. <col name="otx">//tei:orgName</col>
  927. <col name="upd">2015-03-05 14:35:11</col>
  928. </row>
  929. <row>
  930. <col name="id">32</col>
  931. <col name="name">fonction</col>
  932. <col name="idgroup">0</col>
  933. <col name="class">entities_auteurs</col>
  934. <col name="title">Fonction</col>
  935. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Function&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Cargo profesional&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Função&lt;/r2r:ml&gt;</col>
  936. <col name="style">fonction, .fonction, cargo, position, ,position,cargo</col>
  937. <col name="type">tinytext</col>
  938. <col name="g_name"></col>
  939. <col name="cond">*</col>
  940. <col name="defaultvalue"></col>
  941. <col name="processing"></col>
  942. <col name="allowedtags"></col>
  943. <col name="gui_user_complexity">32</col>
  944. <col name="filtering"></col>
  945. <col name="edition">importable</col>
  946. <col name="editionparams"></col>
  947. <col name="editionhooks"></col>
  948. <col name="weight">0</col>
  949. <col name="comment"></col>
  950. <col name="mask"></col>
  951. <col name="status">1</col>
  952. <col name="rank">4</col>
  953. <col name="otx">//tei:roleName[@type='function']</col>
  954. <col name="upd">2015-03-05 14:35:24</col>
  955. </row>
  956. <row>
  957. <col name="id">33</col>
  958. <col name="name">description</col>
  959. <col name="idgroup">0</col>
  960. <col name="class">entities_auteurs</col>
  961. <col name="title">Description de l’auteur</col>
  962. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción del autor&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Apresentação do autor&lt;/r2r:ml&gt;</col>
  963. <col name="style">descriptionauteur, descripcionautor, authordescription,authordescription,descripcionautor</col>
  964. <col name="type">text</col>
  965. <col name="g_name"></col>
  966. <col name="cond">*</col>
  967. <col name="defaultvalue"></col>
  968. <col name="processing"></col>
  969. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  970. <col name="gui_user_complexity">16</col>
  971. <col name="filtering"></col>
  972. <col name="edition">fckeditor</col>
  973. <col name="editionparams">5</col>
  974. <col name="editionhooks"></col>
  975. <col name="weight">4</col>
  976. <col name="comment"></col>
  977. <col name="mask"></col>
  978. <col name="status">1</col>
  979. <col name="rank">1</col>
  980. <col name="otx">//tei:affiliation</col>
  981. <col name="upd">2013-09-06 10:03:22</col>
  982. </row>
  983. <row>
  984. <col name="id">34</col>
  985. <col name="name">courriel</col>
  986. <col name="idgroup">0</col>
  987. <col name="class">entities_auteurs</col>
  988. <col name="title">Courriel</col>
  989. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Email&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Correo electrónico&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;E-mail&lt;/r2r:ml&gt;</col>
  990. <col name="style">courriel, .courriel, correoelectronico, email,email,correoelectronico</col>
  991. <col name="type">email</col>
  992. <col name="g_name"></col>
  993. <col name="cond">*</col>
  994. <col name="defaultvalue"></col>
  995. <col name="processing"></col>
  996. <col name="allowedtags"></col>
  997. <col name="gui_user_complexity">32</col>
  998. <col name="filtering"></col>
  999. <col name="edition">importable</col>
  1000. <col name="editionparams"></col>
  1001. <col name="editionhooks"></col>
  1002. <col name="weight">4</col>
  1003. <col name="comment"></col>
  1004. <col name="mask"></col>
  1005. <col name="status">1</col>
  1006. <col name="rank">5</col>
  1007. <col name="otx">//tei:email</col>
  1008. <col name="upd">2015-03-05 14:35:35</col>
  1009. </row>
  1010. <row>
  1011. <col name="id">35</col>
  1012. <col name="name">auteur</col>
  1013. <col name="idgroup">14</col>
  1014. <col name="class">textes</col>
  1015. <col name="title">Auteur du document</col>
  1016. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autor del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autor do documento&lt;/r2r:ml&gt;</col>
  1017. <col name="style"></col>
  1018. <col name="type">persons</col>
  1019. <col name="g_name"></col>
  1020. <col name="cond"></col>
  1021. <col name="defaultvalue"></col>
  1022. <col name="processing"></col>
  1023. <col name="allowedtags"></col>
  1024. <col name="gui_user_complexity">64</col>
  1025. <col name="filtering"></col>
  1026. <col name="edition">importable</col>
  1027. <col name="editionparams"></col>
  1028. <col name="editionhooks"></col>
  1029. <col name="weight">0</col>
  1030. <col name="comment"></col>
  1031. <col name="mask"></col>
  1032. <col name="status">32</col>
  1033. <col name="rank">11</col>
  1034. <col name="otx"></col>
  1035. <col name="upd">2015-03-04 16:38:22</col>
  1036. </row>
  1037. <row>
  1038. <col name="id">36</col>
  1039. <col name="name">traducteur</col>
  1040. <col name="idgroup">14</col>
  1041. <col name="class">textes</col>
  1042. <col name="title">Traducteur du document</col>
  1043. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Translator&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Traductor del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Tradutor do documento&lt;/r2r:ml&gt;</col>
  1044. <col name="style"></col>
  1045. <col name="type">persons</col>
  1046. <col name="g_name"></col>
  1047. <col name="cond"></col>
  1048. <col name="defaultvalue"></col>
  1049. <col name="processing"></col>
  1050. <col name="allowedtags"></col>
  1051. <col name="gui_user_complexity">64</col>
  1052. <col name="filtering"></col>
  1053. <col name="edition">importable</col>
  1054. <col name="editionparams"></col>
  1055. <col name="editionhooks"></col>
  1056. <col name="weight">0</col>
  1057. <col name="comment"></col>
  1058. <col name="mask"></col>
  1059. <col name="status">32</col>
  1060. <col name="rank">12</col>
  1061. <col name="otx"></col>
  1062. <col name="upd">2015-03-04 16:38:30</col>
  1063. </row>
  1064. <row>
  1065. <col name="id">142</col>
  1066. <col name="name">alias</col>
  1067. <col name="idgroup">16</col>
  1068. <col name="class">textes</col>
  1069. <col name="title">Alias</col>
  1070. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Alias&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Alias&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Alias&lt;/r2r:ml&gt;</col>
  1071. <col name="style"></col>
  1072. <col name="type">entities</col>
  1073. <col name="g_name"></col>
  1074. <col name="cond">*</col>
  1075. <col name="defaultvalue"></col>
  1076. <col name="processing"></col>
  1077. <col name="allowedtags"></col>
  1078. <col name="gui_user_complexity">64</col>
  1079. <col name="filtering"></col>
  1080. <col name="edition">none</col>
  1081. <col name="editionparams"></col>
  1082. <col name="editionhooks"></col>
  1083. <col name="weight">0</col>
  1084. <col name="comment"></col>
  1085. <col name="mask"></col>
  1086. <col name="status">1</col>
  1087. <col name="rank">119</col>
  1088. <col name="otx"></col>
  1089. <col name="upd">2015-03-04 16:46:26</col>
  1090. </row>
  1091. <row>
  1092. <col name="id">117</col>
  1093. <col name="name">date</col>
  1094. <col name="idgroup">19</col>
  1095. <col name="class">textessimples</col>
  1096. <col name="title">Date de publication en ligne</col>
  1097. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Date of online publication&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación electrónica&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação online&lt;/r2r:ml&gt;</col>
  1098. <col name="style"></col>
  1099. <col name="type">datetime</col>
  1100. <col name="g_name"></col>
  1101. <col name="cond">*</col>
  1102. <col name="defaultvalue">now</col>
  1103. <col name="processing"></col>
  1104. <col name="allowedtags"></col>
  1105. <col name="gui_user_complexity">16</col>
  1106. <col name="filtering"></col>
  1107. <col name="edition">editable</col>
  1108. <col name="editionparams"></col>
  1109. <col name="editionhooks"></col>
  1110. <col name="weight">0</col>
  1111. <col name="comment"></col>
  1112. <col name="mask"></col>
  1113. <col name="status">1</col>
  1114. <col name="rank">100</col>
  1115. <col name="otx"></col>
  1116. <col name="upd">2011-09-20 22:32:36</col>
  1117. </row>
  1118. <row>
  1119. <col name="id">116</col>
  1120. <col name="name">url</col>
  1121. <col name="idgroup">19</col>
  1122. <col name="class">textessimples</col>
  1123. <col name="title">Lien</col>
  1124. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Link&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Enlace&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Hiperligação&lt;/r2r:ml&gt;</col>
  1125. <col name="style"></col>
  1126. <col name="type">url</col>
  1127. <col name="g_name"></col>
  1128. <col name="cond">*</col>
  1129. <col name="defaultvalue"></col>
  1130. <col name="processing"></col>
  1131. <col name="allowedtags"></col>
  1132. <col name="gui_user_complexity">16</col>
  1133. <col name="filtering"></col>
  1134. <col name="edition">editable</col>
  1135. <col name="editionparams"></col>
  1136. <col name="editionhooks"></col>
  1137. <col name="weight">2</col>
  1138. <col name="comment"></col>
  1139. <col name="mask"></col>
  1140. <col name="status">1</col>
  1141. <col name="rank">99</col>
  1142. <col name="otx"></col>
  1143. <col name="upd">2011-09-20 22:32:19</col>
  1144. </row>
  1145. <row>
  1146. <col name="id">140</col>
  1147. <col name="name">licence</col>
  1148. <col name="idgroup">24</col>
  1149. <col name="class">fichiers</col>
  1150. <col name="title">Licence</col>
  1151. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document license&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Licencia&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Licenciamento&lt;/r2r:ml&gt;</col>
  1152. <col name="style"></col>
  1153. <col name="type">entries</col>
  1154. <col name="g_name"></col>
  1155. <col name="cond"></col>
  1156. <col name="defaultvalue"></col>
  1157. <col name="processing"></col>
  1158. <col name="allowedtags"></col>
  1159. <col name="gui_user_complexity">64</col>
  1160. <col name="filtering"></col>
  1161. <col name="edition">editable</col>
  1162. <col name="editionparams"></col>
  1163. <col name="editionhooks"></col>
  1164. <col name="weight">0</col>
  1165. <col name="comment"></col>
  1166. <col name="mask"></col>
  1167. <col name="status">1</col>
  1168. <col name="rank">118</col>
  1169. <col name="otx"></col>
  1170. <col name="upd">2011-09-20 22:46:44</col>
  1171. </row>
  1172. <row>
  1173. <col name="id">43</col>
  1174. <col name="name">titre</col>
  1175. <col name="idgroup">35</col>
  1176. <col name="class">liens</col>
  1177. <col name="title">Titre du site</col>
  1178. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título del sitio&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título do website&lt;/r2r:ml&gt;</col>
  1179. <col name="style"></col>
  1180. <col name="type">text</col>
  1181. <col name="g_name">dc.title</col>
  1182. <col name="cond">*</col>
  1183. <col name="defaultvalue">Site sans titre</col>
  1184. <col name="processing"></col>
  1185. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Appel de Note</col>
  1186. <col name="gui_user_complexity">16</col>
  1187. <col name="filtering"></col>
  1188. <col name="edition">editable</col>
  1189. <col name="editionparams"></col>
  1190. <col name="editionhooks"></col>
  1191. <col name="weight">8</col>
  1192. <col name="comment"></col>
  1193. <col name="mask"></col>
  1194. <col name="status">32</col>
  1195. <col name="rank">43</col>
  1196. <col name="otx"></col>
  1197. <col name="upd">2011-09-20 22:51:07</col>
  1198. </row>
  1199. <row>
  1200. <col name="id">44</col>
  1201. <col name="name">url</col>
  1202. <col name="idgroup">36</col>
  1203. <col name="class">liens</col>
  1204. <col name="title">URL du site</col>
  1205. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website URL&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;URL del sitio&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;URL do website&lt;/r2r:ml&gt;</col>
  1206. <col name="style"></col>
  1207. <col name="type">url</col>
  1208. <col name="g_name"></col>
  1209. <col name="cond">*</col>
  1210. <col name="defaultvalue"></col>
  1211. <col name="processing"></col>
  1212. <col name="allowedtags"></col>
  1213. <col name="gui_user_complexity">16</col>
  1214. <col name="filtering"></col>
  1215. <col name="edition">editable</col>
  1216. <col name="editionparams"></col>
  1217. <col name="editionhooks"></col>
  1218. <col name="weight">0</col>
  1219. <col name="comment"></col>
  1220. <col name="mask"></col>
  1221. <col name="status">32</col>
  1222. <col name="rank">1</col>
  1223. <col name="otx"></col>
  1224. <col name="upd">2011-09-20 22:51:32</col>
  1225. </row>
  1226. <row>
  1227. <col name="id">45</col>
  1228. <col name="name">urlfil</col>
  1229. <col name="idgroup">36</col>
  1230. <col name="class">liens</col>
  1231. <col name="title">URL du fil de syndication du site</col>
  1232. <col name="altertitle">&lt;r2r:ml lang="en"&gt;RSS feed URL&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;URL del fuente web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;URL do feed RSS do website&lt;/r2r:ml&gt;</col>
  1233. <col name="style"></col>
  1234. <col name="type">url</col>
  1235. <col name="g_name"></col>
  1236. <col name="cond">*</col>
  1237. <col name="defaultvalue"></col>
  1238. <col name="processing"></col>
  1239. <col name="allowedtags"></col>
  1240. <col name="gui_user_complexity">16</col>
  1241. <col name="filtering"></col>
  1242. <col name="edition">editable</col>
  1243. <col name="editionparams"></col>
  1244. <col name="editionhooks"></col>
  1245. <col name="weight">0</col>
  1246. <col name="comment"></col>
  1247. <col name="mask"></col>
  1248. <col name="status">32</col>
  1249. <col name="rank">4</col>
  1250. <col name="otx"></col>
  1251. <col name="upd">2011-09-20 22:52:25</col>
  1252. </row>
  1253. <row>
  1254. <col name="id">46</col>
  1255. <col name="name">texte</col>
  1256. <col name="idgroup">36</col>
  1257. <col name="class">liens</col>
  1258. <col name="title">Description du site</col>
  1259. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website synopsis&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción del sitio&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Sinopse do website&lt;/r2r:ml&gt;</col>
  1260. <col name="style"></col>
  1261. <col name="type">text</col>
  1262. <col name="g_name"></col>
  1263. <col name="cond">*</col>
  1264. <col name="defaultvalue"></col>
  1265. <col name="processing"></col>
  1266. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  1267. <col name="gui_user_complexity">16</col>
  1268. <col name="filtering"></col>
  1269. <col name="edition">fckeditor</col>
  1270. <col name="editionparams">Simple</col>
  1271. <col name="editionhooks"></col>
  1272. <col name="weight">2</col>
  1273. <col name="comment"></col>
  1274. <col name="mask"></col>
  1275. <col name="status">32</col>
  1276. <col name="rank">2</col>
  1277. <col name="otx"></col>
  1278. <col name="upd">2011-09-20 22:51:47</col>
  1279. </row>
  1280. <row>
  1281. <col name="id">47</col>
  1282. <col name="name">titre</col>
  1283. <col name="idgroup">37</col>
  1284. <col name="class">fichiers</col>
  1285. <col name="title">Titre</col>
  1286. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título&lt;/r2r:ml&gt;</col>
  1287. <col name="style"></col>
  1288. <col name="type">text</col>
  1289. <col name="g_name">dc.title</col>
  1290. <col name="cond">*</col>
  1291. <col name="defaultvalue"></col>
  1292. <col name="processing"></col>
  1293. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Appel de Note</col>
  1294. <col name="gui_user_complexity">16</col>
  1295. <col name="filtering"></col>
  1296. <col name="edition">editable</col>
  1297. <col name="editionparams"></col>
  1298. <col name="editionhooks"></col>
  1299. <col name="weight">4</col>
  1300. <col name="comment"></col>
  1301. <col name="mask"></col>
  1302. <col name="status">32</col>
  1303. <col name="rank">47</col>
  1304. <col name="otx"></col>
  1305. <col name="upd">2011-09-20 22:44:41</col>
  1306. </row>
  1307. <row>
  1308. <col name="id">48</col>
  1309. <col name="name">document</col>
  1310. <col name="idgroup">38</col>
  1311. <col name="class">fichiers</col>
  1312. <col name="title">Document</col>
  1313. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Documento&lt;/r2r:ml&gt;</col>
  1314. <col name="style"></col>
  1315. <col name="type">file</col>
  1316. <col name="g_name"></col>
  1317. <col name="cond">*</col>
  1318. <col name="defaultvalue"></col>
  1319. <col name="processing"></col>
  1320. <col name="allowedtags"></col>
  1321. <col name="gui_user_complexity">16</col>
  1322. <col name="filtering"></col>
  1323. <col name="edition">editable</col>
  1324. <col name="editionparams"></col>
  1325. <col name="editionhooks"></col>
  1326. <col name="weight">0</col>
  1327. <col name="comment"></col>
  1328. <col name="mask"></col>
  1329. <col name="status">32</col>
  1330. <col name="rank">1</col>
  1331. <col name="otx"></col>
  1332. <col name="upd">2011-09-20 22:44:54</col>
  1333. </row>
  1334. <row>
  1335. <col name="id">74</col>
  1336. <col name="name">altertitre</col>
  1337. <col name="idgroup">31</col>
  1338. <col name="class">textes</col>
  1339. <col name="title">Titre alternatif du document (dans une autre langue)</col>
  1340. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document translated title (alternative title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título alternativo del documento (en otro idioma)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título traduzido do documento&lt;/r2r:ml&gt;</col>
  1341. <col name="style">titretraduitfr:fr,titrefr:fr,titretraduiten:en,titleen:en,titreen:en,titretraduites:es,tituloes:es,titrees:es,titretraduitit:it,titoloit:it,titreit:it,titretraduitde:de,titelde:de,titrede:de,titretraduitpt:pt,titrept:pt,titulopt:pt,titreru:ru</col>
  1342. <col name="type">mltext</col>
  1343. <col name="g_name"></col>
  1344. <col name="cond">*</col>
  1345. <col name="defaultvalue"></col>
  1346. <col name="processing"></col>
  1347. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Lien;Appel de Note;style:strict</col>
  1348. <col name="gui_user_complexity">16</col>
  1349. <col name="filtering"></col>
  1350. <col name="edition">importable</col>
  1351. <col name="editionparams"></col>
  1352. <col name="editionhooks"></col>
  1353. <col name="weight">8</col>
  1354. <col name="comment"></col>
  1355. <col name="mask"></col>
  1356. <col name="status">1</col>
  1357. <col name="rank">4</col>
  1358. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:title[@type='alt']</col>
  1359. <col name="upd">2015-03-04 16:37:21</col>
  1360. </row>
  1361. <row>
  1362. <col name="id">50</col>
  1363. <col name="name">resume</col>
  1364. <col name="idgroup">39</col>
  1365. <col name="class">textes</col>
  1366. <col name="title">Résumé</col>
  1367. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Abstract&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Resumen&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Resumo&lt;/r2r:ml&gt;</col>
  1368. <col name="style">rsum:fr,resume:fr,resumefr:fr,abstract:en,resumeen:en,extracto:es,resumen:es, resumees:es,resumo:pt,resumept:pt,riassunto:it,resumeit:it,zusammenfassung:de,resumede:de,resumeru:ru</col>
  1369. <col name="type">mltext</col>
  1370. <col name="g_name">dc.description</col>
  1371. <col name="cond">*</col>
  1372. <col name="defaultvalue"></col>
  1373. <col name="processing"></col>
  1374. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  1375. <col name="gui_user_complexity">16</col>
  1376. <col name="filtering"></col>
  1377. <col name="edition">importable</col>
  1378. <col name="editionparams">5</col>
  1379. <col name="editionhooks"></col>
  1380. <col name="weight">8</col>
  1381. <col name="comment"></col>
  1382. <col name="mask"></col>
  1383. <col name="status">32</col>
  1384. <col name="rank">50</col>
  1385. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='abstract']</col>
  1386. <col name="upd">2015-03-04 16:39:17</col>
  1387. </row>
  1388. <row>
  1389. <col name="id">51</col>
  1390. <col name="name">titre</col>
  1391. <col name="idgroup">40</col>
  1392. <col name="class">publications</col>
  1393. <col name="title">Titre de la publication</col>
  1394. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folder title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título da publicação&lt;/r2r:ml&gt;</col>
  1395. <col name="style">title, titre, titleuser, heading</col>
  1396. <col name="type">text</col>
  1397. <col name="g_name">dc.title</col>
  1398. <col name="cond">*</col>
  1399. <col name="defaultvalue"></col>
  1400. <col name="processing"></col>
  1401. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Appel de Note</col>
  1402. <col name="gui_user_complexity">16</col>
  1403. <col name="filtering"></col>
  1404. <col name="edition">editable</col>
  1405. <col name="editionparams"></col>
  1406. <col name="editionhooks"></col>
  1407. <col name="weight">8</col>
  1408. <col name="comment"></col>
  1409. <col name="mask"></col>
  1410. <col name="status">32</col>
  1411. <col name="rank">2</col>
  1412. <col name="otx"></col>
  1413. <col name="upd">2011-09-20 21:42:29</col>
  1414. </row>
  1415. <row>
  1416. <col name="id">52</col>
  1417. <col name="name">surtitre</col>
  1418. <col name="idgroup">40</col>
  1419. <col name="class">publications</col>
  1420. <col name="title">Surtitre de la publication</col>
  1421. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folder heading (additional title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título adicional (encima del título principal)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Antetítulo da publicação&lt;/r2r:ml&gt;</col>
  1422. <col name="style">surtitre</col>
  1423. <col name="type">text</col>
  1424. <col name="g_name"></col>
  1425. <col name="cond">*</col>
  1426. <col name="defaultvalue"></col>
  1427. <col name="processing"></col>
  1428. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Appel de Note</col>
  1429. <col name="gui_user_complexity">16</col>
  1430. <col name="filtering"></col>
  1431. <col name="edition">importable</col>
  1432. <col name="editionparams"></col>
  1433. <col name="editionhooks"></col>
  1434. <col name="weight">8</col>
  1435. <col name="comment"></col>
  1436. <col name="mask"></col>
  1437. <col name="status">32</col>
  1438. <col name="rank">1</col>
  1439. <col name="otx"></col>
  1440. <col name="upd">2011-09-20 21:42:14</col>
  1441. </row>
  1442. <row>
  1443. <col name="id">53</col>
  1444. <col name="name">soustitre</col>
  1445. <col name="idgroup">40</col>
  1446. <col name="class">publications</col>
  1447. <col name="title">Sous-titre de la publication</col>
  1448. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folder subtitle (secondary title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Subtítulo de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Subtítulo da publicação&lt;/r2r:ml&gt;</col>
  1449. <col name="style">soustitre</col>
  1450. <col name="type">text</col>
  1451. <col name="g_name"></col>
  1452. <col name="cond">*</col>
  1453. <col name="defaultvalue"></col>
  1454. <col name="processing"></col>
  1455. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Appel de Note</col>
  1456. <col name="gui_user_complexity">16</col>
  1457. <col name="filtering"></col>
  1458. <col name="edition">editable</col>
  1459. <col name="editionparams"></col>
  1460. <col name="editionhooks"></col>
  1461. <col name="weight">8</col>
  1462. <col name="comment"></col>
  1463. <col name="mask"></col>
  1464. <col name="status">32</col>
  1465. <col name="rank">3</col>
  1466. <col name="otx"></col>
  1467. <col name="upd">2011-09-20 21:42:41</col>
  1468. </row>
  1469. <row>
  1470. <col name="id">54</col>
  1471. <col name="name">commentaireinterne</col>
  1472. <col name="idgroup">11</col>
  1473. <col name="class">publications</col>
  1474. <col name="title">Commentaire interne sur la publication</col>
  1475. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Internal comment about the folder&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Comentario interno acerca de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Comentário interno sobre a publicação&lt;/r2r:ml&gt;</col>
  1476. <col name="style"></col>
  1477. <col name="type">text</col>
  1478. <col name="g_name"></col>
  1479. <col name="cond">*</col>
  1480. <col name="defaultvalue"></col>
  1481. <col name="processing"></col>
  1482. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  1483. <col name="gui_user_complexity">64</col>
  1484. <col name="filtering"></col>
  1485. <col name="edition">editable</col>
  1486. <col name="editionparams">4</col>
  1487. <col name="editionhooks"></col>
  1488. <col name="weight">0</col>
  1489. <col name="comment"></col>
  1490. <col name="mask"></col>
  1491. <col name="status">32</col>
  1492. <col name="rank">54</col>
  1493. <col name="otx"></col>
  1494. <col name="upd">2011-09-20 21:52:57</col>
  1495. </row>
  1496. <row>
  1497. <col name="id">55</col>
  1498. <col name="name">prioritaire</col>
  1499. <col name="idgroup">11</col>
  1500. <col name="class">publications</col>
  1501. <col name="title">Cette publication est-elle prioritaire ?</col>
  1502. <col name="altertitle">&lt;r2r:ml lang="en"&gt;The publication of the folder is having priority&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;¿Es prioritaria esta publicación?&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Esta publicação é prioritária?&lt;/r2r:ml&gt;</col>
  1503. <col name="style"></col>
  1504. <col name="type">boolean</col>
  1505. <col name="g_name"></col>
  1506. <col name="cond">*</col>
  1507. <col name="defaultvalue"></col>
  1508. <col name="processing"></col>
  1509. <col name="allowedtags"></col>
  1510. <col name="gui_user_complexity">16</col>
  1511. <col name="filtering"></col>
  1512. <col name="edition">importable</col>
  1513. <col name="editionparams"></col>
  1514. <col name="editionhooks"></col>
  1515. <col name="weight">0</col>
  1516. <col name="comment"></col>
  1517. <col name="mask"></col>
  1518. <col name="status">32</col>
  1519. <col name="rank">55</col>
  1520. <col name="otx"></col>
  1521. <col name="upd">2015-07-21 08:43:39</col>
  1522. </row>
  1523. <row>
  1524. <col name="id">57</col>
  1525. <col name="name">datepubli</col>
  1526. <col name="idgroup">12</col>
  1527. <col name="class">publications</col>
  1528. <col name="title">Date de publication électronique</col>
  1529. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Date of online publication (electronic edition)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación électrónica&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data da publicação electrónica&lt;/r2r:ml&gt;</col>
  1530. <col name="style"></col>
  1531. <col name="type">date</col>
  1532. <col name="g_name">dc.date</col>
  1533. <col name="cond">*</col>
  1534. <col name="defaultvalue">today</col>
  1535. <col name="processing"></col>
  1536. <col name="allowedtags"></col>
  1537. <col name="gui_user_complexity">16</col>
  1538. <col name="filtering"></col>
  1539. <col name="edition">editable</col>
  1540. <col name="editionparams"></col>
  1541. <col name="editionhooks"></col>
  1542. <col name="weight">0</col>
  1543. <col name="comment"></col>
  1544. <col name="mask"></col>
  1545. <col name="status">32</col>
  1546. <col name="rank">2</col>
  1547. <col name="otx"></col>
  1548. <col name="upd">2011-09-20 21:44:27</col>
  1549. </row>
  1550. <row>
  1551. <col name="id">58</col>
  1552. <col name="name">datepublipapier</col>
  1553. <col name="idgroup">12</col>
  1554. <col name="class">publications</col>
  1555. <col name="title">Date de publication papier</col>
  1556. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Date of publication (print edition)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación papel&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data da publicação em papel&lt;/r2r:ml&gt;</col>
  1557. <col name="style"></col>
  1558. <col name="type">date</col>
  1559. <col name="g_name"></col>
  1560. <col name="cond">*</col>
  1561. <col name="defaultvalue"></col>
  1562. <col name="processing"></col>
  1563. <col name="allowedtags"></col>
  1564. <col name="gui_user_complexity">16</col>
  1565. <col name="filtering"></col>
  1566. <col name="edition">editable</col>
  1567. <col name="editionparams"></col>
  1568. <col name="editionhooks"></col>
  1569. <col name="weight">0</col>
  1570. <col name="comment"></col>
  1571. <col name="mask"></col>
  1572. <col name="status">32</col>
  1573. <col name="rank">3</col>
  1574. <col name="otx"></col>
  1575. <col name="upd">2011-09-20 21:44:46</col>
  1576. </row>
  1577. <row>
  1578. <col name="id">59</col>
  1579. <col name="name">noticebiblio</col>
  1580. <col name="idgroup">12</col>
  1581. <col name="class">publications</col>
  1582. <col name="title">Notice bibliographique décrivant la publication</col>
  1583. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Bibliographical reference&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Referencia bibliográfica que describe la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Referência bibliográfica da publicação&lt;/r2r:ml&gt;</col>
  1584. <col name="style"></col>
  1585. <col name="type">text</col>
  1586. <col name="g_name"></col>
  1587. <col name="cond">*</col>
  1588. <col name="defaultvalue"></col>
  1589. <col name="processing"></col>
  1590. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special</col>
  1591. <col name="gui_user_complexity">64</col>
  1592. <col name="filtering"></col>
  1593. <col name="edition">importable</col>
  1594. <col name="editionparams"></col>
  1595. <col name="editionhooks"></col>
  1596. <col name="weight">0</col>
  1597. <col name="comment"></col>
  1598. <col name="mask"></col>
  1599. <col name="status">32</col>
  1600. <col name="rank">4</col>
  1601. <col name="otx"></col>
  1602. <col name="upd">2011-09-20 21:45:18</col>
  1603. </row>
  1604. <row>
  1605. <col name="id">60</col>
  1606. <col name="name">introduction</col>
  1607. <col name="idgroup">13</col>
  1608. <col name="class">publications</col>
  1609. <col name="title">Introduction de la publication</col>
  1610. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folder introduction&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Introdución de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Introdução à publicação&lt;/r2r:ml&gt;</col>
  1611. <col name="style">texte, standard, normal</col>
  1612. <col name="type">mltext</col>
  1613. <col name="g_name">dc.description</col>
  1614. <col name="cond">*</col>
  1615. <col name="defaultvalue"></col>
  1616. <col name="processing"></col>
  1617. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  1618. <col name="gui_user_complexity">16</col>
  1619. <col name="filtering"></col>
  1620. <col name="edition">fckeditor</col>
  1621. <col name="editionparams">Simple,550,400</col>
  1622. <col name="editionhooks"></col>
  1623. <col name="weight">8</col>
  1624. <col name="comment"></col>
  1625. <col name="mask"></col>
  1626. <col name="status">32</col>
  1627. <col name="rank">1</col>
  1628. <col name="otx"></col>
  1629. <col name="upd">2015-03-04 16:31:39</col>
  1630. </row>
  1631. <row>
  1632. <col name="id">131</col>
  1633. <col name="name">geographie</col>
  1634. <col name="idgroup">15</col>
  1635. <col name="class">textes</col>
  1636. <col name="title">Index géographique</col>
  1637. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Geographical index&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice geográfico&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice geográfico&lt;/r2r:ml&gt;</col>
  1638. <col name="style"></col>
  1639. <col name="type">entries</col>
  1640. <col name="g_name"></col>
  1641. <col name="cond"></col>
  1642. <col name="defaultvalue"></col>
  1643. <col name="processing"></col>
  1644. <col name="allowedtags"></col>
  1645. <col name="gui_user_complexity">64</col>
  1646. <col name="filtering"></col>
  1647. <col name="edition">importable</col>
  1648. <col name="editionparams"></col>
  1649. <col name="editionhooks"></col>
  1650. <col name="weight">0</col>
  1651. <col name="comment"></col>
  1652. <col name="mask"></col>
  1653. <col name="status">1</col>
  1654. <col name="rank">7</col>
  1655. <col name="otx"></col>
  1656. <col name="upd">2015-03-05 14:32:53</col>
  1657. </row>
  1658. <row>
  1659. <col name="id">132</col>
  1660. <col name="name">chrono</col>
  1661. <col name="idgroup">15</col>
  1662. <col name="class">textes</col>
  1663. <col name="title">Index chronologique</col>
  1664. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Chronological index&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice cronológico&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice cronológico&lt;/r2r:ml&gt;</col>
  1665. <col name="style"></col>
  1666. <col name="type">entries</col>
  1667. <col name="g_name"></col>
  1668. <col name="cond"></col>
  1669. <col name="defaultvalue"></col>
  1670. <col name="processing"></col>
  1671. <col name="allowedtags"></col>
  1672. <col name="gui_user_complexity">64</col>
  1673. <col name="filtering"></col>
  1674. <col name="edition">importable</col>
  1675. <col name="editionparams"></col>
  1676. <col name="editionhooks"></col>
  1677. <col name="weight">0</col>
  1678. <col name="comment"></col>
  1679. <col name="mask"></col>
  1680. <col name="status">1</col>
  1681. <col name="rank">9</col>
  1682. <col name="otx"></col>
  1683. <col name="upd">2015-03-05 14:31:57</col>
  1684. </row>
  1685. <row>
  1686. <col name="id">62</col>
  1687. <col name="name">ndlr</col>
  1688. <col name="idgroup">13</col>
  1689. <col name="class">publications</col>
  1690. <col name="title">Note de la rédaction au sujet de la publication</col>
  1691. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Editor's note about the folder&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nota de la redacción acerca de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nota editorial sobre a publicação&lt;/r2r:ml&gt;</col>
  1692. <col name="style"></col>
  1693. <col name="type">text</col>
  1694. <col name="g_name"></col>
  1695. <col name="cond">*</col>
  1696. <col name="defaultvalue"></col>
  1697. <col name="processing"></col>
  1698. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  1699. <col name="gui_user_complexity">64</col>
  1700. <col name="filtering"></col>
  1701. <col name="edition">fckeditor</col>
  1702. <col name="editionparams"></col>
  1703. <col name="editionhooks"></col>
  1704. <col name="weight">2</col>
  1705. <col name="comment"></col>
  1706. <col name="mask"></col>
  1707. <col name="status">32</col>
  1708. <col name="rank">4</col>
  1709. <col name="otx"></col>
  1710. <col name="upd">2015-03-04 16:31:43</col>
  1711. </row>
  1712. <row>
  1713. <col name="id">63</col>
  1714. <col name="name">historique</col>
  1715. <col name="idgroup">13</col>
  1716. <col name="class">publications</col>
  1717. <col name="title">Historique de la publication</col>
  1718. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folder history&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Historial de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Histórico da publicação&lt;/r2r:ml&gt;</col>
  1719. <col name="style"></col>
  1720. <col name="type">text</col>
  1721. <col name="g_name"></col>
  1722. <col name="cond">*</col>
  1723. <col name="defaultvalue"></col>
  1724. <col name="processing"></col>
  1725. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  1726. <col name="gui_user_complexity">64</col>
  1727. <col name="filtering"></col>
  1728. <col name="edition">importable</col>
  1729. <col name="editionparams"></col>
  1730. <col name="editionhooks"></col>
  1731. <col name="weight">0</col>
  1732. <col name="comment"></col>
  1733. <col name="mask"></col>
  1734. <col name="status">32</col>
  1735. <col name="rank">2</col>
  1736. <col name="otx"></col>
  1737. <col name="upd">2015-03-04 16:31:39</col>
  1738. </row>
  1739. <row>
  1740. <col name="id">64</col>
  1741. <col name="name">periode</col>
  1742. <col name="idgroup">12</col>
  1743. <col name="class">publications</col>
  1744. <col name="title">Période de publication</col>
  1745. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Period of publication&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Período de publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Período de publicação&lt;/r2r:ml&gt;</col>
  1746. <col name="style"></col>
  1747. <col name="type">tinytext</col>
  1748. <col name="g_name"></col>
  1749. <col name="cond">*</col>
  1750. <col name="defaultvalue"></col>
  1751. <col name="processing"></col>
  1752. <col name="allowedtags"></col>
  1753. <col name="gui_user_complexity">16</col>
  1754. <col name="filtering"></col>
  1755. <col name="edition">importable</col>
  1756. <col name="editionparams"></col>
  1757. <col name="editionhooks"></col>
  1758. <col name="weight">0</col>
  1759. <col name="comment"></col>
  1760. <col name="mask"></col>
  1761. <col name="status">1</col>
  1762. <col name="rank">5</col>
  1763. <col name="otx"></col>
  1764. <col name="upd">2011-09-20 21:45:36</col>
  1765. </row>
  1766. <row>
  1767. <col name="id">65</col>
  1768. <col name="name">isbn</col>
  1769. <col name="idgroup">12</col>
  1770. <col name="class">publications</col>
  1771. <col name="title">ISBN</col>
  1772. <col name="altertitle">&lt;r2r:ml lang="en"&gt;ISBN&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;ISBN&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;ISBN&lt;/r2r:ml&gt;</col>
  1773. <col name="style"></col>
  1774. <col name="type">tinytext</col>
  1775. <col name="g_name"></col>
  1776. <col name="cond">*</col>
  1777. <col name="defaultvalue"></col>
  1778. <col name="processing"></col>
  1779. <col name="allowedtags"></col>
  1780. <col name="gui_user_complexity">16</col>
  1781. <col name="filtering"></col>
  1782. <col name="edition">editable</col>
  1783. <col name="editionparams"></col>
  1784. <col name="editionhooks"></col>
  1785. <col name="weight">0</col>
  1786. <col name="comment"></col>
  1787. <col name="mask"></col>
  1788. <col name="status">1</col>
  1789. <col name="rank">7</col>
  1790. <col name="otx"></col>
  1791. <col name="upd">2011-09-20 21:46:10</col>
  1792. </row>
  1793. <row>
  1794. <col name="id">66</col>
  1795. <col name="name">paraitre</col>
  1796. <col name="idgroup">11</col>
  1797. <col name="class">publications</col>
  1798. <col name="title">Cette publication est-elle à paraître ?</col>
  1799. <col name="altertitle">&lt;r2r:ml lang="en"&gt;The publication of the folder is forthcoming&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;¿Está pendiente de publicación ?&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Esta publicação está no prelo?&lt;/r2r:ml&gt;</col>
  1800. <col name="style"></col>
  1801. <col name="type">boolean</col>
  1802. <col name="g_name"></col>
  1803. <col name="cond">*</col>
  1804. <col name="defaultvalue"></col>
  1805. <col name="processing"></col>
  1806. <col name="allowedtags"></col>
  1807. <col name="gui_user_complexity">32</col>
  1808. <col name="filtering"></col>
  1809. <col name="edition">editable</col>
  1810. <col name="editionparams"></col>
  1811. <col name="editionhooks"></col>
  1812. <col name="weight">0</col>
  1813. <col name="comment"></col>
  1814. <col name="mask"></col>
  1815. <col name="status">32</col>
  1816. <col name="rank">66</col>
  1817. <col name="otx"></col>
  1818. <col name="upd">2011-09-20 21:54:08</col>
  1819. </row>
  1820. <row>
  1821. <col name="id">67</col>
  1822. <col name="name">integralite</col>
  1823. <col name="idgroup">43</col>
  1824. <col name="class">publications</col>
  1825. <col name="title">Cette publication est-elle en libre accès ?</col>
  1826. <col name="altertitle">&lt;r2r:ml lang="en"&gt;The folder is published in full open access&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;¿Es completa esta publicación online?&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Esta publicação online é integral?&lt;/r2r:ml&gt;</col>
  1827. <col name="style"></col>
  1828. <col name="type">boolean</col>
  1829. <col name="g_name"></col>
  1830. <col name="cond">*</col>
  1831. <col name="defaultvalue"></col>
  1832. <col name="processing"></col>
  1833. <col name="allowedtags"></col>
  1834. <col name="gui_user_complexity">32</col>
  1835. <col name="filtering"></col>
  1836. <col name="edition">editable</col>
  1837. <col name="editionparams"></col>
  1838. <col name="editionhooks"></col>
  1839. <col name="weight">0</col>
  1840. <col name="comment"></col>
  1841. <col name="mask"></col>
  1842. <col name="status">32</col>
  1843. <col name="rank">1</col>
  1844. <col name="otx"></col>
  1845. <col name="upd">2013-11-13 14:59:19</col>
  1846. </row>
  1847. <row>
  1848. <col name="id">68</col>
  1849. <col name="name">numero</col>
  1850. <col name="idgroup">12</col>
  1851. <col name="class">publications</col>
  1852. <col name="title">Numéro de la publication</col>
  1853. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Volume number&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Número de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Número da publicação&lt;/r2r:ml&gt;</col>
  1854. <col name="style"></col>
  1855. <col name="type">tinytext</col>
  1856. <col name="g_name"></col>
  1857. <col name="cond">*</col>
  1858. <col name="defaultvalue"></col>
  1859. <col name="processing"></col>
  1860. <col name="allowedtags"></col>
  1861. <col name="gui_user_complexity">16</col>
  1862. <col name="filtering"></col>
  1863. <col name="edition">editable</col>
  1864. <col name="editionparams"></col>
  1865. <col name="editionhooks"></col>
  1866. <col name="weight">0</col>
  1867. <col name="comment"></col>
  1868. <col name="mask"></col>
  1869. <col name="status">32</col>
  1870. <col name="rank">6</col>
  1871. <col name="otx"></col>
  1872. <col name="upd">2011-09-20 21:45:53</col>
  1873. </row>
  1874. <row>
  1875. <col name="id">69</col>
  1876. <col name="name">motsclesen</col>
  1877. <col name="idgroup">15</col>
  1878. <col name="class">textes</col>
  1879. <col name="title">Keywords</col>
  1880. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Keywords&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Keywords&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Keywords&lt;/r2r:ml&gt;</col>
  1881. <col name="style"></col>
  1882. <col name="type">entries</col>
  1883. <col name="g_name"></col>
  1884. <col name="cond"></col>
  1885. <col name="defaultvalue"></col>
  1886. <col name="processing"></col>
  1887. <col name="allowedtags"></col>
  1888. <col name="gui_user_complexity">64</col>
  1889. <col name="filtering"></col>
  1890. <col name="edition">importable</col>
  1891. <col name="editionparams"></col>
  1892. <col name="editionhooks"></col>
  1893. <col name="weight">0</col>
  1894. <col name="comment"></col>
  1895. <col name="mask"></col>
  1896. <col name="status">32</col>
  1897. <col name="rank">2</col>
  1898. <col name="otx"></col>
  1899. <col name="upd">2015-03-05 14:31:26</col>
  1900. </row>
  1901. <row>
  1902. <col name="id">119</col>
  1903. <col name="name">email</col>
  1904. <col name="idgroup">30</col>
  1905. <col name="class">individus</col>
  1906. <col name="title">Courriel</col>
  1907. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Email&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Correo electrónico&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;E-mail&lt;/r2r:ml&gt;</col>
  1908. <col name="style"></col>
  1909. <col name="type">email</col>
  1910. <col name="g_name"></col>
  1911. <col name="cond">*</col>
  1912. <col name="defaultvalue"></col>
  1913. <col name="processing"></col>
  1914. <col name="allowedtags"></col>
  1915. <col name="gui_user_complexity">16</col>
  1916. <col name="filtering"></col>
  1917. <col name="edition">editable</col>
  1918. <col name="editionparams"></col>
  1919. <col name="editionhooks"></col>
  1920. <col name="weight">4</col>
  1921. <col name="comment"></col>
  1922. <col name="mask"></col>
  1923. <col name="status">1</col>
  1924. <col name="rank">3</col>
  1925. <col name="otx"></col>
  1926. <col name="upd">2011-09-20 22:38:01</col>
  1927. </row>
  1928. <row>
  1929. <col name="id">120</col>
  1930. <col name="name">siteweb</col>
  1931. <col name="idgroup">30</col>
  1932. <col name="class">individus</col>
  1933. <col name="title">Site web</col>
  1934. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sitio web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Website&lt;/r2r:ml&gt;</col>
  1935. <col name="style"></col>
  1936. <col name="type">url</col>
  1937. <col name="g_name"></col>
  1938. <col name="cond">*</col>
  1939. <col name="defaultvalue"></col>
  1940. <col name="processing"></col>
  1941. <col name="allowedtags"></col>
  1942. <col name="gui_user_complexity">16</col>
  1943. <col name="filtering"></col>
  1944. <col name="edition">editable</col>
  1945. <col name="editionparams"></col>
  1946. <col name="editionhooks"></col>
  1947. <col name="weight">0</col>
  1948. <col name="comment"></col>
  1949. <col name="mask"></col>
  1950. <col name="status">1</col>
  1951. <col name="rank">4</col>
  1952. <col name="otx"></col>
  1953. <col name="upd">2011-09-20 22:38:18</col>
  1954. </row>
  1955. <row>
  1956. <col name="id">121</col>
  1957. <col name="name">description</col>
  1958. <col name="idgroup">30</col>
  1959. <col name="class">individus</col>
  1960. <col name="title">Description</col>
  1961. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Full description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Descrição&lt;/r2r:ml&gt;</col>
  1962. <col name="style"></col>
  1963. <col name="type">text</col>
  1964. <col name="g_name"></col>
  1965. <col name="cond">*</col>
  1966. <col name="defaultvalue"></col>
  1967. <col name="processing"></col>
  1968. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  1969. <col name="gui_user_complexity">16</col>
  1970. <col name="filtering"></col>
  1971. <col name="edition">fckeditor</col>
  1972. <col name="editionparams">Simple</col>
  1973. <col name="editionhooks"></col>
  1974. <col name="weight">4</col>
  1975. <col name="comment"></col>
  1976. <col name="mask"></col>
  1977. <col name="status">1</col>
  1978. <col name="rank">2</col>
  1979. <col name="otx"></col>
  1980. <col name="upd">2011-09-20 22:37:48</col>
  1981. </row>
  1982. <row>
  1983. <col name="id">76</col>
  1984. <col name="name">titreoeuvre</col>
  1985. <col name="idgroup">17</col>
  1986. <col name="class">textes</col>
  1987. <col name="title">Titre de l’œuvre commentée</col>
  1988. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title of the reviewed document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título de la obra comentada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título da obra comentada&lt;/r2r:ml&gt;</col>
  1989. <col name="style">titreoeuvre, tituloobra, reviewedtitle, ,reviewedtitle,tituloobra</col>
  1990. <col name="type">text</col>
  1991. <col name="g_name"></col>
  1992. <col name="cond">*</col>
  1993. <col name="defaultvalue"></col>
  1994. <col name="processing"></col>
  1995. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Appel de Note;style:strict</col>
  1996. <col name="gui_user_complexity">64</col>
  1997. <col name="filtering"></col>
  1998. <col name="edition">display</col>
  1999. <col name="editionparams"></col>
  2000. <col name="editionhooks"></col>
  2001. <col name="weight">4</col>
  2002. <col name="comment"></col>
  2003. <col name="mask"></col>
  2004. <col name="status">1</col>
  2005. <col name="rank">2</col>
  2006. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='review']/tei:p[@rend='review-title']</col>
  2007. <col name="upd">2014-01-30 14:35:53</col>
  2008. </row>
  2009. <row>
  2010. <col name="id">77</col>
  2011. <col name="name">noticebibliooeuvre</col>
  2012. <col name="idgroup">17</col>
  2013. <col name="class">textes</col>
  2014. <col name="title">Notice bibliographique de l’œuvre commentée</col>
  2015. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Bibliographical reference describing the reviewed document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Referencia bibliográfica de la obra comentada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Referência bibliográfica da obra comentada&lt;/r2r:ml&gt;</col>
  2016. <col name="style">noticebibliooeuvre, referenciabibliograficaobra, reviewedreference, ,reviewedreference,referenciabibliograficaobra</col>
  2017. <col name="type">text</col>
  2018. <col name="g_name"></col>
  2019. <col name="cond">*</col>
  2020. <col name="defaultvalue"></col>
  2021. <col name="processing"></col>
  2022. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Appel de Note;style:strict</col>
  2023. <col name="gui_user_complexity">64</col>
  2024. <col name="filtering"></col>
  2025. <col name="edition">display</col>
  2026. <col name="editionparams"></col>
  2027. <col name="editionhooks"></col>
  2028. <col name="weight">4</col>
  2029. <col name="comment"></col>
  2030. <col name="mask"></col>
  2031. <col name="status">1</col>
  2032. <col name="rank">1</col>
  2033. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='review']/tei:p[@rend='review-bibliography']</col>
  2034. <col name="upd">2014-01-30 14:35:53</col>
  2035. </row>
  2036. <row>
  2037. <col name="id">78</col>
  2038. <col name="name">datepublicationoeuvre</col>
  2039. <col name="idgroup">17</col>
  2040. <col name="class">textes</col>
  2041. <col name="title">Date de publication de l’œuvre commentée</col>
  2042. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Date of publication of the reviewed document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación de la obra comentada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação da obra comentada&lt;/r2r:ml&gt;</col>
  2043. <col name="style">datepublioeuvre, fechapubliobra, revieweddate, ,revieweddate,fechapubliobra</col>
  2044. <col name="type">tinytext</col>
  2045. <col name="g_name"></col>
  2046. <col name="cond">*</col>
  2047. <col name="defaultvalue"></col>
  2048. <col name="processing"></col>
  2049. <col name="allowedtags">;style:none</col>
  2050. <col name="gui_user_complexity">64</col>
  2051. <col name="filtering"></col>
  2052. <col name="edition">display</col>
  2053. <col name="editionparams"></col>
  2054. <col name="editionhooks"></col>
  2055. <col name="weight">4</col>
  2056. <col name="comment"></col>
  2057. <col name="mask"></col>
  2058. <col name="status">1</col>
  2059. <col name="rank">70</col>
  2060. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='review']/tei:p[@rend='review-date']</col>
  2061. <col name="upd">2014-01-30 14:35:53</col>
  2062. </row>
  2063. <row>
  2064. <col name="id">79</col>
  2065. <col name="name">auteuroeuvre</col>
  2066. <col name="idgroup">17</col>
  2067. <col name="class">textes</col>
  2068. <col name="title">Auteur de l’œuvre commentée</col>
  2069. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author of the reviewed document&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autor de la obra comentada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autor da obra comentada&lt;/r2r:ml&gt;</col>
  2070. <col name="style"></col>
  2071. <col name="type">persons</col>
  2072. <col name="g_name"></col>
  2073. <col name="cond"></col>
  2074. <col name="defaultvalue"></col>
  2075. <col name="processing"></col>
  2076. <col name="allowedtags"></col>
  2077. <col name="gui_user_complexity">64</col>
  2078. <col name="filtering"></col>
  2079. <col name="edition">display</col>
  2080. <col name="editionparams"></col>
  2081. <col name="editionhooks"></col>
  2082. <col name="weight">0</col>
  2083. <col name="comment"></col>
  2084. <col name="mask"></col>
  2085. <col name="status">1</col>
  2086. <col name="rank">71</col>
  2087. <col name="otx"></col>
  2088. <col name="upd">2015-03-04 16:49:24</col>
  2089. </row>
  2090. <row>
  2091. <col name="id">81</col>
  2092. <col name="name">titre</col>
  2093. <col name="idgroup">18</col>
  2094. <col name="class">textessimples</col>
  2095. <col name="title">Titre</col>
  2096. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título&lt;/r2r:ml&gt;</col>
  2097. <col name="style"></col>
  2098. <col name="type">tinytext</col>
  2099. <col name="g_name">dc.title</col>
  2100. <col name="cond">*</col>
  2101. <col name="defaultvalue"></col>
  2102. <col name="processing"></col>
  2103. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  2104. <col name="gui_user_complexity">16</col>
  2105. <col name="filtering"></col>
  2106. <col name="edition">editable</col>
  2107. <col name="editionparams"></col>
  2108. <col name="editionhooks"></col>
  2109. <col name="weight">4</col>
  2110. <col name="comment"></col>
  2111. <col name="mask"></col>
  2112. <col name="status">32</col>
  2113. <col name="rank">72</col>
  2114. <col name="otx"></col>
  2115. <col name="upd">2011-09-20 22:31:17</col>
  2116. </row>
  2117. <row>
  2118. <col name="id">82</col>
  2119. <col name="name">texte</col>
  2120. <col name="idgroup">19</col>
  2121. <col name="class">textessimples</col>
  2122. <col name="title">Texte</col>
  2123. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Text&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Texto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Texto&lt;/r2r:ml&gt;</col>
  2124. <col name="style"></col>
  2125. <col name="type">mltext</col>
  2126. <col name="g_name"></col>
  2127. <col name="cond">*</col>
  2128. <col name="defaultvalue"></col>
  2129. <col name="processing"></col>
  2130. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  2131. <col name="gui_user_complexity">16</col>
  2132. <col name="filtering"></col>
  2133. <col name="edition">fckeditor</col>
  2134. <col name="editionparams">Simple</col>
  2135. <col name="editionhooks"></col>
  2136. <col name="weight">4</col>
  2137. <col name="comment"></col>
  2138. <col name="mask"></col>
  2139. <col name="status">1</col>
  2140. <col name="rank">73</col>
  2141. <col name="otx"></col>
  2142. <col name="upd">2011-09-20 22:32:04</col>
  2143. </row>
  2144. <row>
  2145. <col name="id">83</col>
  2146. <col name="name">ndla</col>
  2147. <col name="idgroup">34</col>
  2148. <col name="class">textes</col>
  2149. <col name="title">Note de l’auteur</col>
  2150. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author’s note&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nota del autor&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nota do autor&lt;/r2r:ml&gt;</col>
  2151. <col name="style">ndla, authorsnote,authorsnote</col>
  2152. <col name="type">text</col>
  2153. <col name="g_name"></col>
  2154. <col name="cond">*</col>
  2155. <col name="defaultvalue"></col>
  2156. <col name="processing"></col>
  2157. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  2158. <col name="gui_user_complexity">64</col>
  2159. <col name="filtering"></col>
  2160. <col name="edition">importable</col>
  2161. <col name="editionparams"></col>
  2162. <col name="editionhooks"></col>
  2163. <col name="weight">2</col>
  2164. <col name="comment"></col>
  2165. <col name="mask"></col>
  2166. <col name="status">1</col>
  2167. <col name="rank">2</col>
  2168. <col name="otx">/tei:TEI/tei:text/tei:front/tei:note[@resp='author']/tei:p</col>
  2169. <col name="upd">2013-09-06 10:03:08</col>
  2170. </row>
  2171. <row>
  2172. <col name="id">98</col>
  2173. <col name="name">description</col>
  2174. <col name="idgroup">38</col>
  2175. <col name="class">fichiers</col>
  2176. <col name="title">Description</col>
  2177. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Descrição&lt;/r2r:ml&gt;</col>
  2178. <col name="style"></col>
  2179. <col name="type">text</col>
  2180. <col name="g_name"></col>
  2181. <col name="cond">*</col>
  2182. <col name="defaultvalue"></col>
  2183. <col name="processing"></col>
  2184. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  2185. <col name="gui_user_complexity">16</col>
  2186. <col name="filtering"></col>
  2187. <col name="edition">fckeditor</col>
  2188. <col name="editionparams">Simple</col>
  2189. <col name="editionhooks"></col>
  2190. <col name="weight">4</col>
  2191. <col name="comment"></col>
  2192. <col name="mask"></col>
  2193. <col name="status">32</col>
  2194. <col name="rank">2</col>
  2195. <col name="otx"></col>
  2196. <col name="upd">2011-09-20 22:45:07</col>
  2197. </row>
  2198. <row>
  2199. <col name="id">99</col>
  2200. <col name="name">alterfichier</col>
  2201. <col name="idgroup">53</col>
  2202. <col name="class">textes</col>
  2203. <col name="title">Texte au format PDF</col>
  2204. <col name="altertitle">&lt;r2r:ml lang="en"&gt;PDF version of the document (facsimile)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Texto en formato PDF&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Texto em formato PDF&lt;/r2r:ml&gt;</col>
  2205. <col name="style"></col>
  2206. <col name="type">file</col>
  2207. <col name="g_name"></col>
  2208. <col name="cond">*</col>
  2209. <col name="defaultvalue"></col>
  2210. <col name="processing"></col>
  2211. <col name="allowedtags"></col>
  2212. <col name="gui_user_complexity">32</col>
  2213. <col name="filtering"></col>
  2214. <col name="edition">editable</col>
  2215. <col name="editionparams"></col>
  2216. <col name="editionhooks"></col>
  2217. <col name="weight">0</col>
  2218. <col name="comment"></col>
  2219. <col name="mask"></col>
  2220. <col name="status">32</col>
  2221. <col name="rank">6</col>
  2222. <col name="otx"></col>
  2223. <col name="upd">2015-03-04 17:15:09</col>
  2224. </row>
  2225. <row>
  2226. <col name="id">104</col>
  2227. <col name="name">langue</col>
  2228. <col name="idgroup">12</col>
  2229. <col name="class">publications</col>
  2230. <col name="title">Langue de la publication</col>
  2231. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Language of publication&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Idioma de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Língua da publicação&lt;/r2r:ml&gt;</col>
  2232. <col name="style"></col>
  2233. <col name="type">lang</col>
  2234. <col name="g_name">dc.language</col>
  2235. <col name="cond">*</col>
  2236. <col name="defaultvalue"></col>
  2237. <col name="processing"></col>
  2238. <col name="allowedtags"></col>
  2239. <col name="gui_user_complexity">64</col>
  2240. <col name="filtering"></col>
  2241. <col name="edition">editable</col>
  2242. <col name="editionparams"></col>
  2243. <col name="editionhooks"></col>
  2244. <col name="weight">0</col>
  2245. <col name="comment"></col>
  2246. <col name="mask"></col>
  2247. <col name="status">32</col>
  2248. <col name="rank">8</col>
  2249. <col name="otx"></col>
  2250. <col name="upd">2015-07-21 08:42:40</col>
  2251. </row>
  2252. <row>
  2253. <col name="id">100</col>
  2254. <col name="name">auteur</col>
  2255. <col name="idgroup">24</col>
  2256. <col name="class">fichiers</col>
  2257. <col name="title">Auteur</col>
  2258. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autor&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autor&lt;/r2r:ml&gt;</col>
  2259. <col name="style"></col>
  2260. <col name="type">persons</col>
  2261. <col name="g_name"></col>
  2262. <col name="cond"></col>
  2263. <col name="defaultvalue"></col>
  2264. <col name="processing"></col>
  2265. <col name="allowedtags"></col>
  2266. <col name="gui_user_complexity">64</col>
  2267. <col name="filtering"></col>
  2268. <col name="edition">editable</col>
  2269. <col name="editionparams"></col>
  2270. <col name="editionhooks"></col>
  2271. <col name="weight">0</col>
  2272. <col name="comment"></col>
  2273. <col name="mask"></col>
  2274. <col name="status">32</col>
  2275. <col name="rank">91</col>
  2276. <col name="otx"></col>
  2277. <col name="upd">2012-04-02 16:49:20</col>
  2278. </row>
  2279. <row>
  2280. <col name="id">101</col>
  2281. <col name="name">auteur</col>
  2282. <col name="idgroup">25</col>
  2283. <col name="class">liens</col>
  2284. <col name="title">Auteur de la notice décrivant ce site</col>
  2285. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author of website description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autor de la reseña del sitio&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autor da ficha do website&lt;/r2r:ml&gt;</col>
  2286. <col name="style"></col>
  2287. <col name="type">persons</col>
  2288. <col name="g_name"></col>
  2289. <col name="cond"></col>
  2290. <col name="defaultvalue"></col>
  2291. <col name="processing"></col>
  2292. <col name="allowedtags"></col>
  2293. <col name="gui_user_complexity">64</col>
  2294. <col name="filtering"></col>
  2295. <col name="edition">editable</col>
  2296. <col name="editionparams"></col>
  2297. <col name="editionhooks"></col>
  2298. <col name="weight">0</col>
  2299. <col name="comment"></col>
  2300. <col name="mask"></col>
  2301. <col name="status">32</col>
  2302. <col name="rank">92</col>
  2303. <col name="otx"></col>
  2304. <col name="upd">2011-09-20 22:53:02</col>
  2305. </row>
  2306. <row>
  2307. <col name="id">102</col>
  2308. <col name="name">capturedecran</col>
  2309. <col name="idgroup">36</col>
  2310. <col name="class">liens</col>
  2311. <col name="title">Capture d’écran du site</col>
  2312. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website screenshot&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Captura de pantalla&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Captação de ecrã do website&lt;/r2r:ml&gt;</col>
  2313. <col name="style"></col>
  2314. <col name="type">image</col>
  2315. <col name="g_name"></col>
  2316. <col name="cond">*</col>
  2317. <col name="defaultvalue"></col>
  2318. <col name="processing"></col>
  2319. <col name="allowedtags"></col>
  2320. <col name="gui_user_complexity">16</col>
  2321. <col name="filtering"></col>
  2322. <col name="edition">editable</col>
  2323. <col name="editionparams"></col>
  2324. <col name="editionhooks"></col>
  2325. <col name="weight">0</col>
  2326. <col name="comment"></col>
  2327. <col name="mask"></col>
  2328. <col name="status">32</col>
  2329. <col name="rank">3</col>
  2330. <col name="otx"></col>
  2331. <col name="upd">2011-09-20 22:52:02</col>
  2332. </row>
  2333. <row>
  2334. <col name="id">103</col>
  2335. <col name="name">auteur</col>
  2336. <col name="idgroup">26</col>
  2337. <col name="class">textessimples</col>
  2338. <col name="title">Auteur</col>
  2339. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Author&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autor&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autor&lt;/r2r:ml&gt;</col>
  2340. <col name="style"></col>
  2341. <col name="type">persons</col>
  2342. <col name="g_name"></col>
  2343. <col name="cond"></col>
  2344. <col name="defaultvalue"></col>
  2345. <col name="processing"></col>
  2346. <col name="allowedtags"></col>
  2347. <col name="gui_user_complexity">64</col>
  2348. <col name="filtering"></col>
  2349. <col name="edition">editable</col>
  2350. <col name="editionparams"></col>
  2351. <col name="editionhooks"></col>
  2352. <col name="weight">0</col>
  2353. <col name="comment"></col>
  2354. <col name="mask"></col>
  2355. <col name="status">32</col>
  2356. <col name="rank">93</col>
  2357. <col name="otx"></col>
  2358. <col name="upd">2011-09-20 22:32:59</col>
  2359. </row>
  2360. <row>
  2361. <col name="id">105</col>
  2362. <col name="name">numerodocument</col>
  2363. <col name="idgroup">31</col>
  2364. <col name="class">textes</col>
  2365. <col name="title">Numéro du document</col>
  2366. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document number&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Número del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Número do documento&lt;/r2r:ml&gt;</col>
  2367. <col name="style">numerodocument,numrodudocument,numerodudocument, documentnumber,documentnumber,numerodocumento</col>
  2368. <col name="type">number</col>
  2369. <col name="g_name"></col>
  2370. <col name="cond">*</col>
  2371. <col name="defaultvalue"></col>
  2372. <col name="processing"></col>
  2373. <col name="allowedtags">style:none</col>
  2374. <col name="gui_user_complexity">64</col>
  2375. <col name="filtering"></col>
  2376. <col name="edition">importable</col>
  2377. <col name="editionparams"></col>
  2378. <col name="editionhooks"></col>
  2379. <col name="weight">0</col>
  2380. <col name="comment"></col>
  2381. <col name="mask"></col>
  2382. <col name="status">1</col>
  2383. <col name="rank">1</col>
  2384. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:idno[@type='documentnumber']</col>
  2385. <col name="upd">2015-03-04 16:36:40</col>
  2386. </row>
  2387. <row>
  2388. <col name="id">112</col>
  2389. <col name="name">nom</col>
  2390. <col name="idgroup">28</col>
  2391. <col name="class">individus</col>
  2392. <col name="title">Nom</col>
  2393. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Surname&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Apellido&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Apelido&lt;/r2r:ml&gt;</col>
  2394. <col name="style"></col>
  2395. <col name="type">tinytext</col>
  2396. <col name="g_name">dc.title</col>
  2397. <col name="cond">*</col>
  2398. <col name="defaultvalue"></col>
  2399. <col name="processing"></col>
  2400. <col name="allowedtags"></col>
  2401. <col name="gui_user_complexity">16</col>
  2402. <col name="filtering"></col>
  2403. <col name="edition">editable</col>
  2404. <col name="editionparams"></col>
  2405. <col name="editionhooks"></col>
  2406. <col name="weight">4</col>
  2407. <col name="comment"></col>
  2408. <col name="mask"></col>
  2409. <col name="status">1</col>
  2410. <col name="rank">1</col>
  2411. <col name="otx"></col>
  2412. <col name="upd">2011-09-20 22:36:45</col>
  2413. </row>
  2414. <row>
  2415. <col name="id">113</col>
  2416. <col name="name">prenom</col>
  2417. <col name="idgroup">28</col>
  2418. <col name="class">individus</col>
  2419. <col name="title">Prénom</col>
  2420. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Name&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nombre&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nome próprio&lt;/r2r:ml&gt;</col>
  2421. <col name="style"></col>
  2422. <col name="type">tinytext</col>
  2423. <col name="g_name"></col>
  2424. <col name="cond">*</col>
  2425. <col name="defaultvalue"></col>
  2426. <col name="processing"></col>
  2427. <col name="allowedtags"></col>
  2428. <col name="gui_user_complexity">16</col>
  2429. <col name="filtering"></col>
  2430. <col name="edition">editable</col>
  2431. <col name="editionparams"></col>
  2432. <col name="editionhooks"></col>
  2433. <col name="weight">4</col>
  2434. <col name="comment"></col>
  2435. <col name="mask"></col>
  2436. <col name="status">1</col>
  2437. <col name="rank">2</col>
  2438. <col name="otx"></col>
  2439. <col name="upd">2011-09-20 22:37:03</col>
  2440. </row>
  2441. <row>
  2442. <col name="id">122</col>
  2443. <col name="name">accroche</col>
  2444. <col name="idgroup">28</col>
  2445. <col name="class">individus</col>
  2446. <col name="title">Accroche</col>
  2447. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Brief introduction&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Destacado&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Apresentação sumária&lt;/r2r:ml&gt;</col>
  2448. <col name="style"></col>
  2449. <col name="type">text</col>
  2450. <col name="g_name"></col>
  2451. <col name="cond">*</col>
  2452. <col name="defaultvalue"></col>
  2453. <col name="processing"></col>
  2454. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  2455. <col name="gui_user_complexity">16</col>
  2456. <col name="filtering"></col>
  2457. <col name="edition">fckeditor</col>
  2458. <col name="editionparams">Simple</col>
  2459. <col name="editionhooks"></col>
  2460. <col name="weight">4</col>
  2461. <col name="comment"></col>
  2462. <col name="mask"></col>
  2463. <col name="status">1</col>
  2464. <col name="rank">3</col>
  2465. <col name="otx"></col>
  2466. <col name="upd">2011-09-20 22:37:20</col>
  2467. </row>
  2468. <row>
  2469. <col name="id">123</col>
  2470. <col name="name">adresse</col>
  2471. <col name="idgroup">30</col>
  2472. <col name="class">individus</col>
  2473. <col name="title">Adresse</col>
  2474. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Address&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Dirección&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Endereço&lt;/r2r:ml&gt;</col>
  2475. <col name="style"></col>
  2476. <col name="type">text</col>
  2477. <col name="g_name"></col>
  2478. <col name="cond">*</col>
  2479. <col name="defaultvalue"></col>
  2480. <col name="processing"></col>
  2481. <col name="allowedtags"></col>
  2482. <col name="gui_user_complexity">16</col>
  2483. <col name="filtering"></col>
  2484. <col name="edition">editable</col>
  2485. <col name="editionparams">3</col>
  2486. <col name="editionhooks"></col>
  2487. <col name="weight">4</col>
  2488. <col name="comment"></col>
  2489. <col name="mask"></col>
  2490. <col name="status">1</col>
  2491. <col name="rank">102</col>
  2492. <col name="otx"></col>
  2493. <col name="upd">2011-09-20 22:38:33</col>
  2494. </row>
  2495. <row>
  2496. <col name="id">124</col>
  2497. <col name="name">telephone</col>
  2498. <col name="idgroup">30</col>
  2499. <col name="class">individus</col>
  2500. <col name="title">Téléphone</col>
  2501. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Phone number&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Número de teléfono&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Telefone&lt;/r2r:ml&gt;</col>
  2502. <col name="style"></col>
  2503. <col name="type">tinytext</col>
  2504. <col name="g_name"></col>
  2505. <col name="cond">*</col>
  2506. <col name="defaultvalue"></col>
  2507. <col name="processing"></col>
  2508. <col name="allowedtags"></col>
  2509. <col name="gui_user_complexity">16</col>
  2510. <col name="filtering"></col>
  2511. <col name="edition">editable</col>
  2512. <col name="editionparams"></col>
  2513. <col name="editionhooks"></col>
  2514. <col name="weight">4</col>
  2515. <col name="comment"></col>
  2516. <col name="mask"></col>
  2517. <col name="status">1</col>
  2518. <col name="rank">103</col>
  2519. <col name="otx"></col>
  2520. <col name="upd">2011-09-20 22:38:49</col>
  2521. </row>
  2522. <row>
  2523. <col name="id">125</col>
  2524. <col name="name">photographie</col>
  2525. <col name="idgroup">28</col>
  2526. <col name="class">individus</col>
  2527. <col name="title">Photographie</col>
  2528. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Illustration&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fotografía&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem&lt;/r2r:ml&gt;</col>
  2529. <col name="style"></col>
  2530. <col name="type">image</col>
  2531. <col name="g_name"></col>
  2532. <col name="cond">*</col>
  2533. <col name="defaultvalue"></col>
  2534. <col name="processing"></col>
  2535. <col name="allowedtags"></col>
  2536. <col name="gui_user_complexity">16</col>
  2537. <col name="filtering"></col>
  2538. <col name="edition">editable</col>
  2539. <col name="editionparams"></col>
  2540. <col name="editionhooks"></col>
  2541. <col name="weight">0</col>
  2542. <col name="comment"></col>
  2543. <col name="mask"></col>
  2544. <col name="status">1</col>
  2545. <col name="rank">104</col>
  2546. <col name="otx"></col>
  2547. <col name="upd">2011-09-20 22:37:34</col>
  2548. </row>
  2549. <row>
  2550. <col name="id">141</col>
  2551. <col name="name">vignette</col>
  2552. <col name="idgroup">38</col>
  2553. <col name="class">fichiers</col>
  2554. <col name="title">Vignette</col>
  2555. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Small image&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Viñeta&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem miniatura&lt;/r2r:ml&gt;</col>
  2556. <col name="style"></col>
  2557. <col name="type">image</col>
  2558. <col name="g_name"></col>
  2559. <col name="cond">*</col>
  2560. <col name="defaultvalue"></col>
  2561. <col name="processing"></col>
  2562. <col name="allowedtags"></col>
  2563. <col name="gui_user_complexity">16</col>
  2564. <col name="filtering"></col>
  2565. <col name="edition">editable</col>
  2566. <col name="editionparams"></col>
  2567. <col name="editionhooks"></col>
  2568. <col name="weight">0</col>
  2569. <col name="comment"></col>
  2570. <col name="mask"></col>
  2571. <col name="status">32</col>
  2572. <col name="rank">3</col>
  2573. <col name="otx"></col>
  2574. <col name="upd">2011-09-20 22:45:21</col>
  2575. </row>
  2576. <row>
  2577. <col name="id">127</col>
  2578. <col name="name">directeurdelapublication</col>
  2579. <col name="idgroup">12</col>
  2580. <col name="class">publications</col>
  2581. <col name="title">Directeur de la publication</col>
  2582. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Academic editor&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Director de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Diretor da publicação&lt;/r2r:ml&gt;</col>
  2583. <col name="style"></col>
  2584. <col name="type">persons</col>
  2585. <col name="g_name"></col>
  2586. <col name="cond"></col>
  2587. <col name="defaultvalue"></col>
  2588. <col name="processing"></col>
  2589. <col name="allowedtags"></col>
  2590. <col name="gui_user_complexity">64</col>
  2591. <col name="filtering"></col>
  2592. <col name="edition">editable</col>
  2593. <col name="editionparams"></col>
  2594. <col name="editionhooks"></col>
  2595. <col name="weight">0</col>
  2596. <col name="comment"></col>
  2597. <col name="mask"></col>
  2598. <col name="status">1</col>
  2599. <col name="rank">10</col>
  2600. <col name="otx"></col>
  2601. <col name="upd">2011-09-20 21:47:08</col>
  2602. </row>
  2603. <row>
  2604. <col name="id">128</col>
  2605. <col name="name">legende</col>
  2606. <col name="idgroup">38</col>
  2607. <col name="class">fichiers</col>
  2608. <col name="title">Légende</col>
  2609. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Caption&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Pie de foto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Legenda&lt;/r2r:ml&gt;</col>
  2610. <col name="style"></col>
  2611. <col name="type">text</col>
  2612. <col name="g_name"></col>
  2613. <col name="cond">*</col>
  2614. <col name="defaultvalue"></col>
  2615. <col name="processing"></col>
  2616. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  2617. <col name="gui_user_complexity">16</col>
  2618. <col name="filtering"></col>
  2619. <col name="edition">fckeditor</col>
  2620. <col name="editionparams">Basic</col>
  2621. <col name="editionhooks"></col>
  2622. <col name="weight">4</col>
  2623. <col name="comment"></col>
  2624. <col name="mask"></col>
  2625. <col name="status">1</col>
  2626. <col name="rank">4</col>
  2627. <col name="otx"></col>
  2628. <col name="upd">2011-09-20 22:45:38</col>
  2629. </row>
  2630. <row>
  2631. <col name="id">129</col>
  2632. <col name="name">credits</col>
  2633. <col name="idgroup">24</col>
  2634. <col name="class">fichiers</col>
  2635. <col name="title">Crédits</col>
  2636. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Credits&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Créditos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Créditos&lt;/r2r:ml&gt;</col>
  2637. <col name="style"></col>
  2638. <col name="type">tinytext</col>
  2639. <col name="g_name"></col>
  2640. <col name="cond">*</col>
  2641. <col name="defaultvalue"></col>
  2642. <col name="processing"></col>
  2643. <col name="allowedtags"></col>
  2644. <col name="gui_user_complexity">16</col>
  2645. <col name="filtering"></col>
  2646. <col name="edition">editable</col>
  2647. <col name="editionparams"></col>
  2648. <col name="editionhooks"></col>
  2649. <col name="weight">4</col>
  2650. <col name="comment"></col>
  2651. <col name="mask"></col>
  2652. <col name="status">1</col>
  2653. <col name="rank">108</col>
  2654. <col name="otx"></col>
  2655. <col name="upd">2011-09-20 22:46:31</col>
  2656. </row>
  2657. <row>
  2658. <col name="id">133</col>
  2659. <col name="name">theme</col>
  2660. <col name="idgroup">15</col>
  2661. <col name="class">textes</col>
  2662. <col name="title">Index thématique</col>
  2663. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Subject index&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice temático&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice temático&lt;/r2r:ml&gt;</col>
  2664. <col name="style"></col>
  2665. <col name="type">entries</col>
  2666. <col name="g_name"></col>
  2667. <col name="cond"></col>
  2668. <col name="defaultvalue"></col>
  2669. <col name="processing"></col>
  2670. <col name="allowedtags"></col>
  2671. <col name="gui_user_complexity">64</col>
  2672. <col name="filtering"></col>
  2673. <col name="edition">importable</col>
  2674. <col name="editionparams"></col>
  2675. <col name="editionhooks"></col>
  2676. <col name="weight">0</col>
  2677. <col name="comment"></col>
  2678. <col name="mask"></col>
  2679. <col name="status">1</col>
  2680. <col name="rank">8</col>
  2681. <col name="otx"></col>
  2682. <col name="upd">2015-03-05 14:32:28</col>
  2683. </row>
  2684. <row>
  2685. <col name="id">139</col>
  2686. <col name="name">licence</col>
  2687. <col name="idgroup">12</col>
  2688. <col name="class">publications</col>
  2689. <col name="title">Licence portant sur la publication</col>
  2690. <col name="altertitle">&lt;r2r:ml lang="en"&gt;License&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Licencia de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Licenciamento relativo à publicação&lt;/r2r:ml&gt;</col>
  2691. <col name="style"></col>
  2692. <col name="type">entries</col>
  2693. <col name="g_name"></col>
  2694. <col name="cond"></col>
  2695. <col name="defaultvalue"></col>
  2696. <col name="processing"></col>
  2697. <col name="allowedtags"></col>
  2698. <col name="gui_user_complexity">64</col>
  2699. <col name="filtering"></col>
  2700. <col name="edition">none</col>
  2701. <col name="editionparams"></col>
  2702. <col name="editionhooks"></col>
  2703. <col name="weight">0</col>
  2704. <col name="comment"></col>
  2705. <col name="mask"></col>
  2706. <col name="status">1</col>
  2707. <col name="rank">9</col>
  2708. <col name="otx"></col>
  2709. <col name="upd">2015-03-04 16:32:56</col>
  2710. </row>
  2711. <row>
  2712. <col name="id">134</col>
  2713. <col name="name">nom</col>
  2714. <col name="idgroup">0</col>
  2715. <col name="class">indexavances</col>
  2716. <col name="title">Dénomination de l’entrée d’index</col>
  2717. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Entry name&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nombre de la entrada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Designação da entrada do índice&lt;/r2r:ml&gt;</col>
  2718. <col name="style"></col>
  2719. <col name="type">tinytext</col>
  2720. <col name="g_name">index key</col>
  2721. <col name="cond">*</col>
  2722. <col name="defaultvalue"></col>
  2723. <col name="processing"></col>
  2724. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block</col>
  2725. <col name="gui_user_complexity">16</col>
  2726. <col name="filtering"></col>
  2727. <col name="edition">editable</col>
  2728. <col name="editionparams"></col>
  2729. <col name="editionhooks"></col>
  2730. <col name="weight">4</col>
  2731. <col name="comment"></col>
  2732. <col name="mask"></col>
  2733. <col name="status">1</col>
  2734. <col name="rank">113</col>
  2735. <col name="otx"></col>
  2736. <col name="upd">2011-09-20 23:21:15</col>
  2737. </row>
  2738. <row>
  2739. <col name="id">135</col>
  2740. <col name="name">description</col>
  2741. <col name="idgroup">0</col>
  2742. <col name="class">indexavances</col>
  2743. <col name="title">Description de l’entrée d’index</col>
  2744. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Entry definition&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Definición de la entrada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Descrição da entrada do índice&lt;/r2r:ml&gt;</col>
  2745. <col name="style"></col>
  2746. <col name="type">text</col>
  2747. <col name="g_name"></col>
  2748. <col name="cond">*</col>
  2749. <col name="defaultvalue"></col>
  2750. <col name="processing"></col>
  2751. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note</col>
  2752. <col name="gui_user_complexity">16</col>
  2753. <col name="filtering"></col>
  2754. <col name="edition">fckeditor</col>
  2755. <col name="editionparams">Basic</col>
  2756. <col name="editionhooks"></col>
  2757. <col name="weight">4</col>
  2758. <col name="comment"></col>
  2759. <col name="mask"></col>
  2760. <col name="status">1</col>
  2761. <col name="rank">114</col>
  2762. <col name="otx"></col>
  2763. <col name="upd">2011-09-20 23:21:31</col>
  2764. </row>
  2765. <row>
  2766. <col name="id">136</col>
  2767. <col name="name">url</col>
  2768. <col name="idgroup">0</col>
  2769. <col name="class">indexavances</col>
  2770. <col name="title">URL</col>
  2771. <col name="altertitle">&lt;r2r:ml lang="en"&gt;URL&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;URL&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;URL&lt;/r2r:ml&gt;</col>
  2772. <col name="style"></col>
  2773. <col name="type">url</col>
  2774. <col name="g_name"></col>
  2775. <col name="cond">*</col>
  2776. <col name="defaultvalue"></col>
  2777. <col name="processing"></col>
  2778. <col name="allowedtags"></col>
  2779. <col name="gui_user_complexity">16</col>
  2780. <col name="filtering"></col>
  2781. <col name="edition">editable</col>
  2782. <col name="editionparams"></col>
  2783. <col name="editionhooks"></col>
  2784. <col name="weight">0</col>
  2785. <col name="comment"></col>
  2786. <col name="mask"></col>
  2787. <col name="status">1</col>
  2788. <col name="rank">115</col>
  2789. <col name="otx"></col>
  2790. <col name="upd">2011-09-20 23:21:47</col>
  2791. </row>
  2792. <row>
  2793. <col name="id">137</col>
  2794. <col name="name">icone</col>
  2795. <col name="idgroup">0</col>
  2796. <col name="class">indexavances</col>
  2797. <col name="title">Icône</col>
  2798. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Icon&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Icono&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ícone&lt;/r2r:ml&gt;</col>
  2799. <col name="style"></col>
  2800. <col name="type">image</col>
  2801. <col name="g_name"></col>
  2802. <col name="cond">*</col>
  2803. <col name="defaultvalue"></col>
  2804. <col name="processing"></col>
  2805. <col name="allowedtags"></col>
  2806. <col name="gui_user_complexity">16</col>
  2807. <col name="filtering"></col>
  2808. <col name="edition">editable</col>
  2809. <col name="editionparams"></col>
  2810. <col name="editionhooks"></col>
  2811. <col name="weight">0</col>
  2812. <col name="comment"></col>
  2813. <col name="mask"></col>
  2814. <col name="status">1</col>
  2815. <col name="rank">116</col>
  2816. <col name="otx"></col>
  2817. <col name="upd">2011-09-20 23:22:01</col>
  2818. </row>
  2819. <row>
  2820. <col name="id">138</col>
  2821. <col name="name">licence</col>
  2822. <col name="idgroup">33</col>
  2823. <col name="class">textes</col>
  2824. <col name="title">Licence portant sur le document</col>
  2825. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document license&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Licencia acompañando el documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Licenciamento relativo ao documento&lt;/r2r:ml&gt;</col>
  2826. <col name="style"></col>
  2827. <col name="type">entries</col>
  2828. <col name="g_name"></col>
  2829. <col name="cond"></col>
  2830. <col name="defaultvalue"></col>
  2831. <col name="processing"></col>
  2832. <col name="allowedtags"></col>
  2833. <col name="gui_user_complexity">64</col>
  2834. <col name="filtering"></col>
  2835. <col name="edition">importable</col>
  2836. <col name="editionparams"></col>
  2837. <col name="editionhooks"></col>
  2838. <col name="weight">0</col>
  2839. <col name="comment"></col>
  2840. <col name="mask"></col>
  2841. <col name="status">1</col>
  2842. <col name="rank">117</col>
  2843. <col name="otx"></col>
  2844. <col name="upd">2015-03-04 16:40:39</col>
  2845. </row>
  2846. <row>
  2847. <col name="id">143</col>
  2848. <col name="name">notefin</col>
  2849. <col name="idgroup">32</col>
  2850. <col name="class">textes</col>
  2851. <col name="title">Notes de fin de document</col>
  2852. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Endnotes&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Notas al final del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Notas de fim de documento&lt;/r2r:ml&gt;</col>
  2853. <col name="style">notefin,endnote</col>
  2854. <col name="type">longtext</col>
  2855. <col name="g_name"></col>
  2856. <col name="cond">*</col>
  2857. <col name="defaultvalue"></col>
  2858. <col name="processing"></col>
  2859. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  2860. <col name="gui_user_complexity">32</col>
  2861. <col name="filtering"></col>
  2862. <col name="edition">importable</col>
  2863. <col name="editionparams"></col>
  2864. <col name="editionhooks"></col>
  2865. <col name="weight">4</col>
  2866. <col name="comment"></col>
  2867. <col name="mask"></col>
  2868. <col name="status">32</col>
  2869. <col name="rank">3</col>
  2870. <col name="otx"></col>
  2871. <col name="upd">2011-09-20 22:07:15</col>
  2872. </row>
  2873. <row>
  2874. <col name="id">144</col>
  2875. <col name="name">altertitre</col>
  2876. <col name="idgroup">40</col>
  2877. <col name="class">publications</col>
  2878. <col name="title">Titre alternatif de la publication (dans une autre langue)</col>
  2879. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Folder translated title (alternative title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título alternativo de la publicación (en otro idioma)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título traduzido da publicação&lt;/r2r:ml&gt;</col>
  2880. <col name="style">titretraduitfr:fr,titretraduiten:en,titretraduites:es,titretraduitpt:pt,titretraduitit:it,titretraduitde:de,titretraduitru:ru,titleen:en</col>
  2881. <col name="type">mltext</col>
  2882. <col name="g_name"></col>
  2883. <col name="cond">*</col>
  2884. <col name="defaultvalue"></col>
  2885. <col name="processing"></col>
  2886. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Appel de Note</col>
  2887. <col name="gui_user_complexity">32</col>
  2888. <col name="filtering"></col>
  2889. <col name="edition">editable</col>
  2890. <col name="editionparams"></col>
  2891. <col name="editionhooks"></col>
  2892. <col name="weight">4</col>
  2893. <col name="comment"></col>
  2894. <col name="mask"></col>
  2895. <col name="status">1</col>
  2896. <col name="rank">120</col>
  2897. <col name="otx"></col>
  2898. <col name="upd">2011-09-20 21:43:05</col>
  2899. </row>
  2900. <row>
  2901. <col name="id">147</col>
  2902. <col name="name">motscleses</col>
  2903. <col name="idgroup">15</col>
  2904. <col name="class">textes</col>
  2905. <col name="title">Palabras claves</col>
  2906. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Palabras claves&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Palabras claves&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Palabras claves&lt;/r2r:ml&gt;</col>
  2907. <col name="style"></col>
  2908. <col name="type">entries</col>
  2909. <col name="g_name"></col>
  2910. <col name="cond"></col>
  2911. <col name="defaultvalue"></col>
  2912. <col name="processing"></col>
  2913. <col name="allowedtags"></col>
  2914. <col name="gui_user_complexity">64</col>
  2915. <col name="filtering"></col>
  2916. <col name="edition">importable</col>
  2917. <col name="editionparams"></col>
  2918. <col name="editionhooks"></col>
  2919. <col name="weight">0</col>
  2920. <col name="comment"></col>
  2921. <col name="mask"></col>
  2922. <col name="status">1</col>
  2923. <col name="rank">3</col>
  2924. <col name="otx"></col>
  2925. <col name="upd">2015-03-05 14:32:33</col>
  2926. </row>
  2927. <row>
  2928. <col name="id">148</col>
  2929. <col name="name">motsclesde</col>
  2930. <col name="idgroup">15</col>
  2931. <col name="class">textes</col>
  2932. <col name="title">Schlagwortindex</col>
  2933. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Schlagwortindex&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Schlagwortindex&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Schlagwortindex&lt;/r2r:ml&gt;</col>
  2934. <col name="style"></col>
  2935. <col name="type">entries</col>
  2936. <col name="g_name"></col>
  2937. <col name="cond"></col>
  2938. <col name="defaultvalue"></col>
  2939. <col name="processing"></col>
  2940. <col name="allowedtags"></col>
  2941. <col name="gui_user_complexity">64</col>
  2942. <col name="filtering"></col>
  2943. <col name="edition">importable</col>
  2944. <col name="editionparams"></col>
  2945. <col name="editionhooks"></col>
  2946. <col name="weight">0</col>
  2947. <col name="comment"></col>
  2948. <col name="mask"></col>
  2949. <col name="status">1</col>
  2950. <col name="rank">4</col>
  2951. <col name="otx"></col>
  2952. <col name="upd">2015-03-05 14:32:40</col>
  2953. </row>
  2954. <row>
  2955. <col name="id">149</col>
  2956. <col name="name">urlpublicationediteur</col>
  2957. <col name="idgroup">13</col>
  2958. <col name="class">publications</col>
  2959. <col name="title">Voir sur le site de l’éditeur</col>
  2960. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Publisher’s website&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Ver en el sitio del editor&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Website do editor&lt;/r2r:ml&gt;</col>
  2961. <col name="style"></col>
  2962. <col name="type">url</col>
  2963. <col name="g_name"></col>
  2964. <col name="cond">*</col>
  2965. <col name="defaultvalue"></col>
  2966. <col name="processing"></col>
  2967. <col name="allowedtags"></col>
  2968. <col name="gui_user_complexity">32</col>
  2969. <col name="filtering"></col>
  2970. <col name="edition">editable</col>
  2971. <col name="editionparams"></col>
  2972. <col name="editionhooks"></col>
  2973. <col name="weight">0</col>
  2974. <col name="comment"></col>
  2975. <col name="mask"></col>
  2976. <col name="status">1</col>
  2977. <col name="rank">3</col>
  2978. <col name="otx"></col>
  2979. <col name="upd">2015-03-04 16:31:43</col>
  2980. </row>
  2981. <row>
  2982. <col name="id">150</col>
  2983. <col name="name">nombremaxitems</col>
  2984. <col name="idgroup">36</col>
  2985. <col name="class">liens</col>
  2986. <col name="title">Nombre maximum d’items du flux</col>
  2987. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Maximum number of feed items&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Número máximo de elementos del fuente web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Número máximo de itens de feed RSS&lt;/r2r:ml&gt;</col>
  2988. <col name="style"></col>
  2989. <col name="type">int</col>
  2990. <col name="g_name"></col>
  2991. <col name="cond">*</col>
  2992. <col name="defaultvalue"></col>
  2993. <col name="processing"></col>
  2994. <col name="allowedtags"></col>
  2995. <col name="gui_user_complexity">16</col>
  2996. <col name="filtering"></col>
  2997. <col name="edition">editable</col>
  2998. <col name="editionparams"></col>
  2999. <col name="editionhooks"></col>
  3000. <col name="weight">0</col>
  3001. <col name="comment"></col>
  3002. <col name="mask"></col>
  3003. <col name="status">32</col>
  3004. <col name="rank">124</col>
  3005. <col name="otx"></col>
  3006. <col name="upd">2011-09-20 22:52:39</col>
  3007. </row>
  3008. <row>
  3009. <col name="id">151</col>
  3010. <col name="name">descriptionouvrage</col>
  3011. <col name="idgroup">12</col>
  3012. <col name="class">publications</col>
  3013. <col name="title">Description physique de l’ouvrage</col>
  3014. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Physical description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción física de la obra&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Descrição física da publicação&lt;/r2r:ml&gt;</col>
  3015. <col name="style"></col>
  3016. <col name="type">text</col>
  3017. <col name="g_name"></col>
  3018. <col name="cond">*</col>
  3019. <col name="defaultvalue"></col>
  3020. <col name="processing"></col>
  3021. <col name="allowedtags"></col>
  3022. <col name="gui_user_complexity">64</col>
  3023. <col name="filtering"></col>
  3024. <col name="edition">editable</col>
  3025. <col name="editionparams"></col>
  3026. <col name="editionhooks"></col>
  3027. <col name="weight">0</col>
  3028. <col name="comment"></col>
  3029. <col name="mask"></col>
  3030. <col name="status">32</col>
  3031. <col name="rank">125</col>
  3032. <col name="otx"></col>
  3033. <col name="upd">2011-09-20 21:47:21</col>
  3034. </row>
  3035. <row>
  3036. <col name="id">152</col>
  3037. <col name="name">site</col>
  3038. <col name="idgroup">0</col>
  3039. <col name="class">entities_auteurs</col>
  3040. <col name="title">Site</col>
  3041. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sitio web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Website&lt;/r2r:ml&gt;</col>
  3042. <col name="style">site, .site, website,website,sitioweb</col>
  3043. <col name="type">url</col>
  3044. <col name="g_name"></col>
  3045. <col name="cond">*</col>
  3046. <col name="defaultvalue"></col>
  3047. <col name="processing"></col>
  3048. <col name="allowedtags"></col>
  3049. <col name="gui_user_complexity">32</col>
  3050. <col name="filtering"></col>
  3051. <col name="edition">importable</col>
  3052. <col name="editionparams"></col>
  3053. <col name="editionhooks"></col>
  3054. <col name="weight">4</col>
  3055. <col name="comment"></col>
  3056. <col name="mask"></col>
  3057. <col name="status">1</col>
  3058. <col name="rank">6</col>
  3059. <col name="otx">//tei:ref[@type='website']</col>
  3060. <col name="upd">2015-03-05 14:35:44</col>
  3061. </row>
  3062. <row>
  3063. <col name="id">167</col>
  3064. <col name="name">imagehabillee</col>
  3065. <col name="idgroup">16</col>
  3066. <col name="class">textes</col>
  3067. <col name="title">Habillage des images</col>
  3068. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Image display: runaround mode&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Imágenes fluidas en torno al texto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Moldagem de texto junto às imagens&lt;/r2r:ml&gt;</col>
  3069. <col name="style"></col>
  3070. <col name="type">boolean</col>
  3071. <col name="g_name"></col>
  3072. <col name="cond">*</col>
  3073. <col name="defaultvalue">1</col>
  3074. <col name="processing"></col>
  3075. <col name="allowedtags"></col>
  3076. <col name="gui_user_complexity">64</col>
  3077. <col name="filtering"></col>
  3078. <col name="edition">editable</col>
  3079. <col name="editionparams"></col>
  3080. <col name="editionhooks"></col>
  3081. <col name="weight">0</col>
  3082. <col name="comment"></col>
  3083. <col name="mask"></col>
  3084. <col name="status">1</col>
  3085. <col name="rank">129</col>
  3086. <col name="otx"></col>
  3087. <col name="upd">2011-09-20 22:24:48</col>
  3088. </row>
  3089. <row>
  3090. <col name="id">164</col>
  3091. <col name="name">traduction</col>
  3092. <col name="idgroup">16</col>
  3093. <col name="class">textes</col>
  3094. <col name="title">Ce document est une traduction de :</col>
  3095. <col name="altertitle">&lt;r2r:ml lang="en"&gt;The document is a translation of:&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Este texto es une traducción de :&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Este documento foi traduzido por:&lt;/r2r:ml&gt;</col>
  3096. <col name="style"></col>
  3097. <col name="type">entities</col>
  3098. <col name="g_name"></col>
  3099. <col name="cond">*</col>
  3100. <col name="defaultvalue"></col>
  3101. <col name="processing"></col>
  3102. <col name="allowedtags"></col>
  3103. <col name="gui_user_complexity">64</col>
  3104. <col name="filtering"></col>
  3105. <col name="edition">editable</col>
  3106. <col name="editionparams"></col>
  3107. <col name="editionhooks"></col>
  3108. <col name="weight">0</col>
  3109. <col name="comment"></col>
  3110. <col name="mask"></col>
  3111. <col name="status">1</col>
  3112. <col name="rank">126</col>
  3113. <col name="otx"></col>
  3114. <col name="upd">2011-09-20 22:24:38</col>
  3115. </row>
  3116. <row>
  3117. <col name="id">165</col>
  3118. <col name="name">altertitre</col>
  3119. <col name="idgroup">18</col>
  3120. <col name="class">textessimples</col>
  3121. <col name="title">Titre alternatif du document (dans une autre langue)</col>
  3122. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Translated title (alternative title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título alternativo del documento (en otro idioma)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título traduzido do documento&lt;/r2r:ml&gt;</col>
  3123. <col name="style"></col>
  3124. <col name="type">mltext</col>
  3125. <col name="g_name"></col>
  3126. <col name="cond">*</col>
  3127. <col name="defaultvalue"></col>
  3128. <col name="processing"></col>
  3129. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Lien;Appel de Note</col>
  3130. <col name="gui_user_complexity">16</col>
  3131. <col name="filtering"></col>
  3132. <col name="edition">editable</col>
  3133. <col name="editionparams"></col>
  3134. <col name="editionhooks"></col>
  3135. <col name="weight">0</col>
  3136. <col name="comment"></col>
  3137. <col name="mask"></col>
  3138. <col name="status">1</col>
  3139. <col name="rank">127</col>
  3140. <col name="otx"></col>
  3141. <col name="upd">2011-09-20 22:31:34</col>
  3142. </row>
  3143. <row>
  3144. <col name="id">166</col>
  3145. <col name="name">altertitre</col>
  3146. <col name="idgroup">35</col>
  3147. <col name="class">liens</col>
  3148. <col name="title">Titre alternatif (dans une autre langue)</col>
  3149. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Translated title (alternative title)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título alternativo del documento (en otro idioma)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título traduzido&lt;/r2r:ml&gt;</col>
  3150. <col name="style"></col>
  3151. <col name="type">mltext</col>
  3152. <col name="g_name"></col>
  3153. <col name="cond">*</col>
  3154. <col name="defaultvalue"></col>
  3155. <col name="processing"></col>
  3156. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;Lien;Appel de Note</col>
  3157. <col name="gui_user_complexity">16</col>
  3158. <col name="filtering"></col>
  3159. <col name="edition">editable</col>
  3160. <col name="editionparams"></col>
  3161. <col name="editionhooks"></col>
  3162. <col name="weight">0</col>
  3163. <col name="comment"></col>
  3164. <col name="mask"></col>
  3165. <col name="status">1</col>
  3166. <col name="rank">128</col>
  3167. <col name="otx"></col>
  3168. <col name="upd">2011-09-20 22:51:19</col>
  3169. </row>
  3170. <row>
  3171. <col name="id">170</col>
  3172. <col name="name">fichierreference</col>
  3173. <col name="idgroup">53</col>
  3174. <col name="class">textes</col>
  3175. <col name="title">Fichier de référence</col>
  3176. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Reference file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Archivo de referencia&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiro de referência&lt;/r2r:ml&gt;</col>
  3177. <col name="style"></col>
  3178. <col name="type">boolean</col>
  3179. <col name="g_name"></col>
  3180. <col name="cond">*</col>
  3181. <col name="defaultvalue"></col>
  3182. <col name="processing"></col>
  3183. <col name="allowedtags"></col>
  3184. <col name="gui_user_complexity">16</col>
  3185. <col name="filtering"></col>
  3186. <col name="edition">editable</col>
  3187. <col name="editionparams"></col>
  3188. <col name="editionhooks"></col>
  3189. <col name="weight">0</col>
  3190. <col name="comment"></col>
  3191. <col name="mask"></col>
  3192. <col name="status">32</col>
  3193. <col name="rank">7</col>
  3194. <col name="otx"></col>
  3195. <col name="upd">2015-03-04 17:15:30</col>
  3196. </row>
  3197. <row>
  3198. <col name="id">182</col>
  3199. <col name="name">titre</col>
  3200. <col name="idgroup">48</col>
  3201. <col name="class">fichiersexternes</col>
  3202. <col name="title">Titre</col>
  3203. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;</col>
  3204. <col name="style"></col>
  3205. <col name="type">tinytext</col>
  3206. <col name="g_name">dc.title</col>
  3207. <col name="cond">*</col>
  3208. <col name="defaultvalue"></col>
  3209. <col name="processing"></col>
  3210. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase</col>
  3211. <col name="gui_user_complexity">64</col>
  3212. <col name="filtering"></col>
  3213. <col name="edition">editable</col>
  3214. <col name="editionparams"></col>
  3215. <col name="editionhooks"></col>
  3216. <col name="weight">0</col>
  3217. <col name="comment"></col>
  3218. <col name="mask"></col>
  3219. <col name="status">32</col>
  3220. <col name="rank">130</col>
  3221. <col name="otx"></col>
  3222. <col name="upd">2012-04-02 17:04:22</col>
  3223. </row>
  3224. <row>
  3225. <col name="id">183</col>
  3226. <col name="name">object</col>
  3227. <col name="idgroup">49</col>
  3228. <col name="class">fichiersexternes</col>
  3229. <col name="title">Objet</col>
  3230. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Objeto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Objecto&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Object&lt;/r2r:ml&gt;</col>
  3231. <col name="style"></col>
  3232. <col name="type">text</col>
  3233. <col name="g_name"></col>
  3234. <col name="cond">*</col>
  3235. <col name="defaultvalue"></col>
  3236. <col name="processing"></col>
  3237. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  3238. <col name="gui_user_complexity">64</col>
  3239. <col name="filtering"></col>
  3240. <col name="edition">editable</col>
  3241. <col name="editionparams">5</col>
  3242. <col name="editionhooks"></col>
  3243. <col name="weight">0</col>
  3244. <col name="comment"></col>
  3245. <col name="mask"></col>
  3246. <col name="status">32</col>
  3247. <col name="rank">131</col>
  3248. <col name="otx"></col>
  3249. <col name="upd">2011-09-20 23:03:16</col>
  3250. </row>
  3251. <row>
  3252. <col name="id">184</col>
  3253. <col name="name">description</col>
  3254. <col name="idgroup">49</col>
  3255. <col name="class">fichiersexternes</col>
  3256. <col name="title">Description</col>
  3257. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Descrição&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Description&lt;/r2r:ml&gt;</col>
  3258. <col name="style"></col>
  3259. <col name="type">text</col>
  3260. <col name="g_name"></col>
  3261. <col name="cond">*</col>
  3262. <col name="defaultvalue"></col>
  3263. <col name="processing"></col>
  3264. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  3265. <col name="gui_user_complexity">64</col>
  3266. <col name="filtering"></col>
  3267. <col name="edition">fckeditor</col>
  3268. <col name="editionparams"></col>
  3269. <col name="editionhooks"></col>
  3270. <col name="weight">0</col>
  3271. <col name="comment"></col>
  3272. <col name="mask"></col>
  3273. <col name="status">32</col>
  3274. <col name="rank">132</col>
  3275. <col name="otx"></col>
  3276. <col name="upd">2011-09-20 23:03:44</col>
  3277. </row>
  3278. <row>
  3279. <col name="id">185</col>
  3280. <col name="name">vignette</col>
  3281. <col name="idgroup">49</col>
  3282. <col name="class">fichiersexternes</col>
  3283. <col name="title">Vignette</col>
  3284. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Viñeta&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Small image&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem miniatura&lt;/r2r:ml&gt;</col>
  3285. <col name="style"></col>
  3286. <col name="type">image</col>
  3287. <col name="g_name"></col>
  3288. <col name="cond">*</col>
  3289. <col name="defaultvalue"></col>
  3290. <col name="processing"></col>
  3291. <col name="allowedtags"></col>
  3292. <col name="gui_user_complexity">64</col>
  3293. <col name="filtering"></col>
  3294. <col name="edition">editable</col>
  3295. <col name="editionparams"></col>
  3296. <col name="editionhooks"></col>
  3297. <col name="weight">0</col>
  3298. <col name="comment"></col>
  3299. <col name="mask"></col>
  3300. <col name="status">32</col>
  3301. <col name="rank">133</col>
  3302. <col name="otx"></col>
  3303. <col name="upd">2011-09-20 23:04:19</col>
  3304. </row>
  3305. <row>
  3306. <col name="id">186</col>
  3307. <col name="name">legende</col>
  3308. <col name="idgroup">49</col>
  3309. <col name="class">fichiersexternes</col>
  3310. <col name="title">Légende</col>
  3311. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Pie de foto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Legenda&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Caption&lt;/r2r:ml&gt;</col>
  3312. <col name="style"></col>
  3313. <col name="type">text</col>
  3314. <col name="g_name"></col>
  3315. <col name="cond">*</col>
  3316. <col name="defaultvalue"></col>
  3317. <col name="processing"></col>
  3318. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien</col>
  3319. <col name="gui_user_complexity">64</col>
  3320. <col name="filtering"></col>
  3321. <col name="edition">fckeditor</col>
  3322. <col name="editionparams"></col>
  3323. <col name="editionhooks"></col>
  3324. <col name="weight">0</col>
  3325. <col name="comment"></col>
  3326. <col name="mask"></col>
  3327. <col name="status">32</col>
  3328. <col name="rank">134</col>
  3329. <col name="otx"></col>
  3330. <col name="upd">2011-09-20 23:04:51</col>
  3331. </row>
  3332. <row>
  3333. <col name="id">187</col>
  3334. <col name="name">datepubli</col>
  3335. <col name="idgroup">49</col>
  3336. <col name="class">fichiersexternes</col>
  3337. <col name="title">Date de publication</col>
  3338. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fecha de online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;</col>
  3339. <col name="style"></col>
  3340. <col name="type">date</col>
  3341. <col name="g_name"></col>
  3342. <col name="cond">*</col>
  3343. <col name="defaultvalue">today</col>
  3344. <col name="processing"></col>
  3345. <col name="allowedtags"></col>
  3346. <col name="gui_user_complexity">64</col>
  3347. <col name="filtering"></col>
  3348. <col name="edition">editable</col>
  3349. <col name="editionparams"></col>
  3350. <col name="editionhooks"></col>
  3351. <col name="weight">0</col>
  3352. <col name="comment"></col>
  3353. <col name="mask"></col>
  3354. <col name="status">32</col>
  3355. <col name="rank">135</col>
  3356. <col name="otx"></col>
  3357. <col name="upd">2011-09-20 23:05:33</col>
  3358. </row>
  3359. <row>
  3360. <col name="id">188</col>
  3361. <col name="name">urlaccesmedia</col>
  3362. <col name="idgroup">49</col>
  3363. <col name="class">fichiersexternes</col>
  3364. <col name="title">Permalien</col>
  3365. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Permalink&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Permalink&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ligação permanente&lt;/r2r:ml&gt;</col>
  3366. <col name="style"></col>
  3367. <col name="type">url</col>
  3368. <col name="g_name"></col>
  3369. <col name="cond">*</col>
  3370. <col name="defaultvalue"></col>
  3371. <col name="processing"></col>
  3372. <col name="allowedtags"></col>
  3373. <col name="gui_user_complexity">64</col>
  3374. <col name="filtering"></col>
  3375. <col name="edition">editable</col>
  3376. <col name="editionparams"></col>
  3377. <col name="editionhooks"></col>
  3378. <col name="weight">0</col>
  3379. <col name="comment"></col>
  3380. <col name="mask"></col>
  3381. <col name="status">32</col>
  3382. <col name="rank">136</col>
  3383. <col name="otx"></col>
  3384. <col name="upd">2011-09-20 23:06:02</col>
  3385. </row>
  3386. <row>
  3387. <col name="id">189</col>
  3388. <col name="name">urlmedia</col>
  3389. <col name="idgroup">49</col>
  3390. <col name="class">fichiersexternes</col>
  3391. <col name="title">url du média</col>
  3392. <col name="altertitle">&lt;r2r:ml lang="es"&gt;URL del objeto multimedia&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Url do media&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Media URL&lt;/r2r:ml&gt;</col>
  3393. <col name="style"></col>
  3394. <col name="type">url</col>
  3395. <col name="g_name"></col>
  3396. <col name="cond">*</col>
  3397. <col name="defaultvalue"></col>
  3398. <col name="processing"></col>
  3399. <col name="allowedtags"></col>
  3400. <col name="gui_user_complexity">64</col>
  3401. <col name="filtering"></col>
  3402. <col name="edition">editable</col>
  3403. <col name="editionparams"></col>
  3404. <col name="editionhooks"></col>
  3405. <col name="weight">0</col>
  3406. <col name="comment"></col>
  3407. <col name="mask"></col>
  3408. <col name="status">32</col>
  3409. <col name="rank">137</col>
  3410. <col name="otx"></col>
  3411. <col name="upd">2011-09-20 23:06:42</col>
  3412. </row>
  3413. <row>
  3414. <col name="id">190</col>
  3415. <col name="name">auteur</col>
  3416. <col name="idgroup">50</col>
  3417. <col name="class">fichiersexternes</col>
  3418. <col name="title">Auteur</col>
  3419. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Autor&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Author&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autor&lt;/r2r:ml&gt;</col>
  3420. <col name="style"></col>
  3421. <col name="type">persons</col>
  3422. <col name="g_name"></col>
  3423. <col name="cond"></col>
  3424. <col name="defaultvalue"></col>
  3425. <col name="processing"></col>
  3426. <col name="allowedtags"></col>
  3427. <col name="gui_user_complexity">64</col>
  3428. <col name="filtering"></col>
  3429. <col name="edition">editable</col>
  3430. <col name="editionparams"></col>
  3431. <col name="editionhooks"></col>
  3432. <col name="weight">0</col>
  3433. <col name="comment"></col>
  3434. <col name="mask"></col>
  3435. <col name="status">32</col>
  3436. <col name="rank">138</col>
  3437. <col name="otx"></col>
  3438. <col name="upd">2011-09-20 23:07:13</col>
  3439. </row>
  3440. <row>
  3441. <col name="id">191</col>
  3442. <col name="name">credits</col>
  3443. <col name="idgroup">50</col>
  3444. <col name="class">fichiersexternes</col>
  3445. <col name="title">Crédits</col>
  3446. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Créditos&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Credits&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Créditos&lt;/r2r:ml&gt;</col>
  3447. <col name="style"></col>
  3448. <col name="type">tinytext</col>
  3449. <col name="g_name"></col>
  3450. <col name="cond">*</col>
  3451. <col name="defaultvalue"></col>
  3452. <col name="processing"></col>
  3453. <col name="allowedtags"></col>
  3454. <col name="gui_user_complexity">64</col>
  3455. <col name="filtering"></col>
  3456. <col name="edition">editable</col>
  3457. <col name="editionparams"></col>
  3458. <col name="editionhooks"></col>
  3459. <col name="weight">0</col>
  3460. <col name="comment"></col>
  3461. <col name="mask"></col>
  3462. <col name="status">32</col>
  3463. <col name="rank">139</col>
  3464. <col name="otx"></col>
  3465. <col name="upd">2011-09-20 23:07:33</col>
  3466. </row>
  3467. <row>
  3468. <col name="id">192</col>
  3469. <col name="name">licence</col>
  3470. <col name="idgroup">50</col>
  3471. <col name="class">fichiersexternes</col>
  3472. <col name="title">Licence</col>
  3473. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Licencia&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Licenciamento&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;License&lt;/r2r:ml&gt;</col>
  3474. <col name="style"></col>
  3475. <col name="type">entries</col>
  3476. <col name="g_name"></col>
  3477. <col name="cond"></col>
  3478. <col name="defaultvalue"></col>
  3479. <col name="processing"></col>
  3480. <col name="allowedtags"></col>
  3481. <col name="gui_user_complexity">64</col>
  3482. <col name="filtering"></col>
  3483. <col name="edition">editable</col>
  3484. <col name="editionparams"></col>
  3485. <col name="editionhooks"></col>
  3486. <col name="weight">0</col>
  3487. <col name="comment"></col>
  3488. <col name="mask"></col>
  3489. <col name="status">32</col>
  3490. <col name="rank">140</col>
  3491. <col name="otx"></col>
  3492. <col name="upd">2011-09-20 23:08:09</col>
  3493. </row>
  3494. <row>
  3495. <col name="id">193</col>
  3496. <col name="name">datepubli</col>
  3497. <col name="idgroup">38</col>
  3498. <col name="class">fichiers</col>
  3499. <col name="title">Date de publication</col>
  3500. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação&lt;/r2r:ml&gt;</col>
  3501. <col name="style"></col>
  3502. <col name="type">date</col>
  3503. <col name="g_name"></col>
  3504. <col name="cond">*</col>
  3505. <col name="defaultvalue">today</col>
  3506. <col name="processing"></col>
  3507. <col name="allowedtags"></col>
  3508. <col name="gui_user_complexity">64</col>
  3509. <col name="filtering"></col>
  3510. <col name="edition">editable</col>
  3511. <col name="editionparams"></col>
  3512. <col name="editionhooks"></col>
  3513. <col name="weight">0</col>
  3514. <col name="comment"></col>
  3515. <col name="mask"></col>
  3516. <col name="status">32</col>
  3517. <col name="rank">141</col>
  3518. <col name="otx"></col>
  3519. <col name="upd">2011-09-20 22:45:58</col>
  3520. </row>
  3521. <row>
  3522. <col name="id">194</col>
  3523. <col name="name">datemisenligne</col>
  3524. <col name="idgroup">41</col>
  3525. <col name="class">textes</col>
  3526. <col name="title">Date de mise en ligne</col>
  3527. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3528. <col name="style"></col>
  3529. <col name="type">date</col>
  3530. <col name="g_name"></col>
  3531. <col name="cond">permanent</col>
  3532. <col name="defaultvalue"></col>
  3533. <col name="processing"></col>
  3534. <col name="allowedtags"></col>
  3535. <col name="gui_user_complexity">16</col>
  3536. <col name="filtering"></col>
  3537. <col name="edition">display</col>
  3538. <col name="editionparams"></col>
  3539. <col name="editionhooks">updatedatepubli</col>
  3540. <col name="weight">0</col>
  3541. <col name="comment"></col>
  3542. <col name="mask"></col>
  3543. <col name="status">32</col>
  3544. <col name="rank">1</col>
  3545. <col name="otx"></col>
  3546. <col name="upd">2013-07-26 11:45:38</col>
  3547. </row>
  3548. <row>
  3549. <col name="id">195</col>
  3550. <col name="name">dateacceslibre</col>
  3551. <col name="idgroup">41</col>
  3552. <col name="class">textes</col>
  3553. <col name="title">Date de mise en accès libre</col>
  3554. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de disponibilidad en acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3555. <col name="style"></col>
  3556. <col name="type">date</col>
  3557. <col name="g_name"></col>
  3558. <col name="cond">*</col>
  3559. <col name="defaultvalue"></col>
  3560. <col name="processing"></col>
  3561. <col name="allowedtags"></col>
  3562. <col name="gui_user_complexity">16</col>
  3563. <col name="filtering"></col>
  3564. <col name="edition">none</col>
  3565. <col name="editionparams"></col>
  3566. <col name="editionhooks"></col>
  3567. <col name="weight">0</col>
  3568. <col name="comment"></col>
  3569. <col name="mask"></col>
  3570. <col name="status">32</col>
  3571. <col name="rank">2</col>
  3572. <col name="otx"></col>
  3573. <col name="upd">2015-06-26 11:50:17</col>
  3574. </row>
  3575. <row>
  3576. <col name="id">196</col>
  3577. <col name="name">datemisenligne</col>
  3578. <col name="idgroup">42</col>
  3579. <col name="class">publications</col>
  3580. <col name="title">Date de mise en ligne</col>
  3581. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3582. <col name="style"></col>
  3583. <col name="type">date</col>
  3584. <col name="g_name"></col>
  3585. <col name="cond">permanent</col>
  3586. <col name="defaultvalue"></col>
  3587. <col name="processing"></col>
  3588. <col name="allowedtags"></col>
  3589. <col name="gui_user_complexity">16</col>
  3590. <col name="filtering"></col>
  3591. <col name="edition">display</col>
  3592. <col name="editionparams"></col>
  3593. <col name="editionhooks">updatedatepubli</col>
  3594. <col name="weight">0</col>
  3595. <col name="comment"></col>
  3596. <col name="mask"></col>
  3597. <col name="status">32</col>
  3598. <col name="rank">1</col>
  3599. <col name="otx"></col>
  3600. <col name="upd">2013-07-26 11:45:38</col>
  3601. </row>
  3602. <row>
  3603. <col name="id">197</col>
  3604. <col name="name">dateacceslibre</col>
  3605. <col name="idgroup">42</col>
  3606. <col name="class">publications</col>
  3607. <col name="title">Date de mise en accès libre</col>
  3608. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de disponibilidad en acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3609. <col name="style"></col>
  3610. <col name="type">date</col>
  3611. <col name="g_name"></col>
  3612. <col name="cond">*</col>
  3613. <col name="defaultvalue"></col>
  3614. <col name="processing"></col>
  3615. <col name="allowedtags"></col>
  3616. <col name="gui_user_complexity">16</col>
  3617. <col name="filtering"></col>
  3618. <col name="edition">none</col>
  3619. <col name="editionparams"></col>
  3620. <col name="editionhooks"></col>
  3621. <col name="weight">0</col>
  3622. <col name="comment"></col>
  3623. <col name="mask"></col>
  3624. <col name="status">32</col>
  3625. <col name="rank">2</col>
  3626. <col name="otx"></col>
  3627. <col name="upd">2015-06-26 11:49:38</col>
  3628. </row>
  3629. <row>
  3630. <col name="id">198</col>
  3631. <col name="name">datemisenligne</col>
  3632. <col name="idgroup">44</col>
  3633. <col name="class">fichiers</col>
  3634. <col name="title">Date de mise en ligne</col>
  3635. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3636. <col name="style"></col>
  3637. <col name="type">date</col>
  3638. <col name="g_name"></col>
  3639. <col name="cond">permanent</col>
  3640. <col name="defaultvalue"></col>
  3641. <col name="processing"></col>
  3642. <col name="allowedtags"></col>
  3643. <col name="gui_user_complexity">16</col>
  3644. <col name="filtering"></col>
  3645. <col name="edition">display</col>
  3646. <col name="editionparams"></col>
  3647. <col name="editionhooks">updatedatepubli</col>
  3648. <col name="weight">0</col>
  3649. <col name="comment"></col>
  3650. <col name="mask"></col>
  3651. <col name="status">32</col>
  3652. <col name="rank">1</col>
  3653. <col name="otx"></col>
  3654. <col name="upd">2013-07-26 11:45:38</col>
  3655. </row>
  3656. <row>
  3657. <col name="id">199</col>
  3658. <col name="name">dateacceslibre</col>
  3659. <col name="idgroup">44</col>
  3660. <col name="class">fichiers</col>
  3661. <col name="title">Date de mise en accès libre</col>
  3662. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de disponibilidad en acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3663. <col name="style"></col>
  3664. <col name="type">date</col>
  3665. <col name="g_name"></col>
  3666. <col name="cond">*</col>
  3667. <col name="defaultvalue"></col>
  3668. <col name="processing"></col>
  3669. <col name="allowedtags"></col>
  3670. <col name="gui_user_complexity">16</col>
  3671. <col name="filtering"></col>
  3672. <col name="edition">none</col>
  3673. <col name="editionparams"></col>
  3674. <col name="editionhooks"></col>
  3675. <col name="weight">0</col>
  3676. <col name="comment"></col>
  3677. <col name="mask"></col>
  3678. <col name="status">32</col>
  3679. <col name="rank">2</col>
  3680. <col name="otx"></col>
  3681. <col name="upd">2015-06-26 11:53:14</col>
  3682. </row>
  3683. <row>
  3684. <col name="id">200</col>
  3685. <col name="name">datemisenligne</col>
  3686. <col name="idgroup">45</col>
  3687. <col name="class">liens</col>
  3688. <col name="title">Date de mise en ligne</col>
  3689. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3690. <col name="style"></col>
  3691. <col name="type">date</col>
  3692. <col name="g_name"></col>
  3693. <col name="cond">permanent</col>
  3694. <col name="defaultvalue"></col>
  3695. <col name="processing"></col>
  3696. <col name="allowedtags"></col>
  3697. <col name="gui_user_complexity">16</col>
  3698. <col name="filtering"></col>
  3699. <col name="edition">display</col>
  3700. <col name="editionparams"></col>
  3701. <col name="editionhooks">updatedatepubli</col>
  3702. <col name="weight">0</col>
  3703. <col name="comment"></col>
  3704. <col name="mask"></col>
  3705. <col name="status">32</col>
  3706. <col name="rank">1</col>
  3707. <col name="otx"></col>
  3708. <col name="upd">2013-07-26 11:45:38</col>
  3709. </row>
  3710. <row>
  3711. <col name="id">201</col>
  3712. <col name="name">dateacceslibre</col>
  3713. <col name="idgroup">45</col>
  3714. <col name="class">liens</col>
  3715. <col name="title">Date de mise en accès libre</col>
  3716. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de disponibilidad en acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3717. <col name="style"></col>
  3718. <col name="type">date</col>
  3719. <col name="g_name"></col>
  3720. <col name="cond">*</col>
  3721. <col name="defaultvalue"></col>
  3722. <col name="processing"></col>
  3723. <col name="allowedtags"></col>
  3724. <col name="gui_user_complexity">16</col>
  3725. <col name="filtering"></col>
  3726. <col name="edition">none</col>
  3727. <col name="editionparams"></col>
  3728. <col name="editionhooks"></col>
  3729. <col name="weight">0</col>
  3730. <col name="comment"></col>
  3731. <col name="mask"></col>
  3732. <col name="status">32</col>
  3733. <col name="rank">2</col>
  3734. <col name="otx"></col>
  3735. <col name="upd">2015-06-26 11:53:52</col>
  3736. </row>
  3737. <row>
  3738. <col name="id">202</col>
  3739. <col name="name">datemisenligne</col>
  3740. <col name="idgroup">46</col>
  3741. <col name="class">textessimples</col>
  3742. <col name="title">Date de mise en ligne</col>
  3743. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3744. <col name="style"></col>
  3745. <col name="type">date</col>
  3746. <col name="g_name"></col>
  3747. <col name="cond">permanent</col>
  3748. <col name="defaultvalue"></col>
  3749. <col name="processing"></col>
  3750. <col name="allowedtags"></col>
  3751. <col name="gui_user_complexity">16</col>
  3752. <col name="filtering"></col>
  3753. <col name="edition">display</col>
  3754. <col name="editionparams"></col>
  3755. <col name="editionhooks">updatedatepubli</col>
  3756. <col name="weight">0</col>
  3757. <col name="comment"></col>
  3758. <col name="mask"></col>
  3759. <col name="status">32</col>
  3760. <col name="rank">1</col>
  3761. <col name="otx"></col>
  3762. <col name="upd">2013-07-26 11:45:38</col>
  3763. </row>
  3764. <row>
  3765. <col name="id">203</col>
  3766. <col name="name">dateacceslibre</col>
  3767. <col name="idgroup">46</col>
  3768. <col name="class">textessimples</col>
  3769. <col name="title">Date de mise en accès libre</col>
  3770. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de disponibilidad en acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3771. <col name="style"></col>
  3772. <col name="type">date</col>
  3773. <col name="g_name"></col>
  3774. <col name="cond">*</col>
  3775. <col name="defaultvalue"></col>
  3776. <col name="processing"></col>
  3777. <col name="allowedtags"></col>
  3778. <col name="gui_user_complexity">16</col>
  3779. <col name="filtering"></col>
  3780. <col name="edition">none</col>
  3781. <col name="editionparams"></col>
  3782. <col name="editionhooks"></col>
  3783. <col name="weight">0</col>
  3784. <col name="comment"></col>
  3785. <col name="mask"></col>
  3786. <col name="status">32</col>
  3787. <col name="rank">2</col>
  3788. <col name="otx"></col>
  3789. <col name="upd">2015-06-26 11:51:05</col>
  3790. </row>
  3791. <row>
  3792. <col name="id">204</col>
  3793. <col name="name">datemisenligne</col>
  3794. <col name="idgroup">47</col>
  3795. <col name="class">individus</col>
  3796. <col name="title">Date de mise en ligne</col>
  3797. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de online&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3798. <col name="style"></col>
  3799. <col name="type">date</col>
  3800. <col name="g_name"></col>
  3801. <col name="cond">permanent</col>
  3802. <col name="defaultvalue"></col>
  3803. <col name="processing"></col>
  3804. <col name="allowedtags"></col>
  3805. <col name="gui_user_complexity">16</col>
  3806. <col name="filtering"></col>
  3807. <col name="edition">display</col>
  3808. <col name="editionparams"></col>
  3809. <col name="editionhooks">updatedatepubli</col>
  3810. <col name="weight">0</col>
  3811. <col name="comment"></col>
  3812. <col name="mask"></col>
  3813. <col name="status">32</col>
  3814. <col name="rank">1</col>
  3815. <col name="otx"></col>
  3816. <col name="upd">2013-07-26 11:45:38</col>
  3817. </row>
  3818. <row>
  3819. <col name="id">205</col>
  3820. <col name="name">dateacceslibre</col>
  3821. <col name="idgroup">47</col>
  3822. <col name="class">individus</col>
  3823. <col name="title">Date de mise en accès libre</col>
  3824. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fecha de acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3825. <col name="style"></col>
  3826. <col name="type">date</col>
  3827. <col name="g_name"></col>
  3828. <col name="cond">*</col>
  3829. <col name="defaultvalue"></col>
  3830. <col name="processing"></col>
  3831. <col name="allowedtags"></col>
  3832. <col name="gui_user_complexity">16</col>
  3833. <col name="filtering"></col>
  3834. <col name="edition">none</col>
  3835. <col name="editionparams"></col>
  3836. <col name="editionhooks"></col>
  3837. <col name="weight">0</col>
  3838. <col name="comment"></col>
  3839. <col name="mask"></col>
  3840. <col name="status">32</col>
  3841. <col name="rank">2</col>
  3842. <col name="otx"></col>
  3843. <col name="upd">2015-06-26 11:51:46</col>
  3844. </row>
  3845. <row>
  3846. <col name="id">206</col>
  3847. <col name="name">datemisenligne</col>
  3848. <col name="idgroup">51</col>
  3849. <col name="class">fichiersexternes</col>
  3850. <col name="title">Date de mise en ligne</col>
  3851. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fecha de publicación online&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Published online since&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de colocação online&lt;/r2r:ml&gt;</col>
  3852. <col name="style"></col>
  3853. <col name="type">date</col>
  3854. <col name="g_name"></col>
  3855. <col name="cond">permanent</col>
  3856. <col name="defaultvalue"></col>
  3857. <col name="processing"></col>
  3858. <col name="allowedtags"></col>
  3859. <col name="gui_user_complexity">16</col>
  3860. <col name="filtering"></col>
  3861. <col name="edition">display</col>
  3862. <col name="editionparams"></col>
  3863. <col name="editionhooks">updatedatepubli</col>
  3864. <col name="weight">0</col>
  3865. <col name="comment"></col>
  3866. <col name="mask"></col>
  3867. <col name="status">1</col>
  3868. <col name="rank">1</col>
  3869. <col name="otx"></col>
  3870. <col name="upd">2013-07-26 11:45:38</col>
  3871. </row>
  3872. <row>
  3873. <col name="id">207</col>
  3874. <col name="name">dateacceslibre</col>
  3875. <col name="idgroup">51</col>
  3876. <col name="class">fichiersexternes</col>
  3877. <col name="title">Date de mise en accès libre</col>
  3878. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fecha de disponibilidad en acceso abierto&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Available in open access since&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Data de publicação em acesso livre&lt;/r2r:ml&gt;</col>
  3879. <col name="style"></col>
  3880. <col name="type">date</col>
  3881. <col name="g_name"></col>
  3882. <col name="cond">*</col>
  3883. <col name="defaultvalue"></col>
  3884. <col name="processing"></col>
  3885. <col name="allowedtags"></col>
  3886. <col name="gui_user_complexity">16</col>
  3887. <col name="filtering"></col>
  3888. <col name="edition">none</col>
  3889. <col name="editionparams"></col>
  3890. <col name="editionhooks"></col>
  3891. <col name="weight">0</col>
  3892. <col name="comment"></col>
  3893. <col name="mask"></col>
  3894. <col name="status">32</col>
  3895. <col name="rank">2</col>
  3896. <col name="otx"></col>
  3897. <col name="upd">2015-06-26 11:54:56</col>
  3898. </row>
  3899. <row>
  3900. <col name="id">208</col>
  3901. <col name="name">motsclespt</col>
  3902. <col name="idgroup">15</col>
  3903. <col name="class">textes</col>
  3904. <col name="title">Palavras chaves</col>
  3905. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Palavras chaves&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Palavras chaves&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Palavras chaves&lt;/r2r:ml&gt;</col>
  3906. <col name="style"></col>
  3907. <col name="type">entries</col>
  3908. <col name="g_name"></col>
  3909. <col name="cond"></col>
  3910. <col name="defaultvalue"></col>
  3911. <col name="processing"></col>
  3912. <col name="allowedtags"></col>
  3913. <col name="gui_user_complexity">64</col>
  3914. <col name="filtering"></col>
  3915. <col name="edition">importable</col>
  3916. <col name="editionparams"></col>
  3917. <col name="editionhooks"></col>
  3918. <col name="weight">0</col>
  3919. <col name="comment"></col>
  3920. <col name="mask"></col>
  3921. <col name="status">1</col>
  3922. <col name="rank">5</col>
  3923. <col name="otx"></col>
  3924. <col name="upd">2015-03-05 14:32:45</col>
  3925. </row>
  3926. <row>
  3927. <col name="id">209</col>
  3928. <col name="name">titre</col>
  3929. <col name="idgroup">0</col>
  3930. <col name="class">collections</col>
  3931. <col name="title">Titre</col>
  3932. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título&lt;/r2r:ml&gt;</col>
  3933. <col name="style"></col>
  3934. <col name="type">tinytext</col>
  3935. <col name="g_name">index key</col>
  3936. <col name="cond">*</col>
  3937. <col name="defaultvalue"></col>
  3938. <col name="processing"></col>
  3939. <col name="allowedtags"></col>
  3940. <col name="gui_user_complexity">64</col>
  3941. <col name="filtering"></col>
  3942. <col name="edition">editable</col>
  3943. <col name="editionparams"></col>
  3944. <col name="editionhooks"></col>
  3945. <col name="weight">0</col>
  3946. <col name="comment"></col>
  3947. <col name="mask"></col>
  3948. <col name="status">1</col>
  3949. <col name="rank">143</col>
  3950. <col name="otx"></col>
  3951. <col name="upd">2011-10-27 09:47:16</col>
  3952. </row>
  3953. <row>
  3954. <col name="id">210</col>
  3955. <col name="name">soustitre</col>
  3956. <col name="idgroup">0</col>
  3957. <col name="class">collections</col>
  3958. <col name="title">Sous-titre</col>
  3959. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Subtitle&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Subtítulo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Subtítulo&lt;/r2r:ml&gt;</col>
  3960. <col name="style"></col>
  3961. <col name="type">tinytext</col>
  3962. <col name="g_name"></col>
  3963. <col name="cond">*</col>
  3964. <col name="defaultvalue"></col>
  3965. <col name="processing"></col>
  3966. <col name="allowedtags"></col>
  3967. <col name="gui_user_complexity">64</col>
  3968. <col name="filtering"></col>
  3969. <col name="edition">editable</col>
  3970. <col name="editionparams"></col>
  3971. <col name="editionhooks"></col>
  3972. <col name="weight">0</col>
  3973. <col name="comment"></col>
  3974. <col name="mask"></col>
  3975. <col name="status">1</col>
  3976. <col name="rank">144</col>
  3977. <col name="otx"></col>
  3978. <col name="upd">2011-10-27 09:48:07</col>
  3979. </row>
  3980. <row>
  3981. <col name="id">211</col>
  3982. <col name="name">issn</col>
  3983. <col name="idgroup">0</col>
  3984. <col name="class">collections</col>
  3985. <col name="title">ISSN</col>
  3986. <col name="altertitle">&lt;r2r:ml lang="en"&gt;ISSN&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;ISSN&lt;/r2r:ml&gt;&lt;r2r:ml lang="fr"&gt;ISSN&lt;/r2r:ml&gt;</col>
  3987. <col name="style"></col>
  3988. <col name="type">tinytext</col>
  3989. <col name="g_name"></col>
  3990. <col name="cond">*</col>
  3991. <col name="defaultvalue"></col>
  3992. <col name="processing"></col>
  3993. <col name="allowedtags"></col>
  3994. <col name="gui_user_complexity">64</col>
  3995. <col name="filtering"></col>
  3996. <col name="edition">editable</col>
  3997. <col name="editionparams"></col>
  3998. <col name="editionhooks"></col>
  3999. <col name="weight">0</col>
  4000. <col name="comment"></col>
  4001. <col name="mask"></col>
  4002. <col name="status">1</col>
  4003. <col name="rank">145</col>
  4004. <col name="otx"></col>
  4005. <col name="upd">2011-10-27 09:49:16</col>
  4006. </row>
  4007. <row>
  4008. <col name="id">212</col>
  4009. <col name="name">issnelectronique</col>
  4010. <col name="idgroup">0</col>
  4011. <col name="class">collections</col>
  4012. <col name="title">ISSN électronique</col>
  4013. <col name="altertitle">&lt;r2r:ml lang="en"&gt;e-ISSN&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;ISSN de la edición electrónica&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;ISSN electrónico&lt;/r2r:ml&gt;</col>
  4014. <col name="style"></col>
  4015. <col name="type">tinytext</col>
  4016. <col name="g_name"></col>
  4017. <col name="cond">*</col>
  4018. <col name="defaultvalue"></col>
  4019. <col name="processing"></col>
  4020. <col name="allowedtags"></col>
  4021. <col name="gui_user_complexity">64</col>
  4022. <col name="filtering"></col>
  4023. <col name="edition">display</col>
  4024. <col name="editionparams"></col>
  4025. <col name="editionhooks"></col>
  4026. <col name="weight">0</col>
  4027. <col name="comment"></col>
  4028. <col name="mask"></col>
  4029. <col name="status">1</col>
  4030. <col name="rank">146</col>
  4031. <col name="otx"></col>
  4032. <col name="upd">2011-10-27 09:51:06</col>
  4033. </row>
  4034. <row>
  4035. <col name="id">213</col>
  4036. <col name="name">Collection</col>
  4037. <col name="idgroup">12</col>
  4038. <col name="class">publications</col>
  4039. <col name="title">Collection</col>
  4040. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Collection&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Colección&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coleção&lt;/r2r:ml&gt;</col>
  4041. <col name="style"></col>
  4042. <col name="type">entries</col>
  4043. <col name="g_name"></col>
  4044. <col name="cond"></col>
  4045. <col name="defaultvalue"></col>
  4046. <col name="processing"></col>
  4047. <col name="allowedtags"></col>
  4048. <col name="gui_user_complexity">64</col>
  4049. <col name="filtering"></col>
  4050. <col name="edition">none</col>
  4051. <col name="editionparams"></col>
  4052. <col name="editionhooks"></col>
  4053. <col name="weight">0</col>
  4054. <col name="comment"></col>
  4055. <col name="mask"></col>
  4056. <col name="status">1</col>
  4057. <col name="rank">147</col>
  4058. <col name="otx"></col>
  4059. <col name="upd">2011-10-27 09:55:45</col>
  4060. </row>
  4061. <row>
  4062. <col name="id">214</col>
  4063. <col name="name">motsclesfr</col>
  4064. <col name="idgroup">52</col>
  4065. <col name="class">publications</col>
  4066. <col name="title">Mots-clés</col>
  4067. <col name="altertitle"></col>
  4068. <col name="style"></col>
  4069. <col name="type">entries</col>
  4070. <col name="g_name"></col>
  4071. <col name="cond"></col>
  4072. <col name="defaultvalue"></col>
  4073. <col name="processing"></col>
  4074. <col name="allowedtags"></col>
  4075. <col name="gui_user_complexity">64</col>
  4076. <col name="filtering"></col>
  4077. <col name="edition">editable</col>
  4078. <col name="editionparams"></col>
  4079. <col name="editionhooks"></col>
  4080. <col name="weight">0</col>
  4081. <col name="comment"></col>
  4082. <col name="mask"></col>
  4083. <col name="status">1</col>
  4084. <col name="rank">1</col>
  4085. <col name="otx"></col>
  4086. <col name="upd">2015-03-05 14:28:03</col>
  4087. </row>
  4088. <row>
  4089. <col name="id">215</col>
  4090. <col name="name">motsclesen</col>
  4091. <col name="idgroup">52</col>
  4092. <col name="class">publications</col>
  4093. <col name="title">Keywords</col>
  4094. <col name="altertitle"></col>
  4095. <col name="style"></col>
  4096. <col name="type">entries</col>
  4097. <col name="g_name"></col>
  4098. <col name="cond"></col>
  4099. <col name="defaultvalue"></col>
  4100. <col name="processing"></col>
  4101. <col name="allowedtags"></col>
  4102. <col name="gui_user_complexity">64</col>
  4103. <col name="filtering"></col>
  4104. <col name="edition">editable</col>
  4105. <col name="editionparams"></col>
  4106. <col name="editionhooks"></col>
  4107. <col name="weight">0</col>
  4108. <col name="comment"></col>
  4109. <col name="mask"></col>
  4110. <col name="status">1</col>
  4111. <col name="rank">2</col>
  4112. <col name="otx"></col>
  4113. <col name="upd">2015-03-05 14:28:03</col>
  4114. </row>
  4115. <row>
  4116. <col name="id">216</col>
  4117. <col name="name">motsclesde</col>
  4118. <col name="idgroup">52</col>
  4119. <col name="class">publications</col>
  4120. <col name="title">Schlagwortindex</col>
  4121. <col name="altertitle"></col>
  4122. <col name="style"></col>
  4123. <col name="type">entries</col>
  4124. <col name="g_name"></col>
  4125. <col name="cond"></col>
  4126. <col name="defaultvalue"></col>
  4127. <col name="processing"></col>
  4128. <col name="allowedtags"></col>
  4129. <col name="gui_user_complexity">64</col>
  4130. <col name="filtering"></col>
  4131. <col name="edition">editable</col>
  4132. <col name="editionparams"></col>
  4133. <col name="editionhooks"></col>
  4134. <col name="weight">0</col>
  4135. <col name="comment"></col>
  4136. <col name="mask"></col>
  4137. <col name="status">1</col>
  4138. <col name="rank">3</col>
  4139. <col name="otx"></col>
  4140. <col name="upd">2015-03-05 14:28:03</col>
  4141. </row>
  4142. <row>
  4143. <col name="id">217</col>
  4144. <col name="name">motscleses</col>
  4145. <col name="idgroup">52</col>
  4146. <col name="class">publications</col>
  4147. <col name="title">Palabras claves</col>
  4148. <col name="altertitle"></col>
  4149. <col name="style"></col>
  4150. <col name="type">entries</col>
  4151. <col name="g_name"></col>
  4152. <col name="cond"></col>
  4153. <col name="defaultvalue"></col>
  4154. <col name="processing"></col>
  4155. <col name="allowedtags"></col>
  4156. <col name="gui_user_complexity">64</col>
  4157. <col name="filtering"></col>
  4158. <col name="edition">editable</col>
  4159. <col name="editionparams"></col>
  4160. <col name="editionhooks"></col>
  4161. <col name="weight">0</col>
  4162. <col name="comment"></col>
  4163. <col name="mask"></col>
  4164. <col name="status">1</col>
  4165. <col name="rank">4</col>
  4166. <col name="otx"></col>
  4167. <col name="upd">2015-03-05 14:28:03</col>
  4168. </row>
  4169. <row>
  4170. <col name="id">218</col>
  4171. <col name="name">motsclespt</col>
  4172. <col name="idgroup">52</col>
  4173. <col name="class">publications</col>
  4174. <col name="title">Palavras chaves</col>
  4175. <col name="altertitle"></col>
  4176. <col name="style"></col>
  4177. <col name="type">entries</col>
  4178. <col name="g_name"></col>
  4179. <col name="cond"></col>
  4180. <col name="defaultvalue"></col>
  4181. <col name="processing"></col>
  4182. <col name="allowedtags"></col>
  4183. <col name="gui_user_complexity">64</col>
  4184. <col name="filtering"></col>
  4185. <col name="edition">editable</col>
  4186. <col name="editionparams"></col>
  4187. <col name="editionhooks"></col>
  4188. <col name="weight">0</col>
  4189. <col name="comment"></col>
  4190. <col name="mask"></col>
  4191. <col name="status">1</col>
  4192. <col name="rank">5</col>
  4193. <col name="otx"></col>
  4194. <col name="upd">2015-03-05 14:28:03</col>
  4195. </row>
  4196. <row>
  4197. <col name="id">219</col>
  4198. <col name="name">theme</col>
  4199. <col name="idgroup">52</col>
  4200. <col name="class">publications</col>
  4201. <col name="title">Index thématique</col>
  4202. <col name="altertitle"></col>
  4203. <col name="style"></col>
  4204. <col name="type">entries</col>
  4205. <col name="g_name"></col>
  4206. <col name="cond"></col>
  4207. <col name="defaultvalue"></col>
  4208. <col name="processing"></col>
  4209. <col name="allowedtags"></col>
  4210. <col name="gui_user_complexity">64</col>
  4211. <col name="filtering"></col>
  4212. <col name="edition">editable</col>
  4213. <col name="editionparams"></col>
  4214. <col name="editionhooks"></col>
  4215. <col name="weight">0</col>
  4216. <col name="comment"></col>
  4217. <col name="mask"></col>
  4218. <col name="status">1</col>
  4219. <col name="rank">7</col>
  4220. <col name="otx"></col>
  4221. <col name="upd">2015-03-05 14:28:08</col>
  4222. </row>
  4223. <row>
  4224. <col name="id">220</col>
  4225. <col name="name">geographie</col>
  4226. <col name="idgroup">52</col>
  4227. <col name="class">publications</col>
  4228. <col name="title">Index géographique</col>
  4229. <col name="altertitle"></col>
  4230. <col name="style"></col>
  4231. <col name="type">entries</col>
  4232. <col name="g_name"></col>
  4233. <col name="cond"></col>
  4234. <col name="defaultvalue"></col>
  4235. <col name="processing"></col>
  4236. <col name="allowedtags"></col>
  4237. <col name="gui_user_complexity">64</col>
  4238. <col name="filtering"></col>
  4239. <col name="edition">editable</col>
  4240. <col name="editionparams"></col>
  4241. <col name="editionhooks"></col>
  4242. <col name="weight">0</col>
  4243. <col name="comment"></col>
  4244. <col name="mask"></col>
  4245. <col name="status">1</col>
  4246. <col name="rank">9</col>
  4247. <col name="otx"></col>
  4248. <col name="upd">2015-03-05 14:28:08</col>
  4249. </row>
  4250. <row>
  4251. <col name="id">221</col>
  4252. <col name="name">vignette</col>
  4253. <col name="idgroup">36</col>
  4254. <col name="class">liens</col>
  4255. <col name="title">Vignette</col>
  4256. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Viñeta&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Small image&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem miniatura&lt;/r2r:ml&gt;</col>
  4257. <col name="style"></col>
  4258. <col name="type">image</col>
  4259. <col name="g_name"></col>
  4260. <col name="cond">*</col>
  4261. <col name="defaultvalue"></col>
  4262. <col name="processing"></col>
  4263. <col name="allowedtags"></col>
  4264. <col name="gui_user_complexity">64</col>
  4265. <col name="filtering"></col>
  4266. <col name="edition">editable</col>
  4267. <col name="editionparams"></col>
  4268. <col name="editionhooks"></col>
  4269. <col name="weight">0</col>
  4270. <col name="comment"></col>
  4271. <col name="mask"></col>
  4272. <col name="status">1</col>
  4273. <col name="rank">155</col>
  4274. <col name="otx"></col>
  4275. <col name="upd">2012-02-01 10:22:52</col>
  4276. </row>
  4277. <row>
  4278. <col name="id">222</col>
  4279. <col name="name">vignettesimple</col>
  4280. <col name="idgroup">16</col>
  4281. <col name="class">textes</col>
  4282. <col name="title">Vignettisation simple</col>
  4283. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Simple thumbnail&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem miniatura simples&lt;/r2r:ml&gt;</col>
  4284. <col name="style"></col>
  4285. <col name="type">boolean</col>
  4286. <col name="g_name"></col>
  4287. <col name="cond">*</col>
  4288. <col name="defaultvalue"></col>
  4289. <col name="processing"></col>
  4290. <col name="allowedtags"></col>
  4291. <col name="gui_user_complexity">64</col>
  4292. <col name="filtering"></col>
  4293. <col name="edition">editable</col>
  4294. <col name="editionparams"></col>
  4295. <col name="editionhooks"></col>
  4296. <col name="weight">0</col>
  4297. <col name="comment"></col>
  4298. <col name="mask"></col>
  4299. <col name="status">1</col>
  4300. <col name="rank">156</col>
  4301. <col name="otx"></col>
  4302. <col name="upd">2012-02-23 16:54:19</col>
  4303. </row>
  4304. <row>
  4305. <col name="id">223</col>
  4306. <col name="name">rss</col>
  4307. <col name="idgroup">11</col>
  4308. <col name="class">publications</col>
  4309. <col name="title">Afficher un flux RSS pour cette publication</col>
  4310. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Display RSS feed for this publication&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Visualizar um feeds RSS para essa publicação&lt;/r2r:ml&gt;</col>
  4311. <col name="style"></col>
  4312. <col name="type">boolean</col>
  4313. <col name="g_name"></col>
  4314. <col name="cond">*</col>
  4315. <col name="defaultvalue"></col>
  4316. <col name="processing"></col>
  4317. <col name="allowedtags"></col>
  4318. <col name="gui_user_complexity">32</col>
  4319. <col name="filtering"></col>
  4320. <col name="edition">none</col>
  4321. <col name="editionparams"></col>
  4322. <col name="editionhooks"></col>
  4323. <col name="weight">0</col>
  4324. <col name="comment"></col>
  4325. <col name="mask"></col>
  4326. <col name="status">1</col>
  4327. <col name="rank">157</col>
  4328. <col name="otx"></col>
  4329. <col name="upd">2015-06-26 11:40:19</col>
  4330. </row>
  4331. <row>
  4332. <col name="id">224</col>
  4333. <col name="name">remerciements</col>
  4334. <col name="idgroup">34</col>
  4335. <col name="class">textes</col>
  4336. <col name="title">Remerciements</col>
  4337. <col name="altertitle"></col>
  4338. <col name="style">remerciements,acknowledgments,acknowledgements,agradecimientos</col>
  4339. <col name="type">text</col>
  4340. <col name="g_name"></col>
  4341. <col name="cond">*</col>
  4342. <col name="defaultvalue"></col>
  4343. <col name="processing"></col>
  4344. <col name="allowedtags">xhtml:fontstyle;xhtml:phrase;xhtml:special;xhtml:block;Lien;Appel de Note;style:strict</col>
  4345. <col name="gui_user_complexity">64</col>
  4346. <col name="filtering"></col>
  4347. <col name="edition">importable</col>
  4348. <col name="editionparams"></col>
  4349. <col name="editionhooks"></col>
  4350. <col name="weight">2</col>
  4351. <col name="comment"></col>
  4352. <col name="mask"></col>
  4353. <col name="status">1</col>
  4354. <col name="rank">158</col>
  4355. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='ack']/tei:p</col>
  4356. <col name="upd">2013-09-06 10:03:21</col>
  4357. </row>
  4358. <row>
  4359. <col name="id">225</col>
  4360. <col name="name">racinemets</col>
  4361. <col name="idgroup">11</col>
  4362. <col name="class">publications</col>
  4363. <col name="title">Racine METS</col>
  4364. <col name="altertitle"></col>
  4365. <col name="style"></col>
  4366. <col name="type">boolean</col>
  4367. <col name="g_name"></col>
  4368. <col name="cond">*</col>
  4369. <col name="defaultvalue"></col>
  4370. <col name="processing"></col>
  4371. <col name="allowedtags"></col>
  4372. <col name="gui_user_complexity">64</col>
  4373. <col name="filtering"></col>
  4374. <col name="edition">none</col>
  4375. <col name="editionparams"></col>
  4376. <col name="editionhooks"></col>
  4377. <col name="weight">0</col>
  4378. <col name="comment"></col>
  4379. <col name="mask"></col>
  4380. <col name="status">1</col>
  4381. <col name="rank">159</col>
  4382. <col name="otx"></col>
  4383. <col name="upd">2015-03-04 16:31:04</col>
  4384. </row>
  4385. <row>
  4386. <col name="id">226</col>
  4387. <col name="name">motsclesit</col>
  4388. <col name="idgroup">52</col>
  4389. <col name="class">publications</col>
  4390. <col name="title">Parole chiave</col>
  4391. <col name="altertitle"></col>
  4392. <col name="style"></col>
  4393. <col name="type">entries</col>
  4394. <col name="g_name"></col>
  4395. <col name="cond"></col>
  4396. <col name="defaultvalue"></col>
  4397. <col name="processing"></col>
  4398. <col name="allowedtags"></col>
  4399. <col name="gui_user_complexity">64</col>
  4400. <col name="filtering"></col>
  4401. <col name="edition">editable</col>
  4402. <col name="editionparams"></col>
  4403. <col name="editionhooks"></col>
  4404. <col name="weight">0</col>
  4405. <col name="comment"></col>
  4406. <col name="mask"></col>
  4407. <col name="status">1</col>
  4408. <col name="rank">6</col>
  4409. <col name="otx"></col>
  4410. <col name="upd">2015-03-05 14:28:08</col>
  4411. </row>
  4412. <row>
  4413. <col name="id">227</col>
  4414. <col name="name">chrono</col>
  4415. <col name="idgroup">52</col>
  4416. <col name="class">publications</col>
  4417. <col name="title">Index chronologique</col>
  4418. <col name="altertitle"></col>
  4419. <col name="style"></col>
  4420. <col name="type">entries</col>
  4421. <col name="g_name"></col>
  4422. <col name="cond"></col>
  4423. <col name="defaultvalue"></col>
  4424. <col name="processing"></col>
  4425. <col name="allowedtags"></col>
  4426. <col name="gui_user_complexity">64</col>
  4427. <col name="filtering"></col>
  4428. <col name="edition">editable</col>
  4429. <col name="editionparams"></col>
  4430. <col name="editionhooks"></col>
  4431. <col name="weight">0</col>
  4432. <col name="comment"></col>
  4433. <col name="mask"></col>
  4434. <col name="status">1</col>
  4435. <col name="rank">160</col>
  4436. <col name="otx"></col>
  4437. <col name="upd">2015-03-05 14:28:49</col>
  4438. </row>
  4439. <row>
  4440. <col name="id">228</col>
  4441. <col name="name">motsclesit</col>
  4442. <col name="idgroup">15</col>
  4443. <col name="class">textes</col>
  4444. <col name="title">Parole chiave</col>
  4445. <col name="altertitle"></col>
  4446. <col name="style"></col>
  4447. <col name="type">entries</col>
  4448. <col name="g_name"></col>
  4449. <col name="cond"></col>
  4450. <col name="defaultvalue"></col>
  4451. <col name="processing"></col>
  4452. <col name="allowedtags"></col>
  4453. <col name="gui_user_complexity">64</col>
  4454. <col name="filtering"></col>
  4455. <col name="edition">importable</col>
  4456. <col name="editionparams"></col>
  4457. <col name="editionhooks"></col>
  4458. <col name="weight">0</col>
  4459. <col name="comment"></col>
  4460. <col name="mask"></col>
  4461. <col name="status">1</col>
  4462. <col name="rank">6</col>
  4463. <col name="otx"></col>
  4464. <col name="upd">2015-03-05 14:32:53</col>
  4465. </row>
  4466. </datas>
  4467. </table>
  4468. <table name="#_TP_tablefieldgroups">
  4469. <structure>
  4470. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  4471. <field name="name">varchar(64) NOT NULL</field>
  4472. <field name="class">varchar(64) NOT NULL</field>
  4473. <field name="title">tinytext NOT NULL</field>
  4474. <field name="altertitle">text NOT NULL</field>
  4475. <field name="comment">text NOT NULL</field>
  4476. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  4477. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  4478. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  4479. <field name="PRIMARY_9" key="1">(`id`)</field>
  4480. <field name="UNIQUE_10" key="1">`name` (`name`,`class`)</field>
  4481. <field name="KEY_11" key="1">`index_name` (`name`)</field>
  4482. <field name="KEY_12" key="1">`index_class` (`class`)</field>
  4483. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=54 DEFAULT CHARSET=utf8</field>
  4484. </structure>
  4485. <datas>
  4486. <row>
  4487. <col name="id">31</col>
  4488. <col name="name">grtitre</col>
  4489. <col name="class">textes</col>
  4490. <col name="title">Titres</col>
  4491. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Titles&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Títulos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Títulos&lt;/r2r:ml&gt;</col>
  4492. <col name="comment"></col>
  4493. <col name="status">1</col>
  4494. <col name="rank">1</col>
  4495. <col name="upd">2011-09-21 11:59:46</col>
  4496. </row>
  4497. <row>
  4498. <col name="id">32</col>
  4499. <col name="name">grtexte</col>
  4500. <col name="class">textes</col>
  4501. <col name="title">Texte</col>
  4502. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Text&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Texto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Texto&lt;/r2r:ml&gt;</col>
  4503. <col name="comment"></col>
  4504. <col name="status">1</col>
  4505. <col name="rank">11</col>
  4506. <col name="upd">2015-03-04 17:21:00</col>
  4507. </row>
  4508. <row>
  4509. <col name="id">33</col>
  4510. <col name="name">grmeta</col>
  4511. <col name="class">textes</col>
  4512. <col name="title">Métadonnées</col>
  4513. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Metadata&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Metadatos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Metadados&lt;/r2r:ml&gt;</col>
  4514. <col name="comment"></col>
  4515. <col name="status">1</col>
  4516. <col name="rank">2</col>
  4517. <col name="upd">2015-03-04 17:17:44</col>
  4518. </row>
  4519. <row>
  4520. <col name="id">34</col>
  4521. <col name="name">graddenda</col>
  4522. <col name="class">textes</col>
  4523. <col name="title">Addenda</col>
  4524. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Addenda&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Adenda&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Adenda&lt;/r2r:ml&gt;</col>
  4525. <col name="comment"></col>
  4526. <col name="status">1</col>
  4527. <col name="rank">10</col>
  4528. <col name="upd">2015-03-04 17:21:00</col>
  4529. </row>
  4530. <row>
  4531. <col name="id">35</col>
  4532. <col name="name">grtitre</col>
  4533. <col name="class">liens</col>
  4534. <col name="title">Titre</col>
  4535. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Títulos&lt;/r2r:ml&gt;</col>
  4536. <col name="comment"></col>
  4537. <col name="status">1</col>
  4538. <col name="rank">5</col>
  4539. <col name="upd">2011-09-21 12:05:27</col>
  4540. </row>
  4541. <row>
  4542. <col name="id">36</col>
  4543. <col name="name">grsite</col>
  4544. <col name="class">liens</col>
  4545. <col name="title">Description</col>
  4546. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Definição&lt;/r2r:ml&gt;</col>
  4547. <col name="comment"></col>
  4548. <col name="status">1</col>
  4549. <col name="rank">6</col>
  4550. <col name="upd">2011-09-21 12:05:35</col>
  4551. </row>
  4552. <row>
  4553. <col name="id">37</col>
  4554. <col name="name">grtitre</col>
  4555. <col name="class">fichiers</col>
  4556. <col name="title">Titre</col>
  4557. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Títulos&lt;/r2r:ml&gt;</col>
  4558. <col name="comment"></col>
  4559. <col name="status">1</col>
  4560. <col name="rank">7</col>
  4561. <col name="upd">2011-09-21 12:04:20</col>
  4562. </row>
  4563. <row>
  4564. <col name="id">38</col>
  4565. <col name="name">grmultimedia</col>
  4566. <col name="class">fichiers</col>
  4567. <col name="title">Définition</col>
  4568. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Definição&lt;/r2r:ml&gt;</col>
  4569. <col name="comment"></col>
  4570. <col name="status">1</col>
  4571. <col name="rank">8</col>
  4572. <col name="upd">2011-09-21 12:04:30</col>
  4573. </row>
  4574. <row>
  4575. <col name="id">39</col>
  4576. <col name="name">grresumes</col>
  4577. <col name="class">textes</col>
  4578. <col name="title">Résumés</col>
  4579. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Abstracts&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Resumenes&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Resumos&lt;/r2r:ml&gt;</col>
  4580. <col name="comment"></col>
  4581. <col name="status">1</col>
  4582. <col name="rank">8</col>
  4583. <col name="upd">2015-03-04 17:21:00</col>
  4584. </row>
  4585. <row>
  4586. <col name="id">40</col>
  4587. <col name="name">grtitre</col>
  4588. <col name="class">publications</col>
  4589. <col name="title">Groupe de titre</col>
  4590. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title section&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Titulo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Títulos&lt;/r2r:ml&gt;</col>
  4591. <col name="comment"></col>
  4592. <col name="status">32</col>
  4593. <col name="rank">1</col>
  4594. <col name="upd">2011-09-21 11:57:42</col>
  4595. </row>
  4596. <row>
  4597. <col name="id">11</col>
  4598. <col name="name">grgestion</col>
  4599. <col name="class">publications</col>
  4600. <col name="title">Gestion des publications</col>
  4601. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Publishing options&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Opciones de las publicaciones&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Publicações&lt;/r2r:ml&gt;</col>
  4602. <col name="comment"></col>
  4603. <col name="status">1</col>
  4604. <col name="rank">5</col>
  4605. <col name="upd">2011-10-27 10:14:00</col>
  4606. </row>
  4607. <row>
  4608. <col name="id">12</col>
  4609. <col name="name">grmetadonnees</col>
  4610. <col name="class">publications</col>
  4611. <col name="title">Groupe des métadonnées</col>
  4612. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Metadata section&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Metadatos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Metdados&lt;/r2r:ml&gt;</col>
  4613. <col name="comment"></col>
  4614. <col name="status">32</col>
  4615. <col name="rank">3</col>
  4616. <col name="upd">2011-09-21 11:58:16</col>
  4617. </row>
  4618. <row>
  4619. <col name="id">13</col>
  4620. <col name="name">graddenda</col>
  4621. <col name="class">publications</col>
  4622. <col name="title">Groupe des addenda</col>
  4623. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Addenda section&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Adenda&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Adenda&lt;/r2r:ml&gt;</col>
  4624. <col name="comment"></col>
  4625. <col name="status">32</col>
  4626. <col name="rank">2</col>
  4627. <col name="upd">2011-09-21 11:58:02</col>
  4628. </row>
  4629. <row>
  4630. <col name="id">14</col>
  4631. <col name="name">grpersonnes</col>
  4632. <col name="class">textes</col>
  4633. <col name="title">Auteurs</col>
  4634. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Authors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autores&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autores&lt;/r2r:ml&gt;</col>
  4635. <col name="comment"></col>
  4636. <col name="status">1</col>
  4637. <col name="rank">7</col>
  4638. <col name="upd">2015-03-04 17:21:00</col>
  4639. </row>
  4640. <row>
  4641. <col name="id">15</col>
  4642. <col name="name">grindex</col>
  4643. <col name="class">textes</col>
  4644. <col name="title">Index</col>
  4645. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Indexes&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Indices&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice&lt;/r2r:ml&gt;</col>
  4646. <col name="comment"></col>
  4647. <col name="status">1</col>
  4648. <col name="rank">9</col>
  4649. <col name="upd">2015-03-04 17:21:00</col>
  4650. </row>
  4651. <row>
  4652. <col name="id">16</col>
  4653. <col name="name">grgestion</col>
  4654. <col name="class">textes</col>
  4655. <col name="title">Gestion du document</col>
  4656. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document management&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Gestión del documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Gestão do documento&lt;/r2r:ml&gt;</col>
  4657. <col name="comment"></col>
  4658. <col name="status">1</col>
  4659. <col name="rank">5</col>
  4660. <col name="upd">2015-03-04 17:21:00</col>
  4661. </row>
  4662. <row>
  4663. <col name="id">17</col>
  4664. <col name="name">grrecension</col>
  4665. <col name="class">textes</col>
  4666. <col name="title">Oeuvre commentée (si ce document est un compte-rendu d'oeuvre ou d'ouvrage...)</col>
  4667. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Obra comentada (si el documento es una reseña)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Obra comentada (se este documento é uma recensão de obra)&lt;/r2r:ml&gt;</col>
  4668. <col name="comment"></col>
  4669. <col name="status">1</col>
  4670. <col name="rank">4</col>
  4671. <col name="upd">2015-03-04 17:20:09</col>
  4672. </row>
  4673. <row>
  4674. <col name="id">18</col>
  4675. <col name="name">grtitre</col>
  4676. <col name="class">textessimples</col>
  4677. <col name="title">Titre</col>
  4678. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Título&lt;/r2r:ml&gt;</col>
  4679. <col name="comment"></col>
  4680. <col name="status">1</col>
  4681. <col name="rank">10</col>
  4682. <col name="upd">2011-09-21 12:02:44</col>
  4683. </row>
  4684. <row>
  4685. <col name="id">19</col>
  4686. <col name="name">grtexte</col>
  4687. <col name="class">textessimples</col>
  4688. <col name="title">Texte</col>
  4689. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Text&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Texto&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Texto&lt;/r2r:ml&gt;</col>
  4690. <col name="comment"></col>
  4691. <col name="status">1</col>
  4692. <col name="rank">11</col>
  4693. <col name="upd">2011-09-21 12:02:54</col>
  4694. </row>
  4695. <row>
  4696. <col name="id">24</col>
  4697. <col name="name">grdroits</col>
  4698. <col name="class">fichiers</col>
  4699. <col name="title">Droits</col>
  4700. <col name="altertitle">&lt;r2r:ml lang="en"&gt;License&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Derechos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Direitos&lt;/r2r:ml&gt;</col>
  4701. <col name="comment"></col>
  4702. <col name="status">32</col>
  4703. <col name="rank">16</col>
  4704. <col name="upd">2011-09-21 12:04:42</col>
  4705. </row>
  4706. <row>
  4707. <col name="id">25</col>
  4708. <col name="name">grauteurs</col>
  4709. <col name="class">liens</col>
  4710. <col name="title">Auteurs</col>
  4711. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Authors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autores&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autores&lt;/r2r:ml&gt;</col>
  4712. <col name="comment"></col>
  4713. <col name="status">32</col>
  4714. <col name="rank">17</col>
  4715. <col name="upd">2011-09-21 12:06:10</col>
  4716. </row>
  4717. <row>
  4718. <col name="id">26</col>
  4719. <col name="name">grauteurs</col>
  4720. <col name="class">textessimples</col>
  4721. <col name="title">Auteurs</col>
  4722. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Authors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autores&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autores&lt;/r2r:ml&gt;</col>
  4723. <col name="comment"></col>
  4724. <col name="status">32</col>
  4725. <col name="rank">18</col>
  4726. <col name="upd">2011-09-21 12:03:06</col>
  4727. </row>
  4728. <row>
  4729. <col name="id">28</col>
  4730. <col name="name">grtitre</col>
  4731. <col name="class">individus</col>
  4732. <col name="title">Titre</col>
  4733. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Títulos&lt;/r2r:ml&gt;</col>
  4734. <col name="comment"></col>
  4735. <col name="status">1</col>
  4736. <col name="rank">20</col>
  4737. <col name="upd">2011-09-21 12:03:38</col>
  4738. </row>
  4739. <row>
  4740. <col name="id">30</col>
  4741. <col name="name">grdescription</col>
  4742. <col name="class">individus</col>
  4743. <col name="title">Description</col>
  4744. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Description&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Descrição&lt;/r2r:ml&gt;</col>
  4745. <col name="comment"></col>
  4746. <col name="status">1</col>
  4747. <col name="rank">21</col>
  4748. <col name="upd">2011-09-21 12:03:48</col>
  4749. </row>
  4750. <row>
  4751. <col name="id">41</col>
  4752. <col name="name">grdates</col>
  4753. <col name="class">textes</col>
  4754. <col name="title">Groupe des dates</col>
  4755. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Dates&lt;/r2r:ml&gt;</col>
  4756. <col name="comment"></col>
  4757. <col name="status">32</col>
  4758. <col name="rank">6</col>
  4759. <col name="upd">2015-03-04 17:21:00</col>
  4760. </row>
  4761. <row>
  4762. <col name="id">42</col>
  4763. <col name="name">grdates</col>
  4764. <col name="class">publications</col>
  4765. <col name="title">Groupe des dates</col>
  4766. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Dates&lt;/r2r:ml&gt;</col>
  4767. <col name="comment"></col>
  4768. <col name="status">32</col>
  4769. <col name="rank">7</col>
  4770. <col name="upd">2011-10-27 10:14:00</col>
  4771. </row>
  4772. <row>
  4773. <col name="id">43</col>
  4774. <col name="name">grdiffusionfichierselectroniques</col>
  4775. <col name="class">publications</col>
  4776. <col name="title">Diffusion des fichiers électroniques</col>
  4777. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Difusión de los archivos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Difusão dos fichieros electrónicos&lt;/r2r:ml&gt;</col>
  4778. <col name="comment"></col>
  4779. <col name="status">32</col>
  4780. <col name="rank">8</col>
  4781. <col name="upd">2011-10-27 10:13:57</col>
  4782. </row>
  4783. <row>
  4784. <col name="id">44</col>
  4785. <col name="name">grdates</col>
  4786. <col name="class">fichiers</col>
  4787. <col name="title">Groupe des dates</col>
  4788. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;</col>
  4789. <col name="comment"></col>
  4790. <col name="status">32</col>
  4791. <col name="rank">17</col>
  4792. <col name="upd">2011-09-21 12:04:53</col>
  4793. </row>
  4794. <row>
  4795. <col name="id">45</col>
  4796. <col name="name">grdates</col>
  4797. <col name="class">liens</col>
  4798. <col name="title">Groupe des dates</col>
  4799. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;</col>
  4800. <col name="comment"></col>
  4801. <col name="status">32</col>
  4802. <col name="rank">18</col>
  4803. <col name="upd">2011-09-21 12:06:21</col>
  4804. </row>
  4805. <row>
  4806. <col name="id">46</col>
  4807. <col name="name">grdates</col>
  4808. <col name="class">textessimples</col>
  4809. <col name="title">Groupe des dates</col>
  4810. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;</col>
  4811. <col name="comment"></col>
  4812. <col name="status">32</col>
  4813. <col name="rank">19</col>
  4814. <col name="upd">2011-09-21 12:03:16</col>
  4815. </row>
  4816. <row>
  4817. <col name="id">47</col>
  4818. <col name="name">grdates</col>
  4819. <col name="class">individus</col>
  4820. <col name="title">Groupe des dates</col>
  4821. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;</col>
  4822. <col name="comment"></col>
  4823. <col name="status">32</col>
  4824. <col name="rank">22</col>
  4825. <col name="upd">2011-09-21 12:03:59</col>
  4826. </row>
  4827. <row>
  4828. <col name="id">48</col>
  4829. <col name="name">grtitre</col>
  4830. <col name="class">fichiersexternes</col>
  4831. <col name="title">Titre</col>
  4832. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Título&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Títulos&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Title&lt;/r2r:ml&gt;</col>
  4833. <col name="comment"></col>
  4834. <col name="status">32</col>
  4835. <col name="rank">23</col>
  4836. <col name="upd">2012-04-02 17:04:04</col>
  4837. </row>
  4838. <row>
  4839. <col name="id">49</col>
  4840. <col name="name">grdefinition</col>
  4841. <col name="class">fichiersexternes</col>
  4842. <col name="title">Définition</col>
  4843. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Descripción&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Definição&lt;/r2r:ml&gt;</col>
  4844. <col name="comment"></col>
  4845. <col name="status">32</col>
  4846. <col name="rank">24</col>
  4847. <col name="upd">2011-09-21 12:06:49</col>
  4848. </row>
  4849. <row>
  4850. <col name="id">50</col>
  4851. <col name="name">grdroits</col>
  4852. <col name="class">fichiersexternes</col>
  4853. <col name="title">Droits</col>
  4854. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Derechos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Direitos&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;License&lt;/r2r:ml&gt;</col>
  4855. <col name="comment"></col>
  4856. <col name="status">32</col>
  4857. <col name="rank">25</col>
  4858. <col name="upd">2012-04-02 17:11:22</col>
  4859. </row>
  4860. <row>
  4861. <col name="id">51</col>
  4862. <col name="name">grdates</col>
  4863. <col name="class">fichiersexternes</col>
  4864. <col name="title">Groupe des dates</col>
  4865. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Fechas&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Grupo de datas&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Dates&lt;/r2r:ml&gt;</col>
  4866. <col name="comment"></col>
  4867. <col name="status">32</col>
  4868. <col name="rank">26</col>
  4869. <col name="upd">2012-04-02 17:12:10</col>
  4870. </row>
  4871. <row>
  4872. <col name="id">52</col>
  4873. <col name="name">grindex</col>
  4874. <col name="class">publications</col>
  4875. <col name="title">Index</col>
  4876. <col name="altertitle"></col>
  4877. <col name="comment"></col>
  4878. <col name="status">32</col>
  4879. <col name="rank">4</col>
  4880. <col name="upd">2011-10-27 10:14:00</col>
  4881. </row>
  4882. <row>
  4883. <col name="id">53</col>
  4884. <col name="name">grfacsimile</col>
  4885. <col name="class">textes</col>
  4886. <col name="title">Fac-similé PDF</col>
  4887. <col name="altertitle"></col>
  4888. <col name="comment"></col>
  4889. <col name="status">1</col>
  4890. <col name="rank">3</col>
  4891. <col name="upd">2015-03-04 17:17:44</col>
  4892. </row>
  4893. </datas>
  4894. </table>
  4895. <table name="#_TP_types">
  4896. <structure>
  4897. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  4898. <field name="icon">varchar(255) NOT NULL DEFAULT ''</field>
  4899. <field name="type">varchar(64) NOT NULL</field>
  4900. <field name="title">tinytext NOT NULL</field>
  4901. <field name="altertitle">text NOT NULL</field>
  4902. <field name="class">varchar(64) NOT NULL</field>
  4903. <field name="tpl">tinytext NOT NULL</field>
  4904. <field name="tplcreation">tinytext NOT NULL</field>
  4905. <field name="tpledition">tinytext NOT NULL</field>
  4906. <field name="import">tinyint(4) NOT NULL DEFAULT '0'</field>
  4907. <field name="display">varchar(10) DEFAULT NULL</field>
  4908. <field name="creationstatus">tinyint(4) NOT NULL DEFAULT '-1'</field>
  4909. <field name="search">tinyint(4) NOT NULL DEFAULT '1'</field>
  4910. <field name="public">tinyint(4) NOT NULL DEFAULT '0'</field>
  4911. <field name="gui_user_complexity">tinyint(3) unsigned NOT NULL DEFAULT '64'</field>
  4912. <field name="oaireferenced">tinyint(4) NOT NULL DEFAULT '0'</field>
  4913. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  4914. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  4915. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  4916. <field name="PRIMARY_19" key="1">(`id`)</field>
  4917. <field name="KEY_20" key="1">`index_type` (`type`)</field>
  4918. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=2000000253 DEFAULT CHARSET=utf8</field>
  4919. </structure>
  4920. <datas>
  4921. <row>
  4922. <col name="id">193</col>
  4923. <col name="icon"></col>
  4924. <col name="type">editorial</col>
  4925. <col name="title">Éditorial</col>
  4926. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Editorial&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Editorial&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Editorial&lt;/r2r:ml&gt;</col>
  4927. <col name="class">textes</col>
  4928. <col name="tpl">article</col>
  4929. <col name="tplcreation">entities</col>
  4930. <col name="tpledition"></col>
  4931. <col name="import">1</col>
  4932. <col name="display"></col>
  4933. <col name="creationstatus">-1</col>
  4934. <col name="search">1</col>
  4935. <col name="public">0</col>
  4936. <col name="gui_user_complexity">32</col>
  4937. <col name="oaireferenced">1</col>
  4938. <col name="rank">1</col>
  4939. <col name="status">32</col>
  4940. <col name="upd">2015-09-14 14:20:28</col>
  4941. </row>
  4942. <row>
  4943. <col name="id">194</col>
  4944. <col name="icon"></col>
  4945. <col name="type">article</col>
  4946. <col name="title">Article</col>
  4947. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Article&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Artículo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Artigo&lt;/r2r:ml&gt;</col>
  4948. <col name="class">textes</col>
  4949. <col name="tpl">article</col>
  4950. <col name="tplcreation">entities</col>
  4951. <col name="tpledition"></col>
  4952. <col name="import">1</col>
  4953. <col name="display"></col>
  4954. <col name="creationstatus">-1</col>
  4955. <col name="search">1</col>
  4956. <col name="public">0</col>
  4957. <col name="gui_user_complexity">16</col>
  4958. <col name="oaireferenced">1</col>
  4959. <col name="rank">2</col>
  4960. <col name="status">1</col>
  4961. <col name="upd">2015-09-14 14:20:28</col>
  4962. </row>
  4963. <row>
  4964. <col name="id">195</col>
  4965. <col name="icon"></col>
  4966. <col name="type">actualite</col>
  4967. <col name="title">Annonce et actualité</col>
  4968. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Announcement&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Noticia&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Notícia&lt;/r2r:ml&gt;</col>
  4969. <col name="class">textes</col>
  4970. <col name="tpl">article</col>
  4971. <col name="tplcreation">entities</col>
  4972. <col name="tpledition"></col>
  4973. <col name="import">1</col>
  4974. <col name="display"></col>
  4975. <col name="creationstatus">-1</col>
  4976. <col name="search">1</col>
  4977. <col name="public">0</col>
  4978. <col name="gui_user_complexity">32</col>
  4979. <col name="oaireferenced">0</col>
  4980. <col name="rank">3</col>
  4981. <col name="status">32</col>
  4982. <col name="upd">2015-09-14 14:20:28</col>
  4983. </row>
  4984. <row>
  4985. <col name="id">196</col>
  4986. <col name="icon"></col>
  4987. <col name="type">compterendu</col>
  4988. <col name="title">Compte-rendu</col>
  4989. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Book review&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Reseña&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Recensão&lt;/r2r:ml&gt;</col>
  4990. <col name="class">textes</col>
  4991. <col name="tpl">article</col>
  4992. <col name="tplcreation">entities</col>
  4993. <col name="tpledition"></col>
  4994. <col name="import">1</col>
  4995. <col name="display"></col>
  4996. <col name="creationstatus">-1</col>
  4997. <col name="search">1</col>
  4998. <col name="public">0</col>
  4999. <col name="gui_user_complexity">32</col>
  5000. <col name="oaireferenced">1</col>
  5001. <col name="rank">5</col>
  5002. <col name="status">32</col>
  5003. <col name="upd">2015-09-14 14:20:28</col>
  5004. </row>
  5005. <row>
  5006. <col name="id">197</col>
  5007. <col name="icon"></col>
  5008. <col name="type">notedelecture</col>
  5009. <col name="title">Note de lecture</col>
  5010. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Critical note&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Nota crítica&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nota de leitura&lt;/r2r:ml&gt;</col>
  5011. <col name="class">textes</col>
  5012. <col name="tpl">article</col>
  5013. <col name="tplcreation">entities</col>
  5014. <col name="tpledition"></col>
  5015. <col name="import">1</col>
  5016. <col name="display"></col>
  5017. <col name="creationstatus">-1</col>
  5018. <col name="search">1</col>
  5019. <col name="public">0</col>
  5020. <col name="gui_user_complexity">64</col>
  5021. <col name="oaireferenced">1</col>
  5022. <col name="rank">6</col>
  5023. <col name="status">32</col>
  5024. <col name="upd">2015-09-14 14:20:28</col>
  5025. </row>
  5026. <row>
  5027. <col name="id">198</col>
  5028. <col name="icon"></col>
  5029. <col name="type">informations</col>
  5030. <col name="title">Informations pratiques</col>
  5031. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Information note&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Informaciones&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Informações práticas&lt;/r2r:ml&gt;</col>
  5032. <col name="class">textes</col>
  5033. <col name="tpl">article</col>
  5034. <col name="tplcreation">entities</col>
  5035. <col name="tpledition"></col>
  5036. <col name="import">1</col>
  5037. <col name="display"></col>
  5038. <col name="creationstatus">-1</col>
  5039. <col name="search">1</col>
  5040. <col name="public">0</col>
  5041. <col name="gui_user_complexity">32</col>
  5042. <col name="oaireferenced">0</col>
  5043. <col name="rank">7</col>
  5044. <col name="status">32</col>
  5045. <col name="upd">2015-09-14 14:20:28</col>
  5046. </row>
  5047. <row>
  5048. <col name="id">199</col>
  5049. <col name="icon"></col>
  5050. <col name="type">chronique</col>
  5051. <col name="title">Chronique</col>
  5052. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Chronicle&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Crónica&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Crónica&lt;/r2r:ml&gt;</col>
  5053. <col name="class">textes</col>
  5054. <col name="tpl">article</col>
  5055. <col name="tplcreation">entities</col>
  5056. <col name="tpledition"></col>
  5057. <col name="import">1</col>
  5058. <col name="display"></col>
  5059. <col name="creationstatus">-1</col>
  5060. <col name="search">1</col>
  5061. <col name="public">0</col>
  5062. <col name="gui_user_complexity">64</col>
  5063. <col name="oaireferenced">0</col>
  5064. <col name="rank">8</col>
  5065. <col name="status">32</col>
  5066. <col name="upd">2015-09-14 14:20:28</col>
  5067. </row>
  5068. <row>
  5069. <col name="id">200</col>
  5070. <col name="icon"></col>
  5071. <col name="type">collection</col>
  5072. <col name="title">Collection</col>
  5073. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Collection&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Colección&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coleção&lt;/r2r:ml&gt;</col>
  5074. <col name="class">publications</col>
  5075. <col name="tpl">sommaire</col>
  5076. <col name="tplcreation">entities</col>
  5077. <col name="tpledition">edition</col>
  5078. <col name="import">0</col>
  5079. <col name="display"></col>
  5080. <col name="creationstatus">-1</col>
  5081. <col name="search">1</col>
  5082. <col name="public">0</col>
  5083. <col name="gui_user_complexity">16</col>
  5084. <col name="oaireferenced">0</col>
  5085. <col name="rank">1</col>
  5086. <col name="status">32</col>
  5087. <col name="upd">2015-09-14 14:20:28</col>
  5088. </row>
  5089. <row>
  5090. <col name="id">201</col>
  5091. <col name="icon">lodel/icons/volume.gif</col>
  5092. <col name="type">numero</col>
  5093. <col name="title">Numéro de revue</col>
  5094. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Issue&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Número de revista&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Número de revista&lt;/r2r:ml&gt;</col>
  5095. <col name="class">publications</col>
  5096. <col name="tpl">sommaire</col>
  5097. <col name="tplcreation">entities</col>
  5098. <col name="tpledition">edition</col>
  5099. <col name="import">0</col>
  5100. <col name="display"></col>
  5101. <col name="creationstatus">-1</col>
  5102. <col name="search">1</col>
  5103. <col name="public">0</col>
  5104. <col name="gui_user_complexity">32</col>
  5105. <col name="oaireferenced">0</col>
  5106. <col name="rank">3</col>
  5107. <col name="status">32</col>
  5108. <col name="upd">2015-09-14 14:20:28</col>
  5109. </row>
  5110. <row>
  5111. <col name="id">202</col>
  5112. <col name="icon">lodel/icons/rubrique.gif</col>
  5113. <col name="type">rubrique</col>
  5114. <col name="title">Rubrique</col>
  5115. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Section&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sección&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Rubrica&lt;/r2r:ml&gt;</col>
  5116. <col name="class">publications</col>
  5117. <col name="tpl">sommaire</col>
  5118. <col name="tplcreation">entities</col>
  5119. <col name="tpledition">edition</col>
  5120. <col name="import">0</col>
  5121. <col name="display"></col>
  5122. <col name="creationstatus">-1</col>
  5123. <col name="search">1</col>
  5124. <col name="public">0</col>
  5125. <col name="gui_user_complexity">16</col>
  5126. <col name="oaireferenced">0</col>
  5127. <col name="rank">5</col>
  5128. <col name="status">32</col>
  5129. <col name="upd">2015-09-14 14:20:28</col>
  5130. </row>
  5131. <row>
  5132. <col name="id">203</col>
  5133. <col name="icon">lodel/icons/rubrique_plat.gif</col>
  5134. <col name="type">souspartie</col>
  5135. <col name="title">Sous-partie</col>
  5136. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Subsection&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;División&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Subsecção&lt;/r2r:ml&gt;</col>
  5137. <col name="class">publications</col>
  5138. <col name="tpl"></col>
  5139. <col name="tplcreation">entities</col>
  5140. <col name="tpledition">edition</col>
  5141. <col name="import">0</col>
  5142. <col name="display">unfolded</col>
  5143. <col name="creationstatus">-1</col>
  5144. <col name="search">1</col>
  5145. <col name="public">0</col>
  5146. <col name="gui_user_complexity">16</col>
  5147. <col name="oaireferenced">0</col>
  5148. <col name="rank">6</col>
  5149. <col name="status">1</col>
  5150. <col name="upd">2015-09-14 14:20:28</col>
  5151. </row>
  5152. <row>
  5153. <col name="id">204</col>
  5154. <col name="icon"></col>
  5155. <col name="type">image</col>
  5156. <col name="title">Image</col>
  5157. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Image file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Imagen&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem&lt;/r2r:ml&gt;</col>
  5158. <col name="class">fichiers</col>
  5159. <col name="tpl">image</col>
  5160. <col name="tplcreation">entities</col>
  5161. <col name="tpledition"></col>
  5162. <col name="import">0</col>
  5163. <col name="display"></col>
  5164. <col name="creationstatus">-1</col>
  5165. <col name="search">1</col>
  5166. <col name="public">0</col>
  5167. <col name="gui_user_complexity">64</col>
  5168. <col name="oaireferenced">1</col>
  5169. <col name="rank">1</col>
  5170. <col name="status">1</col>
  5171. <col name="upd">2015-09-14 14:20:28</col>
  5172. </row>
  5173. <row>
  5174. <col name="id">205</col>
  5175. <col name="icon"></col>
  5176. <col name="type">noticedesite</col>
  5177. <col name="title">Notice de site</col>
  5178. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website presentation&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Reseña de sitio web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficha do website&lt;/r2r:ml&gt;</col>
  5179. <col name="class">liens</col>
  5180. <col name="tpl">lien</col>
  5181. <col name="tplcreation">entities</col>
  5182. <col name="tpledition"></col>
  5183. <col name="import">0</col>
  5184. <col name="display"></col>
  5185. <col name="creationstatus">-1</col>
  5186. <col name="search">1</col>
  5187. <col name="public">0</col>
  5188. <col name="gui_user_complexity">64</col>
  5189. <col name="oaireferenced">0</col>
  5190. <col name="rank">16</col>
  5191. <col name="status">1</col>
  5192. <col name="upd">2015-09-14 14:20:28</col>
  5193. </row>
  5194. <row>
  5195. <col name="id">206</col>
  5196. <col name="icon">lodel/icons/commentaire.gif</col>
  5197. <col name="type">commentaire</col>
  5198. <col name="title">Commentaire du document</col>
  5199. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Comment&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Comentario&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Comentário sobre o documento&lt;/r2r:ml&gt;</col>
  5200. <col name="class">textessimples</col>
  5201. <col name="tpl"></col>
  5202. <col name="tplcreation">entities</col>
  5203. <col name="tpledition"></col>
  5204. <col name="import">0</col>
  5205. <col name="display">advanced</col>
  5206. <col name="creationstatus">-1</col>
  5207. <col name="search">1</col>
  5208. <col name="public">1</col>
  5209. <col name="gui_user_complexity">16</col>
  5210. <col name="oaireferenced">0</col>
  5211. <col name="rank">2</col>
  5212. <col name="status">1</col>
  5213. <col name="upd">2015-09-14 14:20:28</col>
  5214. </row>
  5215. <row>
  5216. <col name="id">217</col>
  5217. <col name="icon"></col>
  5218. <col name="type">videoannexe</col>
  5219. <col name="title">Vidéo placée en annexe</col>
  5220. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appended video file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Vídeo en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Vídeo como anexo&lt;/r2r:ml&gt;</col>
  5221. <col name="class">fichiers</col>
  5222. <col name="tpl"></col>
  5223. <col name="tplcreation">entities</col>
  5224. <col name="tpledition"></col>
  5225. <col name="import">0</col>
  5226. <col name="display">advanced</col>
  5227. <col name="creationstatus">-1</col>
  5228. <col name="search">1</col>
  5229. <col name="public">0</col>
  5230. <col name="gui_user_complexity">64</col>
  5231. <col name="oaireferenced">0</col>
  5232. <col name="rank">4</col>
  5233. <col name="status">1</col>
  5234. <col name="upd">2015-09-14 14:20:28</col>
  5235. </row>
  5236. <row>
  5237. <col name="id">212</col>
  5238. <col name="icon"></col>
  5239. <col name="type">annuairedequipe</col>
  5240. <col name="title">Équipe</col>
  5241. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Directory of persons&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Equipo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Corpo editorial&lt;/r2r:ml&gt;</col>
  5242. <col name="class">publications</col>
  5243. <col name="tpl">sommaire</col>
  5244. <col name="tplcreation">entities</col>
  5245. <col name="tpledition">edition</col>
  5246. <col name="import">0</col>
  5247. <col name="display"></col>
  5248. <col name="creationstatus">-1</col>
  5249. <col name="search">1</col>
  5250. <col name="public">0</col>
  5251. <col name="gui_user_complexity">16</col>
  5252. <col name="oaireferenced">0</col>
  5253. <col name="rank">8</col>
  5254. <col name="status">32</col>
  5255. <col name="upd">2015-09-14 14:20:28</col>
  5256. </row>
  5257. <row>
  5258. <col name="id">213</col>
  5259. <col name="icon"></col>
  5260. <col name="type">annuairemedias</col>
  5261. <col name="title">Médiathèque</col>
  5262. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Media library&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Mediateca&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Mediateca&lt;/r2r:ml&gt;</col>
  5263. <col name="class">publications</col>
  5264. <col name="tpl">sommaire</col>
  5265. <col name="tplcreation">entities</col>
  5266. <col name="tpledition">edition</col>
  5267. <col name="import">0</col>
  5268. <col name="display"></col>
  5269. <col name="creationstatus">-1</col>
  5270. <col name="search">1</col>
  5271. <col name="public">0</col>
  5272. <col name="gui_user_complexity">16</col>
  5273. <col name="oaireferenced">0</col>
  5274. <col name="rank">9</col>
  5275. <col name="status">32</col>
  5276. <col name="upd">2015-09-14 14:20:28</col>
  5277. </row>
  5278. <row>
  5279. <col name="id">207</col>
  5280. <col name="icon"></col>
  5281. <col name="type">image_annexe</col>
  5282. <col name="title">Image placée en annexe</col>
  5283. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appended image file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Imagen en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem como anexo&lt;/r2r:ml&gt;</col>
  5284. <col name="class">fichiers</col>
  5285. <col name="tpl"></col>
  5286. <col name="tplcreation">entities</col>
  5287. <col name="tpledition"></col>
  5288. <col name="import">0</col>
  5289. <col name="display">advanced</col>
  5290. <col name="creationstatus">-1</col>
  5291. <col name="search">1</col>
  5292. <col name="public">0</col>
  5293. <col name="gui_user_complexity">64</col>
  5294. <col name="oaireferenced">0</col>
  5295. <col name="rank">2</col>
  5296. <col name="status">1</col>
  5297. <col name="upd">2015-09-14 14:20:28</col>
  5298. </row>
  5299. <row>
  5300. <col name="id">208</col>
  5301. <col name="icon"></col>
  5302. <col name="type">lienannexe</col>
  5303. <col name="title">Lien placé en annexe</col>
  5304. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appended link&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Enlace en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Hiperligação como anexo&lt;/r2r:ml&gt;</col>
  5305. <col name="class">liens</col>
  5306. <col name="tpl">lien</col>
  5307. <col name="tplcreation">entities</col>
  5308. <col name="tpledition"></col>
  5309. <col name="import">0</col>
  5310. <col name="display">advanced</col>
  5311. <col name="creationstatus">-1</col>
  5312. <col name="search">1</col>
  5313. <col name="public">0</col>
  5314. <col name="gui_user_complexity">64</col>
  5315. <col name="oaireferenced">0</col>
  5316. <col name="rank">24</col>
  5317. <col name="status">1</col>
  5318. <col name="upd">2015-09-14 14:20:28</col>
  5319. </row>
  5320. <row>
  5321. <col name="id">209</col>
  5322. <col name="icon"></col>
  5323. <col name="type">individu</col>
  5324. <col name="title">Notice biographique de membre</col>
  5325. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Biographical presentation&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Biografía&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Nota biográfica&lt;/r2r:ml&gt;</col>
  5326. <col name="class">individus</col>
  5327. <col name="tpl">individu</col>
  5328. <col name="tplcreation">entities</col>
  5329. <col name="tpledition"></col>
  5330. <col name="import">0</col>
  5331. <col name="display"></col>
  5332. <col name="creationstatus">-1</col>
  5333. <col name="search">1</col>
  5334. <col name="public">0</col>
  5335. <col name="gui_user_complexity">16</col>
  5336. <col name="oaireferenced">0</col>
  5337. <col name="rank">25</col>
  5338. <col name="status">1</col>
  5339. <col name="upd">2015-09-14 14:20:28</col>
  5340. </row>
  5341. <row>
  5342. <col name="id">210</col>
  5343. <col name="icon"></col>
  5344. <col name="type">billet</col>
  5345. <col name="title">Billet</col>
  5346. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Note&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Texto breve&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Post&lt;/r2r:ml&gt;</col>
  5347. <col name="class">textessimples</col>
  5348. <col name="tpl">article</col>
  5349. <col name="tplcreation">entities</col>
  5350. <col name="tpledition"></col>
  5351. <col name="import">0</col>
  5352. <col name="display"></col>
  5353. <col name="creationstatus">-1</col>
  5354. <col name="search">1</col>
  5355. <col name="public">0</col>
  5356. <col name="gui_user_complexity">16</col>
  5357. <col name="oaireferenced">0</col>
  5358. <col name="rank">1</col>
  5359. <col name="status">1</col>
  5360. <col name="upd">2015-09-14 14:20:28</col>
  5361. </row>
  5362. <row>
  5363. <col name="id">211</col>
  5364. <col name="icon"></col>
  5365. <col name="type">annuairedesites</col>
  5366. <col name="title">Annuaire de sites</col>
  5367. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Directory of websites&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Directorio de sitios web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Diretório de websites&lt;/r2r:ml&gt;</col>
  5368. <col name="class">publications</col>
  5369. <col name="tpl">sommaire</col>
  5370. <col name="tplcreation">entities</col>
  5371. <col name="tpledition">edition</col>
  5372. <col name="import">0</col>
  5373. <col name="display"></col>
  5374. <col name="creationstatus">-1</col>
  5375. <col name="search">1</col>
  5376. <col name="public">0</col>
  5377. <col name="gui_user_complexity">16</col>
  5378. <col name="oaireferenced">0</col>
  5379. <col name="rank">7</col>
  5380. <col name="status">32</col>
  5381. <col name="upd">2015-09-14 14:20:28</col>
  5382. </row>
  5383. <row>
  5384. <col name="id">214</col>
  5385. <col name="icon">lodel/icons/rss.gif</col>
  5386. <col name="type">fluxdesyndication</col>
  5387. <col name="title">Flux de syndication</col>
  5388. <col name="altertitle">&lt;r2r:ml lang="en"&gt;RSS feed&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Fuente web&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Feed RSS&lt;/r2r:ml&gt;</col>
  5389. <col name="class">liens</col>
  5390. <col name="tpl">lien</col>
  5391. <col name="tplcreation">entities</col>
  5392. <col name="tpledition"></col>
  5393. <col name="import">0</col>
  5394. <col name="display"></col>
  5395. <col name="creationstatus">-1</col>
  5396. <col name="search">1</col>
  5397. <col name="public">0</col>
  5398. <col name="gui_user_complexity">64</col>
  5399. <col name="oaireferenced">0</col>
  5400. <col name="rank">30</col>
  5401. <col name="status">1</col>
  5402. <col name="upd">2015-09-14 14:20:28</col>
  5403. </row>
  5404. <row>
  5405. <col name="id">215</col>
  5406. <col name="icon"></col>
  5407. <col name="type">video</col>
  5408. <col name="title">Vidéo</col>
  5409. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Video file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Vídeo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Vídeo&lt;/r2r:ml&gt;</col>
  5410. <col name="class">fichiers</col>
  5411. <col name="tpl">image</col>
  5412. <col name="tplcreation">entities</col>
  5413. <col name="tpledition"></col>
  5414. <col name="import">0</col>
  5415. <col name="display"></col>
  5416. <col name="creationstatus">-1</col>
  5417. <col name="search">1</col>
  5418. <col name="public">0</col>
  5419. <col name="gui_user_complexity">64</col>
  5420. <col name="oaireferenced">0</col>
  5421. <col name="rank">3</col>
  5422. <col name="status">1</col>
  5423. <col name="upd">2015-09-14 14:20:28</col>
  5424. </row>
  5425. <row>
  5426. <col name="id">216</col>
  5427. <col name="icon"></col>
  5428. <col name="type">son</col>
  5429. <col name="title">Document sonore</col>
  5430. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Audio file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Documento de audio&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiro áudio&lt;/r2r:ml&gt;</col>
  5431. <col name="class">fichiers</col>
  5432. <col name="tpl">image</col>
  5433. <col name="tplcreation">entities</col>
  5434. <col name="tpledition"></col>
  5435. <col name="import">0</col>
  5436. <col name="display"></col>
  5437. <col name="creationstatus">-1</col>
  5438. <col name="search">1</col>
  5439. <col name="public">0</col>
  5440. <col name="gui_user_complexity">32</col>
  5441. <col name="oaireferenced">0</col>
  5442. <col name="rank">5</col>
  5443. <col name="status">1</col>
  5444. <col name="upd">2015-09-14 14:20:28</col>
  5445. </row>
  5446. <row>
  5447. <col name="id">218</col>
  5448. <col name="icon"></col>
  5449. <col name="type">fichierannexe</col>
  5450. <col name="title">Fichier placé en annexe</col>
  5451. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appended file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Archivo en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiro anexo&lt;/r2r:ml&gt;</col>
  5452. <col name="class">fichiers</col>
  5453. <col name="tpl">image</col>
  5454. <col name="tplcreation">entities</col>
  5455. <col name="tpledition"></col>
  5456. <col name="import">0</col>
  5457. <col name="display">advanced</col>
  5458. <col name="creationstatus">-1</col>
  5459. <col name="search">1</col>
  5460. <col name="public">0</col>
  5461. <col name="gui_user_complexity">32</col>
  5462. <col name="oaireferenced">0</col>
  5463. <col name="rank">7</col>
  5464. <col name="status">1</col>
  5465. <col name="upd">2015-09-14 14:20:28</col>
  5466. </row>
  5467. <row>
  5468. <col name="id">219</col>
  5469. <col name="icon"></col>
  5470. <col name="type">sonannexe</col>
  5471. <col name="title">Document sonore placé en annexe</col>
  5472. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appended audio file&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Documento de audio en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiro áudio como anexo&lt;/r2r:ml&gt;</col>
  5473. <col name="class">fichiers</col>
  5474. <col name="tpl"></col>
  5475. <col name="tplcreation">entities</col>
  5476. <col name="tpledition"></col>
  5477. <col name="import">0</col>
  5478. <col name="display">advanced</col>
  5479. <col name="creationstatus">-1</col>
  5480. <col name="search">1</col>
  5481. <col name="public">0</col>
  5482. <col name="gui_user_complexity">32</col>
  5483. <col name="oaireferenced">0</col>
  5484. <col name="rank">6</col>
  5485. <col name="status">1</col>
  5486. <col name="upd">2015-09-14 14:20:28</col>
  5487. </row>
  5488. <row>
  5489. <col name="id">221</col>
  5490. <col name="icon"></col>
  5491. <col name="type">imageaccroche</col>
  5492. <col name="title">Image d’accroche</col>
  5493. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Introductory image&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Imagen destacada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem de apresentação&lt;/r2r:ml&gt;</col>
  5494. <col name="class">fichiers</col>
  5495. <col name="tpl">image</col>
  5496. <col name="tplcreation">entities</col>
  5497. <col name="tpledition"></col>
  5498. <col name="import">0</col>
  5499. <col name="display">advanced</col>
  5500. <col name="creationstatus">-1</col>
  5501. <col name="search">1</col>
  5502. <col name="public">0</col>
  5503. <col name="gui_user_complexity">16</col>
  5504. <col name="oaireferenced">0</col>
  5505. <col name="rank">31</col>
  5506. <col name="status">32</col>
  5507. <col name="upd">2015-09-14 14:20:28</col>
  5508. </row>
  5509. <row>
  5510. <col name="id">222</col>
  5511. <col name="icon">lodel/icons/rubrique.gif</col>
  5512. <col name="type">rubriqueannuaire</col>
  5513. <col name="title">Rubrique (d’annuaire de site)</col>
  5514. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Section (directory of websites type)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sección (de directorio)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Rubrica (de diretório de websites)&lt;/r2r:ml&gt;</col>
  5515. <col name="class">publications</col>
  5516. <col name="tpl">sommaire</col>
  5517. <col name="tplcreation">entities</col>
  5518. <col name="tpledition">edition</col>
  5519. <col name="import">0</col>
  5520. <col name="display"></col>
  5521. <col name="creationstatus">-1</col>
  5522. <col name="search">1</col>
  5523. <col name="public">0</col>
  5524. <col name="gui_user_complexity">16</col>
  5525. <col name="oaireferenced">0</col>
  5526. <col name="rank">32</col>
  5527. <col name="status">32</col>
  5528. <col name="upd">2015-09-14 14:20:28</col>
  5529. </row>
  5530. <row>
  5531. <col name="id">223</col>
  5532. <col name="icon"></col>
  5533. <col name="type">rubriquemediatheque</col>
  5534. <col name="title">Rubrique (de médiathèque)</col>
  5535. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Section (media library type)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sección (de mediateca)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Rubrica (de mediateca)&lt;/r2r:ml&gt;</col>
  5536. <col name="class">publications</col>
  5537. <col name="tpl">sommaire</col>
  5538. <col name="tplcreation">entities</col>
  5539. <col name="tpledition">edition</col>
  5540. <col name="import">0</col>
  5541. <col name="display"></col>
  5542. <col name="creationstatus">-1</col>
  5543. <col name="search">1</col>
  5544. <col name="public">0</col>
  5545. <col name="gui_user_complexity">16</col>
  5546. <col name="oaireferenced">0</col>
  5547. <col name="rank">33</col>
  5548. <col name="status">32</col>
  5549. <col name="upd">2015-09-14 14:20:28</col>
  5550. </row>
  5551. <row>
  5552. <col name="id">224</col>
  5553. <col name="icon">lodel/icons/rubrique.gif</col>
  5554. <col name="type">rubriqueequipe</col>
  5555. <col name="title">Rubrique (d’équipe)</col>
  5556. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Section (directory of persons type)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sección (de equipo)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Rubrica (de corpo editorial)&lt;/r2r:ml&gt;</col>
  5557. <col name="class">publications</col>
  5558. <col name="tpl">sommaire</col>
  5559. <col name="tplcreation">entities</col>
  5560. <col name="tpledition">edition</col>
  5561. <col name="import">0</col>
  5562. <col name="display">unfolded</col>
  5563. <col name="creationstatus">-1</col>
  5564. <col name="search">1</col>
  5565. <col name="public">0</col>
  5566. <col name="gui_user_complexity">16</col>
  5567. <col name="oaireferenced">0</col>
  5568. <col name="rank">34</col>
  5569. <col name="status">32</col>
  5570. <col name="upd">2015-09-14 14:20:28</col>
  5571. </row>
  5572. <row>
  5573. <col name="id">220</col>
  5574. <col name="icon">lodel/icons/rubrique.gif</col>
  5575. <col name="type">rubriqueactualites</col>
  5576. <col name="title">Rubrique (d’actualités)</col>
  5577. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Section (news collection type)&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Sección (de anuncios)&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Rubrica (de notícias)&lt;/r2r:ml&gt;</col>
  5578. <col name="class">publications</col>
  5579. <col name="tpl">sommaire</col>
  5580. <col name="tplcreation">entities</col>
  5581. <col name="tpledition">edition</col>
  5582. <col name="import">0</col>
  5583. <col name="display"></col>
  5584. <col name="creationstatus">-1</col>
  5585. <col name="search">1</col>
  5586. <col name="public">0</col>
  5587. <col name="gui_user_complexity">16</col>
  5588. <col name="oaireferenced">0</col>
  5589. <col name="rank">35</col>
  5590. <col name="status">32</col>
  5591. <col name="upd">2015-09-14 14:20:28</col>
  5592. </row>
  5593. <row>
  5594. <col name="id">225</col>
  5595. <col name="icon"></col>
  5596. <col name="type">image</col>
  5597. <col name="title">Image distante</col>
  5598. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Imagen externa&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem remota&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote image&lt;/r2r:ml&gt;</col>
  5599. <col name="class">fichiersexternes</col>
  5600. <col name="tpl">image</col>
  5601. <col name="tplcreation">entities</col>
  5602. <col name="tpledition"></col>
  5603. <col name="import">0</col>
  5604. <col name="display"></col>
  5605. <col name="creationstatus">-1</col>
  5606. <col name="search">1</col>
  5607. <col name="public">0</col>
  5608. <col name="gui_user_complexity">64</col>
  5609. <col name="oaireferenced">0</col>
  5610. <col name="rank">36</col>
  5611. <col name="status">32</col>
  5612. <col name="upd">2015-09-14 14:20:28</col>
  5613. </row>
  5614. <row>
  5615. <col name="id">226</col>
  5616. <col name="icon"></col>
  5617. <col name="type">video</col>
  5618. <col name="title">Vidéo distante</col>
  5619. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Vídeo externo&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote video file&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Vídeo remoto&lt;/r2r:ml&gt;</col>
  5620. <col name="class">fichiersexternes</col>
  5621. <col name="tpl">image</col>
  5622. <col name="tplcreation">entities</col>
  5623. <col name="tpledition"></col>
  5624. <col name="import">0</col>
  5625. <col name="display"></col>
  5626. <col name="creationstatus">-1</col>
  5627. <col name="search">1</col>
  5628. <col name="public">0</col>
  5629. <col name="gui_user_complexity">64</col>
  5630. <col name="oaireferenced">0</col>
  5631. <col name="rank">37</col>
  5632. <col name="status">32</col>
  5633. <col name="upd">2015-09-14 14:20:28</col>
  5634. </row>
  5635. <row>
  5636. <col name="id">227</col>
  5637. <col name="icon"></col>
  5638. <col name="type">son</col>
  5639. <col name="title">Document sonore distant</col>
  5640. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Documento audio externo&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote audio file&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiro áudio remoto&lt;/r2r:ml&gt;</col>
  5641. <col name="class">fichiersexternes</col>
  5642. <col name="tpl">image</col>
  5643. <col name="tplcreation">entities</col>
  5644. <col name="tpledition"></col>
  5645. <col name="import">0</col>
  5646. <col name="display"></col>
  5647. <col name="creationstatus">-1</col>
  5648. <col name="search">1</col>
  5649. <col name="public">0</col>
  5650. <col name="gui_user_complexity">64</col>
  5651. <col name="oaireferenced">0</col>
  5652. <col name="rank">38</col>
  5653. <col name="status">32</col>
  5654. <col name="upd">2015-09-14 14:20:28</col>
  5655. </row>
  5656. <row>
  5657. <col name="id">228</col>
  5658. <col name="icon"></col>
  5659. <col name="type">animation</col>
  5660. <col name="title">Animation distante</col>
  5661. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Animación externa&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Animação remota&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote animation&lt;/r2r:ml&gt;</col>
  5662. <col name="class">fichiersexternes</col>
  5663. <col name="tpl">image</col>
  5664. <col name="tplcreation">entities</col>
  5665. <col name="tpledition"></col>
  5666. <col name="import">0</col>
  5667. <col name="display"></col>
  5668. <col name="creationstatus">-1</col>
  5669. <col name="search">1</col>
  5670. <col name="public">0</col>
  5671. <col name="gui_user_complexity">64</col>
  5672. <col name="oaireferenced">0</col>
  5673. <col name="rank">39</col>
  5674. <col name="status">32</col>
  5675. <col name="upd">2015-09-14 14:20:28</col>
  5676. </row>
  5677. <row>
  5678. <col name="id">229</col>
  5679. <col name="icon"></col>
  5680. <col name="type">image_annexe</col>
  5681. <col name="title">Image distante placée en annexe</col>
  5682. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Imagen externa en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Imagem remota como anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote appended image&lt;/r2r:ml&gt;</col>
  5683. <col name="class">fichiersexternes</col>
  5684. <col name="tpl"></col>
  5685. <col name="tplcreation">entities</col>
  5686. <col name="tpledition"></col>
  5687. <col name="import">0</col>
  5688. <col name="display">advanced</col>
  5689. <col name="creationstatus">-1</col>
  5690. <col name="search">1</col>
  5691. <col name="public">0</col>
  5692. <col name="gui_user_complexity">64</col>
  5693. <col name="oaireferenced">0</col>
  5694. <col name="rank">40</col>
  5695. <col name="status">32</col>
  5696. <col name="upd">2015-09-14 14:20:28</col>
  5697. </row>
  5698. <row>
  5699. <col name="id">230</col>
  5700. <col name="icon"></col>
  5701. <col name="type">videoannexe</col>
  5702. <col name="title">Vidéo distante placée en annexe</col>
  5703. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Vídeo externo en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Vídeo remoto como anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote appended video file&lt;/r2r:ml&gt;</col>
  5704. <col name="class">fichiersexternes</col>
  5705. <col name="tpl"></col>
  5706. <col name="tplcreation">entities</col>
  5707. <col name="tpledition"></col>
  5708. <col name="import">0</col>
  5709. <col name="display">advanced</col>
  5710. <col name="creationstatus">-1</col>
  5711. <col name="search">1</col>
  5712. <col name="public">0</col>
  5713. <col name="gui_user_complexity">64</col>
  5714. <col name="oaireferenced">0</col>
  5715. <col name="rank">41</col>
  5716. <col name="status">32</col>
  5717. <col name="upd">2015-09-14 14:20:28</col>
  5718. </row>
  5719. <row>
  5720. <col name="id">231</col>
  5721. <col name="icon"></col>
  5722. <col name="type">sonannexe</col>
  5723. <col name="title">Document sonore distant placé en annexe</col>
  5724. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Documento audio externo en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote appended audio file&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Ficheiro áudio remoto como anexo&lt;/r2r:ml&gt;</col>
  5725. <col name="class">fichiersexternes</col>
  5726. <col name="tpl"></col>
  5727. <col name="tplcreation">entities</col>
  5728. <col name="tpledition"></col>
  5729. <col name="import">0</col>
  5730. <col name="display">advanced</col>
  5731. <col name="creationstatus">-1</col>
  5732. <col name="search">1</col>
  5733. <col name="public">0</col>
  5734. <col name="gui_user_complexity">64</col>
  5735. <col name="oaireferenced">0</col>
  5736. <col name="rank">42</col>
  5737. <col name="status">32</col>
  5738. <col name="upd">2015-09-14 14:20:28</col>
  5739. </row>
  5740. <row>
  5741. <col name="id">232</col>
  5742. <col name="icon"></col>
  5743. <col name="type">animationannexe</col>
  5744. <col name="title">Animation distante placée en annexe</col>
  5745. <col name="altertitle">&lt;r2r:ml lang="es"&gt;Animación externa en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="en"&gt;Remote appended animation&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Animação remota como anexo&lt;/r2r:ml&gt;</col>
  5746. <col name="class">fichiersexternes</col>
  5747. <col name="tpl"></col>
  5748. <col name="tplcreation">entities</col>
  5749. <col name="tpledition"></col>
  5750. <col name="import">0</col>
  5751. <col name="display">advanced</col>
  5752. <col name="creationstatus">-1</col>
  5753. <col name="search">1</col>
  5754. <col name="public">0</col>
  5755. <col name="gui_user_complexity">64</col>
  5756. <col name="oaireferenced">0</col>
  5757. <col name="rank">43</col>
  5758. <col name="status">32</col>
  5759. <col name="upd">2015-09-14 14:20:28</col>
  5760. </row>
  5761. <row>
  5762. <col name="id">233</col>
  5763. <col name="icon"></col>
  5764. <col name="type">animation</col>
  5765. <col name="title">Animation</col>
  5766. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Animation&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Animación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Animação&lt;/r2r:ml&gt;</col>
  5767. <col name="class">fichiers</col>
  5768. <col name="tpl">image</col>
  5769. <col name="tplcreation">entities</col>
  5770. <col name="tpledition"></col>
  5771. <col name="import">0</col>
  5772. <col name="display"></col>
  5773. <col name="creationstatus">-1</col>
  5774. <col name="search">1</col>
  5775. <col name="public">0</col>
  5776. <col name="gui_user_complexity">64</col>
  5777. <col name="oaireferenced">0</col>
  5778. <col name="rank">44</col>
  5779. <col name="status">32</col>
  5780. <col name="upd">2015-09-14 14:20:28</col>
  5781. </row>
  5782. <row>
  5783. <col name="id">234</col>
  5784. <col name="icon"></col>
  5785. <col name="type">animationannexe</col>
  5786. <col name="title">Animation placée en annexe</col>
  5787. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Appended animation&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Animación en anexo&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Animação como anexo&lt;/r2r:ml&gt;</col>
  5788. <col name="class">fichiers</col>
  5789. <col name="tpl"></col>
  5790. <col name="tplcreation">entities</col>
  5791. <col name="tpledition"></col>
  5792. <col name="import">0</col>
  5793. <col name="display">advanced</col>
  5794. <col name="creationstatus">-1</col>
  5795. <col name="search">1</col>
  5796. <col name="public">0</col>
  5797. <col name="gui_user_complexity">64</col>
  5798. <col name="oaireferenced">0</col>
  5799. <col name="rank">45</col>
  5800. <col name="status">32</col>
  5801. <col name="upd">2015-09-14 14:20:28</col>
  5802. </row>
  5803. <row>
  5804. <col name="id">235</col>
  5805. <col name="icon">lodel/icons/rubrique.gif</col>
  5806. <col name="type">rubriqueannuelle</col>
  5807. <col name="title">Rubrique annuelle</col>
  5808. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Annual section&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Rubrica anual&lt;/r2r:ml&gt;</col>
  5809. <col name="class">publications</col>
  5810. <col name="tpl">sommaire</col>
  5811. <col name="tplcreation">entities</col>
  5812. <col name="tpledition">edition</col>
  5813. <col name="import">0</col>
  5814. <col name="display"></col>
  5815. <col name="creationstatus">-1</col>
  5816. <col name="search">1</col>
  5817. <col name="public">0</col>
  5818. <col name="gui_user_complexity">16</col>
  5819. <col name="oaireferenced">0</col>
  5820. <col name="rank">46</col>
  5821. <col name="status">32</col>
  5822. <col name="upd">2015-09-14 14:20:28</col>
  5823. </row>
  5824. </datas>
  5825. </table>
  5826. <table name="#_TP_persontypes">
  5827. <structure>
  5828. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  5829. <field name="icon">varchar(255) NOT NULL DEFAULT ''</field>
  5830. <field name="type">varchar(64) NOT NULL</field>
  5831. <field name="title">tinytext NOT NULL</field>
  5832. <field name="altertitle">text NOT NULL</field>
  5833. <field name="class">varchar(64) NOT NULL</field>
  5834. <field name="style">tinytext NOT NULL</field>
  5835. <field name="g_type">varchar(255) NOT NULL</field>
  5836. <field name="tpl">tinytext NOT NULL</field>
  5837. <field name="tplindex">tinytext NOT NULL</field>
  5838. <field name="gui_user_complexity">tinyint(3) unsigned NOT NULL DEFAULT '64'</field>
  5839. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  5840. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  5841. <field name="otx">tinytext NOT NULL</field>
  5842. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  5843. <field name="PRIMARY_15" key="1">(`id`)</field>
  5844. <field name="UNIQUE_16" key="1">`type` (`type`)</field>
  5845. <field name="KEY_17" key="1">`index_type` (`type`)</field>
  5846. <field name="KEY_18" key="1">`index_g_type` (`g_type`)</field>
  5847. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=2000000258 DEFAULT CHARSET=utf8</field>
  5848. </structure>
  5849. <datas>
  5850. <row>
  5851. <col name="id">236</col>
  5852. <col name="icon">lodel/icons/auteur.gif</col>
  5853. <col name="type">auteur</col>
  5854. <col name="title">Auteurs</col>
  5855. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Authors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autores&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autores&lt;/r2r:ml&gt;</col>
  5856. <col name="class">auteurs</col>
  5857. <col name="style">auteur, autor, author,author,autor</col>
  5858. <col name="g_type">dc.creator</col>
  5859. <col name="tpl">personne</col>
  5860. <col name="tplindex">personnes</col>
  5861. <col name="gui_user_complexity">32</col>
  5862. <col name="rank">1</col>
  5863. <col name="status">1</col>
  5864. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:author</col>
  5865. <col name="upd">2015-09-14 14:20:28</col>
  5866. </row>
  5867. <row>
  5868. <col name="id">237</col>
  5869. <col name="icon"></col>
  5870. <col name="type">traducteur</col>
  5871. <col name="title">Traducteurs</col>
  5872. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Translators&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Traductores&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Tradutores&lt;/r2r:ml&gt;</col>
  5873. <col name="class">auteurs</col>
  5874. <col name="style">traducteur, traductor, translator,translator,traductor</col>
  5875. <col name="g_type">dc.contributor</col>
  5876. <col name="tpl">personne</col>
  5877. <col name="tplindex">personnes</col>
  5878. <col name="gui_user_complexity">64</col>
  5879. <col name="rank">2</col>
  5880. <col name="status">1</col>
  5881. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:editor[@role='translator']</col>
  5882. <col name="upd">2015-09-14 14:20:28</col>
  5883. </row>
  5884. <row>
  5885. <col name="id">238</col>
  5886. <col name="icon"></col>
  5887. <col name="type">directeurdelapublication</col>
  5888. <col name="title">Directeurs de la publication</col>
  5889. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Issue editors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Directores de la publicación&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coordenadores do número&lt;/r2r:ml&gt;</col>
  5890. <col name="class">auteurs</col>
  5891. <col name="style">directeur, director</col>
  5892. <col name="g_type"></col>
  5893. <col name="tpl">personne</col>
  5894. <col name="tplindex">personnes</col>
  5895. <col name="gui_user_complexity">32</col>
  5896. <col name="rank">3</col>
  5897. <col name="status">32</col>
  5898. <col name="otx"></col>
  5899. <col name="upd">2015-09-14 14:20:28</col>
  5900. </row>
  5901. <row>
  5902. <col name="id">239</col>
  5903. <col name="icon"></col>
  5904. <col name="type">auteuroeuvre</col>
  5905. <col name="title">Auteurs d’une œuvre commentée</col>
  5906. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Reviewed book authors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Autores de la obra comentada&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Autores de obra comentada&lt;/r2r:ml&gt;</col>
  5907. <col name="class">auteurs</col>
  5908. <col name="style">auteuroeuvre, autorobra, reviewedauthor,reviewedauthor,autorobra</col>
  5909. <col name="g_type"></col>
  5910. <col name="tpl">personne</col>
  5911. <col name="tplindex">personnes</col>
  5912. <col name="gui_user_complexity">64</col>
  5913. <col name="rank">4</col>
  5914. <col name="status">1</col>
  5915. <col name="otx">/tei:TEI/tei:text/tei:front/tei:div[@type='review']/tei:p[@rend='review-author']</col>
  5916. <col name="upd">2015-09-14 14:20:28</col>
  5917. </row>
  5918. <row>
  5919. <col name="id">240</col>
  5920. <col name="icon"></col>
  5921. <col name="type">editeurscientifique</col>
  5922. <col name="title">Éditeurs scientifiques</col>
  5923. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Academic editors&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Editores científicos&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coordenadores científicos&lt;/r2r:ml&gt;</col>
  5924. <col name="class">auteurs</col>
  5925. <col name="style">editeurscientifique, editorcientifico, academiceditor,academiceditor,editorcientifico</col>
  5926. <col name="g_type"></col>
  5927. <col name="tpl">personne</col>
  5928. <col name="tplindex">personnes</col>
  5929. <col name="gui_user_complexity">64</col>
  5930. <col name="rank">5</col>
  5931. <col name="status">1</col>
  5932. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:editor[not(@role)]</col>
  5933. <col name="upd">2015-09-14 14:20:28</col>
  5934. </row>
  5935. </datas>
  5936. </table>
  5937. <table name="#_TP_entrytypes">
  5938. <structure>
  5939. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  5940. <field name="icon">varchar(255) NOT NULL DEFAULT ''</field>
  5941. <field name="type">varchar(64) NOT NULL</field>
  5942. <field name="class">varchar(64) NOT NULL</field>
  5943. <field name="title">tinytext NOT NULL</field>
  5944. <field name="altertitle">text NOT NULL</field>
  5945. <field name="style">tinytext NOT NULL</field>
  5946. <field name="g_type">varchar(255) NOT NULL</field>
  5947. <field name="tpl">tinytext NOT NULL</field>
  5948. <field name="tplindex">tinytext NOT NULL</field>
  5949. <field name="gui_user_complexity">tinyint(3) unsigned NOT NULL DEFAULT '64'</field>
  5950. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  5951. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  5952. <field name="flat">tinyint(4) NOT NULL DEFAULT '0'</field>
  5953. <field name="newbyimportallowed">tinyint(4) NOT NULL DEFAULT '0'</field>
  5954. <field name="edition">tinytext NOT NULL</field>
  5955. <field name="sort">varchar(64) NOT NULL DEFAULT 'rank'</field>
  5956. <field name="otx">tinytext NOT NULL</field>
  5957. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  5958. <field name="lang">varchar(10) NOT NULL DEFAULT 'fr'</field>
  5959. <field name="externalallowed">tinyint(4) NOT NULL DEFAULT '0'</field>
  5960. <field name="PRIMARY_21" key="1">(`id`)</field>
  5961. <field name="UNIQUE_22" key="1">`type` (`type`)</field>
  5962. <field name="KEY_23" key="1">`index_type` (`type`)</field>
  5963. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=2000000266 DEFAULT CHARSET=utf8</field>
  5964. </structure>
  5965. <datas>
  5966. <row>
  5967. <col name="id">241</col>
  5968. <col name="icon"></col>
  5969. <col name="type">motsclesfr</col>
  5970. <col name="class">indexes</col>
  5971. <col name="title">Mots-clés</col>
  5972. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Mots-clés&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Mots-clés&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Mots-clés&lt;/r2r:ml&gt;</col>
  5973. <col name="style">motscles, .motcles,motscls,motsclesfr</col>
  5974. <col name="g_type">dc.subject</col>
  5975. <col name="tpl">entree</col>
  5976. <col name="tplindex">entrees</col>
  5977. <col name="gui_user_complexity">32</col>
  5978. <col name="rank">1</col>
  5979. <col name="status">1</col>
  5980. <col name="flat">1</col>
  5981. <col name="newbyimportallowed">1</col>
  5982. <col name="edition">pool</col>
  5983. <col name="sort">sortkey</col>
  5984. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='keyword']</col>
  5985. <col name="upd">2015-09-14 14:20:28</col>
  5986. <col name="lang">fr</col>
  5987. <col name="externalallowed">0</col>
  5988. </row>
  5989. <row>
  5990. <col name="id">242</col>
  5991. <col name="icon"></col>
  5992. <col name="type">motsclesen</col>
  5993. <col name="class">indexes</col>
  5994. <col name="title">Keywords</col>
  5995. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Keywords&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Keywords&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Keywords&lt;/r2r:ml&gt;</col>
  5996. <col name="style">keywords,motclesen</col>
  5997. <col name="g_type"></col>
  5998. <col name="tpl">entree</col>
  5999. <col name="tplindex">entrees</col>
  6000. <col name="gui_user_complexity">64</col>
  6001. <col name="rank">2</col>
  6002. <col name="status">1</col>
  6003. <col name="flat">1</col>
  6004. <col name="newbyimportallowed">1</col>
  6005. <col name="edition">pool</col>
  6006. <col name="sort">sortkey</col>
  6007. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='keyword']</col>
  6008. <col name="upd">2015-09-14 14:20:28</col>
  6009. <col name="lang">en</col>
  6010. <col name="externalallowed">0</col>
  6011. </row>
  6012. <row>
  6013. <col name="id">244</col>
  6014. <col name="icon"></col>
  6015. <col name="type">chrono</col>
  6016. <col name="class">indexes</col>
  6017. <col name="title">Index chronologique</col>
  6018. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Chronological index&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice cronológico&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice cronológico&lt;/r2r:ml&gt;</col>
  6019. <col name="style">periode, .periode, priode, chronology, ,chronology,periodo</col>
  6020. <col name="g_type"></col>
  6021. <col name="tpl">entree</col>
  6022. <col name="tplindex">entrees</col>
  6023. <col name="gui_user_complexity">64</col>
  6024. <col name="rank">5</col>
  6025. <col name="status">1</col>
  6026. <col name="flat">0</col>
  6027. <col name="newbyimportallowed">1</col>
  6028. <col name="edition">pool</col>
  6029. <col name="sort">sortkey</col>
  6030. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='chronological']</col>
  6031. <col name="upd">2015-09-14 14:20:28</col>
  6032. <col name="lang">fr</col>
  6033. <col name="externalallowed">0</col>
  6034. </row>
  6035. <row>
  6036. <col name="id">245</col>
  6037. <col name="icon"></col>
  6038. <col name="type">theme</col>
  6039. <col name="class">indexes</col>
  6040. <col name="title">Index thématique</col>
  6041. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Subject index&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice temático&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice temático&lt;/r2r:ml&gt;</col>
  6042. <col name="style">themes,thmes,.themes,subject,temas</col>
  6043. <col name="g_type"></col>
  6044. <col name="tpl">entree</col>
  6045. <col name="tplindex">entrees</col>
  6046. <col name="gui_user_complexity">16</col>
  6047. <col name="rank">6</col>
  6048. <col name="status">1</col>
  6049. <col name="flat">0</col>
  6050. <col name="newbyimportallowed">1</col>
  6051. <col name="edition">pool</col>
  6052. <col name="sort">sortkey</col>
  6053. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='subject']</col>
  6054. <col name="upd">2015-09-14 14:20:28</col>
  6055. <col name="lang">fr</col>
  6056. <col name="externalallowed">0</col>
  6057. </row>
  6058. <row>
  6059. <col name="id">243</col>
  6060. <col name="icon"></col>
  6061. <col name="type">geographie</col>
  6062. <col name="class">indexes</col>
  6063. <col name="title">Index géographique</col>
  6064. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Geographical index&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Índice geográfico&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Índice geográfico&lt;/r2r:ml&gt;</col>
  6065. <col name="style">geographie, gographie,.geographie, geography, ,geography,geografia</col>
  6066. <col name="g_type"></col>
  6067. <col name="tpl">entree</col>
  6068. <col name="tplindex">entrees</col>
  6069. <col name="gui_user_complexity">64</col>
  6070. <col name="rank">4</col>
  6071. <col name="status">1</col>
  6072. <col name="flat">0</col>
  6073. <col name="newbyimportallowed">1</col>
  6074. <col name="edition">pool</col>
  6075. <col name="sort">sortkey</col>
  6076. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='geographical']</col>
  6077. <col name="upd">2015-09-14 14:20:28</col>
  6078. <col name="lang">fr</col>
  6079. <col name="externalallowed">0</col>
  6080. </row>
  6081. <row>
  6082. <col name="id">248</col>
  6083. <col name="icon"></col>
  6084. <col name="type">motscleses</col>
  6085. <col name="class">indexes</col>
  6086. <col name="title">Palabras claves</col>
  6087. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Palabras claves&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Palabras claves&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Palabras claves&lt;/r2r:ml&gt;</col>
  6088. <col name="style">palabrasclaves, .palabrasclaves, motscleses</col>
  6089. <col name="g_type"></col>
  6090. <col name="tpl">entree</col>
  6091. <col name="tplindex">entrees</col>
  6092. <col name="gui_user_complexity">64</col>
  6093. <col name="rank">9</col>
  6094. <col name="status">1</col>
  6095. <col name="flat">1</col>
  6096. <col name="newbyimportallowed">1</col>
  6097. <col name="edition">pool</col>
  6098. <col name="sort">sortkey</col>
  6099. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='keyword']</col>
  6100. <col name="upd">2015-09-14 14:20:28</col>
  6101. <col name="lang">es</col>
  6102. <col name="externalallowed">0</col>
  6103. </row>
  6104. <row>
  6105. <col name="id">246</col>
  6106. <col name="icon"></col>
  6107. <col name="type">licence</col>
  6108. <col name="class">indexavances</col>
  6109. <col name="title">Licence portant sur le document</col>
  6110. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Document license&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Licencia acompañando el documento&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Licenciamento relativo ao documento&lt;/r2r:ml&gt;</col>
  6111. <col name="style">licence, droitsauteur, licencia, license,licencia</col>
  6112. <col name="g_type">dc.rights</col>
  6113. <col name="tpl">entree</col>
  6114. <col name="tplindex">entrees</col>
  6115. <col name="gui_user_complexity">16</col>
  6116. <col name="rank">7</col>
  6117. <col name="status">1</col>
  6118. <col name="flat">1</col>
  6119. <col name="newbyimportallowed">1</col>
  6120. <col name="edition">pool</col>
  6121. <col name="sort">rank</col>
  6122. <col name="otx">/tei:TEI/tei:teiHeader/tei:fileDesc/tei:publicationStmt/tei:availability</col>
  6123. <col name="upd">2015-09-14 14:20:28</col>
  6124. <col name="lang">fr</col>
  6125. <col name="externalallowed">0</col>
  6126. </row>
  6127. <row>
  6128. <col name="id">247</col>
  6129. <col name="icon"></col>
  6130. <col name="type">motsclesde</col>
  6131. <col name="class">indexes</col>
  6132. <col name="title">Schlagwortindex</col>
  6133. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Schlagwortindex&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Schlagwortindex&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Schlagwortindex&lt;/r2r:ml&gt;</col>
  6134. <col name="style">schlusselworter, .schlusselworter, motsclesde, schlagworter, .schlagworter</col>
  6135. <col name="g_type"></col>
  6136. <col name="tpl">entree</col>
  6137. <col name="tplindex">entrees</col>
  6138. <col name="gui_user_complexity">32</col>
  6139. <col name="rank">8</col>
  6140. <col name="status">1</col>
  6141. <col name="flat">1</col>
  6142. <col name="newbyimportallowed">1</col>
  6143. <col name="edition">pool</col>
  6144. <col name="sort">sortkey</col>
  6145. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='keyword']</col>
  6146. <col name="upd">2015-09-14 14:20:28</col>
  6147. <col name="lang">de</col>
  6148. <col name="externalallowed">0</col>
  6149. </row>
  6150. <row>
  6151. <col name="id">249</col>
  6152. <col name="icon"></col>
  6153. <col name="type">motsclespt</col>
  6154. <col name="class">indexes</col>
  6155. <col name="title">Palavras chaves</col>
  6156. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Palavras chaves&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Palavras chaves&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Palavras chaves&lt;/r2r:ml&gt;</col>
  6157. <col name="style">palavraschaves,motsclespt</col>
  6158. <col name="g_type"></col>
  6159. <col name="tpl">entree</col>
  6160. <col name="tplindex">entrees</col>
  6161. <col name="gui_user_complexity">64</col>
  6162. <col name="rank">10</col>
  6163. <col name="status">1</col>
  6164. <col name="flat">1</col>
  6165. <col name="newbyimportallowed">1</col>
  6166. <col name="edition">pool</col>
  6167. <col name="sort">sortkey</col>
  6168. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='keyword']</col>
  6169. <col name="upd">2015-09-14 14:20:28</col>
  6170. <col name="lang">pt</col>
  6171. <col name="externalallowed">0</col>
  6172. </row>
  6173. <row>
  6174. <col name="id">250</col>
  6175. <col name="icon"></col>
  6176. <col name="type">Collection</col>
  6177. <col name="class">collections</col>
  6178. <col name="title">Collection</col>
  6179. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Collection&lt;/r2r:ml&gt;&lt;r2r:ml lang="es"&gt;Colección&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Coleção&lt;/r2r:ml&gt;</col>
  6180. <col name="style"></col>
  6181. <col name="g_type"></col>
  6182. <col name="tpl"></col>
  6183. <col name="tplindex"></col>
  6184. <col name="gui_user_complexity">64</col>
  6185. <col name="rank">11</col>
  6186. <col name="status">1</col>
  6187. <col name="flat">1</col>
  6188. <col name="newbyimportallowed">0</col>
  6189. <col name="edition">pool</col>
  6190. <col name="sort">sortkey</col>
  6191. <col name="otx"></col>
  6192. <col name="upd">2015-09-14 14:20:28</col>
  6193. <col name="lang">fr</col>
  6194. <col name="externalallowed">0</col>
  6195. </row>
  6196. <row>
  6197. <col name="id">251</col>
  6198. <col name="icon"></col>
  6199. <col name="type">motsclesit</col>
  6200. <col name="class">indexes</col>
  6201. <col name="title">Parole chiave</col>
  6202. <col name="altertitle"></col>
  6203. <col name="style">parolechiave, parolechiavi, .parolechiavi, motsclesit</col>
  6204. <col name="g_type"></col>
  6205. <col name="tpl">entree</col>
  6206. <col name="tplindex">entrees</col>
  6207. <col name="gui_user_complexity">64</col>
  6208. <col name="rank">12</col>
  6209. <col name="status">1</col>
  6210. <col name="flat">1</col>
  6211. <col name="newbyimportallowed">1</col>
  6212. <col name="edition">pool</col>
  6213. <col name="sort">sortkey</col>
  6214. <col name="otx">/tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords[@scheme='keyword']</col>
  6215. <col name="upd">2015-09-14 14:20:28</col>
  6216. <col name="lang">it</col>
  6217. <col name="externalallowed">0</col>
  6218. </row>
  6219. </datas>
  6220. </table>
  6221. <table name="#_TP_entitytypes_entitytypes">
  6222. <structure>
  6223. <field name="identitytype">int(10) unsigned NOT NULL DEFAULT '0'</field>
  6224. <field name="identitytype2">int(10) unsigned NOT NULL DEFAULT '0'</field>
  6225. <field name="cond">varchar(16) DEFAULT NULL</field>
  6226. <field name="KEY_3" key="1">`index_identitytype` (`identitytype`)</field>
  6227. <field name="KEY_4" key="1">`index_identitytype2` (`identitytype2`)</field>
  6228. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  6229. </structure>
  6230. <datas>
  6231. <row>
  6232. <col name="identitytype">200</col>
  6233. <col name="identitytype2">0</col>
  6234. <col name="cond">*</col>
  6235. </row>
  6236. <row>
  6237. <col name="identitytype">203</col>
  6238. <col name="identitytype2">203</col>
  6239. <col name="cond">*</col>
  6240. </row>
  6241. <row>
  6242. <col name="identitytype">203</col>
  6243. <col name="identitytype2">202</col>
  6244. <col name="cond">*</col>
  6245. </row>
  6246. <row>
  6247. <col name="identitytype">195</col>
  6248. <col name="identitytype2">203</col>
  6249. <col name="cond">*</col>
  6250. </row>
  6251. <row>
  6252. <col name="identitytype">198</col>
  6253. <col name="identitytype2">200</col>
  6254. <col name="cond">*</col>
  6255. </row>
  6256. <row>
  6257. <col name="identitytype">198</col>
  6258. <col name="identitytype2">213</col>
  6259. <col name="cond">*</col>
  6260. </row>
  6261. <row>
  6262. <col name="identitytype">198</col>
  6263. <col name="identitytype2">211</col>
  6264. <col name="cond">*</col>
  6265. </row>
  6266. <row>
  6267. <col name="identitytype">198</col>
  6268. <col name="identitytype2">212</col>
  6269. <col name="cond">*</col>
  6270. </row>
  6271. <row>
  6272. <col name="identitytype">218</col>
  6273. <col name="identitytype2">210</col>
  6274. <col name="cond">*</col>
  6275. </row>
  6276. <row>
  6277. <col name="identitytype">218</col>
  6278. <col name="identitytype2">197</col>
  6279. <col name="cond">*</col>
  6280. </row>
  6281. <row>
  6282. <col name="identitytype">201</col>
  6283. <col name="identitytype2">200</col>
  6284. <col name="cond">*</col>
  6285. </row>
  6286. <row>
  6287. <col name="identitytype">218</col>
  6288. <col name="identitytype2">198</col>
  6289. <col name="cond">*</col>
  6290. </row>
  6291. <row>
  6292. <col name="identitytype">205</col>
  6293. <col name="identitytype2">235</col>
  6294. <col name="cond">*</col>
  6295. </row>
  6296. <row>
  6297. <col name="identitytype">198</col>
  6298. <col name="identitytype2">202</col>
  6299. <col name="cond">*</col>
  6300. </row>
  6301. <row>
  6302. <col name="identitytype">214</col>
  6303. <col name="identitytype2">223</col>
  6304. <col name="cond">*</col>
  6305. </row>
  6306. <row>
  6307. <col name="identitytype">214</col>
  6308. <col name="identitytype2">235</col>
  6309. <col name="cond">*</col>
  6310. </row>
  6311. <row>
  6312. <col name="identitytype">218</col>
  6313. <col name="identitytype2">193</col>
  6314. <col name="cond">*</col>
  6315. </row>
  6316. <row>
  6317. <col name="identitytype">218</col>
  6318. <col name="identitytype2">196</col>
  6319. <col name="cond">*</col>
  6320. </row>
  6321. <row>
  6322. <col name="identitytype">218</col>
  6323. <col name="identitytype2">199</col>
  6324. <col name="cond">*</col>
  6325. </row>
  6326. <row>
  6327. <col name="identitytype">218</col>
  6328. <col name="identitytype2">194</col>
  6329. <col name="cond">*</col>
  6330. </row>
  6331. <row>
  6332. <col name="identitytype">218</col>
  6333. <col name="identitytype2">195</col>
  6334. <col name="cond">*</col>
  6335. </row>
  6336. <row>
  6337. <col name="identitytype">214</col>
  6338. <col name="identitytype2">222</col>
  6339. <col name="cond">*</col>
  6340. </row>
  6341. <row>
  6342. <col name="identitytype">205</col>
  6343. <col name="identitytype2">222</col>
  6344. <col name="cond">*</col>
  6345. </row>
  6346. <row>
  6347. <col name="identitytype">202</col>
  6348. <col name="identitytype2">202</col>
  6349. <col name="cond">*</col>
  6350. </row>
  6351. <row>
  6352. <col name="identitytype">202</col>
  6353. <col name="identitytype2">200</col>
  6354. <col name="cond">*</col>
  6355. </row>
  6356. <row>
  6357. <col name="identitytype">205</col>
  6358. <col name="identitytype2">202</col>
  6359. <col name="cond">*</col>
  6360. </row>
  6361. <row>
  6362. <col name="identitytype">205</col>
  6363. <col name="identitytype2">200</col>
  6364. <col name="cond">*</col>
  6365. </row>
  6366. <row>
  6367. <col name="identitytype">214</col>
  6368. <col name="identitytype2">202</col>
  6369. <col name="cond">*</col>
  6370. </row>
  6371. <row>
  6372. <col name="identitytype">214</col>
  6373. <col name="identitytype2">200</col>
  6374. <col name="cond">*</col>
  6375. </row>
  6376. <row>
  6377. <col name="identitytype">235</col>
  6378. <col name="identitytype2">220</col>
  6379. <col name="cond">*</col>
  6380. </row>
  6381. <row>
  6382. <col name="identitytype">218</col>
  6383. <col name="identitytype2">202</col>
  6384. <col name="cond">*</col>
  6385. </row>
  6386. <row>
  6387. <col name="identitytype">218</col>
  6388. <col name="identitytype2">201</col>
  6389. <col name="cond">*</col>
  6390. </row>
  6391. <row>
  6392. <col name="identitytype">221</col>
  6393. <col name="identitytype2">206</col>
  6394. <col name="cond">*</col>
  6395. </row>
  6396. <row>
  6397. <col name="identitytype">221</col>
  6398. <col name="identitytype2">210</col>
  6399. <col name="cond">*</col>
  6400. </row>
  6401. <row>
  6402. <col name="identitytype">221</col>
  6403. <col name="identitytype2">197</col>
  6404. <col name="cond">*</col>
  6405. </row>
  6406. <row>
  6407. <col name="identitytype">221</col>
  6408. <col name="identitytype2">198</col>
  6409. <col name="cond">*</col>
  6410. </row>
  6411. <row>
  6412. <col name="identitytype">221</col>
  6413. <col name="identitytype2">193</col>
  6414. <col name="cond">*</col>
  6415. </row>
  6416. <row>
  6417. <col name="identitytype">221</col>
  6418. <col name="identitytype2">196</col>
  6419. <col name="cond">*</col>
  6420. </row>
  6421. <row>
  6422. <col name="identitytype">221</col>
  6423. <col name="identitytype2">199</col>
  6424. <col name="cond">*</col>
  6425. </row>
  6426. <row>
  6427. <col name="identitytype">221</col>
  6428. <col name="identitytype2">194</col>
  6429. <col name="cond">*</col>
  6430. </row>
  6431. <row>
  6432. <col name="identitytype">221</col>
  6433. <col name="identitytype2">195</col>
  6434. <col name="cond">*</col>
  6435. </row>
  6436. <row>
  6437. <col name="identitytype">221</col>
  6438. <col name="identitytype2">203</col>
  6439. <col name="cond">*</col>
  6440. </row>
  6441. <row>
  6442. <col name="identitytype">221</col>
  6443. <col name="identitytype2">223</col>
  6444. <col name="cond">*</col>
  6445. </row>
  6446. <row>
  6447. <col name="identitytype">221</col>
  6448. <col name="identitytype2">224</col>
  6449. <col name="cond">*</col>
  6450. </row>
  6451. <row>
  6452. <col name="identitytype">221</col>
  6453. <col name="identitytype2">222</col>
  6454. <col name="cond">*</col>
  6455. </row>
  6456. <row>
  6457. <col name="identitytype">221</col>
  6458. <col name="identitytype2">202</col>
  6459. <col name="cond">*</col>
  6460. </row>
  6461. <row>
  6462. <col name="identitytype">221</col>
  6463. <col name="identitytype2">201</col>
  6464. <col name="cond">*</col>
  6465. </row>
  6466. <row>
  6467. <col name="identitytype">221</col>
  6468. <col name="identitytype2">200</col>
  6469. <col name="cond">*</col>
  6470. </row>
  6471. <row>
  6472. <col name="identitytype">221</col>
  6473. <col name="identitytype2">213</col>
  6474. <col name="cond">*</col>
  6475. </row>
  6476. <row>
  6477. <col name="identitytype">221</col>
  6478. <col name="identitytype2">211</col>
  6479. <col name="cond">*</col>
  6480. </row>
  6481. <row>
  6482. <col name="identitytype">214</col>
  6483. <col name="identitytype2">211</col>
  6484. <col name="cond">*</col>
  6485. </row>
  6486. <row>
  6487. <col name="identitytype">222</col>
  6488. <col name="identitytype2">222</col>
  6489. <col name="cond">*</col>
  6490. </row>
  6491. <row>
  6492. <col name="identitytype">222</col>
  6493. <col name="identitytype2">211</col>
  6494. <col name="cond">*</col>
  6495. </row>
  6496. <row>
  6497. <col name="identitytype">223</col>
  6498. <col name="identitytype2">223</col>
  6499. <col name="cond">*</col>
  6500. </row>
  6501. <row>
  6502. <col name="identitytype">223</col>
  6503. <col name="identitytype2">213</col>
  6504. <col name="cond">*</col>
  6505. </row>
  6506. <row>
  6507. <col name="identitytype">224</col>
  6508. <col name="identitytype2">224</col>
  6509. <col name="cond">*</col>
  6510. </row>
  6511. <row>
  6512. <col name="identitytype">224</col>
  6513. <col name="identitytype2">212</col>
  6514. <col name="cond">*</col>
  6515. </row>
  6516. <row>
  6517. <col name="identitytype">205</col>
  6518. <col name="identitytype2">211</col>
  6519. <col name="cond">*</col>
  6520. </row>
  6521. <row>
  6522. <col name="identitytype">214</col>
  6523. <col name="identitytype2">0</col>
  6524. <col name="cond">*</col>
  6525. </row>
  6526. <row>
  6527. <col name="identitytype">193</col>
  6528. <col name="identitytype2">203</col>
  6529. <col name="cond">*</col>
  6530. </row>
  6531. <row>
  6532. <col name="identitytype">194</col>
  6533. <col name="identitytype2">203</col>
  6534. <col name="cond">*</col>
  6535. </row>
  6536. <row>
  6537. <col name="identitytype">194</col>
  6538. <col name="identitytype2">235</col>
  6539. <col name="cond">*</col>
  6540. </row>
  6541. <row>
  6542. <col name="identitytype">195</col>
  6543. <col name="identitytype2">235</col>
  6544. <col name="cond">*</col>
  6545. </row>
  6546. <row>
  6547. <col name="identitytype">195</col>
  6548. <col name="identitytype2">220</col>
  6549. <col name="cond">*</col>
  6550. </row>
  6551. <row>
  6552. <col name="identitytype">195</col>
  6553. <col name="identitytype2">202</col>
  6554. <col name="cond">*</col>
  6555. </row>
  6556. <row>
  6557. <col name="identitytype">195</col>
  6558. <col name="identitytype2">201</col>
  6559. <col name="cond">*</col>
  6560. </row>
  6561. <row>
  6562. <col name="identitytype">193</col>
  6563. <col name="identitytype2">235</col>
  6564. <col name="cond">*</col>
  6565. </row>
  6566. <row>
  6567. <col name="identitytype">193</col>
  6568. <col name="identitytype2">202</col>
  6569. <col name="cond">*</col>
  6570. </row>
  6571. <row>
  6572. <col name="identitytype">193</col>
  6573. <col name="identitytype2">201</col>
  6574. <col name="cond">*</col>
  6575. </row>
  6576. <row>
  6577. <col name="identitytype">194</col>
  6578. <col name="identitytype2">202</col>
  6579. <col name="cond">*</col>
  6580. </row>
  6581. <row>
  6582. <col name="identitytype">194</col>
  6583. <col name="identitytype2">201</col>
  6584. <col name="cond">*</col>
  6585. </row>
  6586. <row>
  6587. <col name="identitytype">196</col>
  6588. <col name="identitytype2">203</col>
  6589. <col name="cond">*</col>
  6590. </row>
  6591. <row>
  6592. <col name="identitytype">196</col>
  6593. <col name="identitytype2">235</col>
  6594. <col name="cond">*</col>
  6595. </row>
  6596. <row>
  6597. <col name="identitytype">196</col>
  6598. <col name="identitytype2">202</col>
  6599. <col name="cond">*</col>
  6600. </row>
  6601. <row>
  6602. <col name="identitytype">196</col>
  6603. <col name="identitytype2">201</col>
  6604. <col name="cond">*</col>
  6605. </row>
  6606. <row>
  6607. <col name="identitytype">197</col>
  6608. <col name="identitytype2">203</col>
  6609. <col name="cond">*</col>
  6610. </row>
  6611. <row>
  6612. <col name="identitytype">197</col>
  6613. <col name="identitytype2">235</col>
  6614. <col name="cond">*</col>
  6615. </row>
  6616. <row>
  6617. <col name="identitytype">197</col>
  6618. <col name="identitytype2">202</col>
  6619. <col name="cond">*</col>
  6620. </row>
  6621. <row>
  6622. <col name="identitytype">197</col>
  6623. <col name="identitytype2">201</col>
  6624. <col name="cond">*</col>
  6625. </row>
  6626. <row>
  6627. <col name="identitytype">199</col>
  6628. <col name="identitytype2">203</col>
  6629. <col name="cond">*</col>
  6630. </row>
  6631. <row>
  6632. <col name="identitytype">199</col>
  6633. <col name="identitytype2">235</col>
  6634. <col name="cond">*</col>
  6635. </row>
  6636. <row>
  6637. <col name="identitytype">199</col>
  6638. <col name="identitytype2">202</col>
  6639. <col name="cond">*</col>
  6640. </row>
  6641. <row>
  6642. <col name="identitytype">199</col>
  6643. <col name="identitytype2">201</col>
  6644. <col name="cond">*</col>
  6645. </row>
  6646. <row>
  6647. <col name="identitytype">204</col>
  6648. <col name="identitytype2">213</col>
  6649. <col name="cond">*</col>
  6650. </row>
  6651. <row>
  6652. <col name="identitytype">204</col>
  6653. <col name="identitytype2">223</col>
  6654. <col name="cond">*</col>
  6655. </row>
  6656. <row>
  6657. <col name="identitytype">221</col>
  6658. <col name="identitytype2">212</col>
  6659. <col name="cond">*</col>
  6660. </row>
  6661. <row>
  6662. <col name="identitytype">221</col>
  6663. <col name="identitytype2">205</col>
  6664. <col name="cond">*</col>
  6665. </row>
  6666. <row>
  6667. <col name="identitytype">221</col>
  6668. <col name="identitytype2">214</col>
  6669. <col name="cond">*</col>
  6670. </row>
  6671. <row>
  6672. <col name="identitytype">220</col>
  6673. <col name="identitytype2">200</col>
  6674. <col name="cond">*</col>
  6675. </row>
  6676. <row>
  6677. <col name="identitytype">210</col>
  6678. <col name="identitytype2">0</col>
  6679. <col name="cond">*</col>
  6680. </row>
  6681. <row>
  6682. <col name="identitytype">203</col>
  6683. <col name="identitytype2">201</col>
  6684. <col name="cond">*</col>
  6685. </row>
  6686. <row>
  6687. <col name="identitytype">225</col>
  6688. <col name="identitytype2">223</col>
  6689. <col name="cond">*</col>
  6690. </row>
  6691. <row>
  6692. <col name="identitytype">225</col>
  6693. <col name="identitytype2">213</col>
  6694. <col name="cond">*</col>
  6695. </row>
  6696. <row>
  6697. <col name="identitytype">226</col>
  6698. <col name="identitytype2">223</col>
  6699. <col name="cond">*</col>
  6700. </row>
  6701. <row>
  6702. <col name="identitytype">226</col>
  6703. <col name="identitytype2">213</col>
  6704. <col name="cond">*</col>
  6705. </row>
  6706. <row>
  6707. <col name="identitytype">227</col>
  6708. <col name="identitytype2">223</col>
  6709. <col name="cond">*</col>
  6710. </row>
  6711. <row>
  6712. <col name="identitytype">227</col>
  6713. <col name="identitytype2">213</col>
  6714. <col name="cond">*</col>
  6715. </row>
  6716. <row>
  6717. <col name="identitytype">228</col>
  6718. <col name="identitytype2">223</col>
  6719. <col name="cond">*</col>
  6720. </row>
  6721. <row>
  6722. <col name="identitytype">228</col>
  6723. <col name="identitytype2">213</col>
  6724. <col name="cond">*</col>
  6725. </row>
  6726. <row>
  6727. <col name="identitytype">229</col>
  6728. <col name="identitytype2">197</col>
  6729. <col name="cond">*</col>
  6730. </row>
  6731. <row>
  6732. <col name="identitytype">229</col>
  6733. <col name="identitytype2">198</col>
  6734. <col name="cond">*</col>
  6735. </row>
  6736. <row>
  6737. <col name="identitytype">229</col>
  6738. <col name="identitytype2">193</col>
  6739. <col name="cond">*</col>
  6740. </row>
  6741. <row>
  6742. <col name="identitytype">229</col>
  6743. <col name="identitytype2">196</col>
  6744. <col name="cond">*</col>
  6745. </row>
  6746. <row>
  6747. <col name="identitytype">229</col>
  6748. <col name="identitytype2">199</col>
  6749. <col name="cond">*</col>
  6750. </row>
  6751. <row>
  6752. <col name="identitytype">229</col>
  6753. <col name="identitytype2">194</col>
  6754. <col name="cond">*</col>
  6755. </row>
  6756. <row>
  6757. <col name="identitytype">229</col>
  6758. <col name="identitytype2">195</col>
  6759. <col name="cond">*</col>
  6760. </row>
  6761. <row>
  6762. <col name="identitytype">230</col>
  6763. <col name="identitytype2">197</col>
  6764. <col name="cond">*</col>
  6765. </row>
  6766. <row>
  6767. <col name="identitytype">230</col>
  6768. <col name="identitytype2">198</col>
  6769. <col name="cond">*</col>
  6770. </row>
  6771. <row>
  6772. <col name="identitytype">230</col>
  6773. <col name="identitytype2">193</col>
  6774. <col name="cond">*</col>
  6775. </row>
  6776. <row>
  6777. <col name="identitytype">230</col>
  6778. <col name="identitytype2">196</col>
  6779. <col name="cond">*</col>
  6780. </row>
  6781. <row>
  6782. <col name="identitytype">230</col>
  6783. <col name="identitytype2">199</col>
  6784. <col name="cond">*</col>
  6785. </row>
  6786. <row>
  6787. <col name="identitytype">230</col>
  6788. <col name="identitytype2">194</col>
  6789. <col name="cond">*</col>
  6790. </row>
  6791. <row>
  6792. <col name="identitytype">230</col>
  6793. <col name="identitytype2">195</col>
  6794. <col name="cond">*</col>
  6795. </row>
  6796. <row>
  6797. <col name="identitytype">231</col>
  6798. <col name="identitytype2">197</col>
  6799. <col name="cond">*</col>
  6800. </row>
  6801. <row>
  6802. <col name="identitytype">231</col>
  6803. <col name="identitytype2">198</col>
  6804. <col name="cond">*</col>
  6805. </row>
  6806. <row>
  6807. <col name="identitytype">231</col>
  6808. <col name="identitytype2">193</col>
  6809. <col name="cond">*</col>
  6810. </row>
  6811. <row>
  6812. <col name="identitytype">231</col>
  6813. <col name="identitytype2">196</col>
  6814. <col name="cond">*</col>
  6815. </row>
  6816. <row>
  6817. <col name="identitytype">231</col>
  6818. <col name="identitytype2">199</col>
  6819. <col name="cond">*</col>
  6820. </row>
  6821. <row>
  6822. <col name="identitytype">231</col>
  6823. <col name="identitytype2">194</col>
  6824. <col name="cond">*</col>
  6825. </row>
  6826. <row>
  6827. <col name="identitytype">231</col>
  6828. <col name="identitytype2">195</col>
  6829. <col name="cond">*</col>
  6830. </row>
  6831. <row>
  6832. <col name="identitytype">232</col>
  6833. <col name="identitytype2">197</col>
  6834. <col name="cond">*</col>
  6835. </row>
  6836. <row>
  6837. <col name="identitytype">232</col>
  6838. <col name="identitytype2">198</col>
  6839. <col name="cond">*</col>
  6840. </row>
  6841. <row>
  6842. <col name="identitytype">232</col>
  6843. <col name="identitytype2">193</col>
  6844. <col name="cond">*</col>
  6845. </row>
  6846. <row>
  6847. <col name="identitytype">232</col>
  6848. <col name="identitytype2">196</col>
  6849. <col name="cond">*</col>
  6850. </row>
  6851. <row>
  6852. <col name="identitytype">232</col>
  6853. <col name="identitytype2">199</col>
  6854. <col name="cond">*</col>
  6855. </row>
  6856. <row>
  6857. <col name="identitytype">232</col>
  6858. <col name="identitytype2">194</col>
  6859. <col name="cond">*</col>
  6860. </row>
  6861. <row>
  6862. <col name="identitytype">232</col>
  6863. <col name="identitytype2">195</col>
  6864. <col name="cond">*</col>
  6865. </row>
  6866. <row>
  6867. <col name="identitytype">235</col>
  6868. <col name="identitytype2">202</col>
  6869. <col name="cond">*</col>
  6870. </row>
  6871. </datas>
  6872. </table>
  6873. <table name="#_TP_internalstyles">
  6874. <structure>
  6875. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  6876. <field name="style">varchar(255) NOT NULL</field>
  6877. <field name="surrounding">varchar(255) NOT NULL</field>
  6878. <field name="conversion">varchar(255) NOT NULL</field>
  6879. <field name="greedy">tinyint(4) NOT NULL DEFAULT '1'</field>
  6880. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  6881. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  6882. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  6883. <field name="otx">tinytext NOT NULL</field>
  6884. <field name="PRIMARY_9" key="1">(`id`)</field>
  6885. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=37 DEFAULT CHARSET=utf8</field>
  6886. </structure>
  6887. <datas>
  6888. <row>
  6889. <col name="id">1</col>
  6890. <col name="style">citation,quotation,quotations,citatextual,citastextuales</col>
  6891. <col name="surrounding">-*</col>
  6892. <col name="conversion">&lt;blockquote&gt;&lt;/blockquote&gt;</col>
  6893. <col name="greedy">0</col>
  6894. <col name="rank">1</col>
  6895. <col name="status">1</col>
  6896. <col name="upd">2013-09-06 10:03:22</col>
  6897. <col name="otx">//*[@rend='quotation']</col>
  6898. </row>
  6899. <row>
  6900. <col name="id">3</col>
  6901. <col name="style">citationbis, quotationbis,quotationbis,citatextualbis</col>
  6902. <col name="surrounding">-*</col>
  6903. <col name="conversion">&lt;blockquote class="citationbis"&gt;</col>
  6904. <col name="greedy">0</col>
  6905. <col name="rank">3</col>
  6906. <col name="status">1</col>
  6907. <col name="upd">2013-09-06 10:03:22</col>
  6908. <col name="otx">//*[@rend='quotation2']</col>
  6909. </row>
  6910. <row>
  6911. <col name="id">4</col>
  6912. <col name="style">citationter, quotationter,quotationter,citatextualter</col>
  6913. <col name="surrounding">-*</col>
  6914. <col name="conversion">&lt;blockquote class="citationter"&gt;</col>
  6915. <col name="greedy">0</col>
  6916. <col name="rank">4</col>
  6917. <col name="status">1</col>
  6918. <col name="upd">2013-09-06 10:03:22</col>
  6919. <col name="otx">//*[@rend='quotation3']</col>
  6920. </row>
  6921. <row>
  6922. <col name="id">5</col>
  6923. <col name="style">titreillustration, illustrationtitle,illustrationtitle,titulofigura</col>
  6924. <col name="surrounding">*-</col>
  6925. <col name="conversion"></col>
  6926. <col name="greedy">0</col>
  6927. <col name="rank">5</col>
  6928. <col name="status">1</col>
  6929. <col name="upd">2013-09-06 10:03:22</col>
  6930. <col name="otx">//*[@rend='figure-title']</col>
  6931. </row>
  6932. <row>
  6933. <col name="id">6</col>
  6934. <col name="style">legendeillustration,illustrationcaption,leyendafigura</col>
  6935. <col name="surrounding">-*</col>
  6936. <col name="conversion"></col>
  6937. <col name="greedy">0</col>
  6938. <col name="rank">6</col>
  6939. <col name="status">1</col>
  6940. <col name="upd">2013-09-06 10:03:22</col>
  6941. <col name="otx">//*[@rend='figure-legend']</col>
  6942. </row>
  6943. <row>
  6944. <col name="id">10</col>
  6945. <col name="style">code,codigo</col>
  6946. <col name="surrounding">*-</col>
  6947. <col name="conversion"></col>
  6948. <col name="greedy">0</col>
  6949. <col name="rank">10</col>
  6950. <col name="status">1</col>
  6951. <col name="upd">2013-09-06 10:03:22</col>
  6952. <col name="otx">//*[@rend='code']</col>
  6953. </row>
  6954. <row>
  6955. <col name="id">11</col>
  6956. <col name="style">question,pregunta</col>
  6957. <col name="surrounding">*-</col>
  6958. <col name="conversion"></col>
  6959. <col name="greedy">0</col>
  6960. <col name="rank">11</col>
  6961. <col name="status">1</col>
  6962. <col name="upd">2013-09-06 10:03:22</col>
  6963. <col name="otx">//*[@rend='question']</col>
  6964. </row>
  6965. <row>
  6966. <col name="id">12</col>
  6967. <col name="style">reponse,answer,respuesta</col>
  6968. <col name="surrounding">*-</col>
  6969. <col name="conversion"></col>
  6970. <col name="greedy">0</col>
  6971. <col name="rank">12</col>
  6972. <col name="status">1</col>
  6973. <col name="upd">2013-09-06 10:03:22</col>
  6974. <col name="otx">//*[@rend='answer']</col>
  6975. </row>
  6976. <row>
  6977. <col name="id">20</col>
  6978. <col name="style">separateur,sparateur,separator,separador</col>
  6979. <col name="surrounding">*-</col>
  6980. <col name="conversion"></col>
  6981. <col name="greedy">0</col>
  6982. <col name="rank">19</col>
  6983. <col name="status">1</col>
  6984. <col name="upd">2013-09-06 10:03:22</col>
  6985. <col name="otx">//*[@rend='break']</col>
  6986. </row>
  6987. <row>
  6988. <col name="id">19</col>
  6989. <col name="style">section1,titulo1</col>
  6990. <col name="surrounding">*-</col>
  6991. <col name="conversion">&lt;h1&gt;</col>
  6992. <col name="greedy">0</col>
  6993. <col name="rank">13</col>
  6994. <col name="status">1</col>
  6995. <col name="upd">2013-09-06 10:03:22</col>
  6996. <col name="otx">//tei:head[@subtype='level1']</col>
  6997. </row>
  6998. <row>
  6999. <col name="id">15</col>
  7000. <col name="style">section3,titulo3</col>
  7001. <col name="surrounding">*-</col>
  7002. <col name="conversion">&lt;h3&gt;</col>
  7003. <col name="greedy">0</col>
  7004. <col name="rank">15</col>
  7005. <col name="status">1</col>
  7006. <col name="upd">2013-09-06 10:03:22</col>
  7007. <col name="otx">//tei:head[@subtype='level3']</col>
  7008. </row>
  7009. <row>
  7010. <col name="id">16</col>
  7011. <col name="style">section4,titulo4</col>
  7012. <col name="surrounding">*-</col>
  7013. <col name="conversion">&lt;h4&gt;</col>
  7014. <col name="greedy">0</col>
  7015. <col name="rank">16</col>
  7016. <col name="status">1</col>
  7017. <col name="upd">2013-09-06 10:03:22</col>
  7018. <col name="otx">//tei:head[@subtype='level4']</col>
  7019. </row>
  7020. <row>
  7021. <col name="id">17</col>
  7022. <col name="style">section5,titulo5</col>
  7023. <col name="surrounding">*-</col>
  7024. <col name="conversion">&lt;h5&gt;</col>
  7025. <col name="greedy">0</col>
  7026. <col name="rank">17</col>
  7027. <col name="status">1</col>
  7028. <col name="upd">2013-09-06 10:03:22</col>
  7029. <col name="otx">//tei:head[@subtype='level5']</col>
  7030. </row>
  7031. <row>
  7032. <col name="id">18</col>
  7033. <col name="style">section6,titulo6</col>
  7034. <col name="surrounding">*-</col>
  7035. <col name="conversion">&lt;h6&gt;</col>
  7036. <col name="greedy">0</col>
  7037. <col name="rank">18</col>
  7038. <col name="status">1</col>
  7039. <col name="upd">2013-09-06 10:03:22</col>
  7040. <col name="otx">//tei:head[@subtype='level6']</col>
  7041. </row>
  7042. <row>
  7043. <col name="id">21</col>
  7044. <col name="style">paragraphesansretrait,notindentedparagraph,parrafosinsangria</col>
  7045. <col name="surrounding">*-</col>
  7046. <col name="conversion"></col>
  7047. <col name="greedy">0</col>
  7048. <col name="rank">20</col>
  7049. <col name="status">1</col>
  7050. <col name="upd">2013-09-06 10:03:22</col>
  7051. <col name="otx">//*[@rend='noindent']</col>
  7052. </row>
  7053. <row>
  7054. <col name="id">22</col>
  7055. <col name="style">epigraphe,pigraphe,addendum,epigrafe</col>
  7056. <col name="surrounding">*-</col>
  7057. <col name="conversion"></col>
  7058. <col name="greedy">0</col>
  7059. <col name="rank">21</col>
  7060. <col name="status">1</col>
  7061. <col name="upd">2013-09-06 10:03:22</col>
  7062. <col name="otx">//*[@rend='epigraph']</col>
  7063. </row>
  7064. <row>
  7065. <col name="id">23</col>
  7066. <col name="style">section2,titulo2</col>
  7067. <col name="surrounding">*-</col>
  7068. <col name="conversion">&lt;h2&gt;</col>
  7069. <col name="greedy">0</col>
  7070. <col name="rank">14</col>
  7071. <col name="status">1</col>
  7072. <col name="upd">2013-09-06 10:03:22</col>
  7073. <col name="otx">//tei:head[@subtype='level2']</col>
  7074. </row>
  7075. <row>
  7076. <col name="id">27</col>
  7077. <col name="style">terme</col>
  7078. <col name="surrounding">-*</col>
  7079. <col name="conversion"></col>
  7080. <col name="greedy">0</col>
  7081. <col name="rank">25</col>
  7082. <col name="status">1</col>
  7083. <col name="upd">2006-03-02 09:52:27</col>
  7084. <col name="otx"></col>
  7085. </row>
  7086. <row>
  7087. <col name="id">28</col>
  7088. <col name="style">definitiondeterme</col>
  7089. <col name="surrounding">-*</col>
  7090. <col name="conversion"></col>
  7091. <col name="greedy">0</col>
  7092. <col name="rank">26</col>
  7093. <col name="status">1</col>
  7094. <col name="upd">2006-03-02 09:52:37</col>
  7095. <col name="otx"></col>
  7096. </row>
  7097. <row>
  7098. <col name="id">32</col>
  7099. <col name="style">creditillustration,crditillustration,creditsillustration,crditsillustration,illustrationcredits,creditosfigura</col>
  7100. <col name="surrounding">-*</col>
  7101. <col name="conversion"></col>
  7102. <col name="greedy">0</col>
  7103. <col name="rank">30</col>
  7104. <col name="status">1</col>
  7105. <col name="upd">2013-09-06 10:03:22</col>
  7106. <col name="otx">//*[@rend='figure-license']</col>
  7107. </row>
  7108. <row>
  7109. <col name="id">34</col>
  7110. <col name="style">encadre,box,cuadro</col>
  7111. <col name="surrounding">-*</col>
  7112. <col name="conversion"></col>
  7113. <col name="greedy">0</col>
  7114. <col name="rank">32</col>
  7115. <col name="status">1</col>
  7116. <col name="upd">2013-09-06 10:03:22</col>
  7117. <col name="otx">//*[@rend='box']</col>
  7118. </row>
  7119. </datas>
  7120. </table>
  7121. <table name="#_TP_characterstyles">
  7122. <structure>
  7123. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  7124. <field name="style">varchar(255) NOT NULL</field>
  7125. <field name="conversion">varchar(255) NOT NULL</field>
  7126. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  7127. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  7128. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  7129. <field name="otx">tinytext NOT NULL</field>
  7130. <field name="PRIMARY_7" key="1">(`id`)</field>
  7131. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8</field>
  7132. </structure>
  7133. </table>
  7134. <table name="#_TP_optiongroups">
  7135. <structure>
  7136. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  7137. <field name="idparent">int(10) unsigned NOT NULL</field>
  7138. <field name="name">varchar(255) NOT NULL</field>
  7139. <field name="title">varchar(255) NOT NULL</field>
  7140. <field name="altertitle">text NOT NULL</field>
  7141. <field name="comment">text NOT NULL</field>
  7142. <field name="logic">tinytext NOT NULL</field>
  7143. <field name="exportpolicy">tinyint(4) NOT NULL DEFAULT '1'</field>
  7144. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  7145. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  7146. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  7147. <field name="PRIMARY_11" key="1">(`id`)</field>
  7148. <field name="UNIQUE_12" key="1">`name` (`name`)</field>
  7149. <field name="KEY_13" key="1">`index_name` (`name`)</field>
  7150. <field name="KEY_14" key="1">`index_idparent` (`idparent`)</field>
  7151. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8</field>
  7152. </structure>
  7153. <datas>
  7154. <row>
  7155. <col name="id">2</col>
  7156. <col name="idparent">0</col>
  7157. <col name="name">metadonneessite</col>
  7158. <col name="title">Métadonnées du site</col>
  7159. <col name="altertitle">&lt;r2r:ml lang="en"&gt;Website metadata&lt;/r2r:ml&gt;&lt;r2r:ml lang="pt"&gt;Metadaos do website&lt;/r2r:ml&gt;</col>
  7160. <col name="comment"></col>
  7161. <col name="logic"></col>
  7162. <col name="exportpolicy">1</col>
  7163. <col name="rank">2</col>
  7164. <col name="status">1</col>
  7165. <col name="upd">2011-09-21 13:22:00</col>
  7166. </row>
  7167. <row>
  7168. <col name="id">8</col>
  7169. <col name="idparent">0</col>
  7170. <col name="name">diffusionelectronique</col>
  7171. <col name="title">Diffusion électronique</col>
  7172. <col name="altertitle">&lt;r2r:ml lang="pt"&gt;Difusão electrónica&lt;/r2r:ml&gt;</col>
  7173. <col name="comment"></col>
  7174. <col name="logic"></col>
  7175. <col name="exportpolicy">1</col>
  7176. <col name="rank">7</col>
  7177. <col name="status">1</col>
  7178. <col name="upd">2011-09-21 13:23:06</col>
  7179. </row>
  7180. <row>
  7181. <col name="id">9</col>
  7182. <col name="idparent">0</col>
  7183. <col name="name">optionsgenerales</col>
  7184. <col name="title">Options générales</col>
  7185. <col name="altertitle">&lt;r2r:ml lang="pt"&gt;Opções gerais&lt;/r2r:ml&gt;</col>
  7186. <col name="comment"></col>
  7187. <col name="logic"></col>
  7188. <col name="exportpolicy">1</col>
  7189. <col name="rank">8</col>
  7190. <col name="status">1</col>
  7191. <col name="upd">2011-09-21 13:23:28</col>
  7192. </row>
  7193. <row>
  7194. <col name="id">10</col>
  7195. <col name="idparent">0</col>
  7196. <col name="name">optionsaffichage</col>
  7197. <col name="title">Options d'affichage</col>
  7198. <col name="altertitle">&lt;r2r:ml lang="pt"&gt;Opções de visualização&lt;/r2r:ml&gt;</col>
  7199. <col name="comment"></col>
  7200. <col name="logic"></col>
  7201. <col name="exportpolicy">1</col>
  7202. <col name="rank">9</col>
  7203. <col name="status">1</col>
  7204. <col name="upd">2011-10-07 09:24:29</col>
  7205. </row>
  7206. </datas>
  7207. </table>
  7208. <table name="#_TP_options">
  7209. <structure>
  7210. <field name="id">int(10) unsigned NOT NULL AUTO_INCREMENT</field>
  7211. <field name="idgroup">int(10) unsigned NOT NULL DEFAULT '0'</field>
  7212. <field name="name">varchar(255) NOT NULL</field>
  7213. <field name="title">tinytext NOT NULL</field>
  7214. <field name="altertitle">text NOT NULL</field>
  7215. <field name="type">varchar(255) NOT NULL</field>
  7216. <field name="edition">tinytext NOT NULL</field>
  7217. <field name="editionparams">tinytext NOT NULL</field>
  7218. <field name="value">text NOT NULL</field>
  7219. <field name="defaultvalue">text NOT NULL</field>
  7220. <field name="comment">text NOT NULL</field>
  7221. <field name="userrights">tinyint(3) unsigned NOT NULL DEFAULT '0'</field>
  7222. <field name="rank">int(10) unsigned NOT NULL DEFAULT '0'</field>
  7223. <field name="status">tinyint(4) NOT NULL DEFAULT '1'</field>
  7224. <field name="upd">timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP</field>
  7225. <field name="PRIMARY_15" key="1">(`id`)</field>
  7226. <field name="UNIQUE_16" key="1">`unique_name` (`name`,`idgroup`)</field>
  7227. <field name="UNIQUE_17" key="1">`name` (`name`,`idgroup`)</field>
  7228. <field name="KEY_18" key="1">`index_name` (`name`)</field>
  7229. <field name="KEY_19" key="1">`index_idgroup` (`idgroup`)</field>
  7230. <field name="tableOptions">ENGINE=MyISAM AUTO_INCREMENT=14207 DEFAULT CHARSET=utf8</field>
  7231. </structure>
  7232. <datas>
  7233. <row>
  7234. <col name="id">4</col>
  7235. <col name="idgroup">2</col>
  7236. <col name="name">titresite</col>
  7237. <col name="title">Titre du site</col>
  7238. <col name="altertitle"></col>
  7239. <col name="type">tinytext</col>
  7240. <col name="edition">editable</col>
  7241. <col name="editionparams"></col>
  7242. <col name="value"></col>
  7243. <col name="defaultvalue">Titresite</col>
  7244. <col name="comment"></col>
  7245. <col name="userrights">40</col>
  7246. <col name="rank">1</col>
  7247. <col name="status">1</col>
  7248. <col name="upd">2015-03-05 14:57:55</col>
  7249. </row>
  7250. <row>
  7251. <col name="id">5</col>
  7252. <col name="idgroup">2</col>
  7253. <col name="name">titresiteabrege</col>
  7254. <col name="title">Titre abrégé du site</col>
  7255. <col name="altertitle"></col>
  7256. <col name="type">tinytext</col>
  7257. <col name="edition">editable</col>
  7258. <col name="editionparams"></col>
  7259. <col name="value"></col>
  7260. <col name="defaultvalue">Titre abrégé du site</col>
  7261. <col name="comment"></col>
  7262. <col name="userrights">40</col>
  7263. <col name="rank">3</col>
  7264. <col name="status">1</col>
  7265. <col name="upd">2015-03-05 14:57:55</col>
  7266. </row>
  7267. <row>
  7268. <col name="id">6</col>
  7269. <col name="idgroup">2</col>
  7270. <col name="name">descriptionsite</col>
  7271. <col name="title">Description du site</col>
  7272. <col name="altertitle"></col>
  7273. <col name="type">text</col>
  7274. <col name="edition">editable</col>
  7275. <col name="editionparams"></col>
  7276. <col name="value"></col>
  7277. <col name="defaultvalue"></col>
  7278. <col name="comment"></col>
  7279. <col name="userrights">40</col>
  7280. <col name="rank">4</col>
  7281. <col name="status">1</col>
  7282. <col name="upd">2015-07-08 09:25:11</col>
  7283. </row>
  7284. <row>
  7285. <col name="id">7</col>
  7286. <col name="idgroup">2</col>
  7287. <col name="name">urldusite</col>
  7288. <col name="title">URL officielle du site</col>
  7289. <col name="altertitle"></col>
  7290. <col name="type">url</col>
  7291. <col name="edition">editable</col>
  7292. <col name="editionparams"></col>
  7293. <col name="value"></col>
  7294. <col name="defaultvalue"></col>
  7295. <col name="comment"></col>
  7296. <col name="userrights">40</col>
  7297. <col name="rank">5</col>
  7298. <col name="status">1</col>
  7299. <col name="upd">2011-09-20 23:25:05</col>
  7300. </row>
  7301. <row>
  7302. <col name="id">9</col>
  7303. <col name="idgroup">2</col>
  7304. <col name="name">issn</col>
  7305. <col name="title">ISSN</col>
  7306. <col name="altertitle"></col>
  7307. <col name="type">tinytext</col>
  7308. <col name="edition">editable</col>
  7309. <col name="editionparams"></col>
  7310. <col name="value"></col>
  7311. <col name="defaultvalue"></col>
  7312. <col name="comment"></col>
  7313. <col name="userrights">30</col>
  7314. <col name="rank">6</col>
  7315. <col name="status">1</col>
  7316. <col name="upd">2011-09-20 23:25:27</col>
  7317. </row>
  7318. <row>
  7319. <col name="id">10</col>
  7320. <col name="idgroup">2</col>
  7321. <col name="name">editeur</col>
  7322. <col name="title">Nom de l'éditeur du site</col>
  7323. <col name="altertitle"></col>
  7324. <col name="type">tinytext</col>
  7325. <col name="edition">editable</col>
  7326. <col name="editionparams"></col>
  7327. <col name="value"></col>
  7328. <col name="defaultvalue"></col>
  7329. <col name="comment"></col>
  7330. <col name="userrights">30</col>
  7331. <col name="rank">8</col>
  7332. <col name="status">1</col>
  7333. <col name="upd">2011-09-20 23:26:16</col>
  7334. </row>
  7335. <row>
  7336. <col name="id">11</col>
  7337. <col name="idgroup">2</col>
  7338. <col name="name">adresseediteur</col>
  7339. <col name="title">Adresse postale de l'éditeur</col>
  7340. <col name="altertitle"></col>
  7341. <col name="type">text</col>
  7342. <col name="edition">editable</col>
  7343. <col name="editionparams"></col>
  7344. <col name="value"></col>
  7345. <col name="defaultvalue"></col>
  7346. <col name="comment"></col>
  7347. <col name="userrights">30</col>
  7348. <col name="rank">9</col>
  7349. <col name="status">1</col>
  7350. <col name="upd">2011-09-20 23:26:37</col>
  7351. </row>
  7352. <row>
  7353. <col name="id">12</col>
  7354. <col name="idgroup">2</col>
  7355. <col name="name">producteursite</col>
  7356. <col name="title">Nom du producteur du site</col>
  7357. <col name="altertitle"></col>
  7358. <col name="type">tinytext</col>
  7359. <col name="edition">editable</col>
  7360. <col name="editionparams"></col>
  7361. <col name="value"></col>
  7362. <col name="defaultvalue"></col>
  7363. <col name="comment"></col>
  7364. <col name="userrights">30</col>
  7365. <col name="rank">10</col>
  7366. <col name="status">1</col>
  7367. <col name="upd">2011-09-20 23:26:59</col>
  7368. </row>
  7369. <row>
  7370. <col name="id">13</col>
  7371. <col name="idgroup">2</col>
  7372. <col name="name">diffuseursite</col>
  7373. <col name="title">Nom du diffuseur du site</col>
  7374. <col name="altertitle"></col>
  7375. <col name="type">tinytext</col>
  7376. <col name="edition">editable</col>
  7377. <col name="editionparams"></col>
  7378. <col name="value"></col>
  7379. <col name="defaultvalue"></col>
  7380. <col name="comment"></col>
  7381. <col name="userrights">30</col>
  7382. <col name="rank">11</col>
  7383. <col name="status">1</col>
  7384. <col name="upd">2011-09-20 23:27:18</col>
  7385. </row>
  7386. <row>
  7387. <col name="id">14</col>
  7388. <col name="idgroup">2</col>
  7389. <col name="name">droitsauteur</col>
  7390. <col name="title">Droits d'auteur par défaut</col>
  7391. <col name="altertitle"></col>
  7392. <col name="type">tinytext</col>
  7393. <col name="edition">editable</col>
  7394. <col name="editionparams"></col>
  7395. <col name="value"></col>
  7396. <col name="defaultvalue"></col>
  7397. <col name="comment"></col>
  7398. <col name="userrights">30</col>
  7399. <col name="rank">12</col>
  7400. <col name="status">1</col>
  7401. <col name="upd">2011-09-20 23:27:37</col>
  7402. </row>
  7403. <row>
  7404. <col name="id">15</col>
  7405. <col name="idgroup">2</col>
  7406. <col name="name">directeurpublication</col>
  7407. <col name="title">Nom du directeur de la publication</col>
  7408. <col name="altertitle"></col>
  7409. <col name="type">tinytext</col>
  7410. <col name="edition">editable</col>
  7411. <col name="editionparams"></col>
  7412. <col name="value"></col>
  7413. <col name="defaultvalue"></col>
  7414. <col name="comment"></col>
  7415. <col name="userrights">30</col>
  7416. <col name="rank">13</col>
  7417. <col name="status">1</col>
  7418. <col name="upd">2011-09-20 23:27:57</col>
  7419. </row>
  7420. <row>
  7421. <col name="id">16</col>
  7422. <col name="idgroup">2</col>
  7423. <col name="name">redacteurenchef</col>
  7424. <col name="title">Nom du Rédacteur en chef</col>
  7425. <col name="altertitle"></col>
  7426. <col name="type">tinytext</col>
  7427. <col name="edition">editable</col>
  7428. <col name="editionparams"></col>
  7429. <col name="value"></col>
  7430. <col name="defaultvalue"></col>
  7431. <col name="comment"></col>
  7432. <col name="userrights">30</col>
  7433. <col name="rank">14</col>
  7434. <col name="status">1</col>
  7435. <col name="upd">2011-09-20 23:28:15</col>
  7436. </row>
  7437. <row>
  7438. <col name="id">17</col>
  7439. <col name="idgroup">2</col>
  7440. <col name="name">courrielwebmaster</col>
  7441. <col name="title">Courriel du webmaster</col>
  7442. <col name="altertitle"></col>
  7443. <col name="type">email</col>
  7444. <col name="edition">editable</col>
  7445. <col name="editionparams"></col>
  7446. <col name="value"></col>
  7447. <col name="defaultvalue"></col>
  7448. <col name="comment"></col>
  7449. <col name="userrights">30</col>
  7450. <col name="rank">15</col>
  7451. <col name="status">1</col>
  7452. <col name="upd">2011-09-20 23:28:37</col>
  7453. </row>
  7454. <row>
  7455. <col name="id">18</col>
  7456. <col name="idgroup">2</col>
  7457. <col name="name">courrielabuse</col>
  7458. <col name="title">Courriel abuse</col>
  7459. <col name="altertitle"></col>
  7460. <col name="type">tinytext</col>
  7461. <col name="edition">editable</col>
  7462. <col name="editionparams"></col>
  7463. <col name="value"></col>
  7464. <col name="defaultvalue"></col>
  7465. <col name="comment"></col>
  7466. <col name="userrights">40</col>
  7467. <col name="rank">16</col>
  7468. <col name="status">1</col>
  7469. <col name="upd">2011-09-20 23:28:56</col>
  7470. </row>
  7471. <row>
  7472. <col name="id">19</col>
  7473. <col name="idgroup">2</col>
  7474. <col name="name">motsclesdusite</col>
  7475. <col name="title">Mots clés décrivant le site (entre virgules)</col>
  7476. <col name="altertitle"></col>
  7477. <col name="type">text</col>
  7478. <col name="edition">editable</col>
  7479. <col name="editionparams"></col>
  7480. <col name="value"></col>
  7481. <col name="defaultvalue"></col>
  7482. <col name="comment"></col>
  7483. <col name="userrights">30</col>
  7484. <col name="rank">17</col>
  7485. <col name="status">1</col>
  7486. <col name="upd">2015-07-08 09:26:05</col>
  7487. </row>
  7488. <row>
  7489. <col name="id">14204</col>
  7490. <col name="idgroup">10</col>
  7491. <col name="name">affichageremerciements</col>
  7492. <col name="title">Affichage des remerciements</col>
  7493. <col name="altertitle"></col>
  7494. <col name="type">list</col>
  7495. <col name="edition">editable</col>
  7496. <col name="editionparams">top,bottom</col>
  7497. <col name="value"></col>
  7498. <col name="defaultvalue">top</col>
  7499. <col name="comment"></col>
  7500. <col name="userrights">40</col>
  7501. <col name="rank">34</col>
  7502. <col name="status">1</col>
  7503. <col name="upd">2013-07-29 15:53:58</col>
  7504. </row>
  7505. <row>
  7506. <col name="id">26</col>
  7507. <col name="idgroup">2</col>
  7508. <col name="name">issn_electronique</col>
  7509. <col name="title">ISSN électronique</col>
  7510. <col name="altertitle"></col>
  7511. <col name="type">tinytext</col>
  7512. <col name="edition">editable</col>
  7513. <col name="editionparams"></col>
  7514. <col name="value"></col>
  7515. <col name="defaultvalue"></col>
  7516. <col name="comment"></col>
  7517. <col name="userrights">30</col>
  7518. <col name="rank">7</col>
  7519. <col name="status">32</col>
  7520. <col name="upd">2011-09-20 23:25:47</col>
  7521. </row>
  7522. <row>
  7523. <col name="id">27</col>
  7524. <col name="idgroup">2</col>
  7525. <col name="name">langueprincipale</col>
  7526. <col name="title">Langue principale du site</col>
  7527. <col name="altertitle"></col>
  7528. <col name="type">lang</col>
  7529. <col name="edition">editable</col>
  7530. <col name="editionparams"></col>
  7531. <col name="value"></col>
  7532. <col name="defaultvalue">fr</col>
  7533. <col name="comment"></col>
  7534. <col name="userrights">40</col>
  7535. <col name="rank">18</col>
  7536. <col name="status">1</col>
  7537. <col name="upd">2015-03-04 17:04:46</col>
  7538. </row>
  7539. <row>
  7540. <col name="id">28</col>
  7541. <col name="idgroup">2</col>
  7542. <col name="name">soustitresite</col>
  7543. <col name="title">Sous titre du site</col>
  7544. <col name="altertitle"></col>
  7545. <col name="type">tinytext</col>
  7546. <col name="edition">editable</col>
  7547. <col name="editionparams"></col>
  7548. <col name="value"></col>
  7549. <col name="defaultvalue"></col>
  7550. <col name="comment"></col>
  7551. <col name="userrights">40</col>
  7552. <col name="rank">2</col>
  7553. <col name="status">1</col>
  7554. <col name="upd">2015-03-05 14:57:55</col>
  7555. </row>
  7556. <row>
  7557. <col name="id">14184</col>
  7558. <col name="idgroup">2</col>
  7559. <col name="name">typepublication</col>
  7560. <col name="title">Type de publication</col>
  7561. <col name="altertitle"></col>
  7562. <col name="type">list</col>
  7563. <col name="edition">select</col>
  7564. <col name="editionparams">Revue, Cahier, Bulletin, Monographies</col>
  7565. <col name="value"></col>
  7566. <col name="defaultvalue">Revue</col>
  7567. <col name="comment"></col>
  7568. <col name="userrights">40</col>
  7569. <col name="rank">26</col>
  7570. <col name="status">1</col>
  7571. <col name="upd">2015-03-04 17:04:46</col>
  7572. </row>
  7573. <row>
  7574. <col name="id">14191</col>
  7575. <col name="idgroup">2</col>
  7576. <col name="name">imagehabillee</col>
  7577. <col name="title">Images habillées par le texte</col>
  7578. <col name="altertitle"></col>
  7579. <col name="type">boolean</col>
  7580. <col name="edition">editable</col>
  7581. <col name="editionparams"></col>
  7582. <col name="value"></col>
  7583. <col name="defaultvalue"></col>
  7584. <col name="comment"></col>
  7585. <col name="userrights">40</col>
  7586. <col name="rank">29</col>
  7587. <col name="status">1</col>
  7588. <col name="upd">2011-09-20 23:30:34</col>
  7589. </row>
  7590. <row>
  7591. <col name="id">14190</col>
  7592. <col name="idgroup">2</col>
  7593. <col name="name">pdf_electronique</col>
  7594. <col name="title">Pdf pour revue électronique</col>
  7595. <col name="altertitle"></col>
  7596. <col name="type">boolean</col>
  7597. <col name="edition">editable</col>
  7598. <col name="editionparams"></col>
  7599. <col name="value"></col>
  7600. <col name="defaultvalue"></col>
  7601. <col name="comment"></col>
  7602. <col name="userrights">40</col>
  7603. <col name="rank">28</col>
  7604. <col name="status">1</col>
  7605. <col name="upd">2011-09-20 23:30:15</col>
  7606. </row>
  7607. <row>
  7608. <col name="id">14189</col>
  7609. <col name="idgroup">2</col>
  7610. <col name="name">pdf</col>
  7611. <col name="title">Génération de fichier pdf</col>
  7612. <col name="altertitle"></col>
  7613. <col name="type">boolean</col>
  7614. <col name="edition">editable</col>
  7615. <col name="editionparams"></col>
  7616. <col name="value"></col>
  7617. <col name="defaultvalue"></col>
  7618. <col name="comment"></col>
  7619. <col name="userrights">40</col>
  7620. <col name="rank">27</col>
  7621. <col name="status">1</col>
  7622. <col name="upd">2011-09-20 23:30:01</col>
  7623. </row>
  7624. <row>
  7625. <col name="id">14198</col>
  7626. <col name="idgroup">8</col>
  7627. <col name="name">prixcommercialisationnumero</col>
  7628. <col name="title">Prix commercialisation numéro</col>
  7629. <col name="altertitle"></col>
  7630. <col name="type">text</col>
  7631. <col name="edition">editable</col>
  7632. <col name="editionparams"></col>
  7633. <col name="value"></col>
  7634. <col name="defaultvalue"></col>
  7635. <col name="comment"></col>
  7636. <col name="userrights">40</col>
  7637. <col name="rank">3</col>
  7638. <col name="status">1</col>
  7639. <col name="upd">2011-09-20 23:31:45</col>
  7640. </row>
  7641. <row>
  7642. <col name="id">14197</col>
  7643. <col name="idgroup">8</col>
  7644. <col name="name">librairieelectronique</col>
  7645. <col name="title">Librairie électronique</col>
  7646. <col name="altertitle"></col>
  7647. <col name="type">boolean</col>
  7648. <col name="edition">editable</col>
  7649. <col name="editionparams"></col>
  7650. <col name="value"></col>
  7651. <col name="defaultvalue"></col>
  7652. <col name="comment"></col>
  7653. <col name="userrights">40</col>
  7654. <col name="rank">2</col>
  7655. <col name="status">1</col>
  7656. <col name="upd">2011-09-20 23:31:27</col>
  7657. </row>
  7658. <row>
  7659. <col name="id">14196</col>
  7660. <col name="idgroup">8</col>
  7661. <col name="name">bouquetfreemium</col>
  7662. <col name="title">Bouquet Freemium</col>
  7663. <col name="altertitle"></col>
  7664. <col name="type">boolean</col>
  7665. <col name="edition">editable</col>
  7666. <col name="editionparams"></col>
  7667. <col name="value"></col>
  7668. <col name="defaultvalue"></col>
  7669. <col name="comment"></col>
  7670. <col name="userrights">40</col>
  7671. <col name="rank">1</col>
  7672. <col name="status">1</col>
  7673. <col name="upd">2011-09-20 23:31:11</col>
  7674. </row>
  7675. <row>
  7676. <col name="id">14199</col>
  7677. <col name="idgroup">9</col>
  7678. <col name="name">attributiondoi</col>
  7679. <col name="title">Attribution de DOI</col>
  7680. <col name="altertitle"></col>
  7681. <col name="type">boolean</col>
  7682. <col name="edition">editable</col>
  7683. <col name="editionparams"></col>
  7684. <col name="value"></col>
  7685. <col name="defaultvalue"></col>
  7686. <col name="comment"></col>
  7687. <col name="userrights">40</col>
  7688. <col name="rank">1</col>
  7689. <col name="status">1</col>
  7690. <col name="upd">2011-09-20 23:32:06</col>
  7691. </row>
  7692. <row>
  7693. <col name="id">14200</col>
  7694. <col name="idgroup">10</col>
  7695. <col name="name">affichageindexannuel</col>
  7696. <col name="title">Affichage d'un index annuel</col>
  7697. <col name="altertitle"></col>
  7698. <col name="type">boolean</col>
  7699. <col name="edition">editable</col>
  7700. <col name="editionparams"></col>
  7701. <col name="value"></col>
  7702. <col name="defaultvalue"></col>
  7703. <col name="comment"></col>
  7704. <col name="userrights">40</col>
  7705. <col name="rank">30</col>
  7706. <col name="status">1</col>
  7707. <col name="upd">2012-02-01 10:57:20</col>
  7708. </row>
  7709. <row>
  7710. <col name="id">14201</col>
  7711. <col name="idgroup">10</col>
  7712. <col name="name">affichageindexparlangue</col>
  7713. <col name="title">Affichage d'un index par langue</col>
  7714. <col name="altertitle"></col>
  7715. <col name="type">boolean</col>
  7716. <col name="edition">editable</col>
  7717. <col name="editionparams"></col>
  7718. <col name="value"></col>
  7719. <col name="defaultvalue"></col>
  7720. <col name="comment"></col>
  7721. <col name="userrights">40</col>
  7722. <col name="rank">31</col>
  7723. <col name="status">1</col>
  7724. <col name="upd">2012-02-01 10:55:27</col>
  7725. </row>
  7726. <row>
  7727. <col name="id">14202</col>
  7728. <col name="idgroup">10</col>
  7729. <col name="name">barrenavaffichagenumero</col>
  7730. <col name="title">Mode d’affichage des numéros dans la colonne de gauche</col>
  7731. <col name="altertitle"></col>
  7732. <col name="type">list</col>
  7733. <col name="edition">select</col>
  7734. <col name="editionparams">per issue,per year,per volume</col>
  7735. <col name="value"></col>
  7736. <col name="defaultvalue">per issue</col>
  7737. <col name="comment"></col>
  7738. <col name="userrights">40</col>
  7739. <col name="rank">32</col>
  7740. <col name="status">1</col>
  7741. <col name="upd">2012-02-01 10:21:37</col>
  7742. </row>
  7743. <row>
  7744. <col name="id">14203</col>
  7745. <col name="idgroup">10</col>
  7746. <col name="name">affichageindexpersonnes</col>
  7747. <col name="title">Affichage des index de personnes</col>
  7748. <col name="altertitle"></col>
  7749. <col name="type">list</col>
  7750. <col name="edition">select</col>
  7751. <col name="editionparams">First name Surname, Surname; First name</col>
  7752. <col name="value"></col>
  7753. <col name="defaultvalue">First name Surname</col>
  7754. <col name="comment"></col>
  7755. <col name="userrights">40</col>
  7756. <col name="rank">33</col>
  7757. <col name="status">1</col>
  7758. <col name="upd">2012-09-12 00:04:56</col>
  7759. </row>
  7760. <row>
  7761. <col name="id">14206</col>
  7762. <col name="idgroup">9</col>
  7763. <col name="name">emversion</col>
  7764. <col name="title">Version du modèle éditorial</col>
  7765. <col name="altertitle"></col>
  7766. <col name="type">tinytext</col>
  7767. <col name="edition">display</col>
  7768. <col name="editionparams"></col>
  7769. <col name="value"></col>
  7770. <col name="defaultvalue">1.0.0</col>
  7771. <col name="comment"></col>
  7772. <col name="userrights">40</col>
  7773. <col name="rank">35</col>
  7774. <col name="status">1</col>
  7775. <col name="upd">2015-07-20 12:24:46</col>
  7776. </row>
  7777. </datas>
  7778. </table>
  7779. <table name="#_TP_textes">
  7780. <structure>
  7781. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7782. <field name="surtitre">text</field>
  7783. <field name="titre">text</field>
  7784. <field name="soustitre">text</field>
  7785. <field name="langue">char(5) DEFAULT NULL</field>
  7786. <field name="datepubli">date DEFAULT NULL</field>
  7787. <field name="texte">longtext</field>
  7788. <field name="notesbaspage">longtext</field>
  7789. <field name="notefin">longtext</field>
  7790. <field name="bibliographie">text</field>
  7791. <field name="annexe">longtext</field>
  7792. <field name="ndlr">text</field>
  7793. <field name="pagination">tinytext</field>
  7794. <field name="noticebiblio">text</field>
  7795. <field name="commentaireinterne">text</field>
  7796. <field name="resume">text</field>
  7797. <field name="datepublipapier">date DEFAULT NULL</field>
  7798. <field name="prioritaire">tinyint(4) DEFAULT NULL</field>
  7799. <field name="URLessai">tinytext</field>
  7800. <field name="alterfichier">tinytext</field>
  7801. <field name="addendum">text</field>
  7802. <field name="ocr">tinyint(4) DEFAULT NULL</field>
  7803. <field name="altertitre">text</field>
  7804. <field name="ndla">text</field>
  7805. <field name="numerodocument">double DEFAULT NULL</field>
  7806. <field name="titreoeuvre">text</field>
  7807. <field name="noticebibliooeuvre">text</field>
  7808. <field name="dedicace">text</field>
  7809. <field name="documentcliquable">tinyint(4) DEFAULT NULL</field>
  7810. <field name="datepublicationoeuvre">tinytext</field>
  7811. <field name="imagehabillee">tinyint(4) DEFAULT NULL</field>
  7812. <field name="datemisenligne">date DEFAULT NULL</field>
  7813. <field name="dateacceslibre">date DEFAULT NULL</field>
  7814. <field name="fichierreference">tinyint(4) DEFAULT NULL</field>
  7815. <field name="vignettesimple">tinyint(4) DEFAULT NULL</field>
  7816. <field name="remerciements">text</field>
  7817. <field name="UNIQUE_36" key="1">`identity` (`identity`)</field>
  7818. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7819. </structure>
  7820. </table>
  7821. <table name="#_TP_publications">
  7822. <structure>
  7823. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7824. <field name="titre">text</field>
  7825. <field name="soustitre">text</field>
  7826. <field name="texte">text</field>
  7827. <field name="meta">text</field>
  7828. <field name="date">date DEFAULT NULL</field>
  7829. <field name="surtitre">text</field>
  7830. <field name="introduction">text</field>
  7831. <field name="datepubli">date DEFAULT NULL</field>
  7832. <field name="datepublipapier">date DEFAULT NULL</field>
  7833. <field name="noticebiblio">text</field>
  7834. <field name="commentaireinterne">text</field>
  7835. <field name="ndlr">text</field>
  7836. <field name="historique">text</field>
  7837. <field name="prioritaire">tinyint(4) DEFAULT NULL</field>
  7838. <field name="paraitre">tinyint(4) DEFAULT NULL</field>
  7839. <field name="integralite">tinyint(4) DEFAULT NULL</field>
  7840. <field name="numero">tinytext</field>
  7841. <field name="langue">char(5) DEFAULT NULL</field>
  7842. <field name="altertitre">text</field>
  7843. <field name="urlpublicationediteur">text</field>
  7844. <field name="descriptionouvrage">text</field>
  7845. <field name="isbn">tinytext</field>
  7846. <field name="periode">tinytext</field>
  7847. <field name="datemisenligne">date DEFAULT NULL</field>
  7848. <field name="dateacceslibre">date DEFAULT NULL</field>
  7849. <field name="rss">tinyint(4) DEFAULT NULL</field>
  7850. <field name="racinemets">tinyint(4) DEFAULT NULL</field>
  7851. <field name="UNIQUE_28" key="1">`identity` (`identity`)</field>
  7852. <field name="KEY_29" key="1">`index_identity` (`identity`)</field>
  7853. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7854. </structure>
  7855. </table>
  7856. <table name="#_TP_fichiers">
  7857. <structure>
  7858. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7859. <field name="titre">text</field>
  7860. <field name="document">tinytext</field>
  7861. <field name="description">text</field>
  7862. <field name="legende">text</field>
  7863. <field name="credits">tinytext</field>
  7864. <field name="vignette">tinytext</field>
  7865. <field name="datemisenligne">date DEFAULT NULL</field>
  7866. <field name="dateacceslibre">date DEFAULT NULL</field>
  7867. <field name="datepubli">date DEFAULT NULL</field>
  7868. <field name="UNIQUE_10" key="1">`identity` (`identity`)</field>
  7869. <field name="KEY_11" key="1">`index_identity` (`identity`)</field>
  7870. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7871. </structure>
  7872. </table>
  7873. <table name="#_TP_liens">
  7874. <structure>
  7875. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7876. <field name="titre">text</field>
  7877. <field name="url">text</field>
  7878. <field name="urlfil">text</field>
  7879. <field name="texte">text</field>
  7880. <field name="capturedecran">tinytext</field>
  7881. <field name="nombremaxitems">int(11) DEFAULT NULL</field>
  7882. <field name="vignette">tinytext</field>
  7883. <field name="altertitre">text</field>
  7884. <field name="datemisenligne">date DEFAULT NULL</field>
  7885. <field name="dateacceslibre">date DEFAULT NULL</field>
  7886. <field name="UNIQUE_11" key="1">`identity` (`identity`)</field>
  7887. <field name="KEY_12" key="1">`index_identity` (`identity`)</field>
  7888. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7889. </structure>
  7890. </table>
  7891. <table name="#_TP_textessimples">
  7892. <structure>
  7893. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7894. <field name="titre">tinytext</field>
  7895. <field name="texte">text</field>
  7896. <field name="url">text</field>
  7897. <field name="date">datetime DEFAULT NULL</field>
  7898. <field name="altertitre">text</field>
  7899. <field name="datemisenligne">date DEFAULT NULL</field>
  7900. <field name="dateacceslibre">date DEFAULT NULL</field>
  7901. <field name="UNIQUE_8" key="1">`identity` (`identity`)</field>
  7902. <field name="KEY_9" key="1">`index_identity` (`identity`)</field>
  7903. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7904. </structure>
  7905. </table>
  7906. <table name="#_TP_auteurs">
  7907. <structure>
  7908. <field name="idperson">int(10) unsigned DEFAULT NULL</field>
  7909. <field name="nomfamille">tinytext</field>
  7910. <field name="prenom">tinytext</field>
  7911. <field name="UNIQUE_3" key="1">`idperson` (`idperson`)</field>
  7912. <field name="KEY_4" key="1">`index_idperson` (`idperson`)</field>
  7913. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7914. </structure>
  7915. </table>
  7916. <table name="#_TP_entities_auteurs">
  7917. <structure>
  7918. <field name="idrelation">int(10) unsigned DEFAULT NULL</field>
  7919. <field name="prefix">tinytext</field>
  7920. <field name="affiliation">tinytext</field>
  7921. <field name="fonction">tinytext</field>
  7922. <field name="description">text</field>
  7923. <field name="courriel">text</field>
  7924. <field name="site">text</field>
  7925. <field name="UNIQUE_7" key="1">`idrelation` (`idrelation`)</field>
  7926. <field name="KEY_8" key="1">`index_idrelation` (`idrelation`)</field>
  7927. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7928. </structure>
  7929. </table>
  7930. <table name="#_TP_indexes">
  7931. <structure>
  7932. <field name="identry">int(10) unsigned DEFAULT NULL</field>
  7933. <field name="nom">text</field>
  7934. <field name="definition">text</field>
  7935. <field name="UNIQUE_3" key="1">`identry` (`identry`)</field>
  7936. <field name="KEY_4" key="1">`index_identry` (`identry`)</field>
  7937. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7938. </structure>
  7939. </table>
  7940. <table name="#_TP_entities_indexes">
  7941. <structure>
  7942. <field name="idrelation">int(10) unsigned DEFAULT NULL</field>
  7943. <field name="UNIQUE_1" key="1">`idrelation` (`idrelation`)</field>
  7944. <field name="KEY_2" key="1">`index_idrelation` (`idrelation`)</field>
  7945. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7946. </structure>
  7947. </table>
  7948. <table name="#_TP_individus">
  7949. <structure>
  7950. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7951. <field name="nom">tinytext</field>
  7952. <field name="prenom">tinytext</field>
  7953. <field name="email">text</field>
  7954. <field name="siteweb">text</field>
  7955. <field name="description">text</field>
  7956. <field name="accroche">text</field>
  7957. <field name="adresse">text</field>
  7958. <field name="telephone">tinytext</field>
  7959. <field name="photographie">tinytext</field>
  7960. <field name="datemisenligne">date DEFAULT NULL</field>
  7961. <field name="dateacceslibre">date DEFAULT NULL</field>
  7962. <field name="UNIQUE_12" key="1">`identity` (`identity`)</field>
  7963. <field name="KEY_13" key="1">`index_identity` (`identity`)</field>
  7964. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7965. </structure>
  7966. </table>
  7967. <table name="#_TP_indexavances">
  7968. <structure>
  7969. <field name="identry">int(10) unsigned DEFAULT NULL</field>
  7970. <field name="nom">tinytext</field>
  7971. <field name="description">text</field>
  7972. <field name="url">text</field>
  7973. <field name="icone">tinytext</field>
  7974. <field name="UNIQUE_5" key="1">`identry` (`identry`)</field>
  7975. <field name="KEY_6" key="1">`index_identry` (`identry`)</field>
  7976. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7977. </structure>
  7978. </table>
  7979. <table name="#_TP_entities_indexavances">
  7980. <structure>
  7981. <field name="idrelation">int(10) unsigned DEFAULT NULL</field>
  7982. <field name="UNIQUE_1" key="1">`idrelation` (`idrelation`)</field>
  7983. <field name="KEY_2" key="1">`index_idrelation` (`idrelation`)</field>
  7984. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  7985. </structure>
  7986. </table>
  7987. <table name="#_TP_fichiersexternes">
  7988. <structure>
  7989. <field name="identity">int(10) unsigned DEFAULT NULL</field>
  7990. <field name="titre">tinytext</field>
  7991. <field name="object">text</field>
  7992. <field name="description">text</field>
  7993. <field name="vignette">tinytext</field>
  7994. <field name="legende">text</field>
  7995. <field name="datepubli">date DEFAULT NULL</field>
  7996. <field name="urlaccesmedia">text</field>
  7997. <field name="urlmedia">text</field>
  7998. <field name="credits">tinytext</field>
  7999. <field name="datemisenligne">date DEFAULT NULL</field>
  8000. <field name="dateacceslibre">date DEFAULT NULL</field>
  8001. <field name="UNIQUE_12" key="1">`identity` (`identity`)</field>
  8002. <field name="KEY_13" key="1">`index_identity` (`identity`)</field>
  8003. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  8004. </structure>
  8005. </table>
  8006. <table name="#_TP_collections">
  8007. <structure>
  8008. <field name="identry">int(10) unsigned DEFAULT NULL</field>
  8009. <field name="titre">tinytext</field>
  8010. <field name="soustitre">tinytext</field>
  8011. <field name="issn">tinytext</field>
  8012. <field name="issnelectronique">tinytext</field>
  8013. <field name="UNIQUE_5" key="1">`identry` (`identry`)</field>
  8014. <field name="KEY_6" key="1">`index_identry` (`identry`)</field>
  8015. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  8016. </structure>
  8017. </table>
  8018. <table name="#_TP_entities_collections">
  8019. <structure>
  8020. <field name="idrelation">int(10) unsigned DEFAULT NULL</field>
  8021. <field name="UNIQUE_1" key="1">`idrelation` (`idrelation`)</field>
  8022. <field name="KEY_2" key="1">`index_idrelation` (`idrelation`)</field>
  8023. <field name="tableOptions">ENGINE=MyISAM DEFAULT CHARSET=utf8</field>
  8024. </structure>
  8025. </table>
  8026. </lodelEM>