From b34f1727c00da2f00990f6f4d7bfb9025fbd2b09 Mon Sep 17 00:00:00 2001 From: Evgeny Gryaznov Date: Sun, 13 Feb 2011 23:22:13 +0100 Subject: [PATCH] idea project files + gitignore --- .gitignore | 2 + src/.idea/.name | 1 + src/.idea/ant.xml | 7 + src/.idea/compiler.xml | 21 +++ src/.idea/copyright/profiles_settings.xml | 5 + src/.idea/encodings.xml | 5 + .../inspectionProfiles/Project_Default.xml | 11 ++ .../inspectionProfiles/profiles_settings.xml | 7 + src/.idea/libraries/libs.xml | 12 ++ src/.idea/misc.xml | 166 ++++++++++++++++++ src/.idea/modules.xml | 12 ++ src/.idea/php.xml | 14 ++ src/.idea/vcs.xml | 7 + src/messenger/messenger.iml | 10 ++ src/mibewjava/org.mibew.api/org.mibew.api.iml | 12 ++ .../org.mibew.jabber/org.mibew.jabber.iml | 14 ++ .../org.mibew.notifier/org.mibew.notifier.iml | 13 ++ 17 files changed, 319 insertions(+) create mode 100644 .gitignore create mode 100644 src/.idea/.name create mode 100644 src/.idea/ant.xml create mode 100644 src/.idea/compiler.xml create mode 100644 src/.idea/copyright/profiles_settings.xml create mode 100644 src/.idea/encodings.xml create mode 100644 src/.idea/inspectionProfiles/Project_Default.xml create mode 100644 src/.idea/inspectionProfiles/profiles_settings.xml create mode 100644 src/.idea/libraries/libs.xml create mode 100644 src/.idea/misc.xml create mode 100644 src/.idea/modules.xml create mode 100644 src/.idea/php.xml create mode 100644 src/.idea/vcs.xml create mode 100644 src/messenger/messenger.iml create mode 100644 src/mibewjava/org.mibew.api/org.mibew.api.iml create mode 100644 src/mibewjava/org.mibew.jabber/org.mibew.jabber.iml create mode 100644 src/mibewjava/org.mibew.notifier/org.mibew.notifier.iml diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..f17e454b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin +src/.idea/workspace.xml diff --git a/src/.idea/.name b/src/.idea/.name new file mode 100644 index 00000000..16741058 --- /dev/null +++ b/src/.idea/.name @@ -0,0 +1 @@ +Mibew \ No newline at end of file diff --git a/src/.idea/ant.xml b/src/.idea/ant.xml new file mode 100644 index 00000000..2581ca3f --- /dev/null +++ b/src/.idea/ant.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/.idea/compiler.xml b/src/.idea/compiler.xml new file mode 100644 index 00000000..a1b41c52 --- /dev/null +++ b/src/.idea/compiler.xml @@ -0,0 +1,21 @@ + + + + + + diff --git a/src/.idea/copyright/profiles_settings.xml b/src/.idea/copyright/profiles_settings.xml new file mode 100644 index 00000000..3572571a --- /dev/null +++ b/src/.idea/copyright/profiles_settings.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/.idea/encodings.xml b/src/.idea/encodings.xml new file mode 100644 index 00000000..e206d70d --- /dev/null +++ b/src/.idea/encodings.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/.idea/inspectionProfiles/Project_Default.xml b/src/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..c66df003 --- /dev/null +++ b/src/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,11 @@ + + + + \ No newline at end of file diff --git a/src/.idea/inspectionProfiles/profiles_settings.xml b/src/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..3b312839 --- /dev/null +++ b/src/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/.idea/libraries/libs.xml b/src/.idea/libraries/libs.xml new file mode 100644 index 00000000..3486f242 --- /dev/null +++ b/src/.idea/libraries/libs.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/.idea/misc.xml b/src/.idea/misc.xml new file mode 100644 index 00000000..8e6ebe6a --- /dev/null +++ b/src/.idea/misc.xml @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://www.w3.org/1999/xhtml + + + + + + + + diff --git a/src/.idea/modules.xml b/src/.idea/modules.xml new file mode 100644 index 00000000..1c177b43 --- /dev/null +++ b/src/.idea/modules.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/.idea/php.xml b/src/.idea/php.xml new file mode 100644 index 00000000..eff353a3 --- /dev/null +++ b/src/.idea/php.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/.idea/vcs.xml b/src/.idea/vcs.xml new file mode 100644 index 00000000..21cbaa60 --- /dev/null +++ b/src/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/messenger/messenger.iml b/src/messenger/messenger.iml new file mode 100644 index 00000000..ef582b1a --- /dev/null +++ b/src/messenger/messenger.iml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/mibewjava/org.mibew.api/org.mibew.api.iml b/src/mibewjava/org.mibew.api/org.mibew.api.iml new file mode 100644 index 00000000..d5c07432 --- /dev/null +++ b/src/mibewjava/org.mibew.api/org.mibew.api.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/mibewjava/org.mibew.jabber/org.mibew.jabber.iml b/src/mibewjava/org.mibew.jabber/org.mibew.jabber.iml new file mode 100644 index 00000000..5387399e --- /dev/null +++ b/src/mibewjava/org.mibew.jabber/org.mibew.jabber.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/mibewjava/org.mibew.notifier/org.mibew.notifier.iml b/src/mibewjava/org.mibew.notifier/org.mibew.notifier.iml new file mode 100644 index 00000000..5a97f7b0 --- /dev/null +++ b/src/mibewjava/org.mibew.notifier/org.mibew.notifier.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + +