You can subscribe to this list here.
2013 |
Jan
|
Feb
|
Mar
|
Apr
(15) |
May
(10) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2014 |
Jan
(1) |
Feb
(1) |
Mar
(61) |
Apr
(52) |
May
(4) |
Jun
(5) |
Jul
(13) |
Aug
(11) |
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
(1) |
2015 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(4) |
Oct
(2) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Shamshad A. <sha...@gm...> - 2014-04-01 16:22:18
|
Hi, Today, I have tried to add this feature, but I do not found any concrete method implementation which support this feature. After a couple of hours of work, I found that there are two possible ways: First way - return null for all selected rows from ModelWrapper.getValueAt(rowIndex, columnIndex). If we do so all the selected row will appear together at top in ascending order sorting and at the bottom in descending order sorting. Second way - TableRowSorter extends javax.swing.DefaultRowSorter in which implementation of method sort() is available, But there is no way to extends the functionality of sort() method by overriding it. One option yet available is to create a copy of DefaultRowSorter and implement sort method in such a way that it will sort selected and unselected rows separately then merge both together. I have done first workaround and it is working but has certain limitation such as performance and selected rows are not get sorted, That is why, I think second workaround is better. Should I try second option? -- -Shamshad Alam +91 9911631198 LinkedIn : in.linkedin.com/pub/shamshad-alam/58/939/70 GitHub: @shamshad-npti Facbook: @shamshad.saralindia On Tue, Apr 1, 2014 at 6:28 PM, Till Schäfer <til...@tu...>wrote: > Hi, > sorry for the late answer. Some of us had a deadline on Monday, which > distracted us a bit from answering questions. > > To understand the current behavior of the table sorting i have to explain > lazy loading of properties first: > > To avoid unnecessary memory consumption we are not holding all properties > of all molecules in memory. Only the needed properties are loaded on demand > (this done by DbManager.lockAndLoad and DbManager.unlockAndUnload). Sorting > the Table would therefore require to load the sort-property completely (for > all molecules of the current subset) into the ram. As this is still not > very efficient. We have a DbManager method getSortOrder, that calculates > the sort order on the database level and returns this sort order only. > > You can start with the TableViewRowSorter class as an entry point. Please > note, that the table view does not use a very clean code structure. This is > the darker side of SH regarding the code quality ;-) . > > Greetings > Till > > Am Samstag, 29. März 2014, 21:45:28 schrieb Anjenson: > > Hi, > > > > I also would like to know where to find methods that apply different > > types of sorting to table when we press buttons in table header (eg. > > "Title" or any other property). I think I will need to reimplement > > sorting a little to provide stability after rows reordering. > > > > Regards, > > Andrew > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > > Scaffoldhunter-devel mailing list > > Sca...@li... > > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel > -- > Dipl.-Inf. Till Schäfer > TU Dortmund University > Chair 11 - Algorithm Engineering > Otto-Hahn-Str. 14 / Room 237 > 44227 Dortmund, Germany > > e-mail: til...@cs... > phone: +49(231)755-7706 > fax: +49(231)755-7740 > web: http://ls11-www.cs.uni-dortmund.de/staff/schaefer > pgp: > https://keyserver2.pgp.com/vkd/SubmitSearch.event?&&SearchCriteria=0xD84DED79 > > > ------------------------------------------------------------------------------ > _______________________________________________ > Scaffoldhunter-devel mailing list > Sca...@li... > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel > -- -Shamshad Alam +91 9911631198 LinkedIn : in.linkedin.com/pub/shamshad-alam/58/939/70 GitHub: @shamshad-npti Facbook: @shamshad.saralindia |
From: <nl...@us...> - 2014-04-01 13:50:10
|
Hi Andrew, thanks for your work! It would be great if you could update to the current version of trunk and then create a patch. Please send the patch by email, I will then review it and commit it to the SVN repository. Currently, write access to our repository is restricted to a small group of developers. We will give write access to GSoC students as soon as their projects are accepted. Of course, we are grateful for everyone who is willing to participate in the development of Scaffold Hunter. In general, we will grant write access to everyone who is willing to support us and has shown this by submitting a few patches. Regards, Nils On Saturday 29 March 2014 20:41:11 Anjenson wrote: > Well, > I have finished creating the feature, so I would like to know what is next. > Should I send the code for preview or simply push to SVN repo? > I would be glad to learn about the existing workflow. > > Regards, > Andrew > > ---------------------------------------------------------------------------- > -- _______________________________________________ > Scaffoldhunter-devel mailing list > Sca...@li... > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel |
From: Till S. <til...@tu...> - 2014-04-01 12:59:03
|
Hi, sorry for the late answer. Some of us had a deadline on Monday, which distracted us a bit from answering questions. To understand the current behavior of the table sorting i have to explain lazy loading of properties first: To avoid unnecessary memory consumption we are not holding all properties of all molecules in memory. Only the needed properties are loaded on demand (this done by DbManager.lockAndLoad and DbManager.unlockAndUnload). Sorting the Table would therefore require to load the sort-property completely (for all molecules of the current subset) into the ram. As this is still not very efficient. We have a DbManager method getSortOrder, that calculates the sort order on the database level and returns this sort order only. You can start with the TableViewRowSorter class as an entry point. Please note, that the table view does not use a very clean code structure. This is the darker side of SH regarding the code quality ;-) . Greetings Till Am Samstag, 29. März 2014, 21:45:28 schrieb Anjenson: > Hi, > > I also would like to know where to find methods that apply different > types of sorting to table when we press buttons in table header (eg. > "Title" or any other property). I think I will need to reimplement > sorting a little to provide stability after rows reordering. > > Regards, > Andrew > > ------------------------------------------------------------------------------ > _______________________________________________ > Scaffoldhunter-devel mailing list > Sca...@li... > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel -- Dipl.-Inf. Till Schäfer TU Dortmund University Chair 11 - Algorithm Engineering Otto-Hahn-Str. 14 / Room 237 44227 Dortmund, Germany e-mail: til...@cs... phone: +49(231)755-7706 fax: +49(231)755-7740 web: http://ls11-www.cs.uni-dortmund.de/staff/schaefer pgp: https://keyserver2.pgp.com/vkd/SubmitSearch.event?&&SearchCriteria=0xD84DED79 |
From: Anjenson <hot...@gm...> - 2014-03-29 18:45:34
|
Hi, I also would like to know where to find methods that apply different types of sorting to table when we press buttons in table header (eg. "Title" or any other property). I think I will need to reimplement sorting a little to provide stability after rows reordering. Regards, Andrew |
From: Anjenson <hot...@gm...> - 2014-03-29 17:41:20
|
Well, I have finished creating the feature, so I would like to know what is next. Should I send the code for preview or simply push to SVN repo? I would be glad to learn about the existing workflow. Regards, Andrew |
From: Anjenson <hot...@gm...> - 2014-03-29 16:06:37
|
Sorry, I have missed one more package. Andrew |
From: Anjenson <hot...@gm...> - 2014-03-29 16:04:20
|
Hi, While working I have noticed that localized titles are used. However, I fail to find property file with localization. So, could anyone, please, help and show where to look? Thanks in advance, Andrew |
From: <nl...@us...> - 2014-03-26 10:44:00
|
Hi Andrew, the bug you have mentioned is a tough one. I would like to propose one of these. There are two feature requests related to creating subsets. Both should be easy to solve: https://sourceforge.net/p/scaffoldhunter/feature-requests/23/ https://sourceforge.net/p/scaffoldhunter/feature-requests/38/ This one should also be doable: https://sourceforge.net/p/scaffoldhunter/feature-requests/41/ This is more challenging and also related to your proposal: https://sourceforge.net/p/scaffoldhunter/feature-requests/39/ To export the canvas as SVG or PNG we use Batik. Batik provides an implementation of Graphics2D that creates an SVG. Instead of painting the Piccolo2D scene graph to screen you can pass Batiks Graphics2D object to the Piccolo framework and obtain an SVG. However, thinks are a bit more difficult, e.g, you have to specify the area you actually want to export. Have a look at edu.udo.scaffoldhunter.view.util.SVGGenerator and see how it is used by the scaffold tree view. There is a lot of code dedicated to this task, e.g., to disable semantic zooming for the export etc. Best start with a basic version of the export and then adjust it. Feel free to ask questions on the mailing list. Regards, Nils On Wednesday 26 March 2014 11:02:03 Anjenson wrote: > Hi everyone, > > I have been looking for some bugs to fix and get to know the system > better and I came across this one. > <http://ehc.ac/p/scaffoldhunter/bug-reports/37/> > So, I would propose to create a singleton wrapper around SVGCache that > would store caches with different maxSize. And if needed some of them > may be shared. > At first, I wanted to propose to make SVGCache a singleton but then > noticed that instances may have different maxSize. > > I also will appreciate if you could point me to some good-first bug I > could work on. > > Regards, > Andrew |
From: Anjenson <hot...@gm...> - 2014-03-26 08:02:13
|
Hi everyone, I have been looking for some bugs to fix and get to know the system better and I came across this one. <http://ehc.ac/p/scaffoldhunter/bug-reports/37/> So, I would propose to create a singleton wrapper around SVGCache that would store caches with different maxSize. And if needed some of them may be shared. At first, I wanted to propose to make SVGCache a singleton but then noticed that instances may have different maxSize. I also will appreciate if you could point me to some good-first bug I could work on. Regards, Andrew |
From: Anjenson <hot...@gm...> - 2014-03-21 12:35:37
|
Hi Nils, Thank you for reply. Well actually the only reason for using actions class was getting advantage of zoom combobox. However, I decided that it may be more useful to provide detailed view instead of zoom combobox. Regards, Andrew |
From: <nl...@us...> - 2014-03-21 10:49:38
|
Hi Andrew, I would suggest to use separate classes for the Molecule Cloud view. Some actions will most likely look very similar for all Piccolo-based views and it indeed would make sense to use the same actions. However, this would require to introduce new interfaces and we would like to keep the view interface as generic as possible. Regards, Nils On Friday 21 March 2014 13:21:55 Anjenson wrote: > Hi again, > > I just wonder whether I can use TreeViewActions from package > edu.udo.scaffoldhunter.view.scaffoldtree or should I create separate > classes for MoleculeClouds view? > > Regards, > Andrew > > ---------------------------------------------------------------------------- > -- Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and their > applications. Written by three acclaimed leaders in the field, > this first edition is now available. Download your free book today! > http://p.sf.net/sfu/13534_NeoTech > _______________________________________________ > Scaffoldhunter-devel mailing list > Sca...@li... > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel |
From: Anjenson <hot...@gm...> - 2014-03-21 10:22:07
|
Hi again, I just wonder whether I can use TreeViewActions from package edu.udo.scaffoldhunter.view.scaffoldtree or should I create separate classes for MoleculeClouds view? Regards, Andrew |
From: <nl...@us...> - 2014-03-21 07:57:32
|
Hi Aly, thanks for submitting your proposal. You suggest to use the software Scaffold Network Generator [1] to compute scaffold networks. Please note that the software is based on our source code and you can already compute scaffold networks with our code, see edu.udo.scaffoldhunter.cli.ScaffoldGenerator There is no need to reintegrate the project. Please add additional technical details to your proposal. We will provide the Java test soon via Google Melange, you can submit your solution after the proposal deadline. Regards, Nils [1] https://bitbucket.org/swamidass/scaffold-network-generator/wiki/Home On Friday 21 March 2014 01:41:12 Aly Osama wrote: > Hi , > > Now i submit my first draft of Subgraph Network idea , first of all if you > have any feedback about the proposal please tell me .i will finish editing > it and add more details as i could soon . i also want to ask about the java > test , can i submit it after the deadline as it not send to me until now. > > Regards > Aly |
From: preeti s. <pre...@gm...> - 2014-03-21 07:30:37
|
Hi Ashnil, Thanks for your reply. I have already visited " http://sourceforge.net/p/forge/documentation/Google%20Code%20Importer/" , " http://sourceforge.net/projects/scaffoldhunter/files/latest/download?source=files" and "http://sourceforge.net/p/scaffoldhunter/code/2166/#diff-2" URLs. From all these URLs, this Project is pretty much clear to me. I expert in JAVA. I am using JAVA since last four years. I also did internship in Core and Advance JAVA. Projects in JAVA: Hotel Management Software in Core JAVA, I was acting as a Programmer as well as a designer. This Project was developed to maintain booking of rooms, details of employees and handle account of a hotel. It was a window based application. Routing Algorithms Visualization: Here, we were abstracting to real traffic systems and finding shortest time path to reach to the destination, using the information about traffic system and designed a program using Dijkstra's algorithm to find the different shortest paths on the given graph. DNS Cache Record: Here we developed a JAVA program to maintain a record of host name and corresponding IP address. Main Aim was to make searching, adding, deleting time as fast as possible using efficient Data Structures. These days, I am developing a window application software for designing DFDs (Software Engineering). Its main focus is on UI only. I also did many Assignments during my Graduation on Threading, Synchronization. I will be glad, if this project is given to me. According to me,I am fulfilling its all needs. I love to work in Image Processing Area also I am expert in JAVA. And From now I will do discussions on the mailing list only :) :) . With Regards, Preeti Soni On Fri, Mar 21, 2014 at 4:30 AM, Ashnil Kumar <ash...@sy...>wrote: > Hi Preeti, > > Questions are best posted on the ScaffoldHunter mailing lists on > SourceForge (http://scaffoldhunter.sourceforge.net). Often many people > have similar questions and it helps us consolidate information. > > This project will involve integrating existing feature extraction > libraries for use by ScaffoldHunter (SH) in conjunction with an image > retrieval system. Our aim is to do user-driven feature extraction with SH > acting as a way for the user to visualise the feature space before they > proceed with the retrieval. This allows for tuning of parameters etc. that > is determined by the user's understanding of the search space. As such, > there will be a big focus on UI/visualisation development; this is not a > pure image processing project. > > You should start by familiarising yourself with the gsoc2013-vamir > branch of SH. This is available on SourceForge. As you examine the code you > will get a better idea of what we want to do. Once again it would be a good > idea to have discussions on the mailing list. > > Can you be a bit more detailed about your experience with Java? How long > have you been working with the language? What are somethings you have > programmed using Java? What is your experience with UI development and > threading? > > Regards, > Ashnil > > > > On 21 Mar 2014, at 6:07 am, preeti soni <pre...@gm...> > wrote: > > > Hi, > > Firstly I am starting with my Introduction: Hello, My name is Preeti > Soni. I am pursuing my MTech in Computer Science and Engineering from PEC, > Chandigarh, India with CGPA 8.0. > > Now, Project Title in which I want to work: "Interactive Image Query > Formation". > I want to discuss this project with you. And I know can handle this > project very well. Also, the topic of my term paper in based on this. I am > working on my term paper. > > I did many projects in image processing, I am good in handling images. > My major projects were based on image processing only. > > I really want to join this project. I can give my contribution in > project both as a coder and tester. > > I am Expert in JAVA language. > My Relevant Projects: > I did a research based project on steganography. We were designing the > software for defence purposes. > > I also did my project in Automatic detection of ROI in a thyroid's > ultrasound image. > > I want to discuss this project with you as soon as possible. > > > > With Regards, > Preeti Soni > -- > *sayonara :)* > *Have a nice day * > > > > > -- *sayonara :)* *Have a nice day * -- *sayonara :)* *Have a nice day * |
From: Aly O. <aly...@ho...> - 2014-03-20 23:41:20
|
Hi , Now i submit my first draft of Subgraph Network idea , first of all if you have any feedback about the proposal please tell me .i will finish editing it and add more details as i could soon . i also want to ask about the java test , can i submit it after the deadline as it not send to me until now. Regards Aly |
From: <nl...@us...> - 2014-03-20 10:11:31
|
Hi Alexander, there still is a chance to get accepted for the project "Command Line Support", of course. We will carefully review all proposals and try to judge who is best qualified to fit the project idea. Please do not select a project just because you think it is most promising to get accepted, but choose a project you are really interested in. We have project ideas related to visualization and others that require less GUI programming. What are you interested in? Regards, Nils On Thursday 20 March 2014 12:38:39 Alexander Vurganov wrote: > It seems that some people have already applied to this project. Is there > any chance for me to get accepted for this idea? Maybe it would be better > to look another project from your ideas list? Short CV: I've been working > as a part-time java developer for 2.5 years including project used for > opinion mining. And I really want to explore open source world and > participate doing my best for Scaffold Hunter. > Thanks. |
From: Alexander V. <ale...@gm...> - 2014-03-20 09:38:45
|
It seems that some people have already applied to this project. Is there any chance for me to get accepted for this idea? Maybe it would be better to look another project from your ideas list? Short CV: I've been working as a part-time java developer for 2.5 years including project used for opinion mining. And I really want to explore open source world and participate doing my best for Scaffold Hunter. Thanks. |
From: <nl...@us...> - 2014-03-20 08:31:27
|
Hello Alexander, thanks for your interest in Scaffold Hunter. The following mail gives some more details on the projects and provides starting points to investigate the code [1]. As soon as you have made yourself familiar with the code you may write your proposal, which should also include some technical details how you want to implement the project. You may ask questions or discuss ideas at the mailing list. We will give you a short Java test after you have submitted your proposal. Regards, Nils [1] http://sourceforge.net/p/scaffoldhunter/mailman/message/32049522/ On Thursday 20 March 2014 00:17:32 Alexander Vurganov wrote: > Hello! > I've been looking for a project to participate this summer and found this > idea as a good starting point to contribute into open source world. It's > interesting for me to communicate with people who work with such unknown > for me fields of knowledge as biochemistry, medical imaging. So, please, > let me know is there yet any possibility to take part in implementing this > idea and what should be done to prove my readiness? > > Thanks. > Alexander Vurganov, BSUIR student. |
From: Alexander V. <ale...@gm...> - 2014-03-19 21:17:39
|
Hello! I've been looking for a project to participate this summer and found this idea as a good starting point to contribute into open source world. It's interesting for me to communicate with people who work with such unknown for me fields of knowledge as biochemistry, medical imaging. So, please, let me know is there yet any possibility to take part in implementing this idea and what should be done to prove my readiness? Thanks. Alexander Vurganov, BSUIR student. |
From: Till S. <til...@tu...> - 2014-03-19 14:54:12
|
Hi, first of all: please ask your questions over the mailing list, so we do not need to repeat our self and the other students also profit from the discussion. Am Montag, 17. März 2014, 19:26:19 schrieben Sie: > Hi Till, > Thanks for your reply , > i have questions about Scaffold Tree Layout idea , during last two days i read many papers about visualization of large graphs , i think that we could add fisheye layout [1] or a force-directed layout algorithm named OpenOrd [2] . what's your opinion ? Is this what you think about ? Thanks for your investigations. I think the two layouts mentioned, are not suitable for the tree layout, as they are for general graphs and it is much easier to layout trees. Furthermore, the depth of a node in the scaffold tree is very important for the user, as it indicates the size (number of rings) of the scaffold. Therefore the levels should be clearly visible in an optimal layout. The problem with the current radial tree layout is mainly a good space utilization for large datasets. If you have 50k molecules, organize them in the scaffold tree and zoom to the overview, you see just as small ring of the tree. The radial layout has not much advantage over a linear layout in this situation. You can download a large sdf file from [1]. [1] https://ls11-www.cs.tu-dortmund.de/people/schaefer/publication_data/ks_compound.sdf.zip Greetings Till > > > > [1] http://ieeexplore.ieee.org/xpl/articleDetails.jsp?arnumber=1382906[2] http://gephi.org/2010/openord-new-layout-plugin-the-fastest-algorithm-so-far/ > > From: til...@tu... > > To: sca...@li... > > CC: aly...@ho... > > Subject: Re: [Scaffoldhunter-devel] GSOC 2014 - Sub graph network > > Date: Mon, 17 Mar 2014 12:52:55 +0100 > > > > Hi, > > > > Am Samstag, 15. März 2014, 21:57:53 schrieb Aly Osama: > > > Hello, I am a pr-junior student at Computer Engineering and Software Systems .i have good experience with java and GUI with Swing library for 2 years , i have worked on a research project at AinShames university and develop a graphical tool that will used in VLSI industry using swing for 5 months . i am also interested in problem solving and participate in Local ACM competition ACM ECPC . i have also some experience with image processing using MATLAB and Sci-kit library with python in Scanning Electron Microscopy Image Analysis software . > > thank you for your introduction. > > > > > I am really interested in Scaffold Hunter project as want to contribute in this field so i will participate in this project for GSOC 2014 , i have got an overview of the user side in addition to getting in touch with the code , and i start learning Piccolo2D for 3 days . i think that i can participate at Sub-graph Network or Molecule Clouds , > > As we have some Molecule Cloud proposals already, it will improve your chances to get accepted if you go for the subgraph network. > > > > > > > I will work further on these ideas to choose one of them , but could you give me more details about sub-graph network ? > > The scaffold principle is a classification of molecules based on their (ring) graph structure. If you cut all the side chains (that means paths and trees, which are not part of a circle) of a molecule you get a so called murcko scaffold. As different Molecules might have the same murcko scaffold, you can think of a class of molecules with the same murcko scaffold. This scaffold itself serves as a descriptor of this class. > > > > To take this approach a step further, one can select a rings of the scaffold and remove this ring. Therefore, you get a smaller parent scaffold. If you select the this ring with some strategy, you get a hierarchy of scaffolds and a hierarchical classification scheme for your molecules. This is what the scaffold tree view visualizes. > > > > Now, one can imagine, the the selection of the ring to remove can be done in various ways. That means with different ring selection strategies, you will get different classification hierarchies. > > > > The scaffold / subgraph network, is a DAG, where each scaffold has as many parents as there exists rings. That means for each ring, there exist one parent (the one which is created by removing this ring). All possible scaffold hierarchies can be embedded into this graph. > > The goal here is to find a layout for this DAG and also some filter techniques, because the DAG can be dense / huge. > > > > The provided papers are describing this in more detail. > > > > Greetings, > > Till > > > -- Dipl.-Inf. Till Schäfer TU Dortmund University Chair 11 - Algorithm Engineering Otto-Hahn-Str. 14 / Room 237 44227 Dortmund, Germany e-mail: til...@cs... phone: +49(231)755-7706 fax: +49(231)755-7740 web: http://ls11-www.cs.uni-dortmund.de/staff/schaefer pgp: https://keyserver2.pgp.com/vkd/SubmitSearch.event?&&SearchCriteria=0xD84DED79 |
From: Till S. <til...@tu...> - 2014-03-18 08:46:20
|
Hi, Am Montag 17 März 2014, 23:07:30 schrieb Anjenson: > Hi Till, > > I am finishing the SH task now so I would like to know one more > essential thing which is how big can property values can be? any double value. Regards, Till > > Regards, > Andrew > > > ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and their > applications. Written by three acclaimed leaders in the field, > this first edition is now available. Download your free book today! > http://p.sf.net/sfu/13534_NeoTech > _______________________________________________ > Scaffoldhunter-devel mailing list > Sca...@li... > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel -- Dipl.-Inf. Till Schäfer Technische Universität Dortmund Chair 11 - Algorithm Engineering Otto-Hahn-Str. 14 / Raum 237 44227 Dortmund, Germany e-mail: til...@cs... phone: +49(231)755-7706 fax: +49(231)755-7740 web: http://ls11-www.cs.uni-dortmund.de/staff/schaefer pgp: https://keyserver2.pgp.com/vkd/SubmitSearch.event?&&SearchCriteria=0xD84DED79 |
From: <nl...@us...> - 2014-03-18 06:09:27
|
Hi Nyah, On Tuesday 18 March 2014 03:26:06 Check Nyah wrote: > Well how do i've tried to install the koma-script package and my system > returns package not found. Could you please give me the procedure to build > without the doc? you can use the targets dist-small-jar or dist-fat-jar. Nils |
From: Check N. <che...@gm...> - 2014-03-18 02:26:13
|
Hi, > > That is a documentclass, included in the koma-script package which you > can obtain through your packet manager. > I think you'll dodge that error as well by choosing a build target that > does not include the doc. > > Well how do i've tried to install the koma-script package and my system returns package not found. Could you please give me the procedure to build without the doc? Thanks, > Nyah > > |
From: Falk N. <ne...@mi...> - 2014-03-18 02:18:40
|
Hi, Am 18.03.2014 02:30, schrieb Check Nyah: > Hi, > Here is the error message i get when i try to compile the code "! > LaTeX Error: File `scrbook.cls' not found" > > I don't understand how to fix this, since my pdflatex works fine and i > don't see any error at the beginning of the manual.tex document. > That is a documentclass, included in the koma-script package which you can obtain through your packet manager. I think you'll dodge that error as well by choosing a build target that does not include the doc. Cheers, Falk > > Thanks, > Nyah > > > > > ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and their > applications. Written by three acclaimed leaders in the field, > this first edition is now available. Download your free book today! > http://p.sf.net/sfu/13534_NeoTech > > > _______________________________________________ > Scaffoldhunter-devel mailing list > Sca...@li... > https://lists.sourceforge.net/lists/listinfo/scaffoldhunter-devel |
From: Check N. <che...@gm...> - 2014-03-18 01:30:10
|
Hi, Here is the error message i get when i try to compile the code "! LaTeX Error: File `scrbook.cls' not found" I don't understand how to fix this, since my pdflatex works fine and i don't see any error at the beginning of the manual.tex document. Thanks, > Nyah > > |