Skip to content

Commit

Permalink
First commit. Only browsing through filesystem is suppported. No file…
Browse files Browse the repository at this point in the history
… opening yet.
  • Loading branch information
JonathanBeck committed Apr 22, 2010
0 parents commit 3341339
Show file tree
Hide file tree
Showing 13 changed files with 1,383 additions and 0 deletions.
3 changes: 3 additions & 0 deletions BUGS
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,3 @@
There is no known bugs at the moment.

If you find one, please report at http://libiphone.lighthouseapp.com/projects/27916-libiphone/overview with the kio_afc tag
23 changes: 23 additions & 0 deletions CMakeLists.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,23 @@

if (NOT KDE4_FOUND)
find_package(KDE4 REQUIRED)
include(KDE4Defaults)
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
include_directories(${KDE4_INCLUDES})
endif (NOT KDE4_FOUND)

SET( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_SOURCE_DIR}/cmake/modules )
FIND_PACKAGE( libimobiledevice REQUIRED )

set(kio_man_PART_SRCS
kio_afc.cpp
afcdevice.cpp
afcpath.cpp)

kde4_add_plugin(kio_afc ${kio_man_PART_SRCS})

target_link_libraries(kio_afc ${KDE4_KIO_LIBS} ${libimobiledevice_LIBRARIES})

install(TARGETS kio_afc DESTINATION ${PLUGIN_INSTALL_DIR})

install(FILES afc.protocol DESTINATION ${SERVICES_INSTALL_DIR})
346 changes: 346 additions & 0 deletions COPYING

Large diffs are not rendered by default.

Empty file added ChangeLog
Empty file.
2 changes: 2 additions & 0 deletions Messages.sh
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,2 @@
#! /usr/bin/env bash
$XGETTEXT *.cpp -o $podir/kio_afc.pot
16 changes: 16 additions & 0 deletions afc.protocol
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,16 @@
[Protocol]
exec=kio_afc
protocol=afc
input=none
output=filesystem
listing=Access,Size,Date,Name,Type
reading=true
writing=true
makedir=true
deleting=true
linking=true
moving=true
opening=true
deleteRecursive=true
maxInstances=50
X-DocPath=kioslave/afc/index.html
Loading

0 comments on commit 3341339

Please sign in to comment.