Révision 1927
tmp/org.txm.edition.rcp/src/org/txm/edition/rcp/editors/EditionPanel.java (revision 1927) | ||
---|---|---|
265 | 265 |
public void completed(ProgressEvent event) { |
266 | 266 |
|
267 | 267 |
//System.out.println("EditionPanel "+currentEdition.getName()+" reload "+getCurrentPage().getName()); |
268 |
Object rez = evaluate("return typeof sheet"); //$NON-NLS-1$ |
|
269 |
if ("undefined".equals(rez)) { |
|
270 |
if (!execute(functions)) { // build the sheet if not present in the HTML DOM //$NON-NLS-1$ |
|
271 |
Log.fine("JS execution (init) error with="+functions); |
|
268 |
Object rez = evaluate("return typeof sheet;"); //$NON-NLS-1$ |
|
269 |
if ("undefined".equals(rez)) { //$NON-NLS-1$ |
|
270 |
if (!execute(functions)) { // build the sheet if not present in the HTML DOM |
|
271 |
Log.fine("JS execution (init) error with="+functions); //$NON-NLS-1$ |
|
272 |
} else { |
|
273 |
|
|
272 | 274 |
} |
273 | 275 |
} |
274 | 276 |
|
tmp/org.txm.edition.rcp/src/org/txm/edition/rcp/messages/messages.properties (revision 1927) | ||
---|---|---|
52 | 52 |
|
53 | 53 |
noEditionFound = Edition not found |
54 | 54 |
|
55 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1 = No ‘'{1}' edition found for text {0}
|
|
55 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1 = No ''{1}'' edition found for text {0}
|
|
56 | 56 |
|
57 | 57 |
noEditionToOpen = No edition available. |
58 | 58 |
|
... | ... | |
64 | 64 |
|
65 | 65 |
pageButtons = page buttons |
66 | 66 |
|
67 |
pageNotFoundP0 = Page ‘'{0}' not found.
|
|
67 |
pageNotFoundP0 = Page ''{0}'' not found.
|
|
68 | 68 |
|
69 | 69 |
previousPage = Previous page |
70 | 70 |
|
... | ... | |
72 | 72 |
|
73 | 73 |
reload = Reload |
74 | 74 |
|
75 |
sCRIPTRETURNEDEqualsP0 = Script returned ‘'{0}'
|
|
75 |
sCRIPTRETURNEDEqualsP0 = Script returned ''{0}''
|
|
76 | 76 |
|
77 | 77 |
selectOneOrMoreEditions = Select one or more editions. |
78 | 78 |
|
79 | 79 |
textButtons = text browsing buttons |
80 | 80 |
|
81 |
warningColonCouldNotFindEditionForNameEqualsP0 = Warning: could not retrieve edition ‘'{0}'
|
|
81 |
warningColonCouldNotFindEditionForNameEqualsP0 = Warning: could not retrieve edition ''{0}''
|
|
82 | 82 |
|
83 | 83 |
warningColonUnknownedParameterIdEqualsP0 = Warning: unknown parameter of identifier {0}. |
tmp/org.txm.edition.rcp/src/org/txm/edition/rcp/messages/messages_fr.properties (revision 1927) | ||
---|---|---|
16 | 16 |
|
17 | 17 |
couldNotFindFirstTextOfP0IDInTheCorpus = ** Impossible de trouver le texte d''identifiant ''{0}'' dans le corpus. |
18 | 18 |
|
19 |
|
|
20 | 19 |
edition = Édition |
21 | 20 |
|
22 | 21 |
editions = Éditions |
... | ... | |
53 | 52 |
|
54 | 53 |
noEditionFound = Édition introuvable |
55 | 54 |
|
56 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1 = Aucune édition ''{1}' trouvée pour le texte {0}
|
|
55 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1 = Aucune édition ''{1}'' trouvée pour le texte ''{0}''
|
|
57 | 56 |
|
58 | 57 |
noEditionToOpen = Pas d'édition disponible. |
59 | 58 |
|
... | ... | |
73 | 72 |
|
74 | 73 |
reload = Recharger |
75 | 74 |
|
76 |
sCRIPTRETURNEDEqualsP0 = Le script a retourné ''[0}''
|
|
75 |
sCRIPTRETURNEDEqualsP0 = Le script a retourné ''{0}''
|
|
77 | 76 |
|
78 | 77 |
selectOneOrMoreEditions = Sélectionner une ou plusieurs éditions. |
79 | 78 |
|
80 | 79 |
textButtons = boutons de navigation entre textes |
81 | 80 |
|
82 |
warningColonCouldNotFindEditionForNameEqualsP0 = Avertissement: échec de récupération de l''édition ''{0}'' |
|
81 |
warningColonCouldNotFindEditionForNameEqualsP0 = Avertissement : échec de récupération de l''édition ''{0}''
|
|
83 | 82 |
|
84 |
warningColonUnknownedParameterIdEqualsP0 = Avertissement: paramètre d'identifiant {0} inconnu. |
|
83 |
warningColonUnknownedParameterIdEqualsP0 = Avertissement : paramètre d'identifiant ''{0}'' inconnu. |
tmp/org.txm.edition.rcp/res/js/empty.html (revision 1927) | ||
---|---|---|
1 |
<html><head></head><body></body></html> |
|
0 | 2 |
tmp/org.txm.edition.rcp/res/js/functions.js (revision 1927) | ||
---|---|---|
131 | 131 |
} |
132 | 132 |
|
133 | 133 |
try { |
134 |
var style = document.createElement("style"); |
|
135 |
try { style.appendChild(document.createTextNode("")); } catch (e) {}; |
|
136 |
document.head.appendChild(style); |
|
137 |
sheet = style.sheet; |
|
134 |
if ("undefined" == typeof sheet || "undefined" == typeof txmstyle) { |
|
135 |
txmstyle = document.createElement("style"); |
|
136 |
txmstyle.title="txm_btt" |
|
137 |
try { txmstyle.appendChild(document.createTextNode("")); } catch (e) {}; |
|
138 |
document.head.appendChild(txmstyle); |
|
139 |
sheet = txmstyle.sheet; |
|
140 |
} |
|
138 | 141 |
} catch (e) { |
139 | 142 |
sheet = 'error'; |
140 | 143 |
} |
tmp/org.txm.edition.rcp/.settings/org.eclipse.core.resources.prefs (revision 1927) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 |
encoding//src/org/txm/edition/rcp/messages/messages.properties=UTF-8 |
|
2 | 3 |
encoding//src/org/txm/edition/rcp/messages/messages_fr.properties=UTF-8 |
Formats disponibles : Unified diff