Sprachversion ergänzt, Directory Struktur an
Standard angepasst. git-svn-id: https://svn.libreccm.org/ccm/trunk@432 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
002897dd97
commit
33c14e2ec3
|
|
@ -12,7 +12,7 @@
|
|||
// License along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
model com.arsdigita.london.notes;
|
||||
model com.arsdigita.cms.contentassets;
|
||||
|
||||
import com.arsdigita.cms.ContentItem;
|
||||
import com.arsdigita.kernel.ACSObject;
|
||||
|
|
@ -7,10 +7,10 @@
|
|||
</requires>
|
||||
<provides>
|
||||
<table name="ca_notes"/>
|
||||
<initializer class="com.arsdigita.london.notes.NotesInitializer"/>
|
||||
<initializer class="com.arsdigita.cms.contentassets.NotesInitializer"/>
|
||||
</provides>
|
||||
<scripts>
|
||||
<schema directory="ccm-cms-assets-notes"/>
|
||||
<data class="com.arsdigita.london.notes.NotesLoader"/>
|
||||
<data class="com.arsdigita.cms.contentassets.NotesLoader"/>
|
||||
</scripts>
|
||||
</load>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package com.arsdigita.london.notes;
|
||||
package com.arsdigita.cms.contentassets;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
|
|
@ -40,7 +40,7 @@ import org.apache.log4j.Logger;
|
|||
*/
|
||||
public class Note extends ACSObject {
|
||||
public static final String BASE_DATA_OBJECT_TYPE =
|
||||
"com.arsdigita.london.notes.Note";
|
||||
"com.arsdigita.cms.contentassets.Note";
|
||||
|
||||
private static final Logger s_log = Logger.getLogger( Note.class );
|
||||
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package com.arsdigita.london.notes;
|
||||
package com.arsdigita.cms.contentassets;
|
||||
|
||||
import com.arsdigita.cms.ContentPage;
|
||||
import com.arsdigita.cms.ContentType;
|
||||
|
|
@ -24,9 +24,8 @@ import com.arsdigita.cms.ui.authoring.SimpleEditStep;
|
|||
import com.arsdigita.domain.DomainObjectTraversal;
|
||||
import com.arsdigita.domain.SimpleDomainObjectTraversalAdapter;
|
||||
import com.arsdigita.globalization.GlobalizedMessage;
|
||||
import com.arsdigita.london.notes.ui.NotesStep;
|
||||
import com.arsdigita.london.notes.ui.NotesSummary;
|
||||
import com.arsdigita.runtime.LegacyInitEvent;
|
||||
import com.arsdigita.cms.contentassets.ui.NotesStep;
|
||||
import com.arsdigita.cms.contentassets.ui.NotesSummary;
|
||||
import com.arsdigita.runtime.DomainInitEvent;
|
||||
|
||||
public class NotesInitializer extends ContentAssetInitializer {
|
||||
|
|
@ -52,15 +51,15 @@ public class NotesInitializer extends ContentAssetInitializer {
|
|||
|
||||
public GlobalizedMessage getAuthoringStepLabel() {
|
||||
return new GlobalizedMessage(
|
||||
"com.arsdigita.london.notes.authoring_step_label",
|
||||
"com.arsdigita.london.notes.NotesResources"
|
||||
"com.arsdigita.cms.contentassets.notes_authoring_step_label",
|
||||
"com.arsdigita.cms.contentassets.NotesResources"
|
||||
);
|
||||
}
|
||||
|
||||
public GlobalizedMessage getAuthoringStepDescription() {
|
||||
return new GlobalizedMessage(
|
||||
"com.arsdigita.london.notes.authoring_step_description",
|
||||
"com.arsdigita.london.notes.NotesResources"
|
||||
"com.arsdigita.cms.contentassets.notes_authoring_step_description",
|
||||
"com.arsdigita.cms.contentassets.NotesResources"
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
* package com.arsdigita.london.notes;
|
||||
*/
|
||||
|
||||
package com.arsdigita.london.notes;
|
||||
package com.arsdigita.cms.contentassets;
|
||||
|
||||
import com.arsdigita.runtime.ScriptContext;
|
||||
import com.arsdigita.loader.PackageLoader;
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
com.arsdigita.cms.contentassets.notes_authoring_step_label=Notes
|
||||
com.arsdigita.cms.contentassets.notes_authoring_step_description=Attach notes to an item
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
com.arsdigita.cms.contentassets.notes_authoring_step_label=Erg\u00E4nzende Notizen
|
||||
com.arsdigita.cms.contentassets.notes_authoring_step_description=Erg\u00E4nzende Hinweise zu einem Dokument anf\u00FCgen.
|
||||
|
|
@ -14,7 +14,7 @@ License along with this library; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package com.arsdigita.london.notes.ui;
|
||||
package com.arsdigita.cms.contentassets.ui;
|
||||
|
||||
import com.arsdigita.bebop.PageState;
|
||||
import com.arsdigita.bebop.SimpleComponent;
|
||||
|
|
@ -30,7 +30,7 @@ import com.arsdigita.util.UncheckedWrapperException;
|
|||
import com.arsdigita.web.RedirectSignal;
|
||||
import com.arsdigita.xml.Element;
|
||||
|
||||
import com.arsdigita.london.notes.Note;
|
||||
import com.arsdigita.cms.contentassets.Note;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ License along with this library; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package com.arsdigita.london.notes.ui;
|
||||
package com.arsdigita.cms.contentassets.ui;
|
||||
|
||||
import com.arsdigita.bebop.Form;
|
||||
import com.arsdigita.bebop.PageState;
|
||||
|
|
@ -32,7 +32,7 @@ import com.arsdigita.cms.CMS;
|
|||
import com.arsdigita.cms.ContentSection;
|
||||
import com.arsdigita.kernel.ui.ACSObjectSelectionModel;
|
||||
|
||||
import com.arsdigita.london.notes.Note;
|
||||
import com.arsdigita.cms.contentassets.Note;
|
||||
|
||||
public class NotesEdit extends SimpleContainer {
|
||||
private Form m_form;
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package com.arsdigita.london.notes.ui;
|
||||
package com.arsdigita.cms.contentassets.ui;
|
||||
|
||||
import com.arsdigita.bebop.Page;
|
||||
import com.arsdigita.bebop.PageState;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.arsdigita.london.notes.ui;
|
||||
package com.arsdigita.cms.contentassets.ui;
|
||||
|
||||
import java.text.DateFormat;
|
||||
import java.util.Date;
|
||||
|
|
@ -17,7 +17,7 @@ import com.arsdigita.cms.ItemSelectionModel;
|
|||
import com.arsdigita.cms.ui.authoring.AdditionalDisplayComponent;
|
||||
import com.arsdigita.domain.DomainObjectFactory;
|
||||
import com.arsdigita.kernel.User;
|
||||
import com.arsdigita.london.notes.Note;
|
||||
import com.arsdigita.cms.contentassets.Note;
|
||||
import com.arsdigita.persistence.DataCollection;
|
||||
import com.arsdigita.util.LockableImpl;
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
com.arsdigita.london.notes.authoring_step_label=Notes
|
||||
com.arsdigita.london.notes.authoring_step_description=Attach notes to an item
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
com.arsdigita.london.notes.authoring_step_label=Erg\u00E4nzende Notizen
|
||||
com.arsdigita.london.notes.authoring_step_description=Erg\u00E4nzende Hinweise zu einem Dokument anf\u00FCgen.
|
||||
Loading…
Reference in New Issue